From 56fd085d8ab48cb54df80af1613f7500ceec1bc1 Mon Sep 17 00:00:00 2001 From: Alex Ley Date: Fri, 8 Nov 2024 02:31:07 +0000 Subject: [PATCH] fix: copy "resources/language-submodules/tree-sitter-kotlin/" -> "resources/language-metavariables/tree-sitter-kotlin/" fixes #570 --- .../tree-sitter-kotlin/Cargo.lock | 71 + .../tree-sitter-kotlin/Cargo.toml | 27 + .../tree-sitter-kotlin/Icon128.png | Bin 0 -> 1697 bytes .../tree-sitter-kotlin/LICENSE | 9 + .../tree-sitter-kotlin/Makefile | 114 + .../tree-sitter-kotlin/Package.swift | 47 + .../tree-sitter-kotlin/README.md | 66 + .../tree-sitter-kotlin/binding.gyp | 30 + .../bindings/c/tree-sitter-kotlin.pc.in | 11 + .../bindings/c/tree-sitter.h.in | 16 + .../bindings/c/tree-sitter.pc.in | 11 + .../tree-sitter-kotlin/bindings/go/binding.go | 14 + .../bindings/go/binding_test.go | 15 + .../bindings/node/binding.cc | 20 + .../bindings/node/index.d.ts | 28 + .../tree-sitter-kotlin/bindings/node/index.js | 7 + .../python/tree_sitter_kotlin/__init__.py | 5 + .../python/tree_sitter_kotlin/__init__.pyi | 1 + .../python/tree_sitter_kotlin/binding.c | 27 + .../python/tree_sitter_kotlin/py.typed | 0 .../bindings/rust/README.md | 22 + .../tree-sitter-kotlin/bindings/rust/build.rs | 38 + .../tree-sitter-kotlin/bindings/rust/lib.rs | 52 + .../bindings/swift/TreeSitterKotlin/kotlin.h | 16 + .../tree-sitter-kotlin/examples/Logger.kt | 165 + .../tree-sitter-kotlin/go.mod | 5 + .../tree-sitter-kotlin/grammar-reference.js | 1349 + .../tree-sitter-kotlin/grammar.js | 1238 + .../tree-sitter-kotlin/package-lock.json | 590 + .../tree-sitter-kotlin/package.json | 67 + .../playground-screenshot.png | Bin 0 -> 324586 bytes .../tree-sitter-kotlin/pyproject.toml | 29 + .../tree-sitter-kotlin/queries/highlights.scm | 380 + .../tree-sitter-kotlin/setup.py | 60 + .../tree-sitter-kotlin/src/grammar.json | 6392 + .../tree-sitter-kotlin/src/node-types.json | 9813 + .../tree-sitter-kotlin/src/parser.c | 684856 +++++++++++++++ .../tree-sitter-kotlin/src/scanner.c | 533 + .../src/tree_sitter/alloc.h | 54 + .../src/tree_sitter/array.h | 290 + .../src/tree_sitter/parser.h | 265 + .../test/corpus/annotations.txt | 126 + .../test/corpus/assignment.txt | 70 + .../test/corpus/classes.txt | 394 + .../test/corpus/comments.txt | 26 + .../test/corpus/expressions.txt | 626 + .../test/corpus/functions.txt | 325 + .../test/corpus/literals.txt | 232 + .../test/corpus/newlines.txt | 239 + .../test/corpus/soft_keywords.txt | 32 + .../test/corpus/source-files.txt | 122 + .../test/corpus/statements.txt | 67 + .../tree-sitter-kotlin/test/corpus/types.txt | 318 + 53 files changed, 709310 insertions(+) create mode 100644 resources/language-metavariables/tree-sitter-kotlin/Cargo.lock create mode 100644 resources/language-metavariables/tree-sitter-kotlin/Cargo.toml create mode 100644 resources/language-metavariables/tree-sitter-kotlin/Icon128.png create mode 100644 resources/language-metavariables/tree-sitter-kotlin/LICENSE create mode 100644 resources/language-metavariables/tree-sitter-kotlin/Makefile create mode 100644 resources/language-metavariables/tree-sitter-kotlin/Package.swift create mode 100644 resources/language-metavariables/tree-sitter-kotlin/README.md create mode 100644 resources/language-metavariables/tree-sitter-kotlin/binding.gyp create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/c/tree-sitter-kotlin.pc.in create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/c/tree-sitter.h.in create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/c/tree-sitter.pc.in create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding.go create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding_test.go create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/node/binding.cc create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.d.ts create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.js create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.py create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.pyi create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/binding.c create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/py.typed create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/rust/README.md create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/rust/build.rs create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/rust/lib.rs create mode 100644 resources/language-metavariables/tree-sitter-kotlin/bindings/swift/TreeSitterKotlin/kotlin.h create mode 100644 resources/language-metavariables/tree-sitter-kotlin/examples/Logger.kt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/go.mod create mode 100644 resources/language-metavariables/tree-sitter-kotlin/grammar-reference.js create mode 100644 resources/language-metavariables/tree-sitter-kotlin/grammar.js create mode 100644 resources/language-metavariables/tree-sitter-kotlin/package-lock.json create mode 100644 resources/language-metavariables/tree-sitter-kotlin/package.json create mode 100644 resources/language-metavariables/tree-sitter-kotlin/playground-screenshot.png create mode 100644 resources/language-metavariables/tree-sitter-kotlin/pyproject.toml create mode 100644 resources/language-metavariables/tree-sitter-kotlin/queries/highlights.scm create mode 100644 resources/language-metavariables/tree-sitter-kotlin/setup.py create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/grammar.json create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/node-types.json create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/parser.c create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/scanner.c create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/alloc.h create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/array.h create mode 100644 resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/parser.h create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/annotations.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/assignment.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/classes.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/comments.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/expressions.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/functions.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/literals.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/newlines.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/soft_keywords.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/source-files.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/statements.txt create mode 100644 resources/language-metavariables/tree-sitter-kotlin/test/corpus/types.txt diff --git a/resources/language-metavariables/tree-sitter-kotlin/Cargo.lock b/resources/language-metavariables/tree-sitter-kotlin/Cargo.lock new file mode 100644 index 000000000..749c00cc8 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/Cargo.lock @@ -0,0 +1,71 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +dependencies = [ + "memchr", +] + +[[package]] +name = "cc" +version = "1.0.97" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" + +[[package]] +name = "memchr" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" + +[[package]] +name = "regex" +version = "1.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" + +[[package]] +name = "tree-sitter" +version = "0.22.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df7cc499ceadd4dcdf7ec6d4cbc34ece92c3fa07821e287aedecd4416c516dca" +dependencies = [ + "cc", + "regex", +] + +[[package]] +name = "tree-sitter-kotlin" +version = "0.3.9" +dependencies = [ + "cc", + "tree-sitter", +] diff --git a/resources/language-metavariables/tree-sitter-kotlin/Cargo.toml b/resources/language-metavariables/tree-sitter-kotlin/Cargo.toml new file mode 100644 index 000000000..5ba3a4e00 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "tree-sitter-kotlin" +description = "Kotlin grammar for the tree-sitter parsing library" +version = "0.3.9" +keywords = ["incremental", "parsing", "kotlin"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/fwcd/tree-sitter-kotlin" +edition = "2018" +license = "MIT" +readme = "bindings/rust/README.md" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = ">= 0.21, < 0.23" + +[build-dependencies] +cc = "1.0" diff --git a/resources/language-metavariables/tree-sitter-kotlin/Icon128.png b/resources/language-metavariables/tree-sitter-kotlin/Icon128.png new file mode 100644 index 0000000000000000000000000000000000000000..ecd9a161510eeded68bbcca8225ad1e076e516dd GIT binary patch literal 1697 zcmV;S244AzP)gJ2fAQ-X`=LL@5DO$-qO(S;8XB?v(m3PBJT zqAL*>Sr`>W5Znisf{3^YB0_M{E~eY*sasWD)l+p&)v5ErO@*26s#Ep-J>AoH<}Ltq zP@3f;?gA867UKXcG7WMDz&QZl0odJ-!}a6h$wYIliN)|wXFezt*QrkOoPp)Mot|4c z1*rTL<2hd#HtHbvVz6`kNT(aMwmJWei47#6@+ai`HmV(!A0XeiVa?bULDKwOM9cSW zTq`O+LcVW@nvpmsAG78AcB&O=^O<5J`Mw=%MABSB*jT=A=bCsBGUgFO68XLkYT-@P zKZjV7$@g_q1Fc=@1BvDPIw~ENpFqB^vyxHyiRAk_ERlzx@{`KaF|CDxf5Qu)4tIJq1u zpG3ZIFiuoHk$m5PT&R3P`MyCpQ2E62eFIaY@)_j&2B*Zf5GtRr5Y7cx`Hb>?MNo}x z)}Zo<;aK?2_`k|uLM|VmUwoBckbHnvK+E#?p+NZnorK>UW40iFXp55%(1`fRF`mjV zfZQ?;JH~23{%vs2_dIz;4sr^)hiIJAm^$+Rq%Fr!E-^a@#wd{~`M=YaGfhr8Us(E= z90H&GodA9zuPA_A0kEC#rOV%feLeR8_=%&a5OM^dMfpQ(uH}6IzNIcGhSUKtje7;1lwSW{^sh%3pB|>o>oOCWS1Ozv6WO?~_+FlN5g{)+Ji% zpJDCb{`0G+09=CgyPw6g$r0P)k-s1Ixqb%VI7d;NGFM!S@`u)(>-PYjBd;hCbL4dZ zzJbaImfui5NM2DwVg!B;J@UtMJrCef@`@4@Dsg!JTC^qq7TD+7VR@IYdO}2+6K_TS z9dOIv%~4bireyx**jBpylW@zwf}^Nh_=Nu8*zPPrU0iek?t)vsI9vhvFkl;LbO5eH zL-GOpWDiX|FOd$w&1g(MuzkXNJkLp`1Mn6aln=Niw&`UhrMSV~Ytvt#<-Bj(i){-!ZK56`&OP=J-{< z64Vxe@xorkR>eA1hoGiYKuJfwjVezEwY&n17x#I#D*ROYN>KXe0mi?dKh0cA2-SU_ zpyU9I7xN|NT4Jaw1f>RGyokRt*D{AHLQv{Opt(>b)fPkX7ltKX1WJ()RB&NfS^y-; zA1FEmB?UmD{DERaP)YzK%O5B*1SJHZ1^ENTg@8K%=EQGcse+c`Lcnz&pfi46W~hOa zBJLA#-3PEuRPsx|3-aAKpg;;za7>PPzFHdyI~6fRRC1}G%O*Y2!P5D zhdczi1EBKbAq_#!0GI{;3zZ)VX$W%M2r_T-oJrh&E0EkQN*w@G{yPc#ZiyXzn>_?6 z17OO3I8nc?a&_Nk4MC~^nDUi0+|;+(LXbk3%FoN~eVZi&n@UspG~C&@$wRP-IF(P! z-o8y5g1PckJ`eZyZL$!|5vcNc+26NGLJ%v_CjZ9RL6wbpyl*!SK}-O~gMHdRwl8Kd zB`Ht!?M5L83BWbRAour=9}FEt$;R+?`Pm_u3cv%7&QFEcsAT47-_8nwF91g!o&FqO zqmr4|`ZhWQt^m9@r!$3>V|^Rt%@%++Vmnca;ZWZO`!hE>9<#GjBnJRohCq+w4PFV| zNhzL30Bj+^r+H&X<;!6U%j*KKSCucDT>!p@!!P^y(<|aD0G9%|8^GHDegyC|fa?LA r1aOwGv>;5+i{T#)K)Wn70FCn>%Vv_0h^N~N00000NkvXXu0mjfR$UhX literal 0 HcmV?d00001 diff --git a/resources/language-metavariables/tree-sitter-kotlin/LICENSE b/resources/language-metavariables/tree-sitter-kotlin/LICENSE new file mode 100644 index 000000000..777756371 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/LICENSE @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) 2019 fwcd + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/resources/language-metavariables/tree-sitter-kotlin/Makefile b/resources/language-metavariables/tree-sitter-kotlin/Makefile new file mode 100644 index 000000000..55b6381aa --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/Makefile @@ -0,0 +1,114 @@ +VERSION := 0.3.9 + +# Repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin ) + +ifeq (, $(PARSER_NAME)) + PARSER_NAME := $(shell basename $(PARSER_REPO_URL)) + PARSER_NAME := $(subst tree-sitter-,,$(PARSER_NAME)) + PARSER_NAME := $(subst .git,,$(PARSER_NAME)) +endif + +ifeq (, $(PARSER_URL)) + PARSER_URL := $(subst :,/,$(PARSER_REPO_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) + PARSER_URL := $(subst .git,,$(PARSER_URL)) +endif + +UPPER_PARSER_NAME := $(shell echo $(PARSER_NAME) | tr a-z A-Z ) + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# collect C++ sources, and link if necessary +CPPSRC := $(wildcard $(SRC_DIR)/*.cc) + +ifeq (, $(CPPSRC)) + ADDITIONALLIBS := +else + ADDITIONALLIBS := -lc++ +endif + +# collect sources +SRC := $(wildcard $(SRC_DIR)/*.c) +SRC += $(CPPSRC) +OBJ := $(addsuffix .o,$(basename $(SRC))) + +# ABI versioning +SONAME_MAJOR := 0 +SONAME_MINOR := 0 + +CFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) +CXXFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) +override CFLAGS += -std=gnu99 -fPIC +override CXXFLAGS += -fPIC + +# OS-specific bits +ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, + ifneq ($(ADDITIONALLIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), + endif + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/libtree-sitter-$(PARSER_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED := $(LINKSHARED)-shared -Wl, + ifneq ($(ADDITIONALLIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), + endif + LINKSHARED := $(LINKSHARED)-soname,libtree-sitter-$(PARSER_NAME).so.$(SONAME_MAJOR) +endif +ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc + +libtree-sitter-$(PARSER_NAME).a: $(OBJ) + $(AR) rcs $@ $^ + +libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ + ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) + ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) + +bindings/c/$(PARSER_NAME).h: + sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ + -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ + bindings/c/tree-sitter.h.in > $@ + +bindings/c/tree-sitter-$(PARSER_NAME).pc: + sed -e 's|@LIBDIR@|$(LIBDIR)|;s|@INCLUDEDIR@|$(INCLUDEDIR)|;s|@VERSION@|$(VERSION)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' \ + -e 's|@ADDITIONALLIBS@|$(ADDITIONALLIBS)|' \ + -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ + -e 's|@PARSERURL@|$(PARSER_URL)|' \ + bindings/c/tree-sitter.pc.in > $@ + +install: all + install -d '$(DESTDIR)$(LIBDIR)' + install -m755 libtree-sitter-$(PARSER_NAME).a '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).a + install -m755 libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER) + ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) + ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXT) + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter + install -m644 bindings/c/$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ + install -d '$(DESTDIR)$(PCLIBDIR)' + install -m644 bindings/c/tree-sitter-$(PARSER_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/ + +clean: + rm -f $(OBJ) libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXT) libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) libtree-sitter-$(PARSER_NAME).$(SOEXTVER) + rm -f bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc + +.PHONY: all install clean diff --git a/resources/language-metavariables/tree-sitter-kotlin/Package.swift b/resources/language-metavariables/tree-sitter-kotlin/Package.swift new file mode 100644 index 000000000..34463d101 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/Package.swift @@ -0,0 +1,47 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterKotlin", + products: [ + .library(name: "TreeSitterKotlin", targets: ["TreeSitterKotlin"]), + ], + dependencies: [], + targets: [ + .target(name: "TreeSitterKotlin", + path: ".", + exclude: [ + "Cargo.toml", + "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", + "package.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", + ], + sources: [ + "src/parser.c", + "src/scanner.c", + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")]) + ], + cLanguageStandard: .c11 +) diff --git a/resources/language-metavariables/tree-sitter-kotlin/README.md b/resources/language-metavariables/tree-sitter-kotlin/README.md new file mode 100644 index 000000000..e4cfa1402 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/README.md @@ -0,0 +1,66 @@ +# Kotlin Grammar for Tree-sitter + +[![Build](https://github.com/fwcd/tree-sitter-kotlin/actions/workflows/build.yml/badge.svg)](https://github.com/fwcd/tree-sitter-kotlin/actions/workflows/build.yml) +[![NPM](https://img.shields.io/npm/v/tree-sitter-kotlin)](https://www.npmjs.com/package/tree-sitter-kotlin) +[![crates.io](https://img.shields.io/crates/v/tree-sitter-kotlin)](https://crates.io/crates/tree-sitter-kotlin) + +[Kotlin](https://kotlinlang.org) language grammar for [Tree-sitter](http://tree-sitter.github.io/tree-sitter/). You can try it out directly [on the web](https://fwcd.github.io/tree-sitter-kotlin). + +![Icon](Icon128.png) + +The grammar is based on the [official language grammar](https://kotlinlang.org/docs/reference/grammar.html). + +## Project Structure + +| File | Description | +| ---- | ----------- | +| grammar.js | The Tree-sitter grammar | +| grammar-reference.js | A direct translation of the Kotlin language grammar that is, however, ambiguous to Tree-sitter | +| src | The generated parser | + +## Setup + +>`npm install` + +## Development + +### Compilation + +To (re-)compile the grammar, run: + +>`npm run generate` + +Note that the grammar is written completely in JavaScript (`grammar.js`), the other source files are generated by `tree-sitter`. + +### Testing + +To run the unit tests, run: + +>`npm run test` + +## WebAssembly + +### Compilation + +First make sure to have [Emscripten](https://emscripten.org/) installed. If you use Homebrew, you can `brew install emscripten`. Then run: + +>`npm run build-wasm` + +### Playground + +After compiling the grammar to WebAssembly, you can invoke + +>`npm run playground` + +to launch an interactive editing environment that displays the parsed syntax tree on-the-fly in the browser. You can also view a deployed version of this playground [on the web](https://fwcd.github.io/tree-sitter-kotlin). + +![Screenshot](playground-screenshot.png) + +## Documentation + +More documentation on how to create Tree-sitter grammars [can be found here](https://tree-sitter.github.io/tree-sitter/creating-parsers). + +## See also + +* [Kotlin Language Server](https://github.com/fwcd/kotlin-language-server) for code completion, diagnostics and more +* [Kotlin Debug Adapter](https://github.com/fwcd/kotlin-debug-adapter) for JVM debugging support diff --git a/resources/language-metavariables/tree-sitter-kotlin/binding.gyp b/resources/language-metavariables/tree-sitter-kotlin/binding.gyp new file mode 100644 index 000000000..6a11dc2bc --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/binding.gyp @@ -0,0 +1,30 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_kotlin_binding", + "dependencies": [ + " + +#ifdef __cplusplus +extern "C" { +#endif + +extern TSLanguage *tree_sitter_@PARSERNAME@(); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_@UPPER_PARSERNAME@_H_ diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/c/tree-sitter.pc.in b/resources/language-metavariables/tree-sitter-kotlin/bindings/c/tree-sitter.pc.in new file mode 100644 index 000000000..80d60b6db --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/c/tree-sitter.pc.in @@ -0,0 +1,11 @@ +prefix=@PREFIX@ +libdir=@LIBDIR@ +includedir=@INCLUDEDIR@ +additionallibs=@ADDITIONALLIBS@ + +Name: tree-sitter-@PARSERNAME@ +Description: A tree-sitter grammar for the @PARSERNAME@ programming language. +URL: @PARSERURL@ +Version: @VERSION@ +Libs: -L${libdir} ${additionallibs} -ltree-sitter-@PARSERNAME@ +Cflags: -I${includedir} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding.go b/resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding.go new file mode 100644 index 000000000..4c17f3768 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding.go @@ -0,0 +1,14 @@ +package tree_sitter_kotlin + +// #cgo CFLAGS: -std=c11 -fPIC +// #include "../../src/parser.c" +// #include "../../src/scanner.c" +// // NOTE: if your language has an external scanner, add it here. +import "C" + +import "unsafe" + +// Get the tree-sitter Language for this grammar. +func Language() unsafe.Pointer { + return unsafe.Pointer(C.tree_sitter_kotlin()) +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding_test.go b/resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding_test.go new file mode 100644 index 000000000..e20765445 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/go/binding_test.go @@ -0,0 +1,15 @@ +package tree_sitter_kotlin_test + +import ( + "testing" + + tree_sitter "github.com/smacker/go-tree-sitter" + tree_sitter_kotlin "github.com/fwcd/tree-sitter-kotlin/bindings/go" +) + +func TestCanLoadGrammar(t *testing.T) { + language := tree_sitter.NewLanguage(tree_sitter_kotlin.Language()) + if language == nil { + t.Errorf("Error loading Kotlin grammar") + } +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/node/binding.cc b/resources/language-metavariables/tree-sitter-kotlin/bindings/node/binding.cc new file mode 100644 index 000000000..0a37d23b4 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/node/binding.cc @@ -0,0 +1,20 @@ +#include + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_kotlin(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "kotlin"); + auto language = Napi::External::New(env, tree_sitter_kotlin()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; +} + +NODE_API_MODULE(tree_sitter_kotlin_binding, Init) diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.d.ts b/resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.d.ts new file mode 100644 index 000000000..efe259eed --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.js b/resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.js new file mode 100644 index 000000000..6657bcf42 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/node/index.js @@ -0,0 +1,7 @@ +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.py b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.py new file mode 100644 index 000000000..b7c2cf6a6 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.py @@ -0,0 +1,5 @@ +"Kotlin grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.pyi b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.pyi new file mode 100644 index 000000000..5416666fc --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/binding.c b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/binding.c new file mode 100644 index 000000000..41a526e41 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_kotlin(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_kotlin()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/py.typed b/resources/language-metavariables/tree-sitter-kotlin/bindings/python/tree_sitter_kotlin/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/README.md b/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/README.md new file mode 100644 index 000000000..8b25b52ae --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/README.md @@ -0,0 +1,22 @@ +# Kotlin Grammar for Tree-sitter + +This crate provides a Kotlin grammar for the [tree-sitter](https://tree-sitter.github.io/tree-sitter/) parsing library. To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` file: + +```toml +tree-sitter = "0.22" +tree-sitter-kotlin = "0.3.9" +``` + +Typically, you will use the `language` function to add this grammar to a tree-sitter [`Parser`](https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html), and then use the parser to parse some code: + +```rust +let code = r#" + data class Point( + val x: Int, + val y: Int + ) +"#; +let mut parser = Parser::new(); +parser.set_language(&tree_sitter_kotlin::language()).expect("Error loading Kotlin grammar"); +let parsed = parser.parse(code, None); +``` diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/build.rs b/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/build.rs new file mode 100644 index 000000000..6c347797d --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/build.rs @@ -0,0 +1,38 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.include(&src_dir); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // If your language uses an external scanner written in C++, + // then include this block of code: + + /* + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir); + cpp_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/lib.rs b/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/lib.rs new file mode 100644 index 000000000..fc3208c03 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/rust/lib.rs @@ -0,0 +1,52 @@ +//! This crate provides kotlin language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [language][language func] function to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = ""; +//! let mut parser = tree_sitter::Parser::new(); +//! parser.set_language(&tree_sitter_kotlin::language()).expect("Error loading kotlin grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter::Language; + +extern "C" { + fn tree_sitter_kotlin() -> Language; +} + +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_kotlin() } +} + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); +// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); +// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); +// pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::language()) + .expect("Error loading kotlin language"); + } +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/bindings/swift/TreeSitterKotlin/kotlin.h b/resources/language-metavariables/tree-sitter-kotlin/bindings/swift/TreeSitterKotlin/kotlin.h new file mode 100644 index 000000000..99eedbd3f --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/bindings/swift/TreeSitterKotlin/kotlin.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_KOTLIN_H_ +#define TREE_SITTER_KOTLIN_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_kotlin(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_KOTLIN_H_ diff --git a/resources/language-metavariables/tree-sitter-kotlin/examples/Logger.kt b/resources/language-metavariables/tree-sitter-kotlin/examples/Logger.kt new file mode 100644 index 000000000..e77769cb6 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/examples/Logger.kt @@ -0,0 +1,165 @@ +package org.javacs.kt + +import java.io.PrintWriter +import java.io.StringWriter +import java.util.* +import java.util.logging.Formatter +import java.util.logging.LogRecord +import java.util.logging.Handler +import java.util.logging.Level +import java.time.Instant + +val LOG = Logger() + +private class JULRedirector(private val downstream: Logger): Handler() { + override fun publish(record: LogRecord) { + when (record.level) { + Level.SEVERE -> downstream.error(record.message) + Level.WARNING -> downstream.warn(record.message) + Level.INFO -> downstream.info(record.message) + Level.CONFIG -> downstream.debug(record.message) + Level.FINE -> downstream.trace(record.message) + else -> downstream.deepTrace(record.message) + } + } + + override fun flush() {} + + override fun close() {} +} + +enum class LogLevel(val value: Int) { + NONE(100), + ERROR(2), + WARN(1), + INFO(0), + DEBUG(-1), + TRACE(-2), + DEEP_TRACE(-3), + ALL(-100) +} + +class LogMessage( + val level: LogLevel, + val message: String +) { + val formatted: String + get() = "[$level] $message" +} + +class Logger { + private var outBackend: ((LogMessage) -> Unit)? = null + private var errBackend: ((LogMessage) -> Unit)? = null + private val outQueue: Queue = ArrayDeque() + private val errQueue: Queue = ArrayDeque() + + private val newline = System.lineSeparator() + val logTime = false + var level = LogLevel.INFO + + private fun outputError(msg: LogMessage) { + if (errBackend == null) { + errQueue.offer(msg) + } else { + errBackend?.invoke(msg) + } + } + + private fun output(msg: LogMessage) { + if (outBackend == null) { + outQueue.offer(msg) + } else { + outBackend?.invoke(msg) + } + } + + private fun log(msgLevel: LogLevel, msg: String, placeholders: Array) { + if (level.value <= msgLevel.value) { + output(LogMessage(msgLevel, format(insertPlaceholders(msg, placeholders)))) + } + } + + fun error(msg: String, vararg placeholders: Any?) = log(LogLevel.ERROR, msg, placeholders) + + fun warn(msg: String, vararg placeholders: Any?) = log(LogLevel.WARN, msg, placeholders) + + fun info(msg: String, vararg placeholders: Any?) = log(LogLevel.INFO, msg, placeholders) + + fun debug(msg: String, vararg placeholders: Any?) = log(LogLevel.DEBUG, msg, placeholders) + + fun trace(msg: String, vararg placeholders: Any?) = log(LogLevel.TRACE, msg, placeholders) + + fun deepTrace(msg: String, vararg placeholders: Any?) = log(LogLevel.DEEP_TRACE, msg, placeholders) + + fun connectJULFrontend() { + val rootLogger = java.util.logging.Logger.getLogger("") + rootLogger.addHandler(JULRedirector(this)) + } + + fun connectOutputBackend(outBackend: (LogMessage) -> Unit) { + this.outBackend = outBackend + flushOutQueue() + } + + fun connectErrorBackend(errBackend: (LogMessage) -> Unit) { + this.errBackend = errBackend + flushErrQueue() + } + + fun connectStdioBackend() { + connectOutputBackend { println(it.formatted) } + connectOutputBackend { System.err.println(it.formatted) } + } + + private fun insertPlaceholders(msg: String, placeholders: Array): String { + val msgLength = msg.length + val lastIndex = msgLength - 1 + var charIndex = 0 + var placeholderIndex = 0 + var result = StringBuilder() + + while (charIndex < msgLength) { + val currentChar = msg.get(charIndex) + val nextChar = if (charIndex != lastIndex) msg.get(charIndex + 1) else '?' + if ((currentChar == '{') && (nextChar == '}')) { + if (placeholderIndex >= placeholders.size) { + return "ERROR: Tried to log more '{}' placeholders than there are values" + } + result.append(placeholders[placeholderIndex] ?: "null") + placeholderIndex += 1 + charIndex += 2 + } else { + result.append(currentChar) + charIndex += 1 + } + } + + return result.toString() + } + + private fun flushOutQueue() { + while (outQueue.isNotEmpty()) { + outBackend?.invoke(outQueue.poll()) + } + } + + private fun flushErrQueue() { + while (errQueue.isNotEmpty()) { + errBackend?.invoke(errQueue.poll()) + } + } + + private fun format(msg: String): String { + val time = if (logTime) "${Instant.now()} " else "" + var thread = Thread.currentThread().name + + return time + shortenOrPad(thread, 10) + msg + } + + private fun shortenOrPad(str: String, length: Int): String = + if (str.length <= length) { + str.padEnd(length, ' ') + } else { + ".." + str.substring(str.length - length + 2) + } +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/go.mod b/resources/language-metavariables/tree-sitter-kotlin/go.mod new file mode 100644 index 000000000..c9b963c42 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/go.mod @@ -0,0 +1,5 @@ +module github.com/fwcd/tree-sitter-kotlin + +go 1.22 + +require github.com/smacker/go-tree-sitter v0.0.0-20240827094217-dd81d9e9be82 diff --git a/resources/language-metavariables/tree-sitter-kotlin/grammar-reference.js b/resources/language-metavariables/tree-sitter-kotlin/grammar-reference.js new file mode 100644 index 000000000..eb4f49bfb --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/grammar-reference.js @@ -0,0 +1,1349 @@ +/* + * MIT License + * + * Copyright (c) 2019 fwcd + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +// Using an adapted version of https://kotlinlang.org/docs/reference/grammar.html + +module.exports = grammar({ + name: "kotlin", + rules: { + // TODO: Hide common elements such as "identifier" + // or "expression" from the syntax tree by prepending + // an underscore + + // Note that all rules marked with "modified" have + // been modified from the original grammar to prevent + // zero-width matches. See https://gist.github.com/Aerijo/df27228d70c633e088b0591b8857eeef#general-tips + // for an explanation. + + // ==================== + // Syntax grammar + // ==================== + + // ========== + // General + // ========== + + // start + program: $ => choice( + // kotlin_file + seq( + optional($.shebang_line), + repeat($.file_annotation), + optional($.package_header), + repeat($.import_header), + repeat($.top_level_object) + ), + // script + seq( + optional($.shebang_line), + repeat($.file_annotation), + optional($.package_header), + repeat($.import_header), + repeat(seq($.statement, $.semi)) + ) + ), + + shebang_line: $ => seq("#!", /[^\r\n]*/), + + file_annotation: $ => seq( + choice("@", $.at_pre_ws), + "file", + ":", + choice( + seq("[", repeat1($.unescaped_annotation), "]"), + $.unescaped_annotation + ) + ), + + // modified + package_header: $ => seq("package", $.identifier, optional($.semi)), + + // modified + import_list: $ => seq($.import_header), + + import_header: $ => seq( + "import", + $.identifier, + optional(choice(seq(".", "*"), $.import_alias)), + optional($.semi) + ), + + import_alias: $ => seq("as", $.simple_identifier), + + top_level_object: $ => seq($.declaration, optional($.semis)), + + type_alias: $ => seq( + optional($.modifiers), + "typealias", + $.simple_identifier, + optional($.type_parameters), + "=", + $.type + ), + + declaration: $ => choice( + $.class_declaration, + $.object_declaration, + $.function_declaration, + $.property_declaration, + $.type_alias + ), + + // ========== + // Classes + // ========== + + class_declaration: $ => seq( + optional($.modifiers), + choice("class", "interface"), + $.simple_identifier, + optional($.type_parameters), + optional($.primary_constructor), + optional(seq(":", $.delegation_specifiers)), + optional($.type_constraints), + optional(choice($.class_body, $.enum_class_body)) + ), + + primary_constructor: $ => seq( + optional(seq(optional($.modifiers), "constructor")), + $.class_parameters + ), + + // modified + class_body: $ => seq("{", optional($.class_member_declarations), "}"), + + class_parameters: $ => seq( + "(", + optional(seq($.class_parameter, repeat(seq(",", $.class_parameter)))), + ")" + ), + + class_parameter: $ => seq( + optional($.modifiers), + optional(choice("val", "var")), + $.simple_identifier, + ":", + $.type, + optional(seq("=", $.expression)) + ), + + delegation_specifiers: $ => seq( + $.annotated_delegation_specifier, + repeat(seq(",", $.annotated_delegation_specifier)) + ), + + delegation_specifier: $ => choice( + $.constructor_invocation, + $.explicit_delegation, + $.user_type, + $.function_type + ), + + constructor_invocation: $ => seq($.user_type, $.value_arguments), + + annotated_delegation_specifier: $ => seq(repeat($.annotation), $.delegation_specifier), + + explicit_delegation: $ => seq( + choice($.user_type, $.function_type), + "by", + $.expression + ), + + type_parameters: $ => seq( + "<", + $.type_parameter, + repeat(seq(",", $.type_parameter)), + ">" + ), + + type_parameter: $ => seq( + optional($.type_parameter_modifiers), + $.simple_identifier, + optional(seq(":", $.type)) + ), + + type_constraints: $ => seq( + "where", + $.type_constraint, + repeat(seq(",", $.type_constraint)) + ), + + type_constraint: $ => seq( + repeat($.annotation), + $.simple_identifier, + ":", + $.type + ), + + // ========== + // Class members + // ========== + + // modified + class_member_declarations: $ => repeat1(seq($.class_member_declaration, optional($.semis))), + + class_member_declaration: $ => choice( + $.declaration, + $.companion_object, + $.anonymous_initializer, + $.secondary_constructor + ), + + anonymous_initializer: $ => seq("init", $.block), + + companion_object: $ => seq( + optional($.modifiers), + "companion", + "object", + optional($.simple_identifier), + optional(seq(":", $.delegation_specifiers)), + optional($.class_body) + ), + + function_value_parameters: $ => seq( + "(", + optional(seq( + $.function_value_parameter, + repeat(seq(",", $.function_value_parameter)) + )), + ")" + ), + + function_value_parameter: $ => seq( + optional($.parameter_modifiers), + $.parameter, + optional(seq("=", $.expression)) + ), + + function_declaration: $ => seq( + optional($.modifiers), + "fun", + optional($.type_parameters), + optional(seq($.receiver_type, ".")), + $.simple_identifier, + $.function_value_parameters, + optional(seq(":", $.type)), + optional($.type_constraints), + optional($.function_body) + ), + + function_body: $ => choice($.block, seq("=", $.expression)), + + variable_declaration: $ => seq( + repeat($.annotation), + $.simple_identifier, + optional(seq(":", $.type)) + ), + + multi_variable_declaration: $ => seq( + "(", + $.variable_declaration, + repeat(seq(",", $.variable_declaration)), + ")" + ), + + property_declaration: $ => seq( + optional($.modifiers), + choice("val", "var"), + optional($.type_parameters), + optional(seq($.receiver_type, ".")), + choice($.multi_variable_declaration, $.variable_declaration), + optional($.type_constraints), + optional(choice(seq("=", $.expression), $.property_delegate)), + choice(";"), + choice( + seq( + optional($.getter), + optional(seq(optional($.semi), $.setter)) + ), + seq( + optional($.setter), + optional(seq(optional($.semi), $.getter)) + ) + ) + ), + + property_delegate: $ => seq("by", $.expression), + + getter: $ => choice( + seq(optional($.modifiers), "get"), + seq(optional($.modifiers), "get", "(", ")", optional(seq(":", $.type)), $.function_body) + ), + + setter: $ => choice( + seq(optional($.modifiers), "set"), + seq(optional($.modifiers), "set", "(", $.parameter_with_optional_type, ")", optional(seq(":", $.type)), $.function_body) + ), + + parameters_with_optional_type: $ => seq( + "(", + optional(seq( + $.parameter_with_optional_type, + repeat(seq(",", $.parameter_with_optional_type)) + )), + ")" + ), + + parameter_with_optional_type: $ => seq( + optional($.parameter_modifiers), + $.simple_identifier, + optional(seq(":", $.type)) + ), + + parameter: $ => seq($.simple_identifier, ":", $.type), + + object_declaration: $ => seq( + optional($.modifiers), + "object", + $.simple_identifier, + optional(seq(":", $.delegation_specifiers)), + optional($.class_body) + ), + + secondary_constructor: $ => seq( + optional($.modifiers), + "constructor", + $.function_value_parameters, + optional(seq(":", $.constructor_delegation_call)), + optional($.block) + ), + + constructor_delegation_call: $ => choice( + seq("this", $.value_arguments), + seq("super", $.value_arguments) + ), + + // ========== + // Enum classes + // ========== + + // modified + enum_class_body: $ => seq( + "{", + optional($.enum_entries), + optional(seq(";", optional($.class_member_declarations))), + "}" + ), + + enum_entries: $ => seq( + $.enum_entry, + repeat(seq(",", $.enum_entry)), + optional(",") + ), + + enum_entry: $ => seq( + optional($.modifiers), + $.simple_identifier, + optional($.value_arguments), + optional($.class_body) + ), + + // ========== + // Types + // ========== + + type: $ => seq( + optional($.type_modifiers), + choice( + $.parenthesized_type, + $.nullable_type, + $.type_reference, + $.function_type + ) + ), + + type_reference: $ => choice( + $.user_type, + "dynamic" + ), + + nullable_type: $ => seq( + choice($.type_reference, $.parenthesized_type), + repeat1($.quest) + ), + + quest: $ => choice("?", $.quest_ws), + + user_type: $ => seq( + $.simple_user_type, + repeat(seq(".", $.simple_user_type)) + ), + + simple_user_type: $ => seq( + $.simple_identifier, + optional($.type_arguments) + ), + + type_projection: $ => choice( + seq(optional($.type_projection_modifiers), $.type), + "*" + ), + + type_projection_modifiers: $ => repeat1($.type_projection_modifier), + + type_projection_modifier: $ => choice( + $.variance_modifier, + $.annotation + ), + + function_type: $ => seq( + optional(seq($.receiver_type, ".")), + $.function_type_parameters, + "->", + $.type + ), + + function_type_parameters: $ => seq( + "(", + optional(choice($.parameter, $.type)), + repeat(seq( + ",", + choice($.parameter, $.type) + )), + ")" + ), + + parenthesized_type: $ => seq("(", $.type, ")"), + + receiver_type: $ => seq( + optional($.type_modifiers), + choice( + $.parenthesized_type, + $.nullable_type, + $.type_reference + ) + ), + + parenthesized_user_type: $ => choice( + seq("(", $.user_type, ")"), + seq("(", $.parenthesized_user_type, ")") + ), + + // ========== + // Statements + // ========== + + // modified + statements: $ => seq( + $.statement, + repeat(seq($.semis, $.statement)), + optional($.semis) + ), + + statement: $ => seq( + repeat(choice($.label, $.annotation)), + choice( + $.declaration, + $.assignment, + $.loop_statement, + $.expression + ) + ), + + label: $ => seq( + $.simple_identifier, + choice("@", $.at_post_ws) + ), + + control_structure_body: $ => choice($.block, $.statement), + + // modified + block: $ => seq("{", optional($.statements), "}"), + + loop_statement: $ => choice( + $.for_statement, + $.while_statement, + $.do_while_statement + ), + + for_statement: $ => seq( + "for", + "(", + repeat($.annotation), + choice($.variable_declaration, $.multi_variable_declaration), + "in", + $.expression, + ")", + optional($.control_structure_body) + ), + + while_statement: $ => choice( + seq( + "while", + "(", + $.expression, + ")", + $.control_structure_body + ), + seq( + "while", + "(", + $.expression, + ")", + ";" + ) + ), + + do_while_statement: $ => seq( + "do", + optional($.control_structure_body), + "while", + "(", + $.expression, + ")" + ), + + assignment: $ => choice( + seq($.directly_assignable_expression, "=", $.expression), + seq($.assignable_expression, $.assignment_and_operator, $.expression) + ), + + // See also https://github.com/tree-sitter/tree-sitter/issues/160 + // for discussion of a generic EOF/newline token + semi: $ => /[\r\n]+/, + + semis: $ => /[\r\n]+/, + + // ========== + // Expressions + // ========== + + // Note how the following rules directly encode + // predence and associativity rather than using + // Tree-sitters prec function. This might be + // changed in the future (though it reflects how + // the Kotlin compiler generates its syntax tree). + + expression: $ => $.disjunction, + + disjunction: $ => seq($.conjunction, repeat(seq("||", $.conjunction))), + + conjunction: $ => seq($.equality, repeat(seq("&&", $.equality))), + + equality: $ => seq($.comparison, repeat(seq($.equality_operator, $.comparison))), + + comparison: $ => seq($.infix_operation, optional(seq($.comparison_operator, $.infix_operation))), + + infix_operation: $ => seq($.elvis_expression, repeat(choice( + seq($.in_operator, $.elvis_expression), + seq($.is_operator, $.type) + ))), + + elvis_expression: $ => seq($.infix_function_call, repeat(seq($.elvis, $.infix_function_call))), + + elvis: $ => seq("?", ":"), + + infix_function_call: $ => seq($.range_expression, repeat(seq($.simple_identifier, $.range_expression))), + + range_expression: $ => seq($.additive_expression, repeat(seq("..", $.additive_expression))), + + additive_expression: $ => seq($.multiplicative_expression, repeat(seq($.additive_operator, $.multiplicative_expression))), + + multiplicative_expression: $ => seq($.as_expression, repeat(seq($.multiplicative_operator, $.as_expression))), + + as_expression: $ => seq($.prefix_unary_expression, optional(seq($.as_operator, $.type))), + + prefix_unary_expression: $ => seq(repeat($.unary_prefix), $.postfix_unary_expression), + + unary_prefix: $ => choice( + $.annotation, + $.label, + $.prefix_unary_operator + ), + + postfix_unary_expression: $ => choice( + $.primary_expression, + seq($.primary_expression, repeat1($.postfix_unary_suffix)) + ), + + postfix_unary_suffix: $ => choice( + $.postfix_unary_operator, + $.type_arguments, + $.call_suffix, + $.indexing_suffix, + $.navigation_suffix + ), + + directly_assignable_expression: $ => choice( + seq($.postfix_unary_expression, $.assignable_suffix), + $.simple_identifier, + $.parenthesized_directly_assignable_expression + ), + + parenthesized_directly_assignable_expression: $ => seq("(", $.directly_assignable_expression, ")"), + + assignable_expression: $ => choice( + $.prefix_unary_expression, + $.parenthesized_assignable_expression + ), + + parenthesized_assignable_expression: $ => seq("(", $.assignable_expression, ")"), + + assignable_suffix: $ => choice( + $.type_arguments, + $.indexing_suffix, + $.navigation_suffix + ), + + indexing_suffix: $ => seq("[", $.expression, repeat(seq(",", $.expression)), "]"), + + navigation_suffix: $ => seq( + $.member_access_operator, + choice( + $.simple_identifier, + $.parenthesized_expression, + "class" + ) + ), + + call_suffix: $ => choice( + seq( + optional($.type_arguments), + optional($.value_arguments), + $.annotated_lambda + ), + seq( + optional($.type_arguments), + $.value_arguments + ) + ), + + annotated_lambda: $ => seq( + repeat($.annotation), + optional($.label), + $.lambda_literal + ), + + type_arguments: $ => seq( + "<", + $.type_projection, + repeat(seq(",", $.type_projection)), + ">" + ), + + value_arguments: $ => choice( + seq("(", ")"), + seq( + "(", + $.value_argument, + repeat(seq(",", $.value_argument)), + ")" + ) + ), + + value_argument: $ => seq( + optional($.annotation), + optional(seq($.simple_identifier, "=")), + optional("*"), + $.expression + ), + + primary_expression: $ => choice( + $.parenthesized_expression, + $.simple_identifier, + $.literal_constant, + $.string_literal, + $.callable_reference, + $.function_literal, + $.object_literal, + $.collection_literal, + $.this_expression, + $.super_expression, + $.if_expression, + $.when_expression, + $.try_expression, + $.jump_expression + ), + + parenthesized_expression: $ => seq("(", $.expression, ")"), + + collection_literal: $ => seq( + "[", + $.expression, + repeat(seq(",", $.expression)), + "]" + ), + + literal_constant: $ => choice( + $.boolean_literal, + $.integer_literal, + $.hex_literal, + $.bin_literal, + $.character_literal, + $.real_literal, + "null", + $.long_literal, + $.unsigned_literal + ), + + string_literal: $ => choice( + $.line_string_literal, + $.multi_line_string_literal + ), + + line_string_literal: $ => seq( + '"', + repeat(choice($.line_string_content, $.line_string_expression)), + '"' + ), + + multi_line_string_literal: $ => seq( + '"""', + repeat(choice( + $.multi_line_string_content, + $.multi_line_string_expression, + '"' + )), + $.triple_quote_close + ), + + line_string_content: $ => choice( + $.line_str_text, + $.line_str_escaped_char, + $.line_str_ref + ), + + line_string_expression: $ => seq("${", $.expression, "}"), + + multi_line_string_content: $ => choice( + $.multi_line_str_text, + '"', + $.multi_line_str_ref + ), + + multi_line_string_expression: $ => seq("${", $.expression, "}"), + + // modified + lambda_literal: $ => choice( + seq("{", optional($.statements), "}"), + seq( + "{", + optional($.lambda_parameters), + "->", + optional($.statements) + ) + ), + + lambda_parameters: $ => seq( + $.lambda_parameter, + repeat(seq(",", $.lambda_parameter)) + ), + + lambda_parameter: $ => choice( + $.variable_declaration, + seq( + $.multi_variable_declaration, + optional(seq(":", $.type)) + ) + ), + + anonymous_function: $ => seq( + "fun", + optional(seq($.type, ".")), + $.parameters_with_optional_type, + optional(seq(":", $.type)), + optional($.type_constraints), + optional($.function_body) + ), + + function_literal: $ => choice( + $.lambda_literal, + $.anonymous_function + ), + + object_literal: $ => choice( + seq("object", ":", $.delegation_specifiers, $.class_body), + seq("object", $.class_body) + ), + + this_expression: $ => choice("this", $.this_at), + + super_expression: $ => choice( + seq( + "super", + optional(seq("<", $.type, ">")), + optional(seq("@", $.simple_identifier)) + ), + $.super_at + ), + + if_expression: $ => choice( + seq( + "if", + "(", + $.expression, + ")", + choice($.control_structure_body, ";") + ), + seq( + "if", + "(", + $.expression, + ")", + optional($.control_structure_body), + optional(";"), + "else", + choice($.control_structure_body, ";") + ) + ), + + when_subject: $ => seq( + "(", + optional(seq( + repeat($.annotation), + "val", + $.variable_declaration, + "=" + )), + $.expression, + ")" + ), + + when_expression: $ => seq( + "when", + optional($.when_subject), + "{", + repeat($.when_entry), + "}" + ), + + when_entry: $ => choice( + seq( + $.when_condition, + repeat(seq(",", $.when_condition)), + "->", + $.control_structure_body, + optional($.semi) + ), + seq( + "else", + "->", + $.control_structure_body, + optional($.semi) + ) + ), + + when_condition: $ => choice( + $.expression, + $.range_test, + $.type_test + ), + + range_test: $ => seq($.in_operator, $.expression), + + type_test: $ => seq($.is_operator, $.type), + + try_expression: $ => seq( + "try", + $.block, + choice( + seq(repeat1($.catch_block), optional($.finally_block)), + $.finally_block + ) + ), + + catch_block: $ => seq( + "catch", + "(", + repeat($.annotation), + $.simple_identifier, + ":", + $.type, + ")", + $.block + ), + + finally_block: $ => seq("finally", $.block), + + jump_expression: $ => choice( + seq("throw", $.expression), + seq(choice("return", $.return_at), optional($.expression)), + "continue", + $.continue_at, + "break", + $.break_at + ), + + callable_reference: $ => seq( + optional($.receiver_type), + "::", + choice($.simple_identifier, "class") + ), + + assignment_and_operator: $ => choice("+=", "-=", "*=", "/=", "%="), + + equality_operator: $ => choice("!=", "!==", "==", "==="), + + comparison_operator: $ => choice("<", ">", "<=", ">="), + + in_operator: $ => choice("in", $.not_in), + + is_operator: $ => choice("is", $.not_is), + + additive_operator: $ => choice("+", "-"), + + multiplicative_operator: $ => choice("*", "/", "%"), + + as_operator: $ => choice("as", "as?"), + + prefix_unary_operator: $ => choice("++", "--", "-", "+", $.excl), + + postfix_unary_operator: $ => choice("++", "--", seq("!,", $.excl)), + + excl: $ => choice("!", $.excl_ws), + + member_access_operator: $ => choice(".", $.safe_nav, "::"), + + safe_nav: $ => seq("?", "."), + + // ========== + // Modifiers + // ========== + + modifiers: $ => choice($.annotation, repeat1($.modifier)), + + parameter_modifiers: $ => choice($.annotation, repeat1($.parameter_modifier)), + + modifier: $ => choice( + $.class_modifier, + $.member_modifier, + $.visibility_modifier, + $.function_modifier, + $.property_modifier, + $.inheritance_modifier, + $.parameter_modifier, + $.platform_modifier + ), + + type_modifiers: $ => repeat1($.type_modifier), + + type_modifier: $ => choice($.annotation, "suspend"), + + class_modifier: $ => choice( + "enum", + "sealed", + "annotation", + "data", + "inner" + ), + + member_modifier: $ => choice( + "override", + "lateinit" + ), + + visibility_modifier: $ => choice( + "public", + "private", + "internal", + "protected" + ), + + variance_modifier: $ => choice("in", "out"), + + type_parameter_modifiers: $ => repeat1($.type_parameter_modifier), + + type_parameter_modifier: $ => choice( + $.reification_modifier, + $.variance_modifier, + $.annotation + ), + + function_modifier: $ => choice( + "tailrec", + "operator", + "infix", + "inline", + "external", + "suspend" + ), + + property_modifier: $ => "const", + + inheritance_modifier: $ => choice( + "abstract", + "final", + "open" + ), + + parameter_modifier: $ => choice( + "vararg", + "noinline", + "crossinline" + ), + + reification_modifier: $ => "reified", + + platform_modifier: $ => choice("expect", "actual"), + + // ========== + // Annotations + // ========== + + annotation: $ => choice( + $.single_annotation, + $.multi_annotation + ), + + single_annotation: $ => choice( + seq($.annotation_use_site_target, $.unescaped_annotation), + seq( + choice("@", $.at_pre_ws), + $.unescaped_annotation + ) + ), + + multi_annotation: $ => choice( + seq( + $.annotation_use_site_target, + "[", + repeat1($.unescaped_annotation), + "]" + ), + seq( + choice("@", $.at_pre_ws), + "[", + repeat1($.unescaped_annotation), + "]" + ) + ), + + annotation_use_site_target: $ => seq( + choice("@", $.at_pre_ws), + choice( + "field", + "property", + "get", + "set", + "receiver", + "param", + "setparam", + "delegate" + ), + ":" + ), + + unescaped_annotation: $ => choice( + $.constructor_invocation, + $.user_type + ), + + // ========== + // Identifiers + // ========== + + simple_identifier: $ => choice( + $.lexical_identifier, + "abstract", + "annotation", + "by", + "catch", + "companion", + "constructor", + "crossinline", + "data", + "dynamic", + "enum", + "external", + "final", + "finally", + "get", + "import", + "infix", + "init", + "inline", + "inner", + "internal", + "lateinit", + "noinline", + "open", + "operator", + "out", + "override", + "private", + "protected", + "public", + "reified", + "sealed", + "tailrec", + "set", + "vararg", + "where", + "field", + "property", + "receiver", + "param", + "setparam", + "delegate", + "file", + "expect", + "actual", + "const", + "suspend" + ), + + identifier: $ => seq( + $.simple_identifier, + repeat(seq(".", $.simple_identifier)) + ), + + // ==================== + // Lexical grammar + // ==================== + + // ========== + // General + // ========== + + delimited_comment: $ => seq( + "/*", + repeat(choice($.delimited_comment, ".")), + "*/" + ), + + line_comment: $ => seq("//", /[^\r\n]*/), + + ws: $ => /[ \t\u000C]/, + + hidden: $ => choice( + $.delimited_comment, + $.line_comment, + $.ws + ), + + // ========== + // Separators and operations + // ========== + + reserved: $ => "...", + + excl_ws: $ => seq("!", $.hidden), + + double_arrow: $ => "=>", + + double_semicolon: $ => ";;", + + hash: $ => "#", + + at_post_ws: $ => seq("@", $.hidden), + + at_pre_ws: $ => seq($.hidden, "@"), + + at_both_ws: $ => seq($.hidden, "@", $.hidden), + + quest_ws: $ => seq("?", $.hidden), + + single_quote: $ => "'", + + // ========== + // Keywords + // ========== + + return_at: $ => seq("return@", $.lexical_identifier), + + continue_at: $ => seq("continue@", $.lexical_identifier), + + break_at: $ => seq("break@", $.lexical_identifier), + + this_at: $ => seq("this@", $.lexical_identifier), + + super_at: $ => seq("super@", $.lexical_identifier), + + typeof: $ => "typeof", + + not_is: $ => seq("!is", $.hidden), + + not_in: $ => seq("!in", $.hidden), + + // ========== + // Literals + // ========== + + dec_digit: $ => /[0-9]/, + + dec_digit_no_zero: $ => /[1-9]/, + + dec_digit_or_separator: $ => choice($.dec_digit, "_"), + + dec_digits: $ => choice( + seq($.dec_digit, repeat($.dec_digit_or_separator), $.dec_digit), + $.dec_digit + ), + + double_exponent: $ => seq(/[eE]/, optional(/[+-]/), $.dec_digits), + + real_literal: $ => choice( + $.float_literal, + $.double_literal + ), + + float_literal: $ => choice( + seq($.double_literal, /[fF]/), + seq($.dec_digits, /[fF]/) + ), + + double_literal: $ => choice( + seq(optional($.dec_digits), ".", $.dec_digits, optional($.double_exponent)), + seq($.dec_digits, $.double_exponent) + ), + + integer_literal: $ => choice( + seq($.dec_digit_no_zero, repeat($.dec_digit_or_separator), $.dec_digit), + $.dec_digit + ), + + hex_digit: $ => /[0-9a-fA-F]/, + + hex_digit_or_separator: $ => choice($.hex_digit, "_"), + + hex_literal: $ => choice( + seq("0", /[xX]/, $.hex_digit, repeat($.hex_digit_or_separator), $.hex_digit), + seq("0", /[xX]/, $.hex_digit) + ), + + bin_digit: $ => /[01]/, + + bin_digit_or_separator: $ => choice($.bin_digit, "_"), + + bin_literal: $ => choice( + seq("0", /[bB]/, $.bin_digit, repeat($.bin_digit_or_separator), $.bin_digit), + seq("0", /[bB]/, $.bin_digit) + ), + + unsigned_literal: $ => seq( + choice($.integer_literal, $.hex_literal, $.bin_literal), + /[uU]/, + optional("L") + ), + + long_literal: $ => seq( + choice($.integer_literal, $.hex_literal, $.bin_literal), + "L" + ), + + boolean_literal: $ => choice("true", "false"), + + character_literal: $ => seq( + "'", + choice($.escape_seq, /[^\n\r'\\]/), + "'" + ), + + // ========== + // Identifiers + // ========== + + lexical_identifier: $ => choice( + /[a-zA-Z_][a-zA-Z_0-9]+/, + /`[^\r\n`]+`/ + ), + + identifier_or_soft_key: $ => choice( + $.lexical_identifier, + "abstract", + "annotation", + "by", + "catch", + "companion", + "constructor", + "crossinline", + "data", + "dynamic", + "enum", + "external", + "final", + "finally", + "import", + "infix", + "init", + "inline", + "inner", + "internal", + "lateinit", + "noinline", + "open", + "operator", + "out", + "override", + "private", + "protected", + "public", + "reified", + "sealed", + "tailrec", + "vararg", + "where", + "get", + "set", + "field", + "property", + "receiver", + "param", + "setparam", + "delegate", + "file", + "expect", + "actual", + "const", + "suspend" + ), + + field_identifier: $ => seq("$", $.identifier_or_soft_key), + + uni_character_literal: $ => seq( + "\\", + "u", + $.hex_digit, + $.hex_digit, + $.hex_digit, + $.hex_digit + ), + + escaped_identifier: $ => /\\[tbrn'"\\$]/, + + escape_seq: $ => choice( + $.uni_character_literal, + $.escaped_identifier + ), + + // ========== + // Strings + // ========== + + line_str_ref: $ => $.field_identifier, + + line_str_text: $ => choice(/[^\\"$]+/, "$"), + + line_str_escaped_char: $ => choice( + $.escaped_identifier, + $.uni_character_literal + ), + + triple_quote_close: $ => /"?"""/, + + multi_line_str_ref: $ => $.field_identifier, + + multi_line_str_text: $ => choice(/[^"$]+/, "$") + } +}); diff --git a/resources/language-metavariables/tree-sitter-kotlin/grammar.js b/resources/language-metavariables/tree-sitter-kotlin/grammar.js new file mode 100644 index 000000000..2194a5b5b --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/grammar.js @@ -0,0 +1,1238 @@ +/* + * MIT License + * + * Copyright (c) 2019 fwcd + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +// Using an adapted version of https://kotlinlang.org/docs/reference/grammar.html + +const PREC = { + POSTFIX: 16, + PREFIX: 15, + TYPE_RHS: 14, + AS: 13, + MULTIPLICATIVE: 12, + ADDITIVE: 11, + RANGE: 10, + INFIX: 9, + ELVIS: 8, + CHECK: 7, + COMPARISON: 6, + EQUALITY: 5, + CONJUNCTION: 4, + DISJUNCTION: 3, + VAR_DECL: 3, + SPREAD: 2, + SIMPLE_USER_TYPE: 2, + ASSIGNMENT: 1, + BLOCK: 1, + ARGUMENTS: 1, + LAMBDA_LITERAL: 0, + RETURN_OR_THROW: 0, + COMMENT: 0 +}; +const DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); +const HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); +const BIN_DIGITS = token(sep1(/[01]/, /_+/)); +const REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)); + +module.exports = grammar({ + name: "kotlin", + + conflicts: $ => [ + // Ambiguous when used in an explicit delegation expression, + // since the '{' could either be interpreted as the class body + // or as the anonymous function body. Consider the following sequence: + + // Member access operator '::' conflicts with callable reference + [$._primary_expression, $.callable_reference], + + // @Type(... could either be an annotation constructor invocation or an annotated expression + [$.constructor_invocation, $._unescaped_annotation], + + // "expect" as a plaform modifier conflicts with expect as an identifier + [$.platform_modifier, $.simple_identifier], + // "data", "inner" as class modifier or id + [$.class_modifier, $.simple_identifier], + + // ". = z assignment conflicts with .() function call" + [$._postfix_unary_expression, $._expression], + + // ambiguity between generics and comparison operations (foo < b > c) + [$.call_expression, $.range_expression, $.comparison_expression], + [$.call_expression, $.elvis_expression, $.comparison_expression], + [$.call_expression, $.check_expression, $.comparison_expression], + [$.call_expression, $.additive_expression, $.comparison_expression], + [$.call_expression, $.infix_expression, $.comparison_expression], + [$.call_expression, $.multiplicative_expression, $.comparison_expression], + [$.type_arguments, $._comparison_operator], + + // ambiguity between prefix expressions and annotations before functions + [$._statement, $.prefix_expression], + [$._statement, $.prefix_expression, $.modifiers], + [$.prefix_expression, $.when_subject], + [$.prefix_expression, $.value_argument], + + // ambiguity between multiple user types and class property/function declarations + [$.user_type], + [$.user_type, $.anonymous_function], + [$.user_type, $.function_type], + + // ambiguity between annotated_lambda with modifiers and modifiers from var declarations + [$.annotated_lambda, $.modifiers], + + // ambiguity between simple identifier 'set/get' with actual setter/getter functions. + [$.setter, $.simple_identifier], + [$.getter, $.simple_identifier], + + // ambiguity between parameter modifiers in anonymous functions + [$.parameter_modifiers, $._type_modifier], + + // ambiguity between type modifiers before an @ + [$.type_modifiers], + // ambiguity between associating type modifiers + [$.not_nullable_type], + ], + + externals: $ => [ + $._automatic_semicolon, + $._import_list_delimiter, + $.safe_nav, + $.multiline_comment, + $._string_start, + $._string_end, + $.string_content, + ], + + extras: $ => [ + $.line_comment, + $.multiline_comment, + /\s+/ // Whitespace + ], + + word: $ => $._alpha_identifier, + + rules: { + // ==================== + // Syntax grammar + // ==================== + + // ========== + // General + // ========== + + // start + source_file: $ => seq( + optional($.shebang_line), + repeat($.file_annotation), + optional($.package_header), + repeat($.import_list), + repeat(seq($._statement, $._semi)) + ), + + shebang_line: $ => seq("#!", /[^\r\n]*/), + + file_annotation: $ => seq( + "@", "file", ":", + choice( + seq("[", repeat1($._unescaped_annotation), "]"), + $._unescaped_annotation + ), + $._semi + ), + + package_header: $ => seq("package", $.identifier, $._semi), + + import_list: $ => seq( + repeat1($.import_header), + $._import_list_delimiter + ), + + import_header: $ => seq( + "import", + alias($._import_identifier, $.identifier), + optional(choice(seq(".", $.wildcard_import), $.import_alias)), + $._semi + ), + + wildcard_import: _ => token.immediate("*"), + + import_alias: $ => seq("as", alias($.simple_identifier, $.type_identifier)), + + top_level_object: $ => seq($._declaration, optional($._semi)), + + type_alias: $ => seq( + optional($.modifiers), + "typealias", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + "=", + $._type + ), + + _declaration: $ => choice( + $.class_declaration, + $.object_declaration, + $.function_declaration, + $.property_declaration, + // TODO: it would be better to have getter/setter only in + // property_declaration but it's difficult to get ASI + // (Automatic Semicolon Insertion) working in the lexer for + // getter/setter. Indeed, they can also have modifiers in + // front, which means it's not enough to lookahead for 'get' or 'set' in + // the lexer, you also need to handle modifier keywords. It is thus + // simpler to accept them here. + $.getter, + $.setter, + $.type_alias + ), + + // ========== + // Classes + // ========== + + class_declaration: $ => prec.right(choice( + seq( + optional($.modifiers), + choice("class", "interface"), + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional($.primary_constructor), + optional(seq(":", $._delegation_specifiers)), + optional($.type_constraints), + optional($.class_body) + ), + seq( + optional($.modifiers), + "enum", "class", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional($.primary_constructor), + optional(seq(":", $._delegation_specifiers)), + optional($.type_constraints), + optional($.enum_class_body) + ) + )), + + primary_constructor: $ => seq( + optional(seq(optional($.modifiers), "constructor")), + $._class_parameters + ), + + class_body: $ => seq("{", optional($._class_member_declarations), "}"), + + _class_parameters: $ => seq( + "(", + optional(sep1($.class_parameter, ",")), + optional(","), + ")" + ), + + binding_pattern_kind: $ => choice("val", "var"), + + class_parameter: $ => seq( + optional($.modifiers), + optional($.binding_pattern_kind), + $.simple_identifier, + ":", + $._type, + optional(seq("=", $._expression)) + ), + + _delegation_specifiers: $ => prec.left(sep1( + $.delegation_specifier, + // $._annotated_delegation_specifier, // TODO: Annotations cause ambiguities with type modifiers + "," + )), + + delegation_specifier: $ => prec.left(choice( + $.constructor_invocation, + $.explicit_delegation, + $.user_type, + $.function_type + )), + + constructor_invocation: $ => seq($.user_type, $.value_arguments), + + _annotated_delegation_specifier: $ => seq(repeat($.annotation), $.delegation_specifier), + + explicit_delegation: $ => seq( + choice( + $.user_type, + $.function_type + ), + "by", + $._expression + ), + + type_parameters: $ => seq("<", sep1($.type_parameter, ","), ">"), + + type_parameter: $ => seq( + optional($.type_parameter_modifiers), + alias($.simple_identifier, $.type_identifier), + optional(seq(":", $._type)) + ), + + type_constraints: $ => prec.right(seq("where", sep1($.type_constraint, ","))), + + type_constraint: $ => seq( + repeat($.annotation), + alias($.simple_identifier, $.type_identifier), + ":", + $._type + ), + + // ========== + // Class members + // ========== + + _class_member_declarations: $ => repeat1(seq($._class_member_declaration, $._semi)), + + _class_member_declaration: $ => choice( + $._declaration, + $.companion_object, + $.anonymous_initializer, + $.secondary_constructor + ), + + anonymous_initializer: $ => seq("init", $._block), + + companion_object: $ => seq( + optional($.modifiers), + "companion", + "object", + optional(alias($.simple_identifier, $.type_identifier)), + optional(seq(":", $._delegation_specifiers)), + optional($.class_body) + ), + + function_value_parameters: $ => seq( + "(", + optional(sep1($._function_value_parameter, ",")), + optional(","), + ")" + ), + + _function_value_parameter: $ => seq( + optional($.parameter_modifiers), + $.parameter, + optional(seq("=", $._expression)) + ), + + _receiver_type: $ => seq( + optional($.type_modifiers), + choice ( + $._type_reference, + $.parenthesized_type, + $.nullable_type + ) + ), + + function_declaration: $ => prec.right(seq( // TODO + optional($.modifiers), + "fun", + optional($.type_parameters), + optional(seq($._receiver_type, optional('.'))), + $.simple_identifier, + $.function_value_parameters, + optional(seq(":", $._type)), + optional($.type_constraints), + optional($.function_body) + )), + + function_body: $ => choice($._block, seq("=", $._expression)), + + variable_declaration: $ => prec.left(PREC.VAR_DECL, seq( + // repeat($.annotation), TODO + $.simple_identifier, + optional(seq(":", $._type)) + )), + + property_declaration: $ => prec.right(seq( + optional($.modifiers), + $.binding_pattern_kind, + optional($.type_parameters), + optional(seq($._receiver_type, optional('.'))), + choice($.variable_declaration, $.multi_variable_declaration), + optional($.type_constraints), + optional(choice( + seq("=", $._expression), + $.property_delegate + )), + optional(';'), + choice( + // TODO: Getter-setter combinations + optional($.getter), + optional($.setter) + ) + )), + + property_delegate: $ => seq("by", $._expression), + + getter: $ => prec.right(seq( + optional($.modifiers), + "get", + optional(seq( + "(", ")", + optional(seq(":", $._type)), + $.function_body + )) + )), + + setter: $ => prec.right(seq( + optional($.modifiers), + "set", + optional(seq( + "(", + $.parameter_with_optional_type, + ")", + optional(seq(":", $._type)), + $.function_body + )) + )), + + parameters_with_optional_type: $ => seq("(", sep1($.parameter_with_optional_type, ","), ")"), + + parameter_with_optional_type: $ => seq( + optional($.parameter_modifiers), + $.simple_identifier, + optional(seq(":", $._type)) + ), + + parameter: $ => seq($.simple_identifier, ":", $._type), + + object_declaration: $ => prec.right(seq( + optional($.modifiers), + "object", + alias($.simple_identifier, $.type_identifier), + optional(seq(":", $._delegation_specifiers)), + optional($.class_body) + )), + + secondary_constructor: $ => seq( + optional($.modifiers), + "constructor", + $.function_value_parameters, + optional(seq(":", $.constructor_delegation_call)), + optional($._block) + ), + + constructor_delegation_call: $ => seq(choice("this", "super"), $.value_arguments), + + // ========== + // Enum classes + // ========== + + enum_class_body: $ => seq( + "{", + optional($._enum_entries), + optional(seq(";", optional($._class_member_declarations))), + "}" + ), + + _enum_entries: $ => seq(sep1($.enum_entry, ","), optional(",")), + + enum_entry: $ => seq( + optional($.modifiers), + $.simple_identifier, + optional($.value_arguments), + optional($.class_body) + ), + + // ========== + // Types + // ========== + + _type: $ => seq( + optional($.type_modifiers), + choice( + $.parenthesized_type, + $.nullable_type, + $._type_reference, + $.function_type, + $.not_nullable_type + ) + ), + + _type_reference: $ => prec.left(1, choice( + $.user_type, + "dynamic" + )), + + not_nullable_type: $ => seq( + optional($.type_modifiers), + choice($.user_type, $.parenthesized_user_type), + '&', + optional($.type_modifiers), + choice($.user_type, $.parenthesized_user_type), + ), + + nullable_type: $ => seq( + choice($._type_reference, $.parenthesized_type), + repeat1($._quest) + ), + + _quest: $ => "?", + + // TODO: Figure out a better solution than right associativity + // to prevent nested types from being recognized as + // unary expresions with navigation suffixes. + + user_type: $ => sep1($._simple_user_type, "."), + + _simple_user_type: $ => prec.right(PREC.SIMPLE_USER_TYPE, seq( + alias($.simple_identifier, $.type_identifier), + optional($.type_arguments) + )), + + type_projection: $ => choice( + seq(optional($.type_projection_modifiers), $._type), + "*" + ), + + type_projection_modifiers: $ => repeat1($._type_projection_modifier), + + _type_projection_modifier: $ => $.variance_modifier, + + function_type: $ => seq( + optional(seq($._simple_user_type, ".")), // TODO: Support "real" types + $.function_type_parameters, + "->", + $._type + ), + + // A higher-than-default precedence resolves the ambiguity with 'parenthesized_type' + function_type_parameters: $ => prec.left(1, seq( + "(", + optional(sep1(choice($.parameter, $._type), ",")), + ")" + )), + + parenthesized_type: $ => seq("(", $._type, ")"), + + parenthesized_user_type: $ => seq( + "(", + choice($.user_type, $.parenthesized_user_type), + ")" + ), + + // ========== + // Statements + // ========== + + statements: $ => seq( + $._statement, + repeat(seq($._semi, $._statement)), + optional($._semi), + ), + + _statement: $ => choice( + $._declaration, + seq( + repeat(choice($.label, $.annotation)), + choice( + $.assignment, + $._loop_statement, + $._expression + ) + ) + ), + + label: $ => token(seq( + /[a-zA-Z_][a-zA-Z_0-9]*/, + "@" + )), + + control_structure_body: $ => choice($._block, $._statement), + + _block: $ => prec(PREC.BLOCK, seq("{", optional($.statements), "}")), + + _loop_statement: $ => choice( + $.for_statement, + $.while_statement, + $.do_while_statement + ), + + for_statement: $ => prec.right(seq( + "for", + "(", + repeat($.annotation), + choice($.variable_declaration, $.multi_variable_declaration), + "in", + $._expression, + ")", + optional($.control_structure_body) + )), + + while_statement: $ => seq( + "while", + "(", + $._expression, + ")", + choice(";", $.control_structure_body) + ), + + do_while_statement: $ => prec.right(seq( + "do", + optional($.control_structure_body), + "while", + "(", + $._expression, + ")", + )), + + // See also https://github.com/tree-sitter/tree-sitter/issues/160 + // generic EOF/newline token + _semi: $ => $._automatic_semicolon, + + assignment: $ => choice( + prec.left(PREC.ASSIGNMENT, seq($.directly_assignable_expression, $._assignment_and_operator, $._expression)), + prec.left(PREC.ASSIGNMENT, seq($.directly_assignable_expression, "=", $._expression)), + // TODO + ), + + // ========== + // Expressions + // ========== + + _expression: $ => choice( + $._unary_expression, + $._binary_expression, + $._primary_expression + ), + + // Unary expressions + + _unary_expression: $ => choice( + $.postfix_expression, + $.call_expression, + $.indexing_expression, + $.navigation_expression, + $.prefix_expression, + $.as_expression, + $.spread_expression + ), + + postfix_expression: $ => prec.left(PREC.POSTFIX, seq($._expression, $._postfix_unary_operator)), + + call_expression: $ => prec.left(PREC.POSTFIX, seq($._expression, $.call_suffix)), + + indexing_expression: $ => prec.left(PREC.POSTFIX, seq($._expression, $.indexing_suffix)), + + navigation_expression: $ => prec.left(PREC.POSTFIX, seq($._expression, $.navigation_suffix)), + + prefix_expression: $ => prec.right(seq(choice($.annotation, $.label, $._prefix_unary_operator), $._expression)), + + as_expression: $ => prec.left(PREC.AS, seq($._expression, $._as_operator, $._type)), + + spread_expression: $ => prec.left(PREC.SPREAD, seq("*", $._expression)), + + // Binary expressions + + _binary_expression: $ => choice( + $.multiplicative_expression, + $.additive_expression, + $.range_expression, + $.infix_expression, + $.elvis_expression, + $.check_expression, + $.comparison_expression, + $.equality_expression, + $.comparison_expression, + $.equality_expression, + $.conjunction_expression, + $.disjunction_expression + ), + + multiplicative_expression: $ => prec.left(PREC.MULTIPLICATIVE, seq($._expression, $._multiplicative_operator, $._expression)), + + additive_expression: $ => prec.left(PREC.ADDITIVE, seq($._expression, $._additive_operator, $._expression)), + + range_expression: $ => prec.left(PREC.RANGE, seq($._expression, "..", $._expression)), + + infix_expression: $ => prec.left(PREC.INFIX, seq($._expression, $.simple_identifier, $._expression)), + + elvis_expression: $ => prec.left(PREC.ELVIS, seq($._expression, "?:", $._expression)), + + check_expression: $ => prec.left(PREC.CHECK, seq($._expression, choice( + seq($._in_operator, $._expression), + seq($._is_operator, $._type)))), + + comparison_expression: $ => prec.left(PREC.COMPARISON, seq($._expression, $._comparison_operator, $._expression)), + + equality_expression: $ => prec.left(PREC.EQUALITY, seq($._expression, $._equality_operator, $._expression)), + + conjunction_expression: $ => prec.left(PREC.CONJUNCTION, seq($._expression, "&&", $._expression)), + + disjunction_expression: $ => prec.left(PREC.DISJUNCTION, seq($._expression, "||", $._expression)), + + // Suffixes + + indexing_suffix: $ => seq("[", sep1($._expression, ","), "]"), + + navigation_suffix: $ => seq( + $._member_access_operator, + choice( + $.simple_identifier, + $.parenthesized_expression, + "class" + ) + ), + + call_suffix: $ => prec.left(seq( + // this introduces ambiguities with 'less than' for comparisons + optional($.type_arguments), + choice( + prec(PREC.ARGUMENTS, seq(optional($.value_arguments), $.annotated_lambda)), + $.value_arguments + ) + )), + + annotated_lambda: $ => seq( + repeat($.annotation), + optional($.label), + $.lambda_literal + ), + + type_arguments: $ => seq("<", sep1($.type_projection, ","), ">"), + + value_arguments: $ => seq( + "(", + optional( + seq( + sep1($.value_argument, ","), + optional(","), + ) + ), + ")" + ), + + value_argument: $ => seq( + optional($.annotation), + optional(seq($.simple_identifier, "=")), + optional("*"), + $._expression + ), + + _primary_expression: $ => choice( + $.parenthesized_expression, + $.simple_identifier, + $._literal_constant, + $.string_literal, + $.callable_reference, + $._function_literal, + $.object_literal, + $.collection_literal, + $.this_expression, + $.super_expression, + $.if_expression, + $.when_expression, + $.try_expression, + $.jump_expression + ), + + parenthesized_expression: $ => seq("(", $._expression, ")"), + + collection_literal: $ => seq("[", $._expression, repeat(seq(",", $._expression)), "]"), + + _literal_constant: $ => choice( + $.boolean_literal, + $.integer_literal, + $.hex_literal, + $.bin_literal, + $.character_literal, + $.real_literal, + $.null_literal, + $.long_literal, + $.unsigned_literal + ), + + string_literal: $ => seq( + $._string_start, + repeat(choice($.string_content, $._interpolation)), + $._string_end, + ), + + line_string_expression: $ => seq("${", $._expression, "}"), + + _interpolation: $ => choice( + seq("${", alias($._expression, $.interpolated_expression), "}"), + seq("$", alias($.simple_identifier, $.interpolated_identifier)) + ), + + lambda_literal: $ => prec(PREC.LAMBDA_LITERAL, seq( + "{", + optional(seq(optional($.lambda_parameters), "->")), + optional($.statements), + "}" + )), + + multi_variable_declaration: $ => seq( + '(', + sep1($.variable_declaration, ','), + ')' + ), + + lambda_parameters: $ => sep1($._lambda_parameter, ","), + + _lambda_parameter: $ => choice( + $.variable_declaration, + $.multi_variable_declaration + ), + + anonymous_function: $ => prec.right(seq( + "fun", + optional(seq(sep1($._simple_user_type, "."), ".")), // TODO + $.function_value_parameters, + optional(seq(":", $._type)), + optional($.function_body) + )), + + _function_literal: $ => choice( + $.lambda_literal, + $.anonymous_function + ), + + object_literal: $ => seq( + "object", + optional(seq(":", $._delegation_specifiers)), + $.class_body + ), + + this_expression: $ => choice( + "this", + $._this_at + ), + + super_expression: $ => prec.right(choice( + "super", + seq("super", "<", $._type, ">"), + $._super_at + )), + + if_expression: $ => prec.right(seq( + "if", + "(", field('condition', $._expression), ")", + choice( + field('consequence', $.control_structure_body), + seq( + optional(field('consequence', $.control_structure_body)), + optional(";"), + "else", + choice(field('alternative', $.control_structure_body), ";") + ), + ";" + ) + )), + + when_subject: $ => seq( + "(", + optional(seq( + repeat($.annotation), + "val", + $.variable_declaration, + "=" + )), + $._expression, + ")", + ), + + when_expression: $ => seq( + "when", + optional($.when_subject), + "{", + repeat($.when_entry), + "}" + ), + + when_entry: $ => seq( + choice( + seq($.when_condition, repeat(seq(",", $.when_condition))), + "else" + ), + "->", + $.control_structure_body, + optional($._semi) + ), + + when_condition: $ => choice( + $._expression, + $.range_test, + $.type_test + ), + + range_test: $ => seq($._in_operator, $._expression), + + type_test: $ => seq($._is_operator, $._type), + + try_expression: $ => seq( + "try", + $._block, + choice( + seq(repeat1($.catch_block), optional($.finally_block)), + $.finally_block + ) + ), + + catch_block: $ => seq( + "catch", + "(", + repeat($.annotation), + $.simple_identifier, + ":", + $._type, + ")", + $._block, + ), + + finally_block: $ => seq("finally", $._block), + + jump_expression: $ => choice( + prec.right(PREC.RETURN_OR_THROW, seq("throw", $._expression)), + prec.right(PREC.RETURN_OR_THROW, seq(choice("return", $._return_at), optional($._expression))), + "continue", + $._continue_at, + "break", + $._break_at + ), + + callable_reference: $ => seq( + optional(alias($.simple_identifier, $.type_identifier)), // TODO + "::", + choice($.simple_identifier, "class") + ), + + _assignment_and_operator: $ => choice("+=", "-=", "*=", "/=", "%="), + + _equality_operator: $ => choice("!=", "!==", "==", "==="), + + _comparison_operator: $ => choice("<", ">", "<=", ">="), + + _in_operator: $ => choice("in", "!in"), + + _is_operator: $ => choice("is", "!is"), + + _additive_operator: $ => choice("+", "-"), + + _multiplicative_operator: $ => choice("*", "/", "%"), + + _as_operator: $ => choice("as", "as?"), + + _prefix_unary_operator: $ => choice("++", "--", "-", "+", "!"), + + _postfix_unary_operator: $ => choice("++", "--", "!!"), + + _member_access_operator: $ => choice(".", "::", alias($.safe_nav, '?.')), + + _indexing_suffix: $ => seq( + '[', + $._expression, + repeat(seq(',', $._expression)), + optional(','), + ']' + ), + + _postfix_unary_suffix: $ => choice( + $._postfix_unary_operator, + $.navigation_suffix, + $.indexing_suffix + ), + + _postfix_unary_expression: $ => seq($._primary_expression, repeat($._postfix_unary_suffix)), + + directly_assignable_expression: $ => prec( + PREC.ASSIGNMENT, + choice( + $._postfix_unary_expression, + $.simple_identifier + // TODO + ) + ), + + // ========== + // Modifiers + // ========== + + modifiers: $ => prec.left(repeat1(choice($.annotation, $._modifier))), + + parameter_modifiers: $ => repeat1(choice($.annotation, $.parameter_modifier)), + + _modifier: $ => choice( + $.class_modifier, + $.member_modifier, + $.visibility_modifier, + $.function_modifier, + $.property_modifier, + $.inheritance_modifier, + $.parameter_modifier, + $.platform_modifier + ), + + type_modifiers: $ => repeat1($._type_modifier), + + _type_modifier: $ => choice($.annotation, "suspend"), + + class_modifier: $ => choice( + "sealed", + "annotation", + "data", + "inner", + "value", + ), + + member_modifier: $ => choice( + "override", + "lateinit" + ), + + visibility_modifier: $ => choice( + "public", + "private", + "internal", + "protected" + ), + + variance_modifier: $ => choice( + "in", + "out" + ), + + type_parameter_modifiers: $ => repeat1($._type_parameter_modifier), + + _type_parameter_modifier: $ => choice( + $.reification_modifier, + $.variance_modifier, + $.annotation + ), + + function_modifier: $ => choice( + "tailrec", + "operator", + "infix", + "inline", + "external", + "suspend" + ), + + property_modifier: $ => "const", + + inheritance_modifier: $ => choice( + "abstract", + "final", + "open" + ), + + parameter_modifier: $ => choice( + "vararg", + "noinline", + "crossinline" + ), + + reification_modifier: $ => "reified", + + platform_modifier: $ => choice( + "expect", + "actual" + ), + + // ========== + // Annotations + // ========== + + annotation: $ => choice( + $._single_annotation, + $._multi_annotation + ), + + _single_annotation: $ => seq( + "@", + optional($.use_site_target), + $._unescaped_annotation + ), + + _multi_annotation: $ => seq( + "@", + optional($.use_site_target), + "[", + repeat1($._unescaped_annotation), + "]" + ), + + use_site_target: $ => seq( + choice("field", "property", "get", "set", "receiver", "param", "setparam", "delegate"), + ":" + ), + + _unescaped_annotation: $ => choice( + $.constructor_invocation, + $.user_type + ), + + // ========== + // Identifiers + // ========== + + simple_identifier: $ => choice( + $._lexical_identifier, + "expect", + "data", + "inner", + "value", + "actual", + "set", + "get" + // TODO: More soft keywords + ), + + identifier: $ => sep1($.simple_identifier, "."), + + // Adapted from tree-sitter-java, helps to avoid a conflic with + // wildcard_import node while being compatible with identifier + _import_identifier: $ => choice( + $.simple_identifier, + seq($._import_identifier, ".", $.simple_identifier), + ), + + // ==================== + // Lexical grammar + // ==================== + + + // ========== + // General + // ========== + + line_comment: $ => token(seq('//', /.*/)), + + // ========== + // Separators and operations + // ========== + + + // ========== + // Keywords + // ========== + + _return_at: $ => seq( + "return@", + alias($._lexical_identifier, $.label) + ), + + _continue_at: $ => seq( + "continue@", + alias($._lexical_identifier, $.label) + ), + + _break_at: $ => seq( + "break@", + alias($._lexical_identifier, $.label) + ), + + _this_at: $ => seq( + "this@", + alias($._lexical_identifier, $.type_identifier) + ), + + _super_at: $ => choice( + seq( + "super@", + alias($._lexical_identifier, $.type_identifier) + ), + seq( + "super", + "<", $._type, ">", + token.immediate("@"), + alias($._lexical_identifier, $.type_identifier) + ) + ), + + // ========== + // Literals + // ========== + + real_literal: $ => token(choice( + seq( + choice( + seq(DEC_DIGITS, REAL_EXPONENT), + seq(optional(DEC_DIGITS), ".", DEC_DIGITS, optional(REAL_EXPONENT)) + ), + optional(/[fF]/) + ), + seq(DEC_DIGITS, /[fF]/) + )), + + integer_literal: $ => token(seq(optional(/[1-9]/), DEC_DIGITS)), + + hex_literal: $ => token(seq("0", /[xX]/, HEX_DIGITS)), + + bin_literal: $ => token(seq("0", /[bB]/, BIN_DIGITS)), + + unsigned_literal: $ => seq( + choice($.integer_literal, $.hex_literal, $.bin_literal), + /[uU]L?/ + ), + + long_literal: $ => seq( + choice($.integer_literal, $.hex_literal, $.bin_literal), + "L" + ), + + boolean_literal: $ => choice("true", "false"), + + character_literal: $ => seq( + "'", + choice($.character_escape_seq, /[^\n\r'\\]/), + "'" + ), + + character_escape_seq: $ => choice( + $._uni_character_literal, + $._escaped_identifier + ), + + null_literal: $ => "null", + + // ========== + // Identifiers + // ========== + + _lexical_identifier: $ => choice( + $._alpha_identifier, + $._backtick_identifier, + ), + + _alpha_identifier: $ => /[\p{L}_][\p{L}_\p{Nd}]*/, + + _backtick_identifier: $ => /`[^\r\n`]+`/, + + _uni_character_literal: $ => seq( + "\\u", + /[0-9a-fA-F]{4}/ + ), + + _escaped_identifier: $ => /\\[tbrn'"\\$]/, + + } +}); + +function sep1(rule, separator) { + return seq(rule, repeat(seq(separator, rule))); +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/package-lock.json b/resources/language-metavariables/tree-sitter-kotlin/package-lock.json new file mode 100644 index 000000000..409d9429d --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/package-lock.json @@ -0,0 +1,590 @@ +{ + "name": "tree-sitter-kotlin", + "version": "0.3.9", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-kotlin", + "version": "0.3.9", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "devDependencies": { + "prebuildify": "^6.0.0", + "tree-sitter-cli": "^0.22.6" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.65.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.65.0.tgz", + "integrity": "sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.22.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.6.tgz", + "integrity": "sha512-s7mYOJXi8sIFkt/nLJSqlYZP96VmKTc3BAwIX0rrrlRxWjWuCwixFqwzxWZBQz4R8Hx01iP7z3cT3ih58BUmZQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/tree-sitter/node_modules/node-addon-api": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.1.0.tgz", + "integrity": "sha512-yBY+qqWSv3dWKGODD6OGE6GnTX7Q2r+4+DfpqxHSHh8x0B4EKP9+wVGLS6U/AM1vxSNNmUEuIV5EGhYwPpfOwQ==", + "peer": true, + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + } + }, + "dependencies": { + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node-abi": { + "version": "3.65.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.65.0.tgz", + "integrity": "sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==", + "dev": true, + "requires": { + "semver": "^7.3.5" + } + }, + "node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + }, + "node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==" + }, + "npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, + "tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "peer": true, + "requires": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + }, + "dependencies": { + "node-addon-api": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.1.0.tgz", + "integrity": "sha512-yBY+qqWSv3dWKGODD6OGE6GnTX7Q2r+4+DfpqxHSHh8x0B4EKP9+wVGLS6U/AM1vxSNNmUEuIV5EGhYwPpfOwQ==", + "peer": true + } + } + }, + "tree-sitter-cli": { + "version": "0.22.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.6.tgz", + "integrity": "sha512-s7mYOJXi8sIFkt/nLJSqlYZP96VmKTc3BAwIX0rrrlRxWjWuCwixFqwzxWZBQz4R8Hx01iP7z3cT3ih58BUmZQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + } + } +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/package.json b/resources/language-metavariables/tree-sitter-kotlin/package.json new file mode 100644 index 000000000..0fbab87d9 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/package.json @@ -0,0 +1,67 @@ +{ + "name": "tree-sitter-kotlin", + "version": "0.3.9", + "description": "Tree-sitter grammar for Kotlin", + "main": "bindings/node", + "types": "bindings/node", + "scripts": { + "test": "tree-sitter test", + "install": "node-gyp-build", + "generate": "tree-sitter generate", + "parse": "tree-sitter parse", + "build-wasm": "tree-sitter build --wasm", + "playground": "tree-sitter playground", + "prestart": "npm run build-wasm", + "start": "npm run playground", + "prebuildify": "prebuildify --napi --strip" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/fwcd/tree-sitter-kotlin.git" + }, + "keywords": [ + "tree-sitter", + "kotlin", + "grammar" + ], + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ], + "author": "fwcd", + "license": "MIT", + "gypfile": true, + "bugs": { + "url": "https://github.com/fwcd/tree-sitter-kotlin/issues" + }, + "homepage": "https://github.com/fwcd/tree-sitter-kotlin#readme", + "dependencies": { + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + }, + "devDependencies": { + "tree-sitter-cli": "^0.22.6", + "prebuildify": "^6.0.0" + }, + "tree-sitter": [ + { + "scope": "source.kotlin", + "file-types": [ + "kt", + "kts" + ] + } + ] +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/playground-screenshot.png b/resources/language-metavariables/tree-sitter-kotlin/playground-screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..4d88db75a8e43a5d135e2bdda12085d3582c9835 GIT binary patch literal 324586 zcmeFYWmqK3wk?V`ZjF26ZjC#QH*Sr)ySqcp}e&O<{a^9a92L<3&gRMT~;}oTUfMSO6{oByJxYyU0vW4{ZDP=$(J;6xz3GYigj$=-mYX zY?kwI6LSXxQR`XmqnZ7VHRu8&Fyav;A`I%Q{rjY&R$h;Buty!N4O&$Y>(0txORJ(K zlGnL*1Ti`?ku72al!zoo9Hk2cx%pu??B+i30NG)iEe)9gh@A2O7O}wdF0KtyBh|wL z@DC8u8~^EB8#C0s|NMcJO5kG@C*I|AbE)YJn;PX~sESPW0W^&Qc0zm+0b&PWRzY+_ zgO^`$+N{wr&b#9FwFz~8BQQQ>Eb_a7^Qp%Fu;SUnw9;)K0?vI`z-_|T1pyJfCO*OH zOF7p{49pOdj2TlD)L+XVnnRpP3%-1*jo^iS=;1Rmj`ae z`ec}OcgOZdQqS2tHR!D(+pinZorxV0%196n-@vxHmnwTb#|G&8ielAR`Tg91^g499 ze)T}`7E!kpni zEL}7K^X%k5a`haUxUj$@2t=_4{1t>sbELM5p)?ES!zc^+-QWA7vjmZHi>LdJVeVz5x3|Wm$E_q_M(|_z`4MDyBryJK zs$WOsxu7!(7cEa35HW(}G zL+CCGQkNg^uBF$<6tozm>5MSV_dCcq0Hoz*{5u!1adObAcMd3l+#i}iY}+1> zWMm!^Ga@7*n; zZJ5{)vJPVf-s6?i9;`J)Q%Fy)fs#G}3$GfAQX_$a8qWzUF@P()&EH(WDK{&hTwbzd z%M_LcR~@Y~f=!q^$7`nc*wGQC4OJ`pGH7Y?%RMzzfL;%@KH7HUQ3y;AslGjicbF~A@7R!KTlVzmkY{PxS48vJNcS9M&Z-!KcB8IGn zR)$laT?IR+H=zi9We2l+mv-B444!TF z_xE}Bf9@ykf9#75PsMBzU6Eyz>X1w$3q!9$VE$m)fyfP;mT?t%78MlyCXg$*Ba9+q z=bx9h3p&6tAWKXqpJ6I~PfU&?8G_Jn(m$2J@zeXK^iP#hh*9FvwFFrz%u-t=Fr`%` z(y~4!G9{N%(b8WfW~GHC6Qu#A4kZ>PfD#k48Wu2?HWqCbGZsuUf@!HaVly|hMl)VB zMKgvO=Q;13zG;|Q>{-ZZqdBc&+#HR(;@srI=KSbc1@uFIOz1uF%&#)K}Ix)ST4^*J9T5>+0<5ZclGRZ&PlY z?xpM%94PJGAJJ}iOmR+$Ocjox_d5lZhg*cEN3QvDr?qEz_hBght0tC0r40DR(Wsad?Y(^MA~}@xJjxKtP^DM!~Saj>9s;;J}hYYop_R z%|lkegvBgFcK;TE@(T?Sjs7bEnqbIq=yPa72oJhQ$Y}U$cv2|hh0vAaDrQ}^{#FT= zpp+u5=y}<40Y^YfsB4&O{<8@T9}Gn(Pbfj?R-ApDU|cfkmiUY~wnU*gtE5*VM(kq( zeXRF4p>O#V@uYL4^|Un9XLKGikA--Z8Kvt?tun3BZjdj~FX}IxkbICXfeL~0B3vSH z19$`4WDRji3ULbIvuSl5_6fIi2MpBu)PB^g)b#+!Cy%S{1|RiAvBU!PDz4nY!ow|4Aov^<~R7OtW$fky* z2&b^56H7%($)-l7-lPYnu%>}K2;C_j+R#DJ{h_;5)2F4Qm83PPD5yYGe^8xMZ&zDV ztzI=<*#e_b4zES)tQP+Mx9 zehCQAkZcek-Bhyd_~2YMIS}M!Q?_C$4Me!L#e{k#_B@T!;{B`5g`b%49g2(Sb3lMF(Z~w zVKA@%Q{Q`Vbzn0pKMF4NEE+R(Dgv02lWfb0l6aiD>=pyiz3m+lN(&xE5(?%;bRoYX zFC_Eg$n)9%$;`*e_#zQz_|tpzNeM82$nw}gVm2rC5UnjuQ6yFnO`yo>%m<#hlg$)E z6|a`@!aYWFCf{V}EdMAPWipw+r!X{yx5c&NpiiX2_p~lCJ`xj8;&$q$a$9=$^|n|x zHOriGn|he~S^N0cvI?n&;|I%!SOcVMQt<%;D*VeYULgse+dg=o6-LQqk zD)Ye8Q=F!>_41JN8I_}|R!!WFDu>R}UlmOqQMvR0s1_72gO4J>M6AYOGnWm`W>sgO zPjN$56JI%~d5Ddw`MpJksl6pmn}uU@y;@=GN7i#^8OCK&+^^Tgbv928^|i(K-vF8m zy^C=CF8sMn>r5L04j$JTqZQU^tMv_l+|^D1!9*6Iv#gWOYt+kykc!XTlNQ*Lt5ene z5xO4#3i{#~R17Pd4wVR%9{h;Z$gAkHc%ymr(uWzuK!B8vfE2kL)q&@Po#}e=VE?E* zU4F2{RK2u?hbk5SZ{VpKdmF68IE*#m-kSAvccZ zwg0BdOT)XyT+GhSam54F`(~-<#q|F5p?G%cNA{KH%=2vbe$Bler@q^n#U%Tojq;XJ zw@a03MMO1Jbro>!`CG;LRXiUFWQxMaXygKNST$e!+l3nW;B-CTtw5s7iG0uyf` z_VfgKR)+)$Bmrp%0NKuTaj5U~|II)M{cQE+gqS5ZjFOy%Kqx4Y)StnS3mP;UJcd2WBB~yy8irR(wJNQg zrn3K!-Au#Gc@#5AZ0l6nI+uf}Q4Q)EDo?oz`}jR-eZ$V>D1 zw|doz1c0a5vse)k(m9Y#B&m2}5)1Pzdx2V>MwvRElfqeh-`}v+PULhTbSx-wsSKm6 z)Z)4NrQZWmj)wt85hMc-Pj{sI75+L;%k^qtzi!W=+4FW_uFBMijySwUG*;AUmy+iIFzwm> zV&Z&xtQmg~bE{D1S!PuxRXV+k9jMD^a4&C`Waq3;Z=vn%t-mv>|A!)A$}qdU``9N{ zyR8N9Y2hLL#bqwhcVRMn$eY#r)Y9tWMF%$Y$7C+~^jr!VGpP*0m6-O=6rwP>K?U9d zy`sosk6xmQlt1@LB2lcFRxtsAbAB|@?SUo{E`c_QKHA%%+akHpdaNkSv6y*BPmm!a zq3;+zly*O6wZjxo^BpUtA}Y%8NSElc3w5i+%Q^CtD$XnZR53$|`Gw=uua>-;A(%*m zPB>NSU8Hkywr#ot9!eif;ML*bBK0FWrFo>@$A3%&(DBetR4P@7SgKluIzzWB1ELX0 zqL4DoGbJ_a5J_8J+c{g#Vn}&Xc)m@!RqI{RXS;9x>?Q^__)ZH95k>0uBExc^lJ^bv zb&J`HwTfU4Ireu&q(|vUsd9^ZhwRnJp)R3}$GVI>P_>q#m{o~c&EZGAm=qW%8EH*b zO__0cAN5bHpHYC@aXRrf4L%aUDo`+8wKHp#o<~jGm_8bXpX?xiSG~@5U^Y z`)OzwI#`Kq@hCM_$`?w%ckZ};KmPT45$>{j8jLfDYm(l@N^-^26w*}IV79JedUPq^ zDCP9XQ*u>yO7G@ccVuewL#IE#WGMBW4jf(<38Bkt@K*CZaH3{vICf@?A-n7KBgk0l zymG{Kxqa^I6M43Dq^xYGPKsdPrfe3jdX9F&8|jnUHrzpSw&eG*d>ulsc0i{mnc2c+ z@OJbr?byC67=Ix7Oek~eDb54( z1O`5TC%q8Jo_x{WxQl9=n#T%3-PRuEQN-Tt?(2Y8=unD@AA5joOm+NLqK|ZrfSkg0 zY)m!dua=+v0{i))8~Rzh0v%HN-Tjgyrq9lb6jsE%H1X79-_}S?$eJmAl>8KP zQMww(smZ9mQ|c(sD7iIlIRH%-gjp-pL)$7|Lqz?_gN@^pS{G@o_%G-(VYT3RGd98B z1EA`l?t;)o=?A3-Nyr0>7L5~(y$(w;s4=$a&MLqvAuG4m64nT644ORjvd?t4YYtSe z(DuiV-WCgweOLUHm%!M)o4GI3E~_Q%2zUq>cD(whG`7TgRYsX*|oT5VwbG~aEVwi9m-5FIMN#Xg}?^<65#s}YJ+$GA^W~kF(QFSOgzTV$_ ze;GJ1u}S8k^-^Q=v3>^=;ZzA67YUH0PZpvy{%5Xk%uWAojUY5P-nJf>%Ky~v-d^uNOWE_hNPxlRhW$v&3oQ9*S)^3ZA!a1-5X2Q06n4l}iFkpWiLim( z$@%^riajVhVnC`)YHvJPRaGrbO>4#0lJ1-duMTgE!^Td;cFfM^`u-Z@=H=!JlL%G{ zdJ|(5`4M>r4SiW`y_x<|?X9!F#;{WSMJlKw;~cY<{KYfSRfK`;tC0ly;JdK0 zT_Y-j{KTHR*Q$==$o=s{D#9}SON3$Mgw!ADsT8MFpT_;hx@JDTIfLN3B|CAKa~EUV z8xFa>*G+t(yvH8b3RmxIoV%>2!u#)!4Diob4g4)c`wl7cuF|C6sCizUDzr5f{Z;i3 zzE$;+iDAXvDcqQih^a(D8qyjX9YJK5Oy%I zkHqB$Mmg7AfZIK8`yUp!F`Vffbe~o3`rrXyOsyW5f*(|HUD#wl9+%_RSNNOWqah&# zz*9ikkwKXS(6K;pw-NmXiH9Kua&XomqkA=KAacK9h}#bVZsb56!Et=~zEPquLsJM- z?_%tN$9+8s>iDfGJd!^v*JrBd$m|aP=mmqJ`(D#$*k&lr0i%hajpY-mne@ij>(3~S zBG!)rN7YJY)AMqMd#Z{9l_sjry(;S%e0+0ng4K^jz!b#H#N7BDP(NMUP#;uxQyW=} z>A+#jY}d6*z4y2qyARpH@LY9U4ATNV`lofh!?t_a>KSbeT@sz25{2x9s_>h13_;9D z9BYz6f<}^0;dK6Tj#6$$eq0T|D63+n#Cvd2L{hSIlT4v?z$Wjz2UKN{muNgWv?9uP z?z?=9$fWQ^Pd4i&Bj-Ito+wZm1o~z0$10PJwvAx%OoD|hZ0(QDUwlwqQQlM^7k+4h z1if^*w0bZ*HYAOCWd@W6eY*q{wiJVScs#Vpj#R0vg+vHGEKFWZ0STOmnYNnDn0B{T z9~1s5#4B?;;WkOa$yC_@r`)<9ulg&6(TV=b-YVAfjM{XaRqB8f(HpwLHSmXmpogL` z<1vhBb+4@guhu)yPntjX&a{@y?x4^N^WB3dGz=G~_KyNJ`uqNM2z?ap%I62b^P4V>$;! zcByXIhcBSTe~^f9$cH`0*QJ-GaHS2#F2+oTY{vD5$oom8s6`D#vS!hRZ3OfM%|(nQ ztR)QnUP_n>+ma?yxNeb)w5=Xq=YwT}v?C0yk0Y6-W!A29vOj~x2$N0t{={9DyC7?B zX^L%8{D;7D-eSh)I~JoRI~$uB<5%`>V=C(f-Fz!; z0}N|E#1b-c%%-FKh6nZrYy(k<<7S)lhD;3;W7 z>1i>w^1})!_Bt$ng-3`i2nTZiytv2?3R3d|VtHs~RjFcWWu^T)K9UJ!HNd$WaGt@c z1d>2+mA^S#z5#rBKLCQ-zl_!xxbCfifPm_oDXBWDN=tDW*jUl)8QSO@(YspNei95I zAUv*IpNCdPj(S9{R+iQdT&}#t|LVc@dHh#312NIRx;R?!601tf5eeDY8xgV6v(PgV z^T84k5%Jg?8gnTKi~fE2=NT`tsiUJU7XyQfiwnKWcX}Ip69y(uPEH0!W(HDY3Z(;JGukXQDc!t&E&PrW=O*U= z*7M<8j;BM3GP zTN@5}JWQQIwz9YvzVkP^@&*!OX0RQ-9mGD(dlp|rvgLS!;2#WM5X{3dc^kFM0_7_Y z-25QYVg>5Eb<%1tl>W$?i@|d(qQD4FiN;S);D{`=xky;yJA_5Pg8cR%|)`zb$2f1dT#U_h)vB5!m|* z9dzT6lTAT4b2xY?CV(GLSk+WD{sac8IyC3j z&`7aiC0^Uc%~`a|@`*fPNj!%M8e$Jn$h0bv`uEfzTS9Q~!8Z})@{(>7`sw2F173N| zLfHUIxDO1Cvd4`y!Cg+nR^X?YV}mbTs2Ci_`a4ydNq zV7<@YX4d5MvVYH|wBV-$i*ls!NvE$N{O#V(&+ZDyR@bk2kJR)_jw}z|No+6IIZG&U z07@)2MrZEQBQ`&IyUs0PH9S|gy*DO@d9#m5r`I9;Z{BCurAo5@j?XlIkfC5{!Bj5s zoE;dJ`RAA8nfzzK7BFfiUo78Zsp^4we(6X;XhoBOWP=(|w^HevpBcnfR9`StVQt)N zzG-Y)@_dYAH=7%`mEi8V@kLrsGH1iwWPj{Y;Gm8NWfof9Q?U4Qm`nkUZV?2E|ucDoU+W-y!4j_ z%bF&8=B3AD#>!S>Npy|#)-C7mA}o#6RDx$yzj7YhB25#!HJVR76?`&qxgd@%@uTiw zU_jN%GN}a14YEOvEOIi(m(GG3q``I-Z9l?1P*BlRI^s_ApU?ZvD>xfbUX%fjZW6Jf z;-UEd9%~3fKU|M|&mE{Vzfi=tp>zX2xP?VTb2XZ+>38WlYR8(pwdHci^IKZ5Ov)y6 zrWU-Aul0Alhh0ozbI#KpHhtNgS@ zp$@Ybx1Vn!r`>tM`(G$*04JUuH*)}0>^4kO3b5*sCCDnKMBRy#mu1yfgelDr4yYy+ zv0uItBGZ(`@1Mfi4bXF0y$U7MRnos;yGj} z9A3Aiw9q1JO{`laA8R(fBe#k@Mpn~J6GqzQndrR5BC-|7rAyT|KgU+)ILuJXNml>F zt6#NwF4NYH$z~52S*_(qCYxARM;?fvnhHWtQ&ZR2?TLDJ13gTSSX0U;o^Qt(ZYHX1 zuD8LFi1{|Tnx5uKqmX#z^$1`f*!^CkvRy8hL$y0Sb`H~R7V)LoH(g0aX-01*CT(o{ z5ZLEiZ#Ma4Pc7=1N9P>sH-m>1UeE5-Da7K#3}HPKGo-$Z zfdqt&qco>(T+No!O_$>DdQ%DoCU63G@Ayd4l}HuO-fgzSY7%|b4FDO6@p-;AST|oY zRYMH`2eYgUFASHfYzSA`7@s9MR5v`@Lnwui|(_uib) ze<~)#n*l%G*srMrnPl z?5uw%DWUPHy@qBv0pFj_syA2hv9V9;BkDb!&Z93bom^$WBBgWauaXCwLT@FAC}A>a z2232Z2ZwZ;`|3G;23dC%xm3C^Ia9yaR<0Y{{b77NX%(9(o-m`G#EO=^czJ{(TMy1i zCE2kR%Ull!rZRtRFROs8YP;gUSsy;L&9ymX>2e2%bi6BvHtGWOT&d3F9q+c2xwJYU z>w(N)0yBLAGWfT2^2e+L;5D7;G6R7xL-b-Y-2n2PCz3CJs3(Kz3E7gZrv`kC#;_!0 zV_lzRt9Li~m^bx_{lXJ`ao8EO+R#n~?Z#7>hDSzbhCESFP~5dY?>-$-g`9jH;x_PX zXL;muOE>jpDqc-EPyvER20oig)qM&m!R( zH+3?P^o(jZ?nmQ#`l)DvuQs>ut-mP56wjtqh^&VM*(u^D?CkjlR3(i|9 z2=2@!%d`1}f*qKB75JqnDdJI$p87&Kcx8(WT{xOh`GG80M;<&>sg1=`GF5}4jG=~g z+^PF2$e3=G!lsrQ6)YD6x>NweA^AqQJKF)3Ax@QA?$mjnnJiw9Q-?8SFCPUW_xTJb zGT?S^!1D*-3MHie^F@n~1UsAfviPK=B9n51#PjM`2|D15;-I#2B0@n&CxMPc4in6E zm!(u&f>$jvhe{W|PX-UJ*aIOpy-=g4yu~VKMLLZP`Gs`{$B~|!HwpwGhfuD&;g zwGK1reMe;7uoe|M5~R!RiqrE=G3A3-_dSU-vO}eR1kH|Jd&C>|98Jz12`mYJt4JRwf% zE~QoLo;ZDna<&L}AUpfa<~F|S^!I_cZx1g<->hd?TDD(!t~y|v#Mxxem1;>NgD-YS0wJPqNy ztb?MDRL3>n5OxPMYyg7kY+4~sU%TGdwmyRD>X?TTRx!0*1%q?;Cx$b2I4;*)>${8< zbAETM99*Qa^Ew<&4n*^Rs9K;jj!(AO?cpsYW(mYGw0mkH39DEco$W8eX*G{59$PRE3=F)KDO8{R z?3yk8bCs}JUfso&GhF0ORb5#3%KDScLs*e+Am!hgn{6lxbYm>`VMO%pvCYGBM&##$nP+A*l3n*Ji9(eEVo8(h{*#Nro(`YT z%!)<^9tTD331Rz9I;M7T?zZx{D!l=U^85IctCcrB zHTxS_tZL|Pb|mTn{;AfI*%ceG!HKiXmYuv%D}T-Bt|WB1#U6(ZJyST_LNn83l!YAC z^aO&2<=cDnrUA<3miiu~w9pbItbf9{cU!pqs;_ad@vyga!S)wrZq++tzU^lEcArGvn7N z4XGP-oy4N3Ih~Q0`?d_acuQPlHmb?j(xc_6#6F3M3a($ilVO++&`TzjJ?zi z8ThR3$zr?glp&I&t(RWEDGsIZ<%3uK8yCxO zZg|GsVta({7V=(scAgy^Vbe9+L0Tt#NQ2l9(Wtkdu%1sg@!G$dzu&5NJld1f&S>3t z4D$)u3iZQ|r`AKCG;0U;;bLq{^&?=-imm)QRZgA>o=7yJ$ay%Y?A|IBr%p6%^UMfp zz2JB1nYvm_s*J4sIx^6)zi{eYD2?9uI94$_-8Z$j zgLs)W#N~0PGscB?r!(kY#=AXlv#Q?YnrJPte=aG=i#UyYTiByttD36XdT#@?^0TXJ zS&fX1%`L3p%Urgdd0a+cJS_CSk|I<3wRP!$E%e=z+S+~Ph@1kx;yLeNbTHRNTPVt2 z4RF(p*^TuBws*~87WN`_ovAktRzG_9m3a~rxxCQU4({2!th?xRPSt~*We)bI?+$-0 z9#e~rEaJ~Jf4P2G0`^<3(Q@Cnf4xXh&}n34sRrf zF;Ic?Sucvl2lv~<0VCYgP7Di z;|7LC!?o+~p2>deo!IWo?hder?*j+F(3oF^Rjr^WFK-`7b1|H<4h^}yI#-CJa#PW- z(R6ke-?2>O8@E+FSUT~W0){~bzFz~DDE8VOlXom%=sWmcSUYarh_zdXg6a7!t6o2l zC-b8FR`#J=ZpXMVi2ag81S)%#)YM9+ph_lgzf#C>ESldc1?>sRDy4{l^-AY_8=9)* z1^!f`0Qt=OaAu8V2dRcUwBp#)6L}uaug+e!)UM*lB(Jvvkhn}P9{>&c_)mOJGArAP~0WU2Ta|PZVa%U_n##>ZWh{Z8))TS7d zWfcsR%_2yDR_EXhiKxOM%NkP>NX7|R3uTnE+!Lb|jl4$U+4&%$s zEJs%gP9b(JVTGd=Dl?>lkq8&NT`%sI-)j|5ZU%_tG!l5T96d%AjWXl;jm{6=Yd5r$ zs!6AnAWm<+&8XK(f+75)d@Bk|e3Hgo3V1=D+l?4@ClF9vPZzLTy0oObtN|-OJfBbO z;IVxeR!g~L5W>#q6%8wUZhnq52U4U)9!ysq`!Xii>6w-nWna+urU;+?`C}saxD$cl zH>TctQa{39-9>Yd{Tju^p!mA^zHwLb_HdWtd8AwtXSLi|5Ugj4S)_wxVbT*riqOi8 z$mPSgSx&FRCgyYuVI@K}p0{)=P~Nk-hZ9#NIqk&BnjK7PD~~M4O?9=}2-m#ftWkL} zGBvg2qFH4%K76BBdF<*3;h!YnH8^#d4QVcD`^2+gE9=(f>k8m86Hni`kZbC?9i?gc z{DL>FrBD2fu0FeLf>769NTvcdfog+PFZ5mY+o@fnibaJ(-z+cVOHK~iODD=3d7Us0 zA&IFCXQG0V?JA|TUcxIZu0$zkX(}2isp;GX4Z#m&ntb*96Rc27AczJdV$yR77c#Ja?jC z( zB1aG>Fh+hort^Wy?R;M1Bu3sCQq@*9x{$`fchA{$q&f*ujq*&(lAVsq?)1!JX__zx zy(`XgFI$XmQ)h6kZ7sdL;1Xd`t7-u=8RUiPU`4|3iuKDpr!U6%Sd5oSR*aPz9Vr+s zsk@a>p#gvY(T`qo$%IJu#qZewSa&I4qC+WIG*&83{<#{BSg6hyG4K#b$OzCBy%>xVGgOSu?l zY7`!)|MIfx#$M??56excOz!+`9q6xDq1vg{(|S8il^?# zZG0*td2mYS-o(K%XxN)uq|_kHY>v4%Mz6DUVSirjm!$IW z1M!?+?nriLQ7oF+asac%vhP>JW~W&5o+i-3?r||)kH8yq(&^H&d7^u%EFYRqBWijN zci-g4N~laB7C0@wbs(Ad?}}RFl#cvE16A!-4BQ9}dD}+~t&E+zt`^o;iH$Q$E&>UN_s zjP5rS=T;}Re5!(DKpq!&+Ibj5<5JtEoS(e{ySNsfy3@?ubX1XmRf&b0j!jrb_$8}=D-C-z2*0u7v|Jh$qiuoPn zPaKZE&z(4tT`b<7`X#-C4w>Mz8ab)_TTWgOZ5^MGsp;O%_w)(VpS-M-eTdnj96PvHMWZ7YV$kB$Vga>41U9e=MT%_tH}V)GH7T{Ky$o3CCkgB+z*h%x~sI<}0iCN}|*Bg*xp(BBu+&|MFd7 z3#yjyZ+N=_0t}C^>9=-XBl_7ik@MYMfXzT0@943^KK5)K4% zkfHA$RSlikR|X^KNml-O@7NBF%~n>6fJjRaVC>LIYv@%H{agBk@TYWRFxf`Z=^hAw zy*Iq$zcSobzxIjzmKd8SFWeTf{(MT~zo-8{h#?3XP@DEi)`W>%C+H3{%8dk}|AjyK z%!!mr#h4^KAe4~npPN38NE4uziJ6$FSzBFCu7qkCj zcK(N)PXoBp{0m4-{}+y{!4b@nrSYDi;QfCL{P!s`Da5fU?Emk8|1U>?z#c~$t!M&T za__9KBXwA~oTgr~si4{nUjo*}5kg4`ig4@dCNwN%ojgnmb(p-8=1d6}7=|@%Zx`_u z8#WEKZUrOTF@RB*Tg~r37S?tg@pMfTxg?Wuw6vhODtz19DTxvr$mlMEwupi_^s38M zB=CKceCF9^eY2ggZM_*}5Ndixm6&IBQ+1TGITjl0rn~zjYI7r4U-J8=Wl>%rbnKJg z9zziv24VTYOxb2|z7X=9H>D_2q@e0Bhb2{cp(TlYzUqJM6@HTO0;U0M+zq(o9gp-f z)+doi+`maGs{Tj=Y7BX=x3xl#*(_myd7}H#H%tBat)(l>&cn?L&X3fNKI6171M%>w zk+^%LD9PjHMmVAOGblRh$S&0<{FiGomDO^XW`T^4KfceSwx#5TVd>@ry2^V`iRvVb zg2nL-4!iH`O!G=i>UH#y39*|3hW7?GVeOd^$0SC@@EL461 zmTR^u61gx~tanaJ9lAVsh8`p~(8uxWSJ^=QDa`Is0)CTHNT9Hp4M#O7CIb6sQ#7{jXf zzd2HsTA|m0#REOuBsYU5vU?8=){QEM=>IVRpr|DjenFXBN5)bG88*XN5e*G!1qB7V z_K)T%N~vLBXK37ON;wTCNBQE}Nrr#^G(5UmV#{5h=QB%FLQ00+ zqOzh_I*+P#g*!Bn75h1hMXOeiY+z|WWMl(9`e63c`SZb;6u?q~){)XaFgma}%G{bo zZY8c@R3Kg5)eSL*!O$C(e@SazgU9QRwxsP*Nl-iA<>le}syHK67D2sMA+d<5-sws| zSV*e(y8e=qrEd_+jE#G4)sUdOQ*Sow-Rh#`Q`8v()+m}>3eUYr+iTdGt*zAo&rnp_ zwkJm<(}dta0auS!5V{^yFhXf7;am*ZxOTqB(7g_;a>!*k4WiSQ4}Wd~l3KgX2VdU7hM z8_TS!fLfL+P1X~O7vq|4;*;a6k57ZAM?u)-j@s%k?wwW!nCHo72kKFqh-Q-ZMNO^3 zC=VHYFZ*9F-d^sq7`P6~n9D5di$>qoCkqTaH_D>ze^t%en-r{0es3hv*WB?qUC*gh z!MCKJzryYtpYS(que4DH{=fw!#Ko6cjZQ60-OWoE;?EXgD^xliAdcWeP7pmQChm3; z2{9z|NE)`1IViU_nHSBbSI{xgE|iTM)A=0mSXFr26q>IMBnjzE%qctoq)ymPTXn1! z?eVSr*sOY~t={vb(xWcgf`n)iC*ePVNtFv7>v9{b;$MwglD}>hj!vHH(j{Ka+(x|V ze1@p4HsQ}Y^R|xi?H`_kJYL>19JO3z{J=~k^MvrE?U4?SuQ)xL+$$wLZXJHNUc75H z>a^h2(Z`%s1PuMd3?hQEcq&>&k@u<6S;PtUDYnuhflfP z_}4-u3MWzxr<1}-O6`LeN{wC6me*nxbsgpxW}`Yfc)IbW%Pbuz9Cmm%zQsKxR`wOh z-p#)gBcd!k3P~1^+_2bTOE448wvtWNZGL@h!wygQE@PcaJutDlg?(kUgztQyao2D` zyjp?xjrhCQqCTCCd{z_3&}GHVIo`;Wd{hzb#0tMzXY;43h1K>JNeOms!8Gh=lX*(% zUiz^QA4-!XwO(nL;-j;-NrxlZjXsIeZfrw(Mk6Sd4Ry{Gd9!A+hj9s`0csM4#Q&L(D#5T!&T}@J z+V`%dq|u#?O1&ZM?$2i-Vw}hIWtkQqF03eE_C>zVl#YJCHP>1>nO6fS%T{B`eEY64 zmM0e?f(!89(X&3|azmY)cPk>4m&+NCa8jq_#Ss!M36+L?z7%UL*KV|4XcjqmwGcL} z_`oTzZq6rkf0LCSxn+k`Sky`NOZu)>;e~}_bX6kjs_EKHdPC{!&D=4Fy|R>KWIkZ;!aU3U$3_N*K`cTIIiX~Mr8 zxJ`6Z?czdbdPRQ%?(;GC|2cX5{jh0Ijaf*0BIke<9K>x|pHw$t!ENNf^7&4*xUqe= z%&iY=Svfbc&58YsMj-BP#pnNnI6-e___&s-v2rtQ27u?oi&Nfw%0^>O-ttX!eNFFC zZUL;AvdSLX>~t}YAq_M(Sj50;5%umzaU1}Bl{d@60k3v`jMzU!Hx4K;%No3J_dbGq zlMzO!Y}3Ej2y{=80F!^H2zs*!Ism>tpay7iF6`OKGF3eeg zNA<@SY3xqV)tIG-UelMQ56sX@IgC4sFot-?cXg zb538dnYeAgqA!nF+Jg|%^-69Q%dxIm;Kp6M=@OK125t}SW*J=)ipvZs*5o{JoGxZ? z!M!&F$c!AWex1JHy__J>Ci%~>Q-xuX5suGerN(^GDIE@Pj=k^q9MbRAa@VAAv#5RX zXpCrPRr~4F1I8KAIer;p$J>+)=Mn~9cf{F>bFL=%Qnp4ggP}rwmUPjtr!gIFeXfQ+ z0(pN-#Ke}nVXG0AA(iI)`_!J4M*;dSE%dq}wo|(_5Qs_eYwqYvb7^2jyq#h+qvxB) zf$muEP`q^_51jYM&YvKzC06V7@D&da{h!u+h?SFm6@b7}!V010berV-#+1iHC<;)~ zacPM^{D^M$3*y3Zf~l)4wTt_<2%L!KbY)`5rC9kYA7=2)x9&wZmWO-Y>i-CRYmt2% zt7bX}oq-$B{2EajvCRmj5j9`dK-MdhB^;iAaA*QFi+}zI{0%NB*#aYcYRJR)13||f zgBAvdKmtEK*KMZquiGQ+c-$uF)-e}L2fc3UZT3j2b9D$7HA2oh9?H%ib^O4j%vxD= zu0TSos4oCCit_e9R0^Y(nf@3A#teGN>kZXaO)h<3!$K@GT3>HZz;z91}j!o1I4&u8Sov}mo!jZHsuuu{E( zo{ZsDPP!{ldJ$H*I>BUgZNrJ>yDH{+fHoV6Ia1>{65Xp!6I`j4e3hD z3>Aws&tZW7y5FPJ0B7C;pseKB4i}z{ zx+MFmv0S|M9fQ`3N*dO9H?_TOg}S8+VxFKB$J?1i``tAgZ{VBLD9ighJVkJBxnoxB ze>{h4DnQ^k+EL$m(^(`q37YtoL}oVrbiSy&>?xdFm^3qg-@Wx8Xv%C>XpAUUdNHJ{ zp6-%NQqw4OE>k=(Vy_jE1QwB<4SnVcM(-A#Nr~$DBu=7Pj~l0!Ym-ht#gdYAOt)4f zClO9o?UBOC*-hImP@MP6@l@7SG+ffw{tshs864M=Y>isB&|+q0W@ct)W@cu|k}PIs zwwRfjC5xGvnOS=6nKO6h%{@2b``6vEBf2UpGpll~m9^ipoUa`tFv>!0rTdDp&SSi( zk8YG@oR!kgeQPPRJ0ifm%Ty|6WU{!9x5F%xDDp>HTx)6LbY^*$(I*-ab89Q?Vl|-F zRvzwBTQnMdviaJqXToW`7?M#=r0s_#Wfo`R3$pM9SG6oa3SC&rTY?j^w2}upGu4+| zL6lmHsNY32na4Wan&a42H1E1TwE?Lvt+72+}5pEy;zbhE66<`6S+kL-g^f(A( zQAv4Y7~vut2)jt?nr<^Dd;*RY9HAMg2j)tN@S3m0`?XK5fU?oKF}U!{s{?8N=HX)Q zT?d%os3Kh%8Op7F`{Qt#*vC+Cb3excW(v*WqEndo+TOgigsr`g%&DkQ>D{ zMCa{q*o&hOj#8AuQA`V7cxa7|go?imB4B{AI5C!_&3eO1} zvU^~Qm~^`s&Y85aTI@TK2v-}F8wJ>E5zh~x4h#Fww3qZA9n}JVFJ54(gV+#B|h&nC_n83ll?D_vb4gLAWZW;g{ z9_JlPu>AaAxXeGCE-e`V{*8}iul#Qx{3E*G%ERXqofV!G3~ZtEF(>o)_CbXP zjE^R*(n#>{dkAve|Ddn!ZzY+3Zyy>A!1%P8v`2#e3l;tA>;HoT2%ysHcug|}{U0s> zgkZ+=6<=9dS>v_@OhQ7!ZeCfHxd>wJUs8X-ym=ssaSuhJu#W4nApboKfa3Xw;vvoc zhUx0R7cVCZn2H2ZD#_!!dEp634Y!(fRkk%s@r%@7=9|I-7DyK)cm7XwTMG&}LXD09 zC7P6~H+2mRewt6Z7Hj>7YVC(#>9ClPOV>AFHxIRd5tkIR6+d`+R=xg*-4qA!48qm@ zZUz59+AhDUF+%&t%a0%19T=s7G#WHq*XHT)Ai7k2Gm~8+>;(3^#in#8g}}iXVb)c- zeL4F}P8QIh!ko1MhusDO*B`dk6sewEqL9@d_aa#35#7?Rh5B+;8ZSjr z)TL}1KQndDh1xWI0)a9!U*?qjv7ZNuUE(lt=Ap&k5w}e86hrYi?ndYRcQQ|FJWg#= z3|_Xfz=HDA6=zRZzgKxLe9@xb8Hb59gYS^jO(>WBiV6ZG!laF~J}mNYoANorfeYU` zzfX7BzJmI|!3ug!W`%Hl$hOm&vX){LnCl-AI&cOCy2s)KJ!r3Pr!UjueJXuZ*C+4Y zQ>mz~9@gxSbzObfj~a6Bo3(HD_7uum4p+Z zIbnNe<4FuwE=j+%`K@U2OZeb9Xm5$2T`fG{y480j$7D~rLHT-p$2q=KP~@#iNwBfC zvaq~G$AW|4ZF^zULUwBy_ou!*FgVKSa65fIyt-L+cXKz&lYDPJ%^rNdwe69U><{Z& zQ^GuDp`P*2cC7#r85i6h<;Ck+-bS8=t&<$HH?wTCacmCX|FQ2DyJwW|Fdpni>56$k z{LQiRX`w<%TUOA12(o~zip$?BVA!s$#-MdQq+Iwl*F5c`$pRrJBmQf$TWLtyb@F?l z8r7l-HjkpJ;ECE~gza~z;q|oW46sU<#O=f~h&Eld@Hvn`wc7{H;j*;|qu;%?y+QU{ z&nJw&%_M6)*nzs^@hla>;)$>6gcy%9(nFN4pCGRpnMswvZUD*+PUsIkk~fh<{#S?s z(l#6wutejys6?4v|KK2j7J*&dp6!E7ejnFt=d)SCO?;dd0jI=5JH<1(n7BnCnKG+2 z)?fh{yS&)g#+Pv8Y@Ec{1O}M8&Fn~e1)0R`j}Oo}v8Gab^$b#acBMYGcA$90@|(mp zm3-X+p2tz<0a`W+H{Xo$2d2=h=4ylK!Dp7XU)Jh%*CRG_QtR=@PLd3>a5%`8hVemx zoMTSdgX_0}iU@;7?IHH!3oK0-+?WF_xS9i<)M@}=;z>!OYBV$2I6PTT{{jIiVV;ZI zvu<3W5ro#{4U9((tUR3#C%#B}sJUjgW*fi~3rR|=auvubFresk&r-66hM<$aFH?xG z)Kz>Lv$Br(F5AoC`Rz{S4+h^WD zwnB_A+D99C$0{lYYIL(%3oSQNc$*JWVZ@nn2LV^@0O|wor=N%RfcD}^h9Z^P$?SRnrd9!@G9mx$DSKD6A)m!s_^?(`xigkaQL(gFE zM0LEPstomp|KRc0@!mu_8`lk9b@dJVrp#=u5UHr>R@r%P@04-H?qcnWn0d?SG$hxI z^Fg54i*pKZ=`ohNI?S?!9rV~ZXz)Qt(t;59&Kb%312nyXj zl^YPF_sIU!Wr#8RY@oHI$#DH7JJUl_>1Br`mV@?8o0N!G_$BA`s;H0f*XM%%M0U1N zk=S7j(Yn{?2j}VNLW_cQc&6h%8v)Gqw2Jp&<}LjVHlFFq6^3ZG=5=e9hl~D#80G34 zd=fsQV4J&*=Q(v*?6jKbd_!-1NVP_S$Pg)8hHIH)p;!sjnz3Ezd}%=;?lRC_s%j+) z;~I(I0$Fqy1Y$qr{b)HYja|+H(hi_};j4zbdK+2hTgc?q3^f!Dlb>#-tUTXn^!v3S zA5nnj_<6_CDXhzNdssBBWXZlTy<$?Pa&-VsWc-GaxFR%^EMJGNC_7NNgFNhIO-z7z zX_+A`bZU-U_SdnA?+U>zy7LhT5hp9G7@IZc7WumQ{r)j_hOlsO4?L7lEF!q&P;TF^ zR6K68$rSAF(w!GndlQzhpH$&J-IK0ZvN<7^**!v$t~fib3E0br2)2*2ET3O(ah(WK z&2&3GImlDHyLIo>m;b8=UF!*6Qad|lVTfABR6ra`_}O8M9&Dhzfu%V7bw>=^CW!X{ z%OaR2p~~c_$fqjH_I(l9aRYQqu>DScrGktWWZ`AZW2}*62Y0q_$T+F8Qi$`5(t+r+ zo88HmJL$78Qrf|xH-7El%I zEaZsm(0!sVg3)oTHD3s?^wJUyrO)Mv#OkGADeNI7kdkhH(`~L1#KgD}zJxqKjxYb@ z(tHKe_O*4h~Hz-mw@^jLpgJAaH27Z(8Mv`S>NSF5=<~*MO z8=-6>VK+>FQg27Qk&I#}agdX2G(BonH^!`@;xuNdTh_nxwVX#QpWf)FTiU_VW&hwe zp%Fknh8D>2*d2UVMiag?96Ptt_~&UAAg{=?Kg8u7 z%DZz&z=|=KBn`hF$u`|tkMA(zCgH_~B|*N`pLV@sNF|;iD1_`MHcqeoRe3LpN!q3S zOG?;L76+`EF$(Nv#;zS^ z+jzmh_%rSGE#aDuu3FzPABzYJ%tbI#EtVaFP)9AuT~qS{JKMUHF1`xCPaAx%-j>+0S+&=GH0nG(NAlVMk zQ*fuf2@T^{wJB0`t-4UsF}kT){I$3%_aF%Cr?2vp8vSk7JOf9Hiy6KscUt)u;fx+h zrjycMZ-Qp-(H;>dGcBWe$(E!6*+~-^aOHB0uiJy ztT!5k+kinSU+OT2f`imaX1_i=4W|ZZegqH)x=nohIvI;gFZE;LPF9<(Fe=jSF1w`N zQZ~K+K=D{<@sqgg6BacOl{GoyYofM&^FzH>D9$Rp;ZfW->8*a=F|y8CT4KzEl=YToADZ#4IO#^cd!(kgqGh(<#Ei1dLM z9;&LhIY^ws9Q6)~|$Di#g;IyvrubnBRs+QR-hXhlT@iwl~J!#DD zPjruhL%KQ}X^~jD%m=#D$+r!UDn6=Z zQF(a;%S%0JH=CGcBO5Rp2c9h&2gOG0K}j6snq#!As}d;<yd_3SNl%?`Bz~`afGqGxvG8HO>U1`=s#f+|o2x|n zm>ah0G)-Al9!*F!JT%N$$5;l5y9=y#DXGU$duLQ6PsVpD-W$ubs*o*>Lb6)6ush&} ztj(3MYi#5VXk7RYX!w+L&Aiw775uZFr-AtzjzZnahOwhc31dDhAi%WTyM9coJhp0! zi95VRw7#F#p;g;xVHuS#GdMH8vLk+?(dyMT>LxOe-k>%ZxZ0q^E|bl)AkXq#f>kla zaxgY2?!3pj8q?8N`Z>Jdu2CEAgU(B%R>dBvV_|J<%pd7JQ7fo$xO{>;eIPASIi1a+ zBFU__np_5pH@DQkp>t~aQm3+-X>3Zx{p(y;X}0qW`vIt=@LV@lnNW9y-bJL+MQD&@ z;+}iiWTR`TAge*Dv~hjmiYv3B%(_%6NxF&ECd=8>?Ddq1s&vjF&X|hZ@-^^1=S3&d zGV?Re(dw+Met@CTsfA>JZfTNbXMR7?R(Y2*me=t;@TTKH$-E_h%_$tKLl^s=f?55W zmgK~>UR!=dp>;O#?q=%77#p%}ir{M9ZxdP8R@O=fYVDQ13Fe^(pIQvlg(O*LZt`;IuA5iybZ$#ZHgtAFCs79jEhwvi2|r5=)F^0?IH6tOC5tz;e#n;{yQejr zPud3wuD`hvT)9y%wVrag^Ya^~)VkC&jPYAKz&>rrKwn-lSts9FXUPUtO0)6~#Nl9pLialD)YRdiD^ZeM34`<vl>Y>w8te$FhO+?yg*{IZ=MUk9FM>(@JB!!)tl8mvbXQa_|fiEgF!z@2|Zfef= zW*j&&mEewJa-}|=PJZ!=sQcE?L#q0$B_|^$8wJqyD^H5tX81zE&V5M&;CE&WU-|dV z5LEqHXw~y1HyklsmU!&SC-NNZg^Wh3BzCM~U@=a!*`g8sPaDVOcrQIBB^zRiI=xn5dew&$yV1#;g1I z{f<4Vz&MyudEOt{sC;`&s3TF-vX8T}R`)7Cz^rzuOkCmGuTML9u~ho-r=m8!$6xP# z4=;!5aI*hmJn?(M!Nl0oo%0P>xmfq`%tiBcv|~HagLfZ^tnB$e0t8z z+lJ@YCt5LqHB`y5#*5-jfZTX>?)0339pE&4guJT8;jYx^9I>Q#vOi=TD#5Vib7w_Y z^YOhj4p%w8ViJ;h*U6W1u}*8>-_9s`Vc zLUtN?-r#u@9#HU?x<)nOyb;({tQyXos~^DrX?*#UcGlF{C?BM!Uw^7Pg_M>cU<6WH znF_Zc+P@+e;mPw3pJ)Ck4G5nq+2jOQt*DlkfrWLnQTU3JS<-k}PkL$)oqD;ywJ94h z6u%5hXgh;vu0@&^a0O>JF8i_j1t16$;!`Nv5=k6@J)%sQ3U0) zMG9N}>h|#_?u~M7Nj0f}tAJKARJ=@eyKCiMB!Xgxu*CRhZ+?b#@~zsTgbs@7oke;) zlp#dp8HGR_&*GR2Wupk2b|a1k>UsGHi$RZ|IGXP|7gEx1k?1EnE05>oX79)VC@9#D zAA6*r1|t(i_G75%WM~a&kE>1o_oK>?5nU>?!miOh<;;A>jEf?|^1hxW8DqU{TG^>%O-V3ev)6G*boi;cc@m4TUux|v z`e(2hKK%~_Cg=M#m%jNU*R*Eq!|tc*n8C)jYPa#QA}n;F_bt5h_^uAoTCi{SXy1>O zAbuT-8wEVzyz5oj@AhNl%dxU3Nf$_B%Gt*G^b$Uw*!y)_gvcRBVV|E3&u()4P3IPx zUpixzwDDM4d3nf}qT*|P+~$zAX`8jGBEY}#%q3(OxhwQWe&QZnHVY<*=9=<8298oU zpTzF7F|=CW_E5(<;_b6OBfG@PRy0EN`y`qtl^y1DXTOHj93?% zE`5OmR3`_kZMsifNp`GDYT8YqCeGNXL<6StB|TFlA+LR_#uIK~*u1L0enY70uZs7( z?s}#4x$c=g!ZjS6nB45PKCZ%BY|K|1h_$VO8gV1P_&a*Q}i@GpPF0cvayD!Ck%kf>d#zu_Y0 zCGP_Ib;<8MVf3r8zfVo&=ltg*4hk;Q&fux{*$P}XS^E1ZOGlR{bWn@zw#Bp6dfN?j zMAAATrO~v&wTLp{6Yb>>isetDo&%~IoAg>)V#K6~Q~y}V{i&G9o43#% zsoRXXyiDeBf-uIT=6c2&)Yiek?cpfo6jIGRf@dV3IAr$x{C$)#oFAX5i4>3w8o}@_ zufF?B1-*L#r`n3M^yJ=n2OCNucbK$8vYx8jlRHg3kVzkfk9_5cRO*mlEPrJ&s~f?~tDDWx0n5sGUz2%I$d)es&8>R^$$G|IQ_a> zn$h`1za@!tgvDBBe?Fx-Yg=h}>05&8Uv?-?ZI&0>YMZE)QS_T=;}dwt zIVUev>yiXSgh%%y;4y zRnhD^|0DVPNrrzZn$XsGA7A(%eq}C_FT{aqq|dpoATAC;%Xwaz<(=fWbePaR0W>0_ zCF2NzW=|R%28JIva_kO%YJ`Y4iMEhaJz?#jAbqs@LTfHU3E?)QPCUG$q5<8ZkL6xu ze(^}i_f#EJbi#)~kH$&)g+9NTs-h6HlFQs5y6O!}B+k+#@pfe$)=Bx4ba?u}SyaXS zLWkrg03lKT{KOoQ=A8z?PL6-ZTD)v!s~2N0K|yDoJHj|I$`~(VM4~cyWM~-}s%u%s zgmClYsjj0%(;E0v2{pMWd~&rSpO6Od5GHuiD@0(Rp~5e@LPrjq%KS zPrFxUPdQ0zUt~7;I6~u6iGe~YM@9zS^WI`%)x;9ApNNY40)1V%nNG)R6@QYIA(gaa zj5fs$4Pv2BG{DP_+2!oQK;Ga}Pf5_)IO0~?8qHH8-HFjm@qXj$LF9xmntbA^GafYR}L9Hbojz`3sx4^l5QF1)ac|r zq!^RV;MHELr89{>q5v3D*XNsVvgppm<~vZI=e%Leq1@S!pX_P`*^>c!lFtY8s4;sW zrYLuSJS#C9u&R|OG&U&pP@$qF-S80HZ}}2(*gde$o%c;W%^nD-_j|kkHttxoXcWEs zlSno-biecqslFVYhC5kptHuQVG1JdpRxsIILj{HlS#hU#0Gt_t?4G^bmhH#WRABIQ z&#ZNtS1Eq#wr|0IJ#nwr;mj&U?`=2vt?%BL9Al-^TbHW;q8g}DiyE11>AHfd&_H(k z$VD0f;VYV#X1_hg3PQ*71IcY7Fb)0J4OA%$1GJhB8$m#|rN*TXEb^-$*VYQrJN0#a z0(_0boZX>_CvbpraaZmc=2vN8fIq?fdgIhjO?qEv92DNcHAyGaZoO3zJkY z16XWeuoeX(-AOD1On&jXpa_Z0I3Y>SH4~l$f!&7fiG$vw)-Fq+R~Sq#u_aA?qTKFB=c*>dr!HiS(oispM9 z9$7j(M=6(dG%^wDY7>QAq?J2X+Ely3kF&vv=!xQ87CQ1&-TxaF&gfhjaD9d!3P0X( z;Y0(t2~*s^sA@pEw=VH{dOaX`!&ufjcoQ1J z!JBBxnk;#q2t2jt;w?dz;I)hNsvWNPg{Ym%Z{)5kDHu=s`U`MR-0JP*FawC+bu~+m z|1%54hnRb$6HO(#^55Eib$0gI<1=gX{r<$C+O6VvqPXcx} zZ_mRhGfmqUjHZr|l=Rg+1x0V0xJHqkhVArNUT3+?l@o=LW)OV(fSPutzALw!z3}5B zhew>6o>s(M`$MaKs3(l)16chS8S0eupkLQb`C3*bp(Sx<<#_>14^2M9XH=4AQr5i# zEyOd_#5eL>4a}$`+*L`Dei@gzwpx)X*a!j2kl$ljH7?M%V+gQB&d92`(__om-W5Z- zWIa$twg3>FacR6_g0wVD(EILk7){R(j;k(igp1c2yhp^=dS8V{gqRIhi%5x)}bQ{F$UB4Qm%-|ik+ zhlRKnjcS$JOqM1h1~BQ^2Pkw$teIbw&m61HY6_X_w%+YoR%eMkc6!5vF%MVI;u?*| z2T9xJiF`EU{)?!)3;!FUu5l|e%v-biYCZa@Bta*U6ZcOiMDH3g8Ce;`^R-EOffc0A z?g9yd^d^gUq)2zKZ;as5U3etUh0(N>Pl@r*@(q-XQar=>SeNCiY$uH#A*G!*fI`JV0k=FU zoJU$R;m~sXYXO?dOHO`vYS!&$H6ARS`tDvd(R=8V+!!AtVm;nbP=~geSE}cG*sGtK*E(#RH4sxdAjbNL=3hlK+;7;E91F?N$Zg zh-ODW?z}x)U`^UA~erwBq`{VPK?rfaqZ=M+Eb)#RN{ z+07nTa><(GUGXQU8xy6U4}*KK4%7PUoWpJo$Rb9zy~((r7@uAaWCn~XPcCF)OoQIs zK|4Q&xx7xGCa^Zc+1*eU`#ZsXarvt{ZNEPpRP~*=@ecTvrm>WW6q9qQZoaT_$UI@S zHFkwgJfpW7l3`hdWlBMK{-VUua6n$b=88Hw*t3K-YynYkHQ!QN4 zPVayOd-REV8&?@Cjk@ex#C$j^_gQK~Y;!s5UevwhQ&*16A4#{)jfH5oAI?O( zUj68{71bNg0Yc+&f1=$eRbMzT(c(abIo7|ra6x~O5gmIe=JmUNn>mW7 zX~!>91WyM`*8`zwZLBXVSbxwlDx~zt2UZWmB-eArs6CBcoxlu5Z)L_aGcVPmetx4i zjUm!mNt=@E2$R5l1`|7b%Wk7$B9%ax!7e$ML}pA8`}1~`Zio(Iw$lUjJ>hb~S|$5l zBqMC&oHN(+^1=)^bR+%cJ?mP;?LD3^1HF50MDs5`_JLoADt#W{K%F4a7#m6B>>@#( z6uIC5@$kk4Z)eU=gJHttCWI!tlQOO+fi-!w8 zIM#Mo#~pGD_dg04c%j}QuV(D3_hSak*VRscCQ7@#AM>}u30~-DJQbHEATIhJbMAQ) zEi2eg9^x9@iX$HzIoBHdBt(N5V<>O-!*tI%r=;Yqn05O~gM1ij((A~G^YzAvUcbcf zvt3OWpa*Xq`8PHXqrb@zi2^B(#Tup!tE#mSZ^!-hT?j;!U%hm-SPV$*WBW z+WtQgc;4}89;@;}&(U`%$unw5GUzIV6(>YKN~Y7XA!e52AJ@%J4&Q#oMc!U7%6199 zlI@4q6qYjXHybQ5rnsrndaC4iq3lZ!ozo)Wd7g3*u}sD5jiAyRmanHAw2473wPcAn3A)exd-s31>C#Ho0Lxi4~tCqJ@>z)qbWz~g%hjO98(y)T!v#CvheJ5iN zee#H*)H0G=UYUFO0L~m5Zu)s)@0sf+JYCrK^StS;x2X9A#qO?RH%G)^WU%GPVayHC z`w&yUjQT%Et3{(g!-AjqkmZ1C0fN(yor%<_f z3OnGJ9D1{Mct=)9&-&%u_8FlL7k7)kbVR$p$#Lvh!K=<0wv}XV?XV~!*v}6d6LTML zo2^>YxIgUoG}?79!|zp%Fj3nZxN#!R8)T$6a7Q&!qWjAOzc%fp)6<$>TOvd1*5Gjm zEwNV3h2_zviV75rXrRThJT;H7!D`XkA3&Vf@oNV_R$QhPI@O|8sA9>hNVkE1;uV5v zW{#avVqj#h@N?bmN%e8ZFW9!vm~5blcmAg`t3GB)*nh+~9^BX3qpSFUi=M#~p@>Wl z5XCHCoOn`+nBQsKjpmdV+uH~U@4OEipfshsYq*~leqVtQ>(PYs5hC-9#fc)PiB9rL zV(Wn%%L{Vz^ z+H$ewjSt}omlPW2y3YI{JBUMe%T!@yg5f4?IDoe{;P_gRh~$EBHl2x-jqn&!jc*U; zz#BU|Ya>AOplWE8&```|A0r3h(nN@858BFk)kA1&*Ux#&Q0U|_>Xy+=YhHtMNo`04 zYgQSaeY=f`d15mde9Et^{{o0svc!Umym;i?fvb|XDU1HdxSwkv2ZD~RA6W3eTywXN zY|14^`Pg^W9ZE2b37)mJ&rMR#fBJH68T6G-jjH zo2!a9=n;F;%55GSa5RPxaIUNzFDb~pPLJosLO?tZt78RDJ|ae|Hm)Z~jFXC`VFkPz zUJjv`aJm;}6@pR*#l?z~i<)0ctZisSMf5w%VHiU}kjl~}Lz+q0( zO@2Q~wfNo6%;r{&#EHcDyK819z|B}*X|mrt%s#LT#&eN}2qSeSoPz$c(q?CCluths z#8t(}^Z7IcU+VJHxur$cJx}5c(pau+{)h;tcvSm1ff#!}n3_wowAJB^bDD2W%E|S} zqB{w7WZV{_!hf+3?Vy$EebMM3QF`D==fIIVF?%1}4%o~8he{c;*L7Q7E14Gkh)O2X zhTAUmcHboJBUxEViTIWuVK@91;6b*pSU^$Te4=`bmD=C5g=tR~sf?g80D$3zN*8c$ zy*zbdZUu6j^+f8-NZ>c+=L4=|Pl~`eCKnp@;`3r;1+^?)@48_Qe7-`5Kqd-G!ZP0GmN4(T`h0xt4_dUF%RFct;Eyq3!W2;U=~SAY65wG_Pl zM8fAMnU|HXLjF0SfzR2aq-&nut}?T(;qsDYl53w_-~)K)oqE+EtOM0e2@W|Xk^p9C zTq;V?3 z1BiquNOKibo6YzVb5^+`{^&~yXL~JqR$B`a?u8@=$?}^RBmlqUPacbzs z!9asUe+?|Dy2IF$x}AdvQHLEmOX`ZXMSD0$DaP90rmtQ3gtGJpZmdp5&58&&K^69D zUiV#clI>coR53;RT2r=Hx-S7C=ZZy+x#Y3=rca2r$^t-h1(Ru^ecF3R>*TG`#Y>St zD^VIxas=;>J7bP;16r6f#WF288z!gfF+UJda&vSdP4kD(W5EEk*W)A9Gkv)3tSoKy zjf)-mab0J6PsiZi#Y7YPpT7M?v>Oxr2_2fu#}6O;wluZ`Bt2W4K;W`ZE#rwPOJ+HO zWOl7eha4v)CI&7WEj0zh4_{v?q>1%lEqh>Duk@>g-KemfaCG6vX!L;ZDQq?IrvVw?NYa z_gdsi^8)iljY>$`)?NGtXO}tL{!L_SNOpqXEt{GJMcNrU5In1P4q@8x62fan+d^le zbI2TLn;BS18v03<^}6mMPHn~V`;$}*C^YG0m?iWEkH`1HV9p1(Tj^^IruobP^)Ba%o%EQ2P zZ2yu?Tuh?Sw>@1)XZU7qR#6hfLIJ~z@$7wi(*rHdVt4iJfBf4H7?kYm+7uHXW>DF{ zf8?wm0^O`E`tQO_wTX;mPIJmR^)jWm{hq(5KPUhF)W3q{uSECf>(#knH){~dXIsqE zn6A(3)DH8`zw+QepRVTr5gUXVVoNr~nlF)F+wPr1xGt@ww2`!~>;66)nG{=8u!la) z2KzrT*gOsXlmYc7q8gGs^#A{ByL`B*95NoXp2;&%>Y4opy=FUL+9Fdu?FEkZ_J*~x z+Hr}Q?>g5#J#Obl$?T;=QMuRy%cn819}Ex7?sY-j619_PrMtaJOS)!CT*4+v^Kp ztmK_8!F;8Na{J!jwL>0;rlwuDX2)rB8&@SYs*U%+U`1*q`w}hJF_6maF5ismVX(t; zEQ{n9*Q_R_lBSiWW=$i9Nf|P z!DGM&^fyKC+{G@^8TQIqIU7UOSF{9+YP;PQ)m^RK9&?Yf7DvVS2+|w&XtKF(6SSVA zCKW{pmS#E#0WmDWq2BdC5Gt@Dkjsd2ncPMal@j2c?Xfnsu-UfM%o zO>PyRHzOa9c^S)LJG;nD0o5#gHeCNeS>?DT{F8{f3G8NZc)y{*SEBuulm9Z+4|t$& zOc>Y|QaC&PF-ReSEe&c%z_frY%S%riZ^$PWVyf8kCL%L5T7OK(1iV#1zPSAxsecbs zj8S%fr5K&84|CJY5OIFDn-=Rfxw2LJe(|pRjJA*32aJPJ7@d{)l%*nXPp(Gt> zXj4V+A&Jq=&^RGeWk!E#F40bzS=QdrndvF;PG92}kZu+SFcmr9`=_MP&wEVKEhDRo zqki1U^X?_EP2nHf&``cKpl%1?kw$(>}!|%#@gI6Cr!a)aKSO>>qJY!dxN#oaJEwo$_vap zA~pDP=p#h;WRow!+4si(K?@jQ+bwV4X3_XZ`hA4|$aP!bYd7Ha*HyRSE z={LU0x@#^mG*h+e1B`Nv;KdQp!5NBFm1{1GZXf4G;%YZjW>!6UmIsoss*2_;OLQ5U zg`OUTf^nbMx^Feu=B!fH!IWv^>O%0T(m~uNU%mugF#krc+KR3;WZt?4`81}#b#kwusD9vxC(;j&6m{l>2)r3?BM=^@V;=k^@&0 zDp~QekO+w-D^)(j4hfv$ps2pWuQiSv&a=%S1*1$yD{x8B9<^17egC;5X|uNMi=WfZQ={=^9$KAj%4bc9-* z>;Sfy_CNVa5Xv4a-NoIHW~>TNPfrHCelZ z-{j?)ioxGhvasP9v-&FM#@M*5zC|ft_8?w%1lHMm+F6-mY>X8PC2s;7y$Sp22X6|z z)P4(@5AHy$3lxt>Ramh%3q5k6?Q(GYHrf9D z#TaYVo;B{W3$e}IM@?)_wwec7Zc3>Q_aL+PnelQr)ODt&L19M9vjqqjmz~MyyNEQceCcBhaXYk(f;|{OpZpk~0;n-!ezMCAbwpeH5fJ%Aub#}qvLQOp` zTF@0-3D@|D0F?*i@MPL0bAHIpIqLO6oB|go_16j|tslzsPU{Ms+^C!hh4#<0^<7X{ zU0ZHGskdp%^Fv_4i<$mlMP3T{+wdm4+U_41GZfgjMjKZqd9VJ#%`I}80wX!3v)S=* zJkVt$-y7&%ePO?q#$$1%0ghtLq2Oxk8XZ*w^N`uQw+Aq2UxW1DVDsTVyk*Dq`r~rl zX!3wH1_Y|O)wrlLi|T}bz&qIde#Wf#;|IrhB>V8*#{#ovpj$29-%@GUS@Fli_z~%D zMXWLySyPdb9EA}QQ#Zkj0=biS*0~}MLiULjopMK-i;{x*A3HSK5jfPqFVY|Lvc?3> z2cl@~1Xzx`n^Dd7xhMnQM!w-wV7&}4|Nd$Wfy7JhfR;yys`oNC5<;3jeDCXtH7g1t zhq1FaUEXsy!a)E2YF&`R8+R@m8tIb8V%KJe&oC_wt0=WM7aC`~` zrU!YNyyU0RCk#BzO<3SeSNGL*$ama8@n7lZ;T53!E$$&3ZctTK356CTNEOXD6J`>k zg&^zd37vvp$u^H4U2|?IZokJC${KeGDuOc_(vw@D#kixD*q28!ys;p)>6N+2?T-l9hKG(Ygp-c`C$NhR3T?>z_tyRSmc z$EnA(SCC zvc;*K3-fn;mCNilezD}@PQi>g7e}Ns-2XO}L}O3)aQ}-> zGVLKh@M+f5l%9!g7^|dXAr#)xCveVvcig^n!<<4pxP_KHR@HgQQgO;FG#w-wjtfgR zsgQan(Jb`9^Uv|)hfudEj&!NwC*LtI<@8$thP5-PT;nZn^IpwyHoW90UizN3!H7>I z5TPy64)5Y#5O+dPWTgC4h%80oxSohGwAQ}pxfr2y`rk>PwfA5{Jg{TgL`}8-59FOl*PY+c~Nj{ z0J$`w5}xr@^`KE70`&p4w}_LG?S#tB=OZB}B!%Hbja)51Q{iVq9_L|uBPca}qn_Ry zXM{)0&x2#8`C2!_+aE0YeY@Mnkap%|X-`+*I%-HAwPwDDwxGSc}5<^BqgmQ z28zKonow|+O)BFBiHGY7AMg$i0^_H&`nFvbMUyr9UIj~f1xM)w`}LAb2+4gh);h5f zMe+VcghQ7}!Zj#^_d_0sY)$)jX+0aw+bCg!*XfF@=oH93oF6W;USPP_P-eDrc?U+& z8m&@l>NlLLvl+ZV#F<_;4uBWtWJ|tE5XodkM@QC?ipqNP{eIaUGU|V2&MM?H0rKp+ z`;OkRT?XT&;f!I*%W3(MS^0^CTIKQPzgMooa&5vk&RIB%ah87^gNS1F%RB&EEc2i{ zeI&;}j;^A_lKzoT(MDBM)}FD)}Y%BXncN zP8rMUGcw5P4ULmD&I8RbBXtQHlq{rmEJl<5QfN=tAxW?&CA<(`W**mmzDOUAwPh>cv zSyJYHAx`>LUecA1%)3!_LnYhi0J^<59kB3wNgGSYviUTQIB)!=qd!DPxSudI~J>p2vVq?{KP zeqrqBz3K~`E*^V=4vS{V4bSR$bx^oQ$b8mt4&@3H+0wr;;aKy)HpEQ{{@FhS&p3$d zTmZ79xyWBa<(zDViUFV93R#hK%!BW$4^zOU?He`7qHV_3ig_BxAUENbq;(>aD(0iA z+NN&8xxFdVoC46{PSNW-|ApHzp`0o-2nc7%p{`Dbr_`54prEPLFMhqxq$xBEC#%V? z$c&=iug6`FkdH3UgLV2pvAah>kGcbVK$~WT%4`*4q%sJSZ2t=LD_!3a9Wo0?n!yiW z6(;!Pl<&ruR==*-;qr5*sS0H|4G$`MdIAcTa+mZ!5|eQHDZ}$#h^kCURGUw#UC#wW ze9dY93%w($>UeYRhbw&iY+YL`@<^Ix9OSmCbUG!URFC+uWVjtIG;s2TQl9vE>jvuCaT8ZA@Emu&(Br{PMy=k{%ATQ%K;_T)g;^pLcm4w2 zVq)+Ldow-)Hi0>XUUzzMdy=(3+oj2OI;FA*5|kQJjlow;_+wM?_KWK8fDw_H2X9w2 z@B;@%$SO-!$kz2FND(E{8w5EKB!GqGL*-U;n}%H*4oj{0|G;6f zR;e-VxkANnc$4LZVG!S(J7Tg)juT>%2=|Oh!kqyMsM74&n|lH75hH-+a+#L9%U^;S z)H@xTrj~fbA8SOwxQN`ZUYRmg$K8L0MZ<2vgi8JV|0C<1!XxY2Zrz=vW81cE+qP|+ zosMnWw$VvCwr$%scJ=$=|M%V}by5eb>blmNYtAw5F`j1RQ6jYZ7K*@g634ppz((%8 z=DENOP4?KaS#*~ISFj`<8^vg6Du$LHQhlqHeX_t$Aq#De0?lRZV!h4fK;;#6)~k$> zx0a>Bubu>1ub5{-9&5LO#&ugGL6tW1OO=JXAnO?vGj}ZWjFHb|D|}&JYyF)DAiAJ zC~>yg=TdHElKIFL$;S^)lFX%s4Qf(P#UoZ*B0 z+oD^}io&{jZ>6BV*$t7?3@I8TIZUneYonL+0XJBsm-(Zt$c@Y>nvJB5n!CWP%)x}D z=-`BE`y!{2$J99oUaY(H0A2Di<2`%uAChP8PCzMKv<^;18BNLnRTC>hs~TnO1ePEq zYG`gWkk>^b0>A68CbIqwWLt|!spWcPlW+%yk+HMxB6s?tyVS(a9I+8c(8s4LSG*u3 zyvg9#uGH-DA=wlvrIq9WSfaO3nS2{nmTf49U`Uq`xw@e@IrT_^fNYSwKC}G33PYc8 z$#XZbVj!bQ!}Q7ubs`1~_RH>sG*#n*8n{NjfZu3wkF1GIQ0yN9xl&>y#Wk@Xg0F~s zW4tiz^-K+c_l?v$-!Ssl!Q4!s1jU?)7D(2fr=?IOE6RiFZ8!vb#3qQlWblV{%Ds~1 zMQ@5;DksnLs9+@5leQFSF@|q>OVQ>%%S-BoJHp1Cs3n4Gn+9amfVyx7-XhO9$!n9#ZwwwB@rx7Fi1xNi2zroccjJw zX=!tHdLhBV4fF2@!aca#ZERXtP874Ht|VHwqSzr}^*5c{tEK?2IBhMN{Z@b~{uQz( ztEAjP*O)`5QpF`Q=fb3kRg}ro%ZRiQW3gAx9hd4_fcn-hDTO{G^MYrt+*N|Ib$rC$ z0C4Bm0%jQ7Tejj#S$_G2o}#_aR)@?d?3#JKib}cj>_$yfm=85PM;>Df8%KQckFFWj z9>CM6Y378yC?MYKzBh6spL-zHTzo-OmCT0YhywKozK>>ugzkvm4(@i!j$qM@u3nVM zw$pHVkGluDhA0g>GoR`Wxi2!#8HxzB7aPXz(Nb=D{a{M7q8m_i#pWNqP)Jr0?N5yU zJh4x0`-msHUZ8_D7#pz#*@T78OYJ;CIrilJW_Lk?BoPH9RV?|luPodL-BAs}@Djp> zxYjJQfwdqJkgXI}90{~}aQ7+O$K?LVX?pJE12r*YHIOOX&+j-~vM6o!VKnO55y*pP_I`Q;7&WW=;r|6+@h{u>DS)uf!M0fS8orq=k^A zdP09M5LW6uUZ)l-ak22OkKS%MoP?&gw;n`0Y>uJFK(C#zkx`%9M_djjbzlJwJ!2^5 zNV|^(39t8ot$L8v&o~f86mhRCmmU3Y<-IEl{P~CE9tlV={&?$IQaYw)?MoUl;eB=A zZhwixRTkX#la^vpom>qhI5BRPuF0{=Zg(tw3dpqI2hDoS{nL&3x?0gt;4zSsbYJDqu|||_F`KJIW!`T>yjg{l-03$k&x1!sO3Qf#6~X zpSk(OvF~+-nUi%dU$1BPm~>E$8U}mOardsilKINUY}LQ?*C@g0BO*9j3Ha|rJ7%cI zO^19|s5y8ljT7icRYg=86c*JYu}0nPI$fiPf9gdxzm^E}jU=@0^5M=E$iz4ScfDuE z5Br9Lkw*1B*pgCxvp4{|UgILgSN1Lh6biWHA-KCDX+6%fs+ZLA?464DI``940T<}e zi>B5GiW0cVQE;+cJm)uIsbP)Q^4g&Q6_?dHW*Vo)MFeILOv`@&`{z64zEcPb%P~m6 zx9G@7&g&50PJo$!JLQ(LOq7ri5pmK8NjQ?N{xJ`VM#$=FM6lDtiCKMMqQLMP9mzyY z(j^8G!xS{A^sUw~9ye+c(m69X;Ru6X$eixjE1i%g3o)W-n!8{+(vJ*}Y(x`d-=}6O z`d^#kbwu#zAj8w$CUQ;qU%$?l9C-8tpTCb|wVz=^B5<3OK`F>>CtND_-@2)wp?mBp zga5p-<-t86{i*ter{BsZoNf}RA12t1cy|M{34tA@*QFX7q# z^V}C87WruF;Kz6lpE@@^0f7Mbjvd4jqqqa`E3D;|ZM!$767xJJy;BCaG7328k^pzI zec-PEHAk@#Ppp!`k$@q;-#W0RZojZFb3;y)(@60YAe$N0XR)n^_QhA$kb z6(w9bf;AK+dR7Mfe3o3`e*g6W;UwDri;;WOWktE5nwEuAMNPt&W)dlEk3QhLz|PKY zN_BUs@cx+J^Nz#t$|JP>JBx7_i6e3SXok>I7)|QCezCi@e9b^Z{*fy9{+PL{>#c?M z)D*vaTW4 zmnFLVkB#e=*wPUub%xXM5~K}NWuc|Y9#N|;XSByKgRUmRC2)g#UHO*Q;3KVkpXX=t=i!}WQX*vk(z4{b!zdL}ki7ys)s?QQGQDN={@E!9aN+ZgmuR^g z^}kA~KH)Z2bg^yTW58EZYZ^Kq(g);|Dn!bL12co6M0$#p_{s;dp@dS0F!jhRdKig@ zCt>n?YABIL`aVdQQRs!4O+{lY7@~(!be#SQF_oEI6+2rt0)F}~^%~%17TGc5nEmV% zxgTXq#?wx&WiK2n)}8@QC$iEnppu+JQwXo%=K2#NPI=WqU4gL5;gYd$AbD8J=CFYA zEIXDqF*S5L%$$3u-)^9mSn)Pf2a&eYT6EZAk}NxARcwArBtt?tXprNz-^|2TOM@|q zMyA{?kZW&rnxO#~%pj{m?S^h!+XhQJ+@c4=geZnAoAy`a=mRt7~fxPaAGtMeo5EVW}N^ z6ySg&36eRBNGT7*BmP_{G2#-*xF;knUAEX(D9?<}Et3dIi&_?1WGz(Xg2hpC8uI6m55SwK~EhzB?O)pPU|R$-Ul5ZMI2e8k}{Y5!#;C-XH1-= zD=}{Q1dx z9yhvZbNC-(!H}(4oV!Ly%6-;E(pk0ol%;F`Se9sa2 z*A(4JC^wKW?}`+oGgTQN2q4@x?;GOKZ8_P_P$3XN9t0e(HkhlB_o+-W`SJx0F-M5Kl(}kqr3Yv5TmX^EJLvg-$li8T zhlx$G5|wb#I5?32)k(ePMDv;$&&%Gz{4*SBlq&UO-+NilF}ND^e6;a?_aiAM(hXni4Xb>`KcQ*l)N~y!J{AAz0uULw zl61%|#|0R7TZ+~GKV1;A)Be2+dyV{sN7Kp(5hw7~Tb$WcYEB|J@Ezk_Vv6hffn7{8Y{QgbH0)c_3aXa{@${z5Bx5_jWOl<0k7-X;riD|y`zMHV6k zLjXPCkV9;1qSrw!pwxo$nb(JKCr zU}~p3`-tA?TxfZz*ZZ^z=;V|6WWsq$o>@Js_4{vHd*Hb-K5!$lsqXv%4)c1lt-`x0 zn5@XcEIgy5yBqX}y$Sg=WmaZ`tS|d<^;!tBDV%|Pjs%1ZpMK}&FD$Jldmp84~8mN@NCw=cDgzJ-e4!P-vL%`?gp2dG3k-y*G|M1J;aFNaQ zlv7&6@vXMt-`%E2)$+k8Q?f9K!tMD6BO~|ZB#5D(TlT;ik1d!D-G~ZdZMG!kk!Duc zWF#6x$Q?=^i4ht7M|%(x3uoh`m}q0ze6N2j-@pnRRqumt-jtJ6Jh^yN%EhUOQ0i!@ zAbQfp3SVf>(3%ty*g*wTEk7$8sbo=M11M`g%A>^GTmak5#f@^=*&mfB49XLAtO7Y! zY*PqoUHt(!0F<%`7shUK5Q^M6GUt$eS5S$bK_INb$r??I0cED7svJ8YcuGVz3Dc_h zq>jUsd{bB5K>KEiIIbf&eR8kgS5EX%JU`riwyStvccZ;Gie|e&QOL&@Y>@YvwtNB1 zMwQ;0Lc^~vq9#xG53oXcCpxkK)GNGAujJv3tUD}ZmR~*W_q#BXPMY%VHNf9B zcmW38TlkPkPSla?$Ye+V-Xla$%>IqR7(D#rLN~4^j>M8rA(Y){^BW~s@Xrjn)kN#K z1O1v4bAoKrv;eRnd?GWZO_CDyh_b$4!5Pw8q$Mo5NxU~t(AriW)g3oDH3Gma_gMf91_p*(a>AJ*b|<@pw^jb zmemv^JIP=RY^S)Eb=t88!VS+WnBJ=Rm*mMuV)8t>t_K;KC@Qq*`*=*4F#A1EYPon| z1B?*k;zTY`@fUcE-W;4V*vl)gLKRviC$m2N>)a zpvzt?G9B9+PG!W}cnUDiMrIOKV|LyZG$_u-zD>_;QUER&$mbzClRi1iQS6ii7aT9m$u+ajz33tF*rWu;ua7LiYP^Wp1eFVV+J8*8&d&uydJF zeUj!M3WS`jb@a#NRtUPmA3L8#^~tjE907|X8@yjNk^648SR7g%#L#5sP}<(_Ur)y* zIxi&mxMc>p&T-3KSLm8_dcAcmDMlCXYBR>zdJ7$Cfhn~=QmTCetWu`*ADnY9wM%A} z=luC(^uoiqrnWQestcN2;Uw~dxVWj)WMB|Go z7)*Y0CSPy`T%Ik7f6{uld$R7{MJrLlg!{5$j&ShL#3`|Vy^yH~E3rfWpyX{~5n~S! z@Pcu7AH&V$@RgYVaFk`-WWXE==4*_vrS7fm%bTQu_96lxfp~4h=N)0b(|p*}KZ&!agk-t`2s4=n=YlKXzDerD_TiXcpDA2bA5DlGcwsUtd$%j$K7(JkwSW@=f;rjx)=jZ z^P7Q940Zr&Zl|VszAEIJSJ;^~i?n>Etaa{~fyr}KJ8o=tre0w3{!FN@b8;7wZ73G= zn&ctEz>kzD5$`Aeyjse{;52_=46`TpEOWcsVP%MQ-<36YzGqco0CcoVgQWR17n@y> zT%TpVpw0M(oz-~r=%m{}yWL-8;Ln>Bw;2`eIv+o5Gw6Tp^>UMdnt_B1d*dhoU3?>v zzXw^jlfvu^B3e$pV>1U1vvyuDcz#N9s_YU^x8$H-8<$3v%#k1BKIE#O4*nP@y^C>? zJS}~9;x?Sk3Dgu9xhi8`t79-nmUQ%L8_g}Vcz)yx;s>x#^!GiC%JE!Z&Tw2Ar~9@Y zwT7S5*xY$QPztzxNzA1$(za|VpPdnM95r{CD#)@x}&mC3zLfgDFFDt=C2i$T~LYJ=lOlS$2? zo=A3vg&+%f`dA)}(KTBdS?wE!uMfb~xu9sko13Z1r_YVXC;t&yD^j{p3 z?>6CgV(!Mo{+wUY4_c?@&j;kttGHU8_$o4j=vJd0jKOhUAi(e#Eo2w;_tg4lWsXe0%_ET; z+EYy~fsg|Y-ICkVa0@_A!2zsQ-~Fu8>B{B}SVfDvZ|-h>kH5I$dA}F^pnA8-L6Qkq z=59YHS4GJYdulpsbuJFwcOmL__eFmgo?E`V#O)W0>V6s_bgbvbfx7&XV-BT7Ab7s< z?U1W5;|Ut(Iu_blK<&t=Lzeiu2%8BQ*GefPZ!iM`j;V?q0-B5C=Ho4yIM3Pjlh_+3 zM+$NvGKzKG7Q(LnuaOu9fCyENT;62ahXK|t%G*Y{wQ zlVB0@gUVaDCVC|_4Id+|^6qzERFMm-$&_Yvflp_9QvOw~h0^neXw|rXU{tHstC(ka zPxESV!^fs3fni+H8#dQdyo1FBwddrs(cr2O|0ZE2rA=d@fmfq{`mHgH<*BA8OVib) z7asmjPTm}O)y4dfHG>J9&w;f{Egz%zf}dQ4?B2PV*~Fi@hn(GA6{6@zj8}JSTi82T zB;$Mi`uG*u5AWrtD*57*@-xHWIm%g$QWYe)coW((5;Z&r76^KPHO!E8GN9^#nX=w4 z`XGoaH~Pu$!J?hM9@W4C_~3S9$NK3x!g{ann9RDB}{VGyGhKP zP18=hXb^9`S8XO13EABm1eWetXC~;@<%Mr@1`C`ud)uDqHx43t$o+*QWr1vpx4u0X zD!d_6V7QdcUZ`rzJSpIDDgXAkgC?sq{@`MiF*jXqTfi012kwMG6)2?KU?Jn#2&$po zU>+3CGV^R(Es(t80lhGm0~V}S-uP$3P+;>(p(p;kl@NEQr4stU^&qkl4D*MYufRPT zO7r$r2jM!|eI7=i^Eqb)o|UUplX)Erl&3Y7Ss$$>pSV%{nyMQj_`)k;lM`0KIBSz~ z)f4yBy6ZU4)s_wC($ggk&#+HcJ z#yH#7S%dj1DeOM!pWFenl>@6)2m2bLQ^(b$$TdF6+)MHFc8=h2EPDRonYGoS>LA_&C3baVF3~Mz4J}2|HBX@~heqNYa=;#mV^%6ceMC zA8(fski7UVzg#?O2F(ceif8Vq&}x`EoMD!ewLxA^*$u5uebJfhU|?~n2Ve(a?`j(F z@pUzfE4;R(@*giwdtZuC6@IM!-^Ry*y$*LW+@(ka6OZSXQ()Mb^F67+EzAASG{&<-0j5_FbsdY4ymhwL8s zYlGf!BPs?Ww>9R(Y7vxD;PHU|c!{Sbuu}?erAsIQCsDC6#qe*|kT)h3f1#k^Vfi5v zb<@$TDsJGw7+z71BFUCII}$i+S~abqM?rqu(BA=(_9A#vjVPd?OgQg)OmnMq(MG8? z4M{R)LaaqfY)6hj$v4b&mTK6`uS2(ABEd;gcmVE^He!h5G+K3f)aczQFUN?%3$67i zHC28WBavuBa@?k8wwCp*cCP!wz@=I{)~5V2uC}WD*Qq6S zMl*Cl2WEL*m#%n8*Wj!CW-~W|#<`m#ffd#R3l#+->58C@4DSPumUUwkB-OY{BOMy@ z!(v+%2*+|2T3v#((NX|4ftERQkEmvA|AdM!)1%9cCW9UvgrG!cUC)L#)a6>@>smIp z)W%7=;d7C7gZ30`xs<}-8NaNJiFHEY!EDobHB6A=tlWk+LE#vUO)v?EKTD!4R%w#cFEI&}J|cUnfoWu}!1Nxq)+7W5=qR zb}Ux9?7jVSuI_dM*`^|zQ@c><#j-<&l+m*Yy2C^DwEnl(P6Gpfd@!*}&wsNUrIk&i zyqFly=J67&nCGa*xzXqp23tu0y3z+_Ig_yGUvWpOil9xo;`*&|-;WA3^V;e(hnc#}k5YB@qYVG$w;#;? zkKaCTPMixy6(vQS20w}({VMAjX6C{KGkE+XxrqX%n=+m2N9PN7AmSKS?VjY?04HuK zGt^0-(P*`2F~ttyLj`sn-*J#B=6VBIU8sylk-dHjpgug5xj+;15f(OcPq%VAbnMV+Ry-=CuGad{NJN?rE+E9B1bpD*XD%kl=Q?eWmb z3BCCz?Pc&GWrgWVFGXaSeVq_O$hjB{6eXp7trowx>7AOW%K5eHbqx7JApq+ zt*g|px{^24#?irP?TtzXa>+g-(bMy}H{-o~Gn*==`~k_~3-r}b6e&Em<<{URoL5a? zo`pgN$Oqq&`LvQBL^C z>b^ZrRIz0L$~^KQT*u{=X|bycZ%X53lF}8|3}+O}yYFpK?(8Pjc)GK!crm9bSGsKb z5e^K^0D6BB2BK~nM)bgkjx2&g2J}=fYcp$D>=f|ZTq)Q$g zWnZDU1MdB$i{Ef}7nCWp50jKb)QQhjIj+Z288}DfC14sYZ}Z3*FU-Zlj3MPZZ>mg% zum@sghq?zW%WRBMXE6A?5=Oek`xc)QA4c<7AV>PaG`RTvoqLu??p_rs%6d^$oQ$O< z+SS@TpUy>;NXyfd)uTjyrR@i*9n~x42(*mJ1*$}rO1v2k({rOwH#GT4{*qV-x?Hx* z#bV7iby}F>2u0 zY)&EBC>6H^f=O>tjeW-73+R#%X)Ot2R%0SX?`0n4;S=|$mT}*jJ|XT zM~!>*h?ltXmh|kmbX;^HtMW7ZADO)s5JPLQd!Y2bL771QJSBR6co)0x8tg53zP`_T z);Q0aHPHJyyHA|^b#|{;LZ+HEtw6{FYqT|^XXX?RTvdkaFeL8TpKZt?>`4FuvZl(R z51vI2riuE_NdFY~HqHPTQ7j3X#Bai6(Fr9fdD(7F8e>V45vb5iSsxx27AT7a!FGVSbNIiR0r(wKBFrLmuign6tA6)0-$zT0 z9H%Zi15QKrT9UB8$UwAULG14mHeIXHMl%x^+ZPXF~fN%$=Oiyjy! zo8SU{qdkITYwurwWCK34Qev3b_HQ)m8ChuBE|-Bh<`v7wtJg6VNp1|j@m>WPvN5eB zS4ovbm}?lrE-vzWI46wV*}*_!h^|JfV=KYyF0i`fcgB~xESAyPL6sRZr;F|>_kxn& z>cZIT{ct!>3ZZ|>h4G=L^(`xQBqoKZ%0_02BY03_E9QlArojf(0dSGZiYT|zNZ7D# zT%Z!u_*riT4C9|}ZBT?w7gCN>kxBq%zCUe$lDzT$PLMQEuFM3NS+4u-70M9M@RoAI zy!BTK-NFO`gp>Z}FGYN^yU8|+boH7yMEu?pi9iJNZ>sAtBf+@b`_08DUU9{^Ww}5e zWd_9v?3sVQXcC~tKd*_cMZb6}=ZjR*IW#2hx=#(YigI5&Aun=Ent%~G*7Hy$e|O_k z3O?j`jDTTRO&a=pN$l@x;Lxrv^;1XhMA!Rt*}Y0~G{U<`H?4NWY2>yU{_ZWJq+CEE zL>vac!x6|&g?j}_2I|!0A77pFisnjp2^wANQxrWzDd%b_?eNlR8@Js@DjF4o5h*In z2#L8NnI|A5{``zeHoqYB->02V{DhG33PT`|PUa$U+@>WAQ=Y+k9eBJWOe+pko>d3$ z?Ar|DaJEk$W@Qm3Ua@y(TO=`o-^sZ-Sk46W>Fca0&}467T6IW(HzECZgs`jEL38M z%bT7@Gr06$La_f*B1Aa3`n*OI*V4oZ5fvdIx~A74gKg3sS_V5r&^X=;#n_8!p9MMx z%nk@_`1*%TFr+_=Lw{e(v7)|dG?PIsKd&c&LJ5<_i)V5w`ala->^#vM0T zvZdAmk3z1{xfP{0qicP%>#5g#bBcP)&9T2^5a^s0rGKoV^q?q4O`;3B6CZmu+~R-UMu`v1x5tehcnR+Ew7n8 zGf)M|dK5h!RwSRr-ZyvEdoLKANn!^t@98_`>TAp>8#7nfP_8-kx5z&^12-hEn@92)3GMQMiE_sM5nCec|>A#XJ}eO(S-* ze_;!6LBzPi%;(DCU&IDvQl#~AVQ&Knmyvj5(mlehCTmR^j;3Amc05&6!v4~?4ScoP z*(Oqk7BgGIsFK1Zq*>!yRQXDK%0>IkP#SHS&J7e9?a45_vKvt(yku`>PLpfn^A<%_ z%rql{Ag2(vxDRX|-yIyqogPHIlgUAngz6>Fta@BB>Mi_HL~$9A4k6MYdx9s&4Kf%I zm6iCUQ7IEmc9G>)f*JEXW8!MUo*T|bx>oMn&k2zvexI?rglO&IBFSOS1?=0>H+Q0d ziR_6%5?FcE#|q9pA-^zBOooGW@wKOEb}%lnyU@uHqMO}B-?JK65gO2-T!oRoQ)`{^ z9-V(KSc^brh;=|uh$No`%=!!u@btT9rQS2x*j(xrkKWLTZKI0)lFRx%fE8QuztZ8| zFarAUOyDySJu*-i`)&6B4-k^lnmCk@4Gr4)Y!Pe`ydWNC;?%6PHfw(K?Q411o9x>MO)pOcSSGcm6KReGwsfK{2ak ztkV71Slk@-W9$=A&Zi$vVnyk@%Z!hMy?Lb8f_;^zw(^9Nd?+uy0_@5g#QgzPJH5R9 zqWwl`ic!jkunS|;%ISU(P=qrSg_vYE9?==<%6f0@LOdHyWef?+Tld#+kO2XtF61kB z;_aX-BH})TfiAce+x0SKAsXrH6245jWUM|tl3fqBP)%d%8LkFqZ{-;x_0fsOJ{x3t zcu#cg@H(49-uZNBqX_8y;E9Qe`ZM_=z~V%9WxbbCpj#Vm9Yw{!9Ov0~*G7AoU}ScV z%Dyf}Q$T-sBU$Vmn>=p*>+)Xb^X!lYl>L7Qimo2#MxN?;>}(A`aC$5+tof^MGiZ=R zp1UkXNt#fIxDSTp*X$U_nX&cp38|Gp{#Cn%@$wbRUmPXFr}5OnTl!u!tmeRI$KC2Z z?M8g`pxj&S=zQ#af&r^LtOplM2#S?2Ay9}}#>!!LuJvgW?D~zS41FuYl}$b;5+?(k zgow-#efaJ=LKi&^6Pb#hBTa@eQE;?bvmh=EXN!A%y`@aSz)L!6W^-kl#e5^GGLX|o zi6IKCwQWYrGDULOL=rpSRfeM87EM)L&!s`R*G!aDRhaKm&p61{1FmlV*Odd{&D(+q zq(i3LS9@Z@zUTu#m$k0trH6;&YWBy!U=<%^2bQ?wnXowIX_w$s!4DI80Ip{?RHwCA zUEED?D9_|ewd3t0+Ap=+Vhy$g-l^&h;`n*_Z{zm^O=H-WG} zDL5j(Upe#fyfB^eK}lsFFC6denQ{+|e~ea~=0atK4*81C?PD_onmk21^c<2?(THld zgMvC!CB;CkfTJ30$A6f@QSluDv_epHpspSBc8H{VsPKL$5y-@I%AVVyBf?4PU>~H! z8;Ll-)HGF4kweEsZ+XANNlapPPtNDU^DZbH#-FIjA|&J*I5E%t!qS+#+hL1tH(g^V zXyIiMOM(I)79WPQA44<3o$J51(HM||4vNTMbSPkz7leH1QFc1v8EkbyM?=Xwo#imf zu>eN9q8I0dF8H0{tX8v3XJF598kKyz6^(ALE6N&)g??j1O8L;hUl?gi1mt}M$(GRe z?i4B?FE~0oa5&f3KxtA_xv|{m7qv&zCRWt3gpdwqjDN51FFH26-qm%a>ts{_BcpZM zgWKd(h4qH+a+J8Te2YQPEFMuXG?kywmXr~|*91<#zEv+B@-h#zYO(UgXc%e~cjJn> zh+zgCYJycu=K~)sD&4(45OKZpXIT&@S`cmX{e+tP$(u7B9jp*d2cmv=xaI&3jfvLS?mhXL>Jmux{0?!}~E?1sf9V-f4)C@(3hzdNV z$cE^uU4ZEgmU1+jgCfdTJrW9dFCp|p7YzuoCgz!bc!zw{oe4tmzL`^*QdbKXt!89< zUapzz?-utQ3gof>Eg~o+*Q7ZDz%yp}U4yf(h&cSTx8p2MRhid?bO8KLa~y@MDf>)JR0n zbf61Ez`%3sy3)y2A)^V0N&5<@scuECdSKQt`U_G~hJx4Pz@UowWo;zPf!4wcyI&+G;bdqtyreCio? zSM{-ysAkRt7~~MwE1@6sXz(rcdr?3ef)kPODFg ziOKChtXBy`vo4$6P)lSJ}OK+~;ng!N_T5y1g97)B2{&d5QA~l!)75 zTn<}3l=yO@-h2h!UZW>ub@3ngB%{&34F>xODU-tq(&}h_hyRRat#SW`(PmyqJ%Y@k z^%aR5Zy~&+FR`B;Y|~}sA24L}4fp>AL)1I(_41n!jmXzD;=TkY$}s1B-WevFwZ<)I zU5LIiLQ_vtIW3qE@S?nojBc*aS3;v}rKkTKg|V{ zUuc62T%qmdz2F&5-N;>ku4T|0Y1gLyq5G2F7*NnP10_CKquZSzDROt!1bJY`?_MMr zk0XcMb1vo77PfF=ATWo2x3DxI#8{v<<&8imV&}HVLqDPmO+8+~{H4O0D2#$q_C}%a9`!FRPM^Z@p01s7X4+ufJ zZVRj!T>@j#{0jp4AwBpB)SxiJm>?xay=WaN(zht*aC*k#J}@)Sf!1E<5uxA!kxGBd zt@_3LjZberp`V-Hn>)W(%mA@ZlXBsCtMhWlXppEeL&i(8?`TOc1(hKU)rx4~2ux=v zuF;YX@)W{;0Yba@&*I%hDk92`{`<0)4fJtW|1I%0zY~G+QndcfzHkR`158bSSk;D> zpX$lTn)O-E^^S*T-pVL#$pr|m&&?LY(9(J-@4$rOMDeUk>RWt#@i2~P;)%?3qmJUQ zW*ev(#doZ6z!*8)8C+rNs5~Cn9R+paFsVsji7y|f!$){x(U*IEYtJYH~OxIv(d zU0wS=8Y5uxrZ6ZnfZ>-P+2Nv-z|{`FouRZ3nkk_AX=ulU`6{YKC;9NdAQXKQ-bP9z z{pPeS8$N#HeQ@&%R>Lufo4bOfN!``XTDSx}sos2!x2*Wc*O1wiF_5t(NxGzSBL?6q z8JA_LISkMlwdPiKLIV?!B8i~nGF)EKy~Bv5o##gv^nJX*>0JDq2qGf$4NFq<&bFm8 zFT?eW82lx`nKVlXpBb|4>M~D+rg#@N9n_^M5Bg*bS0wJGYX=m8k(Z$c8c+dLQcO-5&cz*R49bbuX!#_zPq5uWt!Kg@qRX?~9 z;FBZprjf0;0J^m)MbhTgERuE6U}_3?#pW!!@E-PGES-@FxmJM^zW)0tjynBIb=V28 zi#g^zGg%S^s^Qsz3aYQ1v;|*v-}Aw(a4cMRUXXSTe^1H44&?4QS?GoJkKEnVWtC*e zE(E40u$Y^l;CMOXH*^(M5%$TU_ZHv|-Gb=vLD;!Z!(S}`;(R*3sAhZ(@3J|B`K~cr z2Hbu3rrV-40X{2XskQnP|E zBO9c<5PwC2t8YNOULZa(-FH}MAtVi#r@)bZ>Zw{0L9&jT!{itU`2vJ3&hd)|%o&5i zY|3s@p;*qC=^L5r#&i#bV zkyCYcNkmBK+oD{T?Zdzvb*ig&OPY&h$lJJ7K$kct5v7R@L9+&(ggBr|pb(5gA@1jw z4t6Ug&!Sf{-45ci)Ji-yPPi`?-0+IRFC^<| zMJ$=g^vHG2NSi4Rj6b4aT0hn|qktT?;-$&+d5h_a&f>DQe(_D;1DoNkrrLt?Np$@H ztKgYoDmC+Mk(@cwX)*boc#hrzDuQXs{Y9$Stg`zDHKwPFFV=zS2);VO>^szEyR68@ ziVuE2M7^wif-aM_9;>!$Le4&5;q{LGRon$0!>bX@WA+Ki>D()pmG!JlT;;u`J8#jO zD<4n4=KVgwK4CdEUBzT$X>&H8S1~9@|Z1sS0;i z-jMhpmG&kLk=B7}N{8{h2S8-VNVwiG;psl90+R;GxqVx+WcX$1;+qShIL6Gk)Pef4 zo{+Wtene@G+`nQJno~&qI;ZvQNL4+-5m_(rfg`SZC;Fmz7pr{0!#MhFRg}X#++2+8 z9;uGsTT*VUnOUR(h4MsT*<)J~N6pltPkf(}NZb3vm}Yb4mwpVHVh05ILR#Cr6mmU( zNvko0Y0D;mx}P$5sE~H&JQU8QtAWXnusc*_2h1!i5Q_p@die1B{?epKvk|8gC99)O zbUv4FNv`&mzFqQ^cx}5Up-H-% zE?G6MU}V;8$>r1zoOj<;-FR!tYpQ3P+Xz!>o|VONQ43;1txA90p4ucFKccMILtP}2 zABh5EaG*57*R7pMIuv3w_BFmJI;!I8mkq8B9V9XyO1QYM03`lrla)3l$b$%vi6!es ze{x~~d1!c)ZB5-HPhsDNvW~t)tY>2El*$8LgLRe*hC@Aq5PQTF?$keIhto++BKEnt zXm%L-Ov@1Hky%Ya_vfNA0Hr*7rqPC zZUwa7p;K8sI7kTz;ber-uypHI5Vg<*^MAOy$M8tIWnsWG@x)0_Y}@w4PA0Z(+qOEk z?M!Ujww;OXFYn$5`+V2>)qneW)>_rocU5&{216I?oIqt{LCw$4XJq-8iXB+}VN`!c zzcx{|HqyFzos&a8DGsbOT^*2;Xz!(5RJB4iQ(bFK`8m|D-mY!TQZ&s~6Ny5h2PZsE z`#95%pg0Tj$)Zf@RhzsZ_lb9rtk0%(P+px`)j;;Z-5zM(E+1I*t~^>GoTqYXhr8WLS{c^CK04UKwpy2+B1M~masmef=M z81e28$_x&K5v7u0H^$=|3;aeD$y^hJho;tgPU%#t3)-9S z4>gP*v&G_?I6N+@h2nL&{e$kijukU2ZCJ#hsYW3YZlH>jtZgY`SXAlcCCMxO1=+Cd z9+?&8`9W&Xg_CW09QLNUtbR%h7=^gDO<)Wx8sa)0I5&okDIBFX@v~s%d+ZS0%p*re z3J~GUJqMgDDQX7EA>jTWy3R%k*jlQIuTR0GW;fcJd%HknTKSGL#CwA7)?r<}pP4jz zb65}d(}*IO zhBJlkwVsMGHw}D)Jo*HC1H9@r(nHgD$S3pj*s)`?1X}_@q4@HMmb7!AUI?sJ`yer} z(uik)En&v!>KsB0V3ntnLxQA0w`-&5L*?!UDhoLYip0tN-4k59~j zr$h~fgVD5$gjgF1^=ZTSBXFIItL}@<`4Y4$7#4XiXcgIY{4;B7B&0g)-6i!uE877L z1~ltWfl*^hcr4auW)^x{n_>}bwyPAktUof-jx$&H3Llx5B3!eRVEXb&t+P;-`GeaC ziB4uz`$rcOYwM7i{`@@-{TlmPO=LSrWLt!h=DKxwd+h@D4%8c#Jonhoh*5*181HSH zj<+)$zIJUNM+@~#&XfZ7G;>=~Hkp^oa@s^wbufwY-|2o8Nyw->Hv|e!p#+3cdgtZ{ zcHT6I<0VZr2(mFzq`Ga)PqiiDs=8smBn}!EPfk0w?xG5iZzjgHczC36nOh>^%EK(7 zQsK#_h3Ij^PVsjwB26PbQR3%xFsAaNz%EI*I`Ue#?_*27AF95+Kk3LdS)o1P91Hev z%lt0c@dpbZ6tfp~_a2FK&`YTWb8|2;V3@#_eLGg(&m3wJRLYtA#J@qENU_H zi4)Ui!HegiP<^}f5xD*{S7XN(nlkM#%rTo3D@=l_xWF4g=JJ6-b$F;}KAGshJZos> zZy=n7$Y^unc^whvvQuhtd$qH8o{$Ajby#9a6(=D2vDL(2d^c=NL$X61k)j+sp~beu*=28Ex-nA(3!`fM7nrBS`#KTD4fgxg zbl2W^knsa~LnqlVk(%$^_alp~T+L3{H6N+QwZ(^u#VCm>3atqDjQp3v>HSsm1+FC4 z!ELNI;TW;?2O5Cz)s{{~@v8Jk!;&v_U6BuAzw6eGW@biIMjuCm87kY~Guv2J8E}d# z{nmgxI#I1N z&|SPh^w;TA?9x)eMXn2lgvxXjjtkQLcaxRtCb@0P7|R#evRG-l`>tB{yA zZO<_7nQZ0rB=N3%)Gsdf7Zzfq5}gaGBJGzw`x(ibdNO^jB4wNIz zzk>{A$A9HM6=3IrmnM;&X5NfN>WO!l{F!FfIb(D{ryxr{>KDl4UCuTd%QUh9N&$Y#IwA?}kF^gIt zb-!g4)z5rQa?tQ_IY~n$meiFA-zn*orIKNp2G@qax$2=pl)Rm!I{exMmroB88N-CB3wX~OqU zFX>~dfgs8uV5x1t3k$742_k-?&L(^7^~BNhc0}T^fS}5-#mQ4Ck0lj#$(1bM>D;An}5y{;;aP`Wf8SJy#rP1}3N~bWGz9ET%`5 zE71*WC;KN_iU7&0;v(L0B3b|qTJehoc=8*_+kt*}!_s)KqdP)aQ(y}&8?P%oak{(y zx=a!}TWzd6)IV?a+z&rHrfSjq+uPVInM+t3PFf5!ca^M+4AA8SKKKlI@d>3y?4Gig zG*aS*l9yWoeEL^htc)cef&5%%PY-v`_(?=y1Qh4_p-#ZeYVwR7hN|t7!Lt1jk=R&9 zlxHBRK^deNDLf;Fy^-RZyyqYf!_(s zc-%{HXzLiHpOo|XzmvKAMG1`dU$506booodD9EUib99ANKl6wGWe83(q>ZQUsm*S< zZ>o_eyF#2q)yxegGo-C{>I1AwZ7z8C^@u1Udab}pM)l#AY(}J9=Iz6~p3^(P=&m-O zJbTdyvB!!p4&x#2{V;wr=A;#&!)rIbGXwJ7&=_=idy1j5)9q6Dw-f&axPqYxFQhdy_ zkR#cj5U;HiQy<#x*7@<3y)sK!#1$`MkUaj)HzoKma3jTqOa#98FkZ$ZvNc93Sgj-Y z^+ppNuEFj0CWZlkL|V<8pR?7?pa@CGVTT4Wz6FV)5`Red)a$(d@;ZW`X}U3ucvIOI z7v^rr1)ZN;Q`miUb)oRJlB0bk5hL*48(Ho$svtrufPlaUBsEhFzLVst0QW-IN9_)D zn~Y(8hJ*L*)dp290m@}3d{^KKyLzYnd!1-)^&hOvR~_LnJrXbMHbHDSo=ZPY!ZzYr zX%_@j7_tLnk+H1TAJmIwn6Q6dJ)erGIA=W5{2>%VW_%Xomhk+ki7T_#9}@ z*JnHP`sbICsMjEq~`0UkmZeYAOVIq~2#3UKpm(0JR8N2%ufq-S=74OhE8R_wgTSXOI7k82$)vOyB$hs{Z^ z<@!Tj?$cvfw^J2Pkgrpo0*rK0EwI<9X{WI;i2Uuuie3skDU}PJR86(^?DFY#YvI$8 zNCA6UWJk_?Q4#%cvah`bLJFILYnOZ&gKi{@0|MxQ3(KJpfEThGgcW6C!e||KHQmo* zfQhd9dcoyvD}VF5dDm&=n%EA+u%R7;%m!9cL7dOO{Y&MXRvc8Mgtm@V zIxC}0=m}$Sc;Ps!HJTFIgt5zutGopRtdaR^@o(Tpb#+l#kZC=AN)!fJ2zi50Zp@CQ zb~|>xflW(Gv(r+Eb zJrlK%9}@|apGdL@We!I&E0Xhoh-xiy&25A?MY>2&h-Qv8onb-=pTxYyrqQHMnIy4M z%?&@JYjvN0W|Aso2dYA+n*7|76UanHQ24pS8fmP2B=3sMY`Ew8gSX^2*6vr$E{eS> zMs+ji0r64XwZBm@a~T*#W60Bnz=xt#(%) z2It%FpW-(c4z>3A$dFR8ISQM|Efva}j5=|~T#JKIx8p(Z6tRZn>X(R`D%cI7?qZA- z%fw4EVfw?> z{=b)P5kYJ(oHR251`68KF8iC`XQ37q#_-`7+-~#crnaW*PLQ2v@W=7C19-~&8;))p zGz(D#(TW??>Xr;yIl@NRUIzsy5*{qei}(>u!NJ(*pISR{m<$rZZPV+yQ@|=gd}=2D zL3E-f=VC@5kY(S#G~jrsXk99!L{BvlK=-p!DSrV!L$H@`ySRbOf4Kbg$WHQNQfh zRi1K6hm*g4Io17Cp8c70YaaaXaDDx?9-T@r5%wVHDol~d`MzFumTuHQA?xQzLOwq!= zkBI@LI#Vvu*`ryUk+tNa*JqI$mNc{3$6puZKP!?MgowK%;wRlXmO&h9AJIl-rZP;t;Sy@@gLw4Ea!Uz)KxJD2o0=jOjf313a8 zc!9;CxaMtO{c(NC(mWb6sG}UI3nK#YM3gviE6wwszNDJWtN|O#SMf&mm1S^EXzO8P zolYblR(q7=*a8t41)Ln0{vh>sr$o_yGyZsFW`?_rrK5v9C}=cIH{2^*ii8rDx+vhzMdi$8Uz0XEGSpsUIv(a)mip1gBT{ z%~xELjX9!;CXW)$h6PI`{yyz0jzw3|BHs`d{q=6arayFL)w&qw-c_&(97(=etK zaepX1R!O^tHy#-qBR6bKP}LCnJoQh+QN+w|d@DnX>60y9+-^Q^Y##iK8$GF)3~5ZE z!+ph}ChaVP+`CeOgLm9bJpJsg3J8hg*g<}KI(qCyB(CKKwat%_-@v)tt!$jC*$#<7 zbTJ`aI641p!HTzLCa_r*chW{W#bI9$hFFFEsAU6H*--RtPnDa;dxxw&FWflhVSs=B zd?H$9O>3qRHnfGdfq;D3cCY?{SLg*Vzx;d)#7W2?|Z2zzho$Is_gwb*4(QVqpZ5Zz5qL@$9YolotQ zv9G{nvh8P%^_Rt&y32{+Cctpn4kSA+hLOIj0KRedpytw4D7hG=$gJ3BXmCWpYQcH= zQYUf%9GplDm2*@=YGQDGZK+%2-t7FG_*L2gG4H!9?d5#wZEa!C_t!r7dA7FgjRy0d za9|@N1tAiV-Osm|0r|#oxcD6nj?LG1b^BtofZ}n%jMQ`Xmb#N%M=(b)85^)!`kgn2 ztBYXKZSFyYZ(@Jtr(Q^n$5UXpI`5aClx=pQh_Le}fH9hq#E<%hsCPYkbsQ-UBY~km zEDTesPqi?O_|flqb%fmZW{ zSy5?|F@E~i=P$-+#hA|b)sh@*(ao3J~qZMMxh z-TA|8B|g?e>$`Wu86eT~^?LlVdT8S@MafPjEM?t5eTVNg$w<|`PsX)R-*NS_&n-B} zwe+579))I5c;%4*ne!u8ri`uyTsDWRoioA_qUO4cnY&(Lw-Q!Ty=(p}3BoQ66?wYY zVmQhS)Hni;$Rgzb&uRS6sZ5Uz)(QR9U3Wj)@AWaRTo=M@jFtxC_Xekrtpcw#-;2)< zbySxY-!o0$_3z|Hz2aH($>RYi$dPGBE>=Y8?kl(t{Rs5bT*f?riV%_`lxN!&ViNV3 z9k}(~cfTPV;)zLyTgS9BNz>~KXs#NeNe^ATn?Df@WAniX z)}}pQaz;F`Kc)rK^-RuCN16<3F6o(iRi=}K4G&b7NOqHFcvim=77;!;n4yoIZ}{#P?Hk>l?BA_oEIgO& zpOh8$_4$8SH%8#EBPTfg{!Oy);%Lw=QbO} zrb`~w;Y7w+=ltOxPU3Z@9*mY2wZ4YH{t2V-wrotwVGmQ&8hIm&7h$*G_0rkln+tewf=-fx%Ey|tS%#4vp zIpPakdIWS5qb+&4e?SB>6PYB;Pqhq>un1wKy7ntZX0zkQLus%qT`jY)%Rj?B)u^!5#4Fsij&MOjC?2 z_jOI_8X~e=!AZZt{QPV!YGZ=@u4RJRnnzdk!Bit~#*( z;YyqJso;70p>m}?X2URGHaM0b!}$aj4NJ?%f!AcyhUme|>klA{-kvz36PiKU>TO*1 zqNr_|3kTv!>G&etTG$;g+hOzF@UrT|(c(OkKQYJH@V_WuAY<#)quMko?qaV7-wnff z)V!(f_5kAV_`&Ewr#fCp;c=d^Ha(p=7OCAqGClvIJ^h?qY?>iGjPMaY^QbiSdA0JK z_Mj#g9lX2Td4JsMOT$`~^Er0CYH2>U=ysv&M7liW33>c<2J?9xOILkiW1{78VJXb^ z3+i&sAojvY@=9I4O^&&qjIhvcX@b2JTD2scgKe|$GRDBoo&7lP-x6-QoC00tyMZ#8 z{EN39!s76-9p@3To!W(I)2ST+v&FPm=YaPMOP24ubqCkd?krwaPj6K9HXYt4cy%gW zU?t8|&gGvRFtpEY{`SlDfS_}_Jwd!oc%;L+;x|xK>ULCzV>JLN(d8<5v-5>p4~l47 zGfAw~tc%L_yVnA{%al8H^R9?tQfDyRS$VDZNQLf;ULLWNn}9(@^&!i02OJDlWDQSj z2(wLz3~{1f-Y<;)0CGSr{NFAA!YL#N~HlXJ;VeduB=H23!VJLrG`> zB&cE8S64HbrD03}u=adKXFF8@@`CW9Nbru`Yj|v4z-&N!##u)2$LPZc?4Ph(Y1`yM zup5KdG>`(RW{5U8<#m*hrG#p1MJGUY@4MlKN4q^4&~mg)`~>%(Uw~vW-JzWVyI}zK zRhT8njjOCD9jR7RTH24rW!Ij(EIXh8VP}?k$mN;H1$t2bi7l7wlM}c0_12YlYq`y!Rb4jN2*fCOS84?!dQ~kR$gZ%_wLb5)UtnA~~oI-Iimw7&I z_VOV=6>^>oCTINGNr^#`NeN3-27hXTeb`39r@ukBW*|}u(w~sF z?Y|I42<^5Lk7gVbsvUu_tOs=LcIl(69C3*6ORo=~p-N0+o_GdpHf-J54Di`uE1CZ! zUH67Rr(xfRSV|~6q|pg(EUS0v4|w({2grAbDBfI8lD7tAM`8(E@N#05i^s9~5D<8I z5g^$*A|5+k5xb(BoM;1-qxPkQbO%AKnIdc}eR$-S!Ryb$S!fQ7*)z4;EL= z!3S1jIoHoIvBsI{jhbrrt!4kM_P6h(kq1fWBhS$u^v}WBdJ7YM>!78?3CB%7 zcuAG((Ui$>#~v`E$6L8E9(HDv^Xvv6LSX|hj~8z&5_%#_3wtwLqZa3APsg@=unGbi zdruOLW0y}PmV0CdD`|;Og0DD=L%r_?b5WkaAPcnkLbH6=K4JG0mw)9eI6?AT^GYwL z+OGWfSlVBAkg)l@LGE_Q#D~P8;pjE()8e>hfwK!j7fni0iS#40nQlF^^mc==hVCDs z4OnYP*#dWW^J=lf_0QKcM2t!VtguTC>JQKL8(x}E`Apj{j&l@VCwb@a6cjDPQ)K?C zGW9K%V@t>7iP?>*+<`v{#U_e~a%NqhPiz$0ZZu{$8)Gfg4^d5JvZe|XU&gXf`0*E9OcKBBHWlNf8UXGXHlF<4ySxK@6!%)c?; zD6S2|Q8N;L=fzA3u(&nWQXLOLq`R^{O$mx;at)603QMC6vaK7#Ws$e^sgT zvq9a05Sl9U%ANbltxcCfepY2FoFmg&3}e&}lFwyt;}G;|dkPQi6TW$KfJ{`hHxdO% zE)&($J!BImEaEaXDKc6RKl%0{dkT_2kLRO6emCUo#=gH^JIf zm+e&*Cu(9shE;a!)f5QcqfA15;+28UzESQ$wzv_f~IOeINW zGvKAva6Oa&A-f&B4yRO5wf{aF&z9G%m*t3ItA=rZIF9w~YIp&aoI|_!GyTke40njC z^i4~dh^fLx?g!NlV|%^VxH1$3(dVCN5Y{lmxka;*?tHoIlBAoLpQFU55*nfF^6@%lH;(+J{^r#;8?qI}0EpCcV5>HKEPb0niYH zYfQ%y?m>tdC3bGORvN2y)=}o4UJhJUEo2fvJs4a%GiEh;@zZj`j^G zmp(Pai+|&}TEg{9OG{&d4j6QTNCN5`Hg@2Q@15v7okbk;1|?n|=h)xXKnp@ks%Z~! za=%IA>he^H7*kN_qrhq9WoXBwx13aG75^C|sPb5!CC8uEAe*Hux7PD)M!s@O`I8%t zf|kTUMuK*1PY-&Ks84C2w1BGIUwtC$X2MabBO^{>KpT_n)|xTistH`!f$o@7KkfkP z*VWOQ&+*_$kGB@3Bre&nfR687Al=NzSq8H>)mh@sJh*LgSL<8wINUOn6bGzGxV{LF z4;bA#*Vy0C0oZ@*koIDwNfvqU}<`vlO=;EMGbi zct>_0C!blKXOEFm*+5oAheKPXKQ4TpvXokc$y8`#OoLlk?98;*%4nSbu)AZ`u`n6> zk)7&t*PpX*wda6DWFc4Ps0j5j>8r;)xF?5k()7wR#qieM!JDLIuar{ zTWaRqoh1kZhCgf}9R;3R)X2b&TK^(kW?p%-knohv z=&ybd!M03ah2Xi;gCdfw5IF>Q<$d*f^2PU>! zQ#UY_4kFT$h|CO56ne%Ijp&m0Nt091S(MQxpMsrq=G8@}HhYepS8S1-%&F?5?VK&i zsV6{msnnNcHEBXmI9CK|pfM?E2Rq#pu!F(tF0zuij99RrCk)*=vxpr33__7AtNLMk zJGeWv*J#H462Z(KxMJ> zpwoOm((ZOg_2!4av9K`^1{fBWh3?`n$gM2uh8-3=lzK&<)kLw>ASP+KVOa5H#~nja z*t;=SGol`;3+N|gg$mS>EZ9slvJ_?!I;WTAg6{>@ zO<`(_DQa@LsY){*{#fY=VJ_Vp=*+y=juDH~ugV2_KseTU6onN1YbjvgFOl*Wcz3Gl z6ln%caYhRJU|2Ms307m+h;)5=NjtMU11iPd^kH(5%M4u(=`z6b73XdRa}a&vEq#2C zv^}!*Ah0erGMLcV2Cf6pV0T+9LdB*@!B|8;hp91LGC;Pv8bb<=gVnX&mq)yn> zecE-D-=4TBW^O1+)iY{W$O%*Y!e-Oo0=pvNNLUy1?>v#7g*Ti3 z@n%7tmTqP&0-a1G24^@F> zKD3OA_JV#1&Yl=V+2$i6_reOrtM_3(BMr1i2Za9zo53Z2VKbPM|HWp<7Uk%Oz}%>% z6rs9nx*mG9(urBk9zh62+6eAn(fz*;WGrkY;TH!|}f^=7+#lH_t; zX4#z;xo7obNgqQEbQvzAP10NiK!<{dDNFqH7d4ZBAdp_?rm66UbrBYs&94njoKYG1 zN16>&fd}T?WtHYVMwX^+nsk!t`6j{|Y9EpxIK@Ra)Jyc9o9odw#kieBaM*Yl*V^-A zE%_#|Vr2i8cm3F;EUz+=hEs&3JOh@+06kwmIYCAUY!5Ng3hb{F$#J6+!)ML;x9G`C z=8erz{F4Wr)1qJCJ9{Z+*=ehp=T)UAUQO_P=!82@ng2k$$-mSy29L4jMGwjg;CA-L z&&DK73{@D8|GCNyDw6cY!svb~!-Z=wEAqC_`eDe`(qFi2ud~TW-9d_oKTR;GDTt{- zEXH^&&FONBVt6skU_Y(X^4pm|l%eqEO7e+E!H&fANrJ_%vYnF-SAEu%>m$7ASBO?5 zXjwtE;dS2G)W3F_5LmAZ&m6i}!TQ#95IgiEwdQTWK#J!sQF~oJ_$w!Ew=`O2Wu|y+ z!8E$~h1e8bsvRvXQxd+-g(Y>-%3c`WMtJ)z`{OTg&UXYt8v<#UCT$pm^H;QaJC%tc zLs@9l&)4kVZ-1FB*Wn0T{^-U@MK+i8`klx;!$4YjsD0^MXYSOF_Tr1Ig$j$m26QdOzthhf-HBQ!B{ zN_%5ngPxrvSy^l?XL6p-@I|CQ`(k+Lu9hLN-)-4gFZhCC<$KuO>o(RyKmJi}t7q2# zR&HC~C`iuH|5k2Azs1?VklVas>d(1xj53v2Al$zL-tZ#YZLT@xGL|suK@ZqR!y-LQLE(tMz&sk#% z-8I^mWz0vaspaQ_rx9poLyFJ3-#os^Jq=FCnRn0%)tb;oT(9IC#9pyDSPhCESj`~*_rKpZ zSKHHNgsyc58jzp&6DzF^C&#)o%x2#Yk|&_D5`e-(f3+#Ls5~Ln-Cns|Eb0w7-^D?j zWUG(hydWlbl$ge)Gl@EgdT~p2%#RZQ-4{hE!b5xUFOy%1i1>#p*CmQs2kFDjh~=9bqbz9cqbbmYj&aE~tx%!4CZwnnOXMy6j(LUZ%{+ zU$@x{++&czVMAgjf{_y+Dxh~qKptjA#z4rzZ#~&)*4L&TFJy5wSDO?ope$r?)x7dk z`+R2&%kkQmFQQEM3j+{2;bwY1PLf@{Ye;|}%`^~6R{zXY`um<5PL)WUc={&v5^-6= zr{e%Qs*~FTcCC~V`hz)iwL#MF!1+xfS{;)i?hf*w2sl5qn;awU*r-Q*ne-i$7I$g{ z(Zpa;jmA;RiZ6C}I-#V-`(qIICmp(vFXISrj5ga_iS}+XH~*ZgU~rCGfyT~cs=%Mu zN3f$p*PY^+C~AAore?5Aq3!0Y*0BItLRyGu7{Q(}f;ni3e-S#FyH#dQ|64-geQeL9&^}7uq*b%);IWzt(d8=elfBP=&=>qA3^@;T`^R2snLKTSM?KevyvgY zsTQaeWEQg7xn8Es@U}%h^rR|B3|zuNg?oMw`SHKlii@1v7{>!4A<;X>J)9K{6+$mc z+7&6Z7{-zQUoG}P6+iCAIZAArK^2aKkP{zV8gt(PgwyS--|ATU*#{62PvU~oKN{d4 z2oc=*xWPVWtlRH~_go*2rP!D3L5Zp@ATm%`Tc)tF%IJ}6cdQ9nD_}{}J;qk9I8`Xj zp?OtKEtf%`8M7vvlankR0LO|W!iBtcmu5}9o!E|+Hbkg&mxH4lBK7T3RwO@MJhv5~ z@6Vxt3z4Z2SM*2D#Ok8wFCv5FgmO;*4e1i%OOo^ppTBAP6~_UJ+JrdaaN5p>e6*Sn zb(lS_t|H%?w@(YntF8RjoGCDn+-q2034xNO-{tXtyrF9=CLEK z#o`h};Bb2LyC7E3*)^8DOQ@Y9)O^G4pRtG@lA(;XR8useFq8SupG#0g zv79HEZx4l-Z;4PrWQyZGPAUieCwQXlbMaDDRtn!~+dhpJ6j8bF;hhspu%3q|+Hn`A zrUczNJ0v?!nhiBe5aguq&W__)An6(!d~Y>lGCe3?(Bt2-% zF{wjIj{%<>p;r%yZWC;ANs5(Lw={$_NI6Y4Bo*L}oCtB#FjMbfl@IqLO+%)@W2m8gyW8gjQ{FKj;Lh#@Bnhng=PwptL;BDPGR)~*D5&G&xmp9g3f&DQi~6s zuEXF+G6O%7Pc82jIao3&h=JyHW@pTDUcdriqrpHQji1bhQ(koH;v6egP=DfHFm$bw zxCZNBLZ!oKm4Zwj<|-`(QBj@(UITz%NMdamTQQsCd)cftN25flWj#23JFSC&VwC~^ zH%U%7GG7u&x!7;Y1nacwCPqq$npHI~zpgtfGm6KBxbf;UbDM$^u|~GOMhGj2C%Blt zTE970L}~mgODDEi&?dY`0jq_dQ4Y5tnca*xE6&JBN>)moPj1wZxD@%IEv$ov4?(nk zOU2(Vpo!z3-INcjXZwXsZ!E#J>vdp;Y*ju?d2JBZ{IjSzxDg_vRp`>UWA>F2sfyoT zJ$FdeUfoKwWxsU}NetJI$>~hwCxU!TJg z1L<8t1PmmClp95lxSv}}xH5j6JA;Zmp%XbdJ9HY!NbqzSiSh8tcHj)SCq6rxj)fA) zFPNk@!sovn`^D9c>nrsMPidQ0!`7L?`@%=J;~z;KGzr7nJ1S^1Y}1bn7y%50<3oaA z1OCHoDP4X_u?*4_?qGI0^pR3&mAOm@cPQm?fUk-S$uKODa0~>O$rzLZ-EhL_!{why z7;Qp|lx*KtBdV`{C0@poZUAM8+CAoz&OcS`&=!8iK>g%lYQ zr~YK%X2T+Cw#W;ywEL_$#Bzy7q2&rPvlKxw(NmWsy|OXvYUIbVp615SUbWXtVXD>K^4ckb^~MMUMw6OXpmj2xqr5pj28WPxv@N#PM^m(tzK@ z5%T_nQCu~M;s;@Qn|AY=UqpPTt8IM4%g7vPnjUEVFVt3x+vjS3)dDi^{Q+O26_i%{ z4q6|a&b11e!I0ra8sH5JD}NUmxs8fR(bNB#?YK!8@!fKCYH*N*#@3vAD>`nF&)0j^ zJ1JFq9i+4t{HRW@7AmQNAeoA^dK;9F^}u*n2(GUzW4o^gW>x*@NEJC^#y9)s$P=!1 zY&^)4_|}#lVT}6Fo<4!2Jy81LsiqF0k$}$%rNR$1}Gi&71B!3FKqFb0X|?O@lZbp@FB!ZkcUJn{ztdbSWf1ALPFimTkgV#RYsQ) zlI;;J96UKuq&`WcSPz+N))+!?OC5T}^FWkT7RYmjDVS5T+K7(qSI$N+*v8-DVjqk0 zS+NY`g0HhDFMsoCk<%F4jj|t(Uj1`tk6kCjQG~1lQ>_xfaOt;ir-a1$y^6B-Zio{E z32OP=nOaMN8~;UffR|DjyoY`*px;K`>)Xzi|x~mUmsGDdn22M^9$+Uk#PrE!HZa*eZaGN&pIZ z9tL`Pur!7pLIlP;qaZGfEQb>7QBe~lld?zAN1;@v|F44z9L_;c6a{A7g5ey#T-2!U zaubV4f z`RR|z&Z19&piEvT-CYCQcGu}z9D@@rbkbzZ2@K%K?o{9o@1p;s^pdZqs_MOkgU^c2>n4QM5f_XVcc~{(PY$3w#&+T=7I-DJ!dMS}8o+CtQHBPO2 zPFDQIzd4dEBUB_u>Tt2b`usSCYtAZ!M-DJ%?5VkX-E;+shlQ!Vt^|F0 zKVLEs=pmhs!w|4!9Jo*Y8ZIPy%CI(K$Huc@gBu`DfPVA_vg%pRG z`r&vxvsd?QHs63L>Tb|w5EHY%X3ia76>V;86@~lKrq`VGbe49J>RDmg2)cq2tf%E# zw$x*}pazcwe6N_)*7w^zEpG|TjLwL{eH$uEew8}JGM`eZ^@z%=A60YOrE`-hcZ&{xgZdae$6bgo|`2pn_A>Dt_|43OqZ3idS zC_qEbJTG#IwJ{@j#>Ln3@Bw)KE z%$zBba+>$wnD)Oyh8d`O9v8eXrZu$a+&O-bqsqff%7%uuc?_3S{#Z#fj29nmw>L0oyA}LCT9(O=z24%NCH`SBH>7)Cv=sJ3#=fI|)&w>t{u5DqYs+_`#ehDkIKJz< zR}c2C&fS-3shsNcO&)36Yy@9BU#nSYgtPMURExq}8@pj3<;%XA97qZXK>xc=S#?Vh z6Y}9vJWR#*$!qCq4SG>v(w>39^T?U1^0Szx4Vf}^tKQ}}c^^qLBiZP1KhfO7ec0a6 zUPh$D9+_}?<6>M~X;}-dFnciIS`co}4AuMe!Y>LdwfWXdMDe@lt>f@>%yjhU$&ok$ zsdgY^tGnGLWbQXd7VlAJP3siWtU}SJ$d4%0s?t3&WSVaaBrFUfa4Hmi!9!I&aibDD{RGds|<@{na95$kY^B5%6q_T4Yr3Zc{ilNT!$%*T^e{amN$y$HyapeZOJ=_U1Z3h6;bF$%2Mf%W$xxx--UrEIQr? zZnMMZJF3RRk5BO}Ex*S{rM-2Yv)b)&tT?q7%*~4G!55N0$W^8{I2@r(I(+!E&&TiY zuGI}FHeDOxym-khpllVM*d!hgIbJeI)|2AGr&2`WhxGEr_By{nQO7o1A2@OPj3-zS%iD9jK|$PlyI+R3v*x z>-stsrtv7!s(_8PnwnmyHBdLPTighZ!@Ud&&ZRjnBc)gOv$rPY%aY=gnb6h-5oHqyDf8?+N3!vnfa+$Rk<5I+3m~ zwnB`kn({}Dh{`uK*abe}z1AZn9f}4q0^stg^qQ`jid9TYaaB*1WR}ISm4c34C_J4zjAj+bv>c2)33he=ZBZ$vGD0Y_q~Xq z%R|=2C^I$Sd?0p!wxnP>4-20bXmab?=_(t2zxK5r>;m`ZDd;n%XMlYBEBQKi^O8j?tAiZP#vhy5po{+qP}nwr#7^9ox2T z+vbXG+fMen@8|j6?;T_BJ=V`_tUp&>Rdv>!vySs3M6TT3^OX9b!p;!5VqUZG$p$2K z62ZaB-CUQa_>2SPas#psN{#}PY`J?V?+_o-);XEt2AsYOxq!0Pks~ca_SVxn8Urny zDPrqj0;){?dKa1R0LJ>*%v6dHlQ~<@$1|l*1O6hhe+nRWjGthGs+H5c;ag|%9N=sp zXH+E~H@_y>gMk&n#gJ6FUzo{PbtogwK(SwLHt5!HVzRWDtn9BMxls{`53A+5TepjeMUL^+c8x~#Z4YAtPH%;$WN3B-GJu&W+~XmTpK?s&9!!w z7bBo+;syc-grg42{((T`;nee!AU(f7Af}tbP%1KxQjt0CQZot{M zU%%nKbKJXacfxHeXsxmY%=iB-3QrezjvrjuS_)O|d(eM^S8x9C>kVHUZ2<-cPV?vN zC(|~5n^357a`p`pwqGdkAEaMjhXeCTCk`E(2$l0A+qG^;*EUAyN+17;B==YZ{+>QE zBKmTRxY(-Aytw+%mVCR5Uct-qO=F>YGVpM9b*;$Bw))}1Pi%u}j8WU&X_KAbtM+%Z*Y#B4+q68|P!!gDQuljIjC#U+ZQ4BkWu}Tp4i}kmP&{ob0e3y4M zLz9Cb?M3X%7Q2}CkeTRI3qy@Uh#GJe{~o33DIxUtBc*GD%89^r4dnPfpqzp+QWCuL zVP$yHuB3Zmz`%4R37JCG!;)Gi zt;S4_joj}t^x5ucnjT6|W_nXx-an``&CF!Ds0A>>QD8b~O=)6{855Q1r7U8}jYNdh zUv>|uvOrV90sGGo=f_LdHZU%2|78P3EW@bB1DM86Jl9&ZYlBFEWFT|dRwSA&Yomie z(b(?NfxZk}P&T^q>V2F_YOE8S1h;U*PW+W~0UdJAc(BSkb%~D#RqPC&47?b)ylu)1$X_8)A6?i~ypg5IL$vnd-Y`Aw;6KEj&R~$3s|Cz0vEf;~F>FBQ4susov`z2>?(`Z>}j!PYlWXF#b|H#O3zFvPO@HopdqgDEhMr(B)WcJWS%`s+bjlKk&hPyBN#L%dX-ol9Q)%N#~_BD z#F@aB_YdQzY5<{|l&LR5fu1SZLC44V zARbl*D0aO>j8{&eu(B#7^DveQyM+l5TZ)rN6r+ch&_O<*!>RtIQ1N!_8f>dmQ_Z zX72nm$iF99-<)$O?dzI(t*)Hua;(%`2mw1HD|`j3o;vGZmC!`I7J+D zi9=lpHk)3R-mPb{?0F2)(;|PS?=&4tBhfmiCIqck%=ZMXzO9M&@WwgxJ3O47&A~=@ z^g|1#28IkJFkc1Bo~DVF>XI4A63b9(W{1LrCK-hL1EY0JYCNU2AYvgNfwERAfz8PF z^>$X7sB(Tg2vy7px_nK$x9stjwkmkm0#EsoQB`ajN7W+EnmiO&elU4p10Q3A`d(#N zs+`?(_1uuqrouW8Le~^2-j}iF!lkY%3e}W?ID?`)>~O>&HZ4~|#Voqi$-y=iL)}-zGAMZs}cH57847wtRKQracmt^M_TCC|44uh+uWpG962l3 zz7+l^WD#obWRtYXcaVNj5xe;VN4YCTYF@Qr%MMp9Q(2X<W zzC6L1r)qhf$gqArSK@6>=%2PY3l&gOtxLesU;V5mWUEYH<5-@kQc=7hzX)ZaC;`S9 zoh-L{pu*j2&Qnp=@Tc)-_qhaaSr93QE_Wsmb|F8hab>!+B>Z0H@y4%M0m;$@-=S;3&Q!m$MY>rx%&Y|Bqx4@eQQ+j-&($8)fMU z4J{VQ7mH~q8vd#!n+a6%XQHp~zU`xjaI}zE7eH_OXJ(|~2tWJ97Kf5KPrny8SnS=6 zy%AA(MwLBZ93I>O9|(2FrK1DdogT>UXv(z#9OBXB58!=*ASrv@f{+e&NiZ1 zCsYH?)Zq76b`}Tt1FW0=X@*oH@_?P68P+Nvf#q~LEIOXp%rz%M*hr}KnLgcZ&Qrh8 zwG-i-818Vrm|0(|D=+At%VdrqDwOxGXY#w--k*js{kYcV4A^R>%~40iOjs}&-GMob zr};RWD&e}aG9?m+|6*nO5DV}(7#RkaPx8|_ z0nyC|cGbhGX;1iKK3a{+_s9EPzk8cLXjakryEFH#3L5p$<6}1I%0H`T&>EiqO%_#+ z%@>q*^ISxeAXk#~Ue7bqX#$$w!v~4S>DNElnPUjz(4KFs2hsf>Uh{v|{^i>Myf}4B z9GIML`n9IT7UMv;`HjjUnfk%JN>@_6-Y}KvB*b2Um#$)YH8Q->=rUv7S^vwyAqoR> za9-)fryB!C=;006nvF7{lKny5c!Fr$xCMiirH9TDXf^W?fqKrI?I(*YMul@x4(oqm zI1_3^FQGAj50`(71z7|TC^f+GJFY>sjp`OFT6-P^{s>SuBGjuTLLz#E57qnKbr|k* zd>>){K5z=}L}PP@K!u3!o{+Ifc(YJaQWxbi)09+%*@X$D=I`p&c@D6WrBDu(A<6bF zDN@;}AbDk2oHPa_fh)R)vd1)SwDc#zLzd$r$c5d{hm!4KeIf44klfnmO@h(NVK^yx z5GBu3YF$NC7&@Vp!+Xo>lUfl&<}|DZ`DuVa>$MI-att<+CpTCUi;rlGL2~?$Z$5bQ ze|>Wr@n7(&wsECG-a8c0adJ{-*syfvh~+^M6=nW*lTH9jijy;4oQurcFcczDLg+-b z*cqsD!Z^LvCb5a%{S|kpv@xc-J_-FUtV?I(gsf=kSZ44LZLeqzh>>4pUV0b6@cnR*q3*EIIe6 zlp_+7)2vrHWt6jtOA}C7JGz8-fi9YDS6IyHmM8dGZY5$CE!j=5!+YUEz-k>sk#(k$ zYo=>xqJe_ej|$U$EM|a>3Ct2HJCseqCCA(Z9#iP$XaJbCGw9jO|n!vb~SnO5Bbg7 zaZ`>PO3S$stqfm8rNfd7>j5C-x7Y?{PVw5YJX1x)NnN3->zC{=>K#N0 zU{fW>pz%n20y4Uea24`*Rl+WRl^F`!v0uE!5mv(9P-G*pEY3yNV!Ht$qN}8Xu;PTU zLI|<`W1`jUEl$1__@GM24$RSd!p7$WeX?=c>`=(ImA5zsVC1$j1s(YZzYxfgVoM2? zu9MxvkO`H5$=p%FL}tQKK@uG?U@v#J-d9qO@h>TF+1a4~KwQR#LM2gJ2deXw2KiB` z;{ya@A{fb&1ye9=_G6QF#R_NuP=QWj2)6y^rY>Q%@=~m0YZ#^z^0(VyjSy&R#bc;d z?wllhWy_q~1iow@YuL%DO~#aK#}kd<1xO$w8qyOI>sTtHB$e>Jmf#NDi8OSEgU*Z* zkyzFJ5}Q88^H4(sM(OWWu`n*09^-4Q%xkqlvMQ&JKW#B>NLHS(fQ-iroJ?5RME(W2=M3hOfKAnCf+ z*=xZaYUrKG!OC(=0q9hmhvtgN>kIgd+}bo_JyXg0KmPVjr2vM8h7hfqvFMJQul3mE zKqzLA3dhcLqSflu-jO;0Eb}|xL3UV0#f&NmNkUAdG48KJNz5BxaG}(Gsb%A6II1^& ztlK%&-Z58#s^c3(We-;OXO)TcHuR?^k6KGv$Fp%36Qx^;e<3bc_zRGJU_)kui{K0F z0?`66F;h8tOp503uc8;ja#HDatRC*bA&GC63h2&>Ca7d&A7g9_r>jw6*!`(cT4%1j=a{kl7E5K$`IdF&0tL_S1Xtea#G zDJ#p$3x*+mus3+@{NVMkhxf0KHvkbKfxT}m7%|Jtm?=Fr>+tap$tCMTIJF+;W&CpB z^ypCp9CFi1DC`-__DBN9Zjl~bxPRK~n^saGJ_#Eh1;xrhsZoy+U&KBI6sr8i9~i5> z(HO+(k%4^smAYfQmYRX_ra6VEL}4UeSKT*T@FC?2;bC%MyyRr z3V3~(Q!b3Pl8N;n6TI`GploU)u%eBY%>Ax<_aB_CD7Fx`F{j41P)iz6fRT}T(}wL~ zr#L3Y8*60~=wt$a+5W#now9|T2upeJY|isSw$eK;r2m2Gq%+zdT$sO)04=B(O&5wX zc!p+hnHN=haH+y@)zgg#< zlg+9!)+t9wEAHO7jD0v4|3`Pi{`p?1&h1K_wZ6rdv0UcR=4R7pc_-vva!z2qx=@LE zY0Uk)<%wuCOgq$doGYWAx4}iik(J|c0w0WEPzv+G7;EhVt~XqC8~jsLj(dq8CVa>C z+d}xT;kjJXELrZ{9PF?A+>6MIvfrPVOSOSxi)?*8aM-r}u4|;$%MHN9w$Yi5 zp4Sgn4Oac|50`=0vM?`Acc8~E{MQFd6RzCKx4|Ce8_c8Oo0C>;HCLUeVGUj-S2Lt` z^QASGXeV+18N|}xIYEOqcutUF29SJf^VeI+tTc`vaLQ}?)wM=1mC&(x#QmSQ#^@Uv z|1XM*rP9W1qA_`Cbh-zR_5ZM3T8!6E=<3O{rBN;OUmG4><35Twgh-)fGCA?IFtKa+ z&iQ@np*MBP=^eT$@_Sa}luwU&GA z;l=x@!&oU~d>-EH6=itN(o-0W7`@*Xjq-yS4B0Kf_X-^1ZZz1bo)amLkvc{)o@Kn- z40slmyFh*C2gKR^-bf=xH{eaM!z49?SU(BQwUTLjhWLIUG5WY0ZGm44OZS}!0Zg2( zzgFHbTgc13zp80#^v!e8)Mi;=m7H-jU6?B71=aw%U~A=#(9TPe5*MK7e%0byO@>;4 zO_}RUPD_f*v1PE!$=Zz(Re6Q}P(C4gQ zXUJzbi+x$XgS*Xm#PkGL^HOQNGA2A3MK0*nv5C&J>pL(0!SK>$jm_r;L-90dBH^P5(wy*@-x9SSEqRELe~%lizpgGP8hTWgHYZvOYpf7HK0G`G#Lu4~Am9D@ zpWxx8j@taOim`IQeMa9B`IO%n#+;L;lFhXa>KdGzGhK}z4uscQE3lQ?2@s;SKXJ+! zI~8C@q`PgOrzAyzhpCFjGk8{B7#uyi#}l11 zXgFNDWVZZ^vjf}LXR5s{RBqdjNbgdQF;sdVea=TJbP_PgvfUo?X z8e}O_Oli80umJKuZ~r$x|G$IbjOXu~aL5zbW$;0-&(C+;6I#4CEPt}AleZ>#;`2tx z%L~b6d9jINdM=*d5gHnDg+-buBk2Wo^8u#M-|cQ)Z5yafi%@P6I(eEPEFr2m#CfdA z)gJ8ZeNYLiI`7*uMe6tMHSl4u4i@~6UX)SgF!YU2AuEZg_0_(HahE-Mb@9rBW@MvX zCpe7b>8z|&TN25mNcZ=7(kPj+vzT-_o9P_KfZ@6d6GqpMK4MOYR+ECKO&#(XTq1+u zYctK=hJ16bCM!5Dm+SKM)YpAb?#@>oO1+3=bB!IwKG%)lhhGO1jaoK7h|wl#nqnQ^ z+jwj|9^>L4sm~z4u<1ymiCZHLLeFM)2`F0T1VX~qTCh^x1vDS=WTdX_pxnMMsNfsa zghfcdh)KqTv1&WWw2$qLJe$o}YoF53h-^X~mrZdEMZFN_U~@=Uk$5tj&tY^pT{mb| zDhP>f4~HQrYNr5`r`Z9%*{AXmgBK2$qNKV`5PC^?9N&0dPDQjmJ_@U)2M5<>+({(@ z!)ccwZ8M`X39(X%dB9=z^)mnXY3E<}NLe%pIA(1XR%Hf+LHPgX&sl@;wt|((2#~KR zym0M)r5G6{*r?j{y$vG0 zUS}LL%2uN_7Or+8Mh(k}vFml$15n0WR16*1muLwn$=zuT1~DbBeFC71MxBh*AjnaR8tO+Ntx-( zZW{0vYR3uM4l!M2_4!)PeFEqVmbAxaJ-;ahZG@t@qrXw{4#hhh#WrUvK2vhxj#%yG z#xmKHI*?5@yX5TcQdAVL?}1kYWxdCn@_b=tb_RF!BP@TdaCl2!OlzeCMi;tjmQ}SUq%cKRgn@;ouptm~?+_Bw$ z&){?cp)ys?-}eSzT1EibVSSz&WOr%#_V=;6H)8Y&pU?@8my)6&(Mia?!9i0bLLh;;fD%lgRADn#{tC`7Uz>%Ctbg`-L9q0y1xd8q(QX0Vn4t-WpLP0gE75Ev2Tk) z_8I~K*T?DuB5?icW5=)N7%aQP=mHKxm+6rKGt&}dFze~;kh$4Y-)Msgh&{Q7VwlE- z>@xdS$#x5Z$lgDGP6ccP?J8O2q#z!E!!SK|cLo8-wr^8?)crbOci6^UbDokCb6I$D z=fL1I17mwhS%3YI$^UKHOXdiqh6zgX8V6G*8Er|R$`U7YEGQp5D z7{^Z?-0At7c3gzGNQs>v1Wr!{ z8_HlH6R2VrITW|sgS|ewd%8ML?FfPm@11bd4DFL5_??=*uijD`W{%3rd*g@<`(I&b zI$r{*a6;OB+zuk zj{?G9pT}}1Hx^jNg!1jSK5;eUpIAkqb4qbp(L39-m52hS-T+R|a%%98%_S3nbo%>i zo=MziXx!(xwsW(AU>kRm6F;SPS|+){fE%v2fRE?1I)W_WQ#?%f^l_ zh8lC{yl`wc#k@ zd`WE4Uy)*-qqw*HuN<#lv9pOKbPwLC$Q#+(P#gR~)M7REaR-nsR0c3Z@*56BM)W*J zaF5u_VUPf5CNA72MAh`IsPTqLYr^dKQ`YA^E7$phJ^shnmRd}qwNsfxqiJ*OAEkFrw?7eD*Mh|1 zlnFy2;y>H-v8byKlRT9Xs~RIKd&`YJVXn>z_W)rh%yLkJ^C)k>J6_cDDxH!MaR2^f zOz66o zT>|wKX+cJyi4gnFv0T2%Zr_X%BbSHw*p5&Q#`Gm6F@$U*`O0M*M&;JT z?dn{+7ysLo z7)GXNH*vgUcVM`svjP}_c8lzD5PPK>Q9P}&!?U?bzaxCqsd3SKwlBDx$N%wGBgc^K zian3dV$hQB{#^6Z9D2URW{Wo>tvIOY+TmS3O&vHb*v$unf`Ssqt+; zZ!vDwI)jFEBZ4w3tO~4+NK1?cc`n!}>xP~v1reBzImZ?B4+aF1Z|VrUWDbsz74ONW z8$dOz@5Z*Kwg7c$uy}+6%POkQ12<~2S{0J6|LiGl-~1obK-TZBH3MXPk;j>m_X^c? zMWIeM77e^84+EyqG-p;{1A%Hv?hUu5mgWq=GN|zbxC-YGT1M)(#yrXV#&a2QE;a6`%S*Fk^&b3R`d1rLAdf^hjWG9j#Gv>Ia(Yk z@Vd&_%&0s9-oyl#oyc3US54`4d`=Pm;v?#@mZn2h)_Ryd#?eVibD-SX(8MdrU}pph z7Vqz_#zgi+R(unRCj-j?G-oS}iWJ%51#@e>h;}^rozJ%-1N6eqdSCDd+Pv1$mu+0c-sHAQehHd|6+npMq$PJ^qfp;qwym}<*NL<27YB|*XDJTa zJ^qMIucS{-a*ZY7I={LTjE7ce91p(jp=)1msm3FrWnLGFMr9{`GD(av4qZ%CWnI*x zCm|Va;H-H;^miAr+fp4Ub4tD*Ww`d_E@zruGMS-$Gafg(dZV2WEkARdpbeQ#NlF$+ z+|Yirfrkh6M{wM`HG9oZ7Z@s0GKDVhiSRRk@UYilK)2;2t9j#Ejm+M=`IBvb2d?7@ z+ufEF^oOeWU#a^I$q!pR%-$W#p)b>jA>+OWHnDw;)aaoWv0$oew6v#dUMtHIAq7&I zA&BNm3I|2rOP(grK~C(F!ZZI?6!4}aDW~$59o)=Q+Qz%o2kfz@*4aXrDWZQW4*x8n z9%IJZtgnVzBEQWM)-ElRc%RUVjgDBG4Xv%xs@GS~LriIwmk7;aWGK*a@)8GPmc&E( zjyMXG7(lM1k%i=odZN})gmM(Elyqvw;O%08#4wZzCKV@OKc-h2Ryw{kZd^&XEsQ~? zkY+=9@VGWgK)^w)EX6gEC;N{Dmh^ry}!`!NvW{n}9%A6>C>O4;r>B55dG3+5LHf76{G2NuD#8k{h>cpfk zj5A5~AgK>Zlth_D`uqfIW0F>2(^n@RMU6mhAg~!PxCp9<_=BRa`<+I&-E%>F$0zr4^>+ZDioB~oOFg#w8{cYOS`yrYBJBMtt*tJE+)AQ z?S(O;jg_=1%LyE03g6KyN~S2<4T|5}7g*I(K3+kLXVF<0B4K|drkzE>s88YoU)A)C8k?Tmp5|M zQVgB2!fl$&qhL#4w|vSVCvLMUik61;K!FXr_X_dyO((GvznP@`=V0D@b$y~s=gN>nA*=QyRGPP z(*b32`nh9(BfM^Da5ziJjjIWhx788S*P)S5Y8Jb^w@~^z*xQ@aWu&|T*4+qY+%fd1 z?cluXj&c#N3bm7))G=zg8cA0qMEsv4Z7@9lG*+r{|3V=X`0`LBmPT*Y(@Is|q_cL9 zC9Nx~r3YqON@?oCyfOoF)R?uZZfPP6)|iT>s_qD0gOfTFkNVLX zUCgLQ#lASkcr!-$Z2@#xuj`GZ(O?^xDX=+vJdAIxq7>2(B&#wCBaM4~vJGZ)MrB=% zq51M#bqI{Qc3v~_xu~h~#mrH(E3v;lIrBy*HCuI<8X;aH_vjUx> zlakIZ6|JpNr7!)DWsDL@gW^Zw?4+fLzq}n)XeNH)28az!R5r+(JGioCN8iQeWvgUWX8-4 zi7=#;Npdc#34nkkBOxEt>>1^XTuv3s*NvDLAnQnabJ!T$VZuO%;n7w4V+^)^kXgxM zbJAf{-{lt-nh{E?vAN^NN82cU9XDWum%vR5%D(TQkJU9p1D3f7s{pboqsr9|JQBec z;^4u-NcObM`!$nFebbgPCQd;`W(jh%M!0a^n152yEPf}_*9uf4;%kw^RaVEuS_SmJ zy#XUHBM9H)Pl8TP(l|E5SP<#{%6;tI25CPtMg5s+_P0{TJN27hM^%w-w0!8IsmCxP z;ODrlNq`R{qa%8WPp3U%g2_3?&p6~vQy1*PKlHivRhLKo3B8lo)(E9@kX z0E^U;^$uD*Dm^jFOGkVYbdm({*P$!jB#Rq8;k`E->z8}Xw2I|hEB4vD9uW_6S^H@y zg7SuP`@L)bhrbS>OjhUugvzNFB%xX{W;i6AV5-!(he*zvX42T45RO7OcrV}CW6i*e zsvwpcvMJc4aZanyKSB&+T`DxW8RPWU+U^0<)saXT)5+&bzl_Rs#VYJzG#M7_lRvvL zjJt8(GO4+BU_*YpT7;G8Pla1hGMm`OITL`NanX1TjIA9?1(ZWtN0M#kx6c?^uQBs( z{5GfWo{D4^rOWzUFbqAZtv=CT$m}5dE4+$bABt$Jc7=YtD(?!%7mmkfo+L^}+hrJM zUFUl7tUt0pbTf@}K&42GEFROii>4-xG>6mm6-oF@s1jgJFc}jPS6~XN>_Rv((njF5 zePg(>Nm?^uWk`8OOCjHbBs`JCjOGrCw~I=boRuQ2d-54HMB-rz+x{#dkL~G5bU#qG z*^Y=ZXwbQkU~C?@0k^@R2%dLLgDa%XD{kJ%A#)Xz+H=s8>!0!CM+@kw-ZW!H+|02B zzDW-chUR%Ezt{-Z4zMhbn`=YvbJ;zlsWv+5*DGWDTAiU`C_n6;NKC17`5S7hI;eHxUzvPvO6@XC$bmW=4fIbm7^L78! zs1d8XG5f~bEgz%ijWDU^$;d2DXU@epd~b}?Wdho>@MuWKRg#F`WraZTk3fG7agQiA zr^fD4f{X6ShAZ9yJ!e)<|M{kuyQ^G-E#nM%k1~NOS^LMX)8cR<<|9~Qoyox2wpGw8 ziQHVLL24yE2tb4-q9m(1Ev1$5=u~)~fA^g>l>&_{Im6{CT8Aie_yPwpnqTb%sr7e{ z%boT-<)Au@lUgiW1levj?YcY;4)JW4y{6>B*Q$co`?p_eXE+R-zu5mw@pHZNAV!lM zYLv`k>DQqv)P>RKZ}&J1e2{Aja}{(*wAapG^~Cu|zDF&_NaPkGvu!cp{m5PpGtGxg ziazCsn?l|P;9Pi{1q;{~r0mqz-zXN@P^rtJwke&7qNaWBSI8RYRt|LAZ^!(q>>%3s zqb>Jn%A$~QWSD!jI3Vzl%C;UdaZBwYHVpW2xKl z9ugL4N<}c!QYoLz(7j-r=}(AUgZ`JUUiOQ4$q3(>H{QSrYXc-x?qHCUnA5j1ShQ{^ zk@bw?SVTRUU!%i1oF9}2_f6F%euNK;8 z?GRpw4s4oixMY@)Bw5nU)w0Rv@43`NpY;%<`|-I>Ge$>=wAn?RlLl4<1`ac{@1NRY z-7Vr#jfX(%nF+*d;a0eKZ^(&dfzlGNsOn|~`C(X`udhV_l|0p(Q9vAlGjnpfYV+F} zD{iLQPA@xqpkvH-92KVO(p2ZGt5N<8{|EW6;=6zV0FJ40Y|!Ym9( zN@{3;qL}Uy&@x4A#fcqNvGfa1(79huL6?H-GbQXK0^#-){L=P|isE?59iFq^hhvC0 z&Zyv!8dwm%b~gvt71sz-8LUnnn(LJf*|KpM*v?4?oCqW0$t&I$*F zzR)=_iC}fv!?Oo%15Y{};gfwmv(ZASZ(P!K8|f1^*;0%~M#1=fhWxFr_4nJ}sWtnU z0~_grUwZv<89KsYD^ZK0IIPAqwwgY=WKN)|Lm|}8i`s5=Gs3dt`Oe4C@tj6N$ElydQzkQP0iBo zv*^nnqXr~(?rdYQW2MlEc>Q}(N>BZ5Mr z(ybTxT)k*3)T^%*ZFKze2Z{gH#&D&LW_?DASp0vu4SLmx?@kU zy%O68{A9iB z#|^Phngu<1*A?@K_?YJlT5?Cm1a~|AOYVZ=nr7(Fhi|btkGYxqzm(>XqfHfPTHV>b z&@@9*HrF+yU7(L*3als6(FtSwcKb9Mg2-lwmBLqMO*1Ms$ac1DS;f1*>f4+`B)uV3 zR*z=7J4Z#sUO+1o2fd-!-5+--gJYz(Dpm*db zDGj$V_gVJvJ$^@{(<5|LZu7mqK^AHwu>$5Yp+4UCfGzvlezse_(EZI})Exk&qSr#c0{W8> zfy)4q6lg=WA zvLkVzy=k0q^d6dW1UB~?E)^cKA-a*JH5@KzY;M3F>52%yHA4`nGs0mc>uiesST#9V z9zim>WuNxsYWG{bI4szo^0p}dvoCS0#O9>+d600i&9RGXnX#VQVg!g&(r9W6Iq-5+ zS3p(LiIrj7RXUxxJ-T+<8xPlhaXNKfZOwJx5EgF@qYKY7YHmDpjpIMMrP9dh9bzz^ zOHb-q0Se&f31|~6UNM0}sl8!V#-N=$my)QI3j$Ur7wZ};?K+D-T=qn__Lm=4rLoD3 z4jVd2YM`e~TP>;TsgZEwn@5y{oNhCYFXu{Js@OnA=z?xZERLgj?Jp)FT5pOxyP7^enF{A!M$=#K@i_v18#pz{fuQg5|vs$EVcE4fQjq|Ni+HnS)zYF93B69C)l3qS_xThN| z07l`g4RI-^QFRI+XD@WP>`zeon!1)U@xhVQ$@#-pHs_oJ_1EKmp{?WV$N3<52BQ+& zUF`sam}~p^*)lm(M&amCkwh0_qE?4M%a(g{PXe%C$j0hLUi3C-=bJYB;z5hAU3AC zZJoAe51l1!m>PKsu$&ZhN4ptqbwD(XQU5cO{cQZ-r-A{#FtRhASDQ?jjfJ{ z*!|Dwyju}nXR4jKs&}h-h)E{hNQi#sp>V z8_)htZU8w?h^d+hZnIfzHft%s92D{GKHXr_c^U#l?er_cqx9T(@z?4c%AqUG#5zDT|}e-q9sm@~uam&Pb%B zqaS%gTG<3v-73A$`MaTuMnsE6Bq!HIQE%n_u=0Yolug*PK9r!nFx9{qDE6m}3JsBdr6$|=E&e3rEKvyJNGnA2FUvGBTo8^OG4C<#Rf`3;h z`5P7r4k81T9GbbjvU-5X)3o63&nvWPJLOW`N^0ymKzQz`c0k^Si8;M87_cFkq_E*( z^*HhE(JtVYHtAwk6v6=HJ0FC-9M9C&!CU=h%Y@#(Sco{{f7jk>hycUw>-6imdO? zjA1^bH+L$MC8N@+_m#_TaQ%T32AdQ9tAstE9t?}3AmK#oce+Nf$<6Htuf<=gTmlMl zi|9bn?L!A8hOb!c`Sxou&NYbnuK3UbGNqVD*G4PnX>7gcZ+n+gz3-`bf4uu~a&?+v zZ``B@m50q3UA+&h^z&U)ZD`{|a0Hx+ILlhve(<$4soC+HfAxlRb3xKweyoe}R4(6d zJ9B>;2g$AbAj6>B*l_TFaKbAcb%oZW@rtb_PKkIwQDBHE?cX3~-*aN>1lJQ6;hYr* z>;}SNaY3Un{8KWr2=shf?xiVj#wP{|Q_<56HX&)sL47WcKna{DtlXbu2@;XY_J@RS zP*F)j{_Mi|Nm%PncL8!YsZ45#@b3%$(u4>QHhM%Fzwx+)V)klSmy{Y9#rU=pdpUk& zR5a1=#C%oq@!3w^dhXR9RIYm{BXuOyF@rHeifk8z?DeCMfvy?q?z~vHtB}OdI0)+L z-~^whlB_?x+L?~=LIKfsUuJbDAFa+f{Z=yx>6h?}Jl^R8uld zwoO0C>Q#{wL`1sZMh2os7ksqCp7ev8aW5GsD6<%|d{o;4kI^%Gg%#^In_2Vh)X$sjQWV7w{okwCNi=?M@-*MJi0w(gSv zjV;rzO;@l%7#l=6C)y?9eze^zM-+R%1xudY{#^-=B51P%`%>0A*8Ml@4TjH_-8EiP zWXRdBU2Q!hp(s$8Xwm#xg%w>?4l0=N9}g5bZvW&_>^lkM{miLw!>_`-eD-Ro%`%OD z+jH;DGA81zNI;yieft3h!>_(YY|Xa`fc*1om19}UyqJV_9Pup=FA;}62k*70BT5qs zmUMbcu@hR3WJt=TyT*V@wU`)iqckJ&3tts`vo2z)zo6|6m^3=WTO40#VB7thcd_i^ z%va{t6^XNovs|?j1y`2YmTJ|kxY898UF>RM$yK_ft4Dc)x>$|(`T#BDy~;U~?wM9g z^!GkQuCI=|jIRO@O#ZcwroqdcjDnZY91XA_;bXGiV%_Hk@Vkr~J8R+=@gy;PNV;fx zd=vpjpH?^KDK_|QRp%}B#5w|?4J18pKfNr&>mwa;IxZyk8TLTfOUIMBcpt{mYO|xp zzm7mVVs4Nh-oOE}Jsm9H9q#6eUx9JF6tb@0KZYUo0O3zQ>bsm4!K$>~RtE69yC@+i z4Idg1d3pKtDK!r$l6t9O;jQV{(s58|8#rO!D3F|8ot{XFO=kJ0u&X?ed1%d8f_Kon zq1F|4#Fv06Lm|R^1h--1)x<|lP`s8PVZdJb z-k#dUA;r)>qHaf6jMR*7(4{#4S7ys&h<9}cLCRel_p6#n}m;KM&p5%eTquXA2NzOMnE9P)PI&@~hN zpGr{bqQNkrga7qsnBj_o3vs$U%;1VJ#-|Gn&O{&g^0|yrFUgB?9TXy z2bI*LQPBDHS)PruT79{E;rY;T>eY7h!?f3(w_!WpAAPAk&nP0|sdZFWXAF>=ysr_a z^xpp;!rn1B(`^ge?T&5Rwrx8dc5K^D$4)xd8{4*R+g8VRa%78BM-8VXry@QD4#K3A@wtQNJXR@s(0axBekm2n z=?#oqBmgd}#mBa23z}~iJ+CBt(Eu;IM4eA(#N(etzSzzFtgGutio>qi#^`Pf5euWfUq@6GQ3!K`+H zF_UctgpTt*73Y7mJdCy( zYr`c!qtAPcYGe~1#UCS&B{2piJVWk-38!nPapHfjbisMdEF$0YqxPaB>6Os`jq(+R z6zQ)X*B5dEPEVMT$f)xKLq5e4FMX~M*>#R~cM2E~hiOrpB)s|a1vFI(JBV-K9}@8G z>37*Q@%=)a`8T@$VoUu6vT+Mq+*7Vr#nszVXb4eI(r%mY9_&266^hH=nwxDEO4LdK zynL}o>2E>#YJ13Dtu>+#TbV1ASKqTfmbXZ&z6L^bo;~$(rSySs$K5%p1-?8a+g)GU z0(DV{_#E<#K*VN0e?u?6P*ge-gG4shA8h+{C(k4h4#&Y0g68!c6qD_}St84E=_BX3 zUT|nny9mM}1hk9o=IUdz2CN#;)B7&@q{LV-k!JW>e8qEXBJxAC?ZcZ`)|a@`lYtlO&*Ezw>ET ztkoI(s`GyTrttO_{v4<9a^XX<9L%X-Sh}U*!0n-HWHcO7tEbItuZq5 z9{v=lk%K{nTq#cF;}<>(&fsG}^RBa6L!HMTm-z{;?1}!WC52AI@FJ{vz4j<)sK;-! z6Bkg@_luA@tH<%tLmSw9%H@8mA|$rf2>r&AWk1{v1^wjmjgxn9Xy9(Rx2sMZUXsh? zvb?wU=X*7&F-sv`CoY*a)5v8BUsS)g~PHV3=FPV`4U%5yH;x0`*{#pie^WBqk z(#sw4o*d3#NEdFckiO@5OcDxJA@V&bmOD=Rgo%i1^CBXVA*E0;bNZw2J8GA#E_qH{ z^D+eV-bh8Kd{&Wy^je$kk%;d;*jCY$A%~k2wfCc7Zo(wwx4qbeMy!JS$w!oi{am_O zaV5-5`plchle+Q4B;Sl}>NLWCKxjWYVgVCCgz|7y7a7nEF%9CxZ_{tSk(rE_E|D$9 zB$(D>2IKwWHAP17P+1t4s_7!qduYPsXp_9m-(5)~ds3P?`lBLy?jm`Y9rdWmep~nT zCa;}@y^iQit_IUT*N8q86)*9Gc%tF;#+@HcFWQ6Z0;sb4+1Tl!bfq88h`hZuBabLg z$TT&rTZC+Wwd;j84ffIcx69`v?4K^_yYdHTTwe48nhBry8m`>T!4BnoVh<1=ap$TYEN!tG?vuJSLiNuQ#p!sKd;{;S8J0%5?FP zi{s1EZH$ti0@~ntWHOlcxhURmzyG3|j+x!ia8G};*sw)&7Ogv2Z}dAq^{*A&@OQ`y zwj0*C(GWu~-;+M6kR0J+y4H%n5Zj3og?vTQHoTt>6N`6{d`t##u$-X7EU??1 zsgj>>rq}`~e#9HMIYm5*Y6akA0acBRVn2vOG1m}kPBMH7!u&*I+rh;_rU(EB$cd*f zD9dGTEEBhvw*sD{yLvecpvSZ#HyF48iR?6X3501-__G4EwSUgsnF#|pZcP$iB zQV4uYSfkjYpee`zXAO!mNEm`{zu2W5{g(*eZVMAY@nNwADouXpx8hfhSybKS9d(aR z@`{ZS8$-W~T!!5w(t1jZSn<|LmoNkDI{6H_k)~)-~`lap}fyfe=o=W zd#x}N*gFJq2y9?M3z)Ba0FOHbfd8no&CL0Purv?%<)v@=_dSZLC1*@LY6Y!_WER;h zY;u})YlD zgqe*)m8R6)&E;2LQ11eb_d@3iC&~27os}t9q*Y`;!seHI0=wz;l)T)kCeFjhWi_D@ z%1$Z%R{U`l^LLw4(0Nh5THls-qD4c|*9jc&RN70%J+YST?nmW;5cK^KdR)$x(4Kp* z|6{xsXI9zCls6S^Z2Nle+}(83>QUl{{cRQYj>tooqhvhz)7)O(uN4sU`I! zA~+KKgsgH*2ds$y2YNiBSl)M8SZ9h+5?gi^zHsoK9P;T`!GC4}RFK+`F;O%w8ob{cMM`~8+PJU=w@AW# z81;9I)wount+A}(;8(cN>ttMRHg1!8?C%?f_)N*7AG6O$;_H=$@Yb|7i@|0IAo+DAFCg3dK!d4dT#y)E?BKCP^ z^S7&hy?*wU>9-LXQf11I_>-46C$Lu*JMP(5WUZFOe0*A!wD0fl$5~S>ZZOTK{{MI# zz5g#>hxxy}&a4~2e>Ym0@tn$&4|I+#B_*d2U_Srz$4`~QG;`<(3``DnmAV1St*O`& zIpUN4H8C{-E>$MksF|O=3Ih&tsB#-9=H-!pjK_yrA}G3kP$tg&p)Ic@h`Je3&$q6O zGs2)^jRc6|9{dI3oF!bm4lmk3vV*fxsVW=VCDpLh5P{>ltQ(!EMMQ}Hu|+L&=r%L3 z__N1@Ys+nzgvELvmNsG>@ z8n5xHdoxG3!Iug*@LJ=2GT%+jr@7W-rz9`BLdyCY1U-`K9#g~3wX*{9A6`$DFbViR zo|%8Q>9|~_{e<(Clc6_>9)j|Wd-|)p)@ctieJe(0)BHlt{c$1ISffY(`j$oJay>3? z#f+H-^#H=g!l=YtR#IY+=ETHSVc+7e=%vWD!IH32-u{Dn<5xmiedH$FG$?rpt7h6y zpW5@?M8J?#bV7|+x;@DyL{|&86?;C5YPqEzm@qK)W5hYql zNhVXFPU6t$3D~R?LzXeg7&|Vg?0hYAojRB-k<^*%hk*9bT0xnC%3TRz9%=`%K4&F6 ze%e{dQt{8Q%4k;hCB}yE)!I^-IE!M+B->`EyuBvrh??NoK1yMxESS-{j=}(}q`bx2 zv|y9P{5dHx+Q;-tdQjSOgSyCo@GGn7B?i`^STdSgqcrs^$F%H3R*aMZ1HA)K9LMV1 z;Ig5DTiCwgn_~F0WejH{0U@?BW(@VZ%ty>iU_M4C+ZX`-6l06CJgVuxm3y-XNT+8o zS<3`jo*!l;9=jYmhm068^K8V>1uq~K!~K`UfwqVXA4>uwC}zmK4g3dMN%_crl?gO+ z?1fLAQ{@Dj@QwLL_xa0>(FXreB!N7oBai3ZQDScmhpj zzt1Qvm_wDHPCdjA>G0J5?<&U(dJzG1btqbx9tcRhfuH&}DqsO}eUg19!G@kT`ANx3QEk4ag#y*~LGHv=Gp z-O!?6Xjf(P`AtzA%=)=9gQ3Tu>Yi#qlU7@zH#gNO$OulPS1z)ljfo6~G$&Inh-ZSU zqB-{nCX`9bc@%w;^_76&;^q}M<2tCe%yPjsvKtrnlWVn6mAh4;e$f$aGg#QZpj~uE z8%XPz9&e=rgz>Zsgvc&Oq64|U&vIqS{S@fhn`)66vWj##_AGxFZqj%eTcaG6RJE{( z^5U$|c3-vG3p{FE_j+fsRjdVjD!9L?-v4-&t^x$yj1qK(wyq>%?iqcIoaLa%Cle=Y zcm`LSq2t9SNr@;ldYiHqODBd0y4E1_50LstPRgogMvpM5=T+6PaQI|Z3w!*Gd5kU1!ixYp}J2-2|xy)YJ<`M63BmV{whkDwKmb89yT3q+48=;VVHQ+KF3HFdhlxzmz6oSQV_FZk*o16w5_5Me;kF8n3hF8+CU zHvqEPQ%dWS=jl-o+Zj8~?yG;~B?YK?Fg%mZ+Gq9_ICDa=N)N2ArfxQX>0ADO5loQ< z`niBaM82)94aza)+(p>u*?8aoTo+}3lw^r)VDrh@sJbbf_}Eu$-=TMWw^V+Lwq!T1 zeg)OY_rfGZ9Q>8%z6mf7@`wbT;@spzkLPERyFHg%Nqw5euV9TF+itj~kO zf5qVCWPw3W`SoNd2?|n+VTg>fX-%-6ol~HQP7!c{VWd$c$C_ES`{h}mdjMvh06Ud7 zSJHk|PZd69Oj3Yv;Rc111T`R7f=d2Xh~Qv_J$tztqG{IobN*tB`0Mpg;rH-H7*hYM zMOC8K{3Up@ch33`Jp}hV5rV-50_11maS}{&%gJ2teLDcZqCbBHf1u~bYf}nmy`_Rf zU&@?*gbQYiM5eNR4F;a5HTg})Te2jgF?J_G+!T(REr~clcS`yK-u= zIL8@8FVQ0*hbGn7DnkVA9Wg9qI1(VGs~L@p&9-A0DWKn#_2%BDP3T=_s}=&N%Vd2PnSQp@d11&0c^Qh?TJIQ1l=A|a-NmS_dukHuf<%`@NYQ%BE=kJ2Ma6$C##g5AV z5pDFO9=%p1^2a{Uz8P_`p&8q2dXL(Jgd`RqWHU#rfv4z8#~h$uZ8U*~vmJF+u=}~H zUjf<84b(9(bH{jOMx;abLAmT4$ofiv>q-oKL=pt>ES?jW1V{tkWaY+|f695uzHuZD zH(Qfzj)e(#kggwxnfxRo!dAm zTbOlMsbDSt+`PCGl@VjQ;1P9F)!LAgw=|BCGEJy3*~YECI2g8w(1aRA)ydArNdeny zaITGq%`#hI7@d_n(zMb{$tIpkxW-{Isr8DIUNfyMCP=p~pT-Ugowtr`m57AW#RrY< z0`C~qR-_+#t6uanPfB|x$&xy_!nJv3DdKx%NP@ylK=mFkUZPiDKsM?6!mxyYI07-tX!N3lHz=hWcDFO+4eV11uAs z8W6-qoauN#l}&5@CDUqr$+TGx&x^H-R}^;Si#szV)v7HcWB1{rkiPG2ozLQ{SU9*?}&o`>qh@tWpbcSS^>TY zkmTvd*Z1kq!4ID(nI1_fy5v*{@?;*#)9r@>0>%SInl*=IQ$aZoO7C_IOD{ABSpuYC z3Ee@oB`>-m00MKTJpNtSWq<+`(@BE+Q&3rK*b!-;S^_?CJYb+LR#GnF&eACE#%XSN z|Mz9p#zuG0SRzmZuZLMA1JlYi!q&eP5dwtPBZT^zW;S;{bX)Wv@5Y5M;Zn0HAvZ|J z;lZu?PmSf63yw{FM__}BUZ+AtpE&#%$aktuf$yOefrq~Ak%Lzt%B|quBdNUeQ}WAU z+L_%KO^aPkXNxOksmWU=_IOIhx3Y-=p232G`1e2ki-2Mko?9qcxSu6N%)4^(0}~Ar zRd@QNA!$XDbJf<0NrnhZ4X!BAKR;bfwvi8@((*5<52)W`K3RGiulR7WlFdOc{?7=5Cs=HLuRV(a za7=Fo1``$&UM76c4?$_r_TbIFhRhcpA~L+&CfuPTbUNuWf_0TEHP>%iYy5)=(;_$* zR&5SdLV&-oS$>w00&Jp>#|5xe z+Jo_W#T!V2QZ{}`YY`(l>B3gva|JHs`vKG8&MDT+K1ErM9__V<Y!*YQF2wuJj_X}CtccsZnmvp~<%HwDF5$ddyM(F zZkOpNEb$+u^xq(ywswc|ekC*TWOX$xNo)^!85}a)AUr~%f1jz4IKvM94h%*R*&eZb z@}*^OSPq4+!Y?TT0GssX^hwqn+v+|A}SA+-XV6vGL`^#L&*LFlASs#zhVNiY+=^@*lYLZqGVQg7;4DWI{!EWZy|8L8WVTryfB))-ZoON)nrAZ$u!<5T2h# ze5w)J)SlRoS>UvlANulMlTcwP#RJfgJhdT}UI3w;|rkMj)6ZB4M-Em2_}wvbz^v zF6Uedya0VSzJQs5T>fwx$Lq)dz@_y|@O4RVaNiRlwgntN5k+reol&Plz$#Hnw=klC z!(}_)$?IX>9#CA~Ut^eP#%QnI$LKg>DY4aszkvM1-c}1j$RJT7Lm}!tU~zlIv&e7- z-@U_@$WR~hln z9+CS$CHz|6n1>$lYRu7R^w|%G22LRMwZXwel%65!J1ons?>ks!UMNs!z1*Y^TLx7^ zG=YC-sW0Tk&bg_)ik6|CW#{e4B=SdpPFKjvpVMf1yWCPZU2j{2LD}fOD7=$SRvYmi zz=s=8Aq3e3Pa2b!uHa(`XXun0hS&p6ry%{_FM>uqZ(!g{3b7V@dL$1)MjM{}w%wpM z>-!~t+?A?b1#u7}J7ne0OLr0x-HmFP<>_pu;~L)AM~+2Cps6H`*g# zeJJt`@y&ow4W8Rp>@qG{8R8RC>zFA&Mb*DCM^#Qi_^{+u5)1CH1LCSfm!QAJd6xM2S z824iva})1a;_y1nmo;n5 zJb*4K1;qtdC^+GC6Ys@UyJ#Tm$VPtmD7`r5xay#fnDmzXG>&1?DTDY=7F!Dxm@dqc zlhVAKMr)7ix}fVLCzspKJvzmZ^0ghZImYS~5uQ*qi-7A{mJF>5MG)C6B#__p`@UuI z95+pU4RDK-fUin&W2*nOYX!ePS!|*SbjTRo4$f@6tzRM~cM%DEZ(`Cl% zKQ|O7qN9T&4jClwFoJ(jd&5~rAq6c9g89jeaM`16B>(Wbu}O&8Q|YEX4=S?J0C8%n zyqC$|Xn1OS@!dx;R2;`P>M7qD$i|MMHwy2;{pau2SCvZ3uuZeT)hXNpQuXe=y_dYN znKe%3!n4gQ9ET?=Mg`iZ(Q3K1tux?AI!=tf!LBZ`_T~dlM7MDNqt+Nj;|Si`F)>{u zAfd)!Qf>D?3q)Yy4!q+aTrRZCar|_|D&lwck;~+O4LGU`#HZ{b8Ie9(pMgbFbCl+# zf?Qf1tgNvKaU8RHL1Ib~CFHvBp&?q=;a;UE!M57)TVq4uR|cCTb@+R9ke_9kz$2_| zj_}o7)L4l=Ta_G;AbG)%fqumjD?}-*K)#FTr$9^`3bD*kCnf246jMb%$ z?i%yU!`k-Zu!x>zF$%8^87L%n*A2~@og8}!-}ue;<4}O&Uk+`pkB~0rdqkl5iPzCh8{3OPBsvk*Kh#dWv?N%iMOl7vP=U`1R7Pe%Xhr-X?j7w&=UUxrW?evB=52 zW-PNqzgmf(l|z8iM&TJ2`u4PRThXrL$qaAm3VN{9dQqPuB$GDg6+&`lZmxbD%+Wd6 zH#XMq{&GR53QG@DqB@Sb?8jn~nMhkk-eitds8|83aKUag2jHJ?TBjT_fVklQ(3zFt zXsib$CzWgGUM?o7x{v?Ruxn1c?!wGtOtpKTKy+`!0*J+?qzb-Cx?|xq3$S3Kk1EPE z8_ST`7G|Hq<&vFpCR_r8fySyB{ihaMg83dl(qDNv=VC&?)@)DB?LDF*hs}L+6lHaL zft7wHZFRXAWp%nam+_~xs>-yoM>&290;W)bLS0NSinyeNC1f{IrsP)woC=n-(&$j> zI+IDhgHyWE=srzS6PYZRD#e`oOe|RljERL_noOcr=FO~jqB)iINg*{GRG~Ekqp&RJTyb6gSL2p-4h@Y_RuHkwqLJg^m6K_~oFv0-&8${nNUE@ekxLq* zR9&vNwLhj@v zhQ^sDVoxfCdX7~&Py8w*U0iia$*@3Umhv*RC)S83PS(DpJeYk7PX<*+^5sZ{>sC_I z?+@8}t;(bebun(Z6K&mNcuh{EF-69S#H7AW^=n_0({75%!C|#BBtGfbs*K@8W!?E& z@mSu&zH_)~5}E2ghPW0u-=_ZsYK%sI$$xu4T9zPC(9l&4P+Mm2UN$+$b0ITm4|j^o zov+g!XPf^Cnc@TW&JS(*v8YFdoTCy<%9!O6X|AbX5`rh@Q4>>BuJn1?TE-q3 zzjb0TYs)09I`Y^yS0$Bw^4R4iN>gB(MsWn7G?w^&ngwN&g^J(^1DEuMABgf(EM-u|k(r;*s~!__Wkj zW1E3f)rwgU>j1@}BX=qI4*&8Gs@mtlg?^S1x?8^4jMFOnbSI`mbhTIJ@3m$LuB;g9 zimhW_e4H_obMEMjKBtWbw;^Ss^f6%oVgtDopfV1WzqAHph;55Vnf5c%s$jBoee;-& zY9nSI&dCfhN_k;qX4bm2G^#>L@_-(!WJvG=Q7HtMQ*DX?#(8+W77%*SAHeQC54 zG+RD~IT0Qsu}n#}p2Jh|bp2p!6D(1vr&uXH(*&|aPZQ#_nCvp;C519<%?bd2GMs}% zW0?-Bn8bL-k`q0?F^Qxoc_=0aV^fow$U7RU@18jG-f2UxC(ZoR<79K_zV1Z7YW8D7*X8~s&)^`F4MQ4L=|Qm;%Tr8u zi#NM%gJ2g|P!|;(Q=T5`*=v^Z60%mkdPPPIctSG$XI;$4kpm6u(&F?yc5|B3jr3(? zhBiC%N)0QLjqJqcc*FzFN7ws~M$X|BG3Ew?|8td6{@+(^zf6(rq7}De&Q;H+%%fGV z%N4V8lvv?G(LN@rkrt8+zulo|ERccX7Ks!NILBe{lhLUQ@m_{bAa3yc!vl#F(GT*q zOMk&zoP3o7r9%DC9C$?0kAFml9|Jt&(eX<{6aTl$U^9eqBdk&~mZJ?ISjb?oPb(L$ zk8*Q(rK{?XcOc{cbZ;XQSz}6JOuDmm9HFCqwBQZ=8BRL6+!$}B%?Yb$Uw1ufg6hKi zGoVp+|G{#0uPUMJxFIOC?mW@*UxA@whiJtC!llL&!oXmUVVb4%7O6UE@4J27(&4%0 zs*j68%1~`B1qIpg=|@MReLtw;V^q^PkSa~j?dM7;qi_hpi@5tVox6ZWQZfI7>lv|r z3GPw#9{i~u9R4rq+0uTZ`KB(Bz~p`+#Bc1I;sXtJjkKXmAT`!C;4s9Pqgxek%H`_ zoK$RiBY!F8Er+I0hSm}5r-%Gi-%hT06-JJ#i8{J4rpE8(4m&}|FJ$FWN2<6A>Hv9k=Q=(ORK;QG2 z2@d^4e_UjIag9~~H)!&?AKR5Bh756q0&2%JGkSl5eeX%~|LfTbf%}I@n7c}0qUn9wA+(0$)y;IpdG5zg%*Xspn|Hx{I zufI~+CxOjoH_iUn>e$Qch0cxmcOSI73FCX!)Ns$qD=Qb*ID-z0)XJy(GZWWv>wFdd zIgb$goFYF~xIEtrM3(FmW-zAwHcN;5)AcgpcM;97>MBfCk2Kp>8MG|8RE!w|*q-fU zh%g#OaH*n~RcGCX3_Q8WLL=pZ8(6dYm`r^ZXoPjU5(|AI~^c z@i%AK3RdcYn&v(Z7LS*)Li7d>KBBfQp;oO8iJ`zFwfeJJ!l&?HGjs-sq4uo9%}Dam zIMKJ{QddRyA$C)~pJ>b>F0fLSU4Mxi+Bt`%y9SIr;j3~+G0*hzM5An8g8eD6Zz|gR zByV(TqWysZq%f>s+J*$}|D|oXMH$qFeVd8o!0ut|Aau9DIJ7MS5ygX1VXLC&YG`cA zUP1A1e5rF{LpTa!u}5f87rkm?tPd*HT`vZKuMl4{T*pnFwfBjFgtpQ#v>zFZeKF!8 zu+TQY&BYW_5s*pc6>O~d?2m*!D*_K>3+!V zI63Y_mLo=d1Cno>xBaB#LyKdzY=t6{pJP6Qc-X-ICQcwqM2U0>>{h zq=;Z~;k%;>q)(FzIg)Lfe=|gL3k{l-ZLhX`rQm&O%hSb*NBbK^qM~MC7)!PTC)ae3 zitXOh(DNP|KT=bC6m#1Fj!xUNjZAi`sr9|ea_fbPSD+$>?-%%}{8(7*m`+{LUEM&)@hl2Qf3j>< zK8)?7a06Ccvux{)eg6KTZ1gX}Gw);^QT1(Ahsj9?sS|Lo zqQi$P*NiJ*lhRb7Y6nG;@9F1$`cwE@!8h{EyM-$1Ya>@xHVq6++c%ChtVVl(D^_3H zG3^n^t`m&|>|KKmfUpF++Zai09a2$Z(>Q=a`*KjAtD+}QLB%JShc>B(dxRZ`ylD5*3oHA$`;94)!zW6~P-(3eY<@N(5Fv3?_6 zRrl=R!D2&=#4WAe9ief6D#sOL{i9ZxFrsq>6V{SkQc7)R- zDb>+6Q>etIG+SvddCY&;;7V3tTQ@H6Bwc~=hxmV2m+&zUWF~Q$0fQu+nkfhgjTPGlJ6P!DRg*31dybE(2svJH*@J*A6Wd#$G(K z=a4&3Yz4%3k zH~KU6hBL8tJ&#-uck%u#k?{$UWV4L@!;7XyBV5;3oCV-k8v;y(ev-^&h5%LoBgBH4 zDzggo*1t5|-|(dh31JY&Bat@8N%2$tC#wsO&#(?IHOLyQ)!|u)_juYMy3RGTwErXc3svy^NPlxn`=pBwNIu; z4q+?WtcR!Vz@WYt1DH5 z9o%bYL3T`~!&Cv!!};$}y#KW}ldIlg&Be{vZiUO=_RxsYHn@>X_yXtAg%R__w!)$g zNE!Il{A;~UmZ_4os-4f#f$@HT|4)#T00EX9iFz1_^q7Bl5+OUUxH9^@Ni2U2a9(8? z4COmOo{$_Q->qfPjoU@)ilARAAG~>cC(s!3v5#(b#sJikb#tH)a7Eg@?Hwg9$q%i{ zho#0hGxM)|f~a;S+okn*3p2%4Vf*Zuq|RJeNT2MT5xhvGH%7Zjdux#=@_QUZ16OUjqT_iA$#W~czC6xxR>-9|O?i!{UuWue;BDTZ6mD=$yr$nsdmSeG zlCw>!jV8uD5T(7_U6OC~hMN0af*$m-@3huTF0~)`w!H{q@V#h^dzs<6d;}z^gE#|+ zSQ4M0v2%gmvf=il56MR?5Pwhwj&TE3X5jB69V?%mTeRIw3F-V57Vp6VDU~%_Hyrf- zxk#)j+*!-X^s4BIzbH$%WLnhk<30Y3oxjfDV_Oi8jc*-h5vhG|1zdLflH5fdH}^|~ z4$ff(mqfHP&`z_#*ZRxf-;5$Vjp>rsf#!W*WfL-@uc2>s?4G?=bS{fgkjUu8Bo;PO zN#rskbZuMlgWFTOJAM%>;X#xJSB^d8<(lDdw5HH0c#MGtE}Wk+hPPsQ!i+)8=+U7$ z-dZxUtN*?_<+B0s5rmt#fU9~+%w&Ee=VLS1TQ>dW^7hEv`9{J=35<5ySM2M|bxwt` z-k|aZ_p_IeRmX||g-6xa8+Z8)-!ar7q3E$nO%5gZr*_opnF8^LTmHK%aw*;yK>(ka zJ5d8;=&uHZzIk~e?Z|2Em?vJ~P8nBqKfwW2m)X?)LQT%L;ev|OgDKCT*X(jO81PvB z%fy({LUkN&Rj2m|_xsY*X|=*FU*SPwKt<-vWwVsu*Wn_d211vLDXSep=Kc3!^Pjx- z_X!FEltDr7h7@2JthZcE$O23rG>I=5HFX9z2L^@DgF#7YzN}F-S(&Zvz)WdlLG=S{ zD74-@Ri4Orm;nYm&VRxgS7EkbHwZTUy7x_)kXW`0tT4KAPIz**a!5M^`u?)QehfdD zkTIafY2)I8-rj+AcO{`GSEl4;LfZt5Gx~BMBDGY9e*0i)6R7gaVn*_7)OI1<;BS3p zvgnC7^c<9|(aIvHz@b?{0hEid0SIp352o2R1MYBXxZl7Tk~?`nVv z38itQq;|l=H_45*b|6Vgtkv&azcg8>@WMor?cB@Zi#vfJ0}`24v(0odne4!fl1|l@ zem+ti+D?j|O9yq2RL;uc)?2!GGGnE$y(cY{NRdQh1z@v|Ui9V2WLvC%@QK|{^sp}N z9Og4-!^XaAp%gWT;-jrHu>Wdi>%1*x_|?&3#b$lFe$OYyeghX{3FPypMP|*agWyt9 zhEH%K^jGjB1EE*sNdBe=cb~i~sYjPKkkfmQ(xMm-BlQ*wJwly=PJMKzEgqNo`rE%2 zl>}(Z4TS5IO>c3Qe>=m_^!mOfemR~uestd7klF&{Oo|zwRdsmg_vRD>?Ir zVAXhl<1MP70`xowptSfkV}dU622&kPXMVJS;`8(3IzkEEdcK53U`1qgx?{8z%e0Ml zrJ-HW>sm4Je_Q2?rH_bMIfFYwuM#g&?J4#s~1c-=89DIf0p zbOf;Nr6%8=saidtK|S}XPwNbyLPvG08Nl(w99pIyP6(CH8GmP^;gpsL%1(U8;c!AR zRo3b|5xW%;E0P)5KdmghQ`-xsRI+=$JCVSvpb{@n+VhF*3xU^vj^s*c032X>YLTpq ztv6zXJfiJ|YnL&;7yb+#+YIA19#DVp?$2gc=JD?XJT)eFoB1@qf~4uZa_Y#^_xNjy zAxp6wQFLeTA~&EHovW9P2z^N{1Nj_MbSARy0}vTEhkE^?HD4PQLZqm3n~lh0@2XC( z5#E8ub4P~T3mSQS-!jzaF!F| zK#7TB>$ORd-nb|@km zACx6&sJbWo9eRJ&GVHj1Pt;+1Ay74Eraz0@&4I+Co8g|THe!sju7$03K}bk-f=(%R zF|&ZkBU=y+hi&(H>lj&IprKNu+mwn3Ugl1|(FR0Fwc{b1GmX7h;SP?)kcTBGefmI% z8`=n*>?};L$88hSUd{VyS5=Ws83FiS_!jYa0@Sf`9hAm2rKx9PSy6X>P|ptQF%v@e zo$r}LVws**>^I=hR?+!k49NI^ddlJVSg*5*RGxQl^_mP*d)2b@c{Q zzWZomDQIbPIQl0`hSU~DO#?QfLdXhs4!AY1)0JBzUZ^koNv?Q>qlP;3KON2{5R>JI z7=A;5qy&5XPOO6^9jMwn$4z{CnkEFmJe6Oe%3{;`?8%e7diD@ilft5+SyqUKlEd$DO-<4e` z{b1i0yk{l&(T$kkGNS15-zxg6(BvUvV1azLwdo5FA=`7%sB~=YM0p9SQ#cbB7{6CM zQhiFZT=!w&?Kw~`$CbNr@JQ;Jp*e~-3T^E@isH6_5CfyktWqXj4x;DJt2=qzIXoSV zRV0Pn6DuGnvm&1mcyWb+CCVe$(QU-dIlj9dBcCzu+|tPK%8!d&E0XIM8Ra%#H(M{* z3d?9?C;GVzrOdMqq;>JVajHl^Aa2GmKG-=1$! z48Av1v+l$TG)kA zMc3PCz>b}lJT_-iB;i+k+kdm5e2T|Jyg%~v+h#WQJTP;S)wnob}O%BT1h1ZgOHJE#8c8<7Y& zEkv*x{E=~2DaLCtiu`Yd4`2u3nixpA*Q0F2{h&^oC_=xS#KQS`i#7>x?m}(j3L6@f z6InOyw<_G5pgnGWfx_y85f!?Fte=x1wA94LG0>Qn1k|?tmH;bjrKh?3!H-zOl6nje z&lhfPY?L^ zFG(mlEmY2flkRiO10$Ww{&t@c@l{jJl$+*(0$`qRE{YMI^Z=(NxR~DDFCqhYrg-L! zJ~*`*yoKKiXU6aHdzPQWDcm>b5M-;XNo%984`s@MqYPcPIf z7N%_L$dJDd4e6T|V$PQ9ot2`$DE&?x?OQ&dSN_2`-q{=de)*1QJ1^V&S)Pk2rSB9` z5Y?gFo^Qmkr4E$K5SNa1(AiZpDzKI0cuOD0!&YE;&DJdK7$Z28Vq!$kOHu z5)A95fktL!BBmYfh2D#v6iKK8bRKWlhF>VfiJN zKaiOWFH)XR(#cXA1Y@~2cO=aaM+*x3yjuJmkz&mZPGnh0UCpH+{@UlLd5J;G&r}&|rzIwD7q~I4gg&YgK(FYqW}*o*s=^9% z>z_sClOpWd+Z6gUix&lPN5Y-VD!uW&1Y<`Ws1yNmqYOn6O=Ri~gKVyXr&S!2^})3W zzr?imh98;|){(1bg{y_=sI_EShx4sf!%-3bw6D*$mkk70$l1#hFIB;A&2Wq&-7!$-c&z` zOB7#)ePa~KcpQTurpcEt>2ZmgVD_8V;%qZoS}y_Db>mSLH+_I$i#|_U;DCyEvJjl* zP5$u(r0pEvrQivuOgq>!34D4Jw+@F^hP71s@LCZcxmVzr(qBQpg(#pKDZ_JK^8e8F zj{kXf-@bO!Hnwfswynmt8{3U-yRmIvv2B}IjKm!OjKA&drR^PLtGcoczH{1QwJ;zM1kMp z@#IWis5Ii%)RhVFC{(eWuE5R7I?vb{%adS0ScbRZXM`9TYU))T3k?+r`S~!)%1Vuc zsG-$SF%vZTDGZ;T1|ACtiPh*ZMebO-DWScfg3E|>>6B>83v<#URXs+9abrVCj2kGl zb%sY}V8;zD6u8QglB8nOz%)?s=i{y~rY)H3aeT6LCBSeCt*qXDMPdb!j;|XVR2Cr_ z%mcF(dq>Kas5!1CYf2}^p*W-4h+Ko)2#E_jo)`{*VFj9{EY5e^M3=?TZPZ=3pLUT;b?_e^mB!>AbhsM=m1WV@> z*wzY9VadU=TW?rdxtLr@80p@5%zD-Oj-R|^(@4pyFv;~yAqU1M8a>fqF^i)FqJ2>O z4E1DX%(_FZ_$66-3FgFUTH`1=40a(ejhHbc?nM9Y8IQh!SeOGLN9CS}hhH4HR)3C* zz1e+ma#PR47=m_0oJ9}|M=wYn;udoq9!J#tYS3m&;&v)M4}{ziGCJAhA}>^7xTp-& zEy9*qS58_FE&_s-V2R-~K5=BmID49z{z!uHX;?Go`B}>#oyvB}qNgsbbg89t#pI~h zE}2I2du!2=Ie}_Htfg`GMZ{KzL%aM5T=&@1;QMJM8&j6ZwjQ=$#MJbDRgC7l|D}~V zk?#(66@CuWN?tBluVzerj(@%!uW=C?wN zoVXL`3wn?XOeW9^dMm#|h>oU+NxHe)?Z$R9a8SNO72hqn74327$!qrYWvY$fDgj78 zPS5HIA28f%fCn0lEo&rx0A{-8m?LO5=BM#GMjLZ*fL@1V@O`dEYD?%53W`H5N{}l{ zE>RMLY@>dkXaN%)m4kRxjmLIM{lwa;Fv4q%$lDpE4QQUMRyEy800>?1fU)a}-*5f5 z`I`y+`Iy7_f)&BEdUCa$#}iG_1CjQgJj|BW)Up=^-J$gp8@82c4a1df;`M z7D;W_M&-6QeZ^=-@>K1?s&*I?Z=PE$VQHotuhTfX6S{$7 z-AO=guW8!Li{eAw5`u)k^|lYho%>8fi0rzfQ1vb!U2OXZd5LQ=oaUvhjDSc01h`o+ zjt6Rk(`49b=257m9P;VVoZ}M(un3M)Il&8jHkI&QG#XPZ8?QK4da`3rEGA}4@<^kH zcv|UMgdcNPXlCnFzWt0h(ZAS+!oSrTc92xeXzH`BABVb>BTEm-4!IA@sQI&PxPG0D zSL8&Dhp|T|?a4W~$pzoKR%XDcE#F?)U^p;sCF%8rUBL|d9?!D>0GWJ_j-D@KK_{@t zl&KcxvHjQlyWa(Mab?gXi%&sHXd6reCJd(@WL62k8$xj&xxQsx-Jzz4{l{LT6e{p^ zA>Z*s)0rGKFav9y&zfjZF=EG>OiV9WV~oxf*``b*aORxaQb~h4_MzT*yYORR!DvVz z7b{fTO#4{_-o7+Fk z1b-k$1^+MnAV7Rf5!7D}Y**;8fHE{Jv27mMZZq)LFVP#d)l3P-&i0`$s5qhb4GgcK zByaSTOiMTxIeQ@!i5dQ686szZ!GEc9CC;k#C)XCy+f{PV0Zng9AnsD zBc%C36c-VCs>ENweFqy3$c$}Tk*~w-hx1c!eeaQ2PSJK=`sH2ShAtU=xhMRdhA({?!_ zEz|bF30z3x`+;$xj+%;pCOr^32_3?Qr~F9RYn#7m<#a&ZvMK#4`m(r6ntkp`dtMC5 z?sikxFvH3zr->7cn;D2WRPT#?zmyD>RAdZ|A5Y z(L3?oH7RIzLNG8r6Glmxdq>CpASpCj)($(3gKMLN880fc^i`OJpAk=y99Z)PFKV9C z1T$5r11YCqna4KCE)-V$QHj<@27^Q3pdb#5w#fy~j;3a$;=;8+xKQAXI!nbTNRAly za5*hdLizFE?fPwOKLNv=p9OOdIevEO1Eh~0*8&pBOrF64JY*z#>0q7xB(O-HU}AuQ z=x}`5tz>#xBWZPQqapqKjW@7-6q3*1krTL|t|LnpXK%Qkdr)Y%w+}Y;GG(pq`efIm zTe~mDz*3q*B4b}IpiRyC{>k+2N;5pf~9DCh2!*g15 zti}`>Iy3JiS8pD2TR4J~F~yy}8_1}2XudluH8 zO3Ch&bzvwDg}oX3%|7cBoPkaO%`%4m=}8=w9VUk&CqO2yH#T~51(hyO3*BTXO^GlI zSe_gys+$EQ`UIskO{%Jmr$mT~P7~F!>Ko9;3uXv9k_CJ$UTWynK^t3!Hv2Js6+UWU zCZ4a}lkV)Gg!@YzW7)y){84#SiIRyF4XVJ5%{1>G=e@wRE-t^5_5M@K(Tn-CxgVvm z(ZU{`ycFC28+2qebf_!gX_wRpol2(pHpN+ zlqcr*$g(U#KYv!3sVXkReEX_1v^9`8<5)9o+!t@0(@GgF=d^6WsxNe0d4}8ITrp;A z8l}cTpAx|mel!;=#1Ya*cn62L4sMHXohGdmk(W>Do5S=+(C~w_@Oc*%O>|iy>reTq zSk`q=23%p!T}fwaNmWUmd9WI}Ir>)3d7j=FNzlKKn1I6fNHOBWi41fW84q2I?{0c0 z;o;|sA07rQ=O5ZnsdQz{Ml-$!>(2nP0+D~W=@25n*-euLFwqAZ^WC|#J^UAY47h(B zrR)x-O>G|x6@x9%HdO~BU`U}K1m{5&1d89SAyojM6<_4}vZ=ZjTmr?_zcs=5~-zSEW@?phmr z{qM4G>mh-tVY7W4x^n18_3`q*fSSsO^5B_QsfVOUrz4_+N49!0q7_HC4*w?Z>gVjc zdOW7(uu45Gf@&F7#-VUF4|~fbCc`NW-Q5aIE%rJ$2rhF1S6Rn*I0Iy@d#H z^cK929q>qmhhxW>g~Kw~FdEKuGRI*B+CB4>ATmXi%(xmFxkE-yCH?-HgV_{LivH8v zMS|4i{{kzLuPGE?XE1#J96Y*B+?MbP&l$Jxl+Wzpr39#y zpsWUgv*K0Q@o`=ocD}>{sVFIO3M`DtNX4WRB$vR|+WV%qtyc3eHd(OWE6wlH58_)) z=+ZVIK)@T>sNB#a`AsWua@ITN7^Jx2t}B5a#u`?z0U4S{lDm9M{4tf`%OlX=}gX1c-o-eL;%PDk+ zWK#-kj&<+fA*AIIky>sW9Z2pSCBIzuU}0Sk`-fO2wrZxnoIhT^h(~4xvZ7J@ygiYv zsyxZog2eiMZv(DJ6f?mQCWL-ABZF-+bY?~Gey`|4Tc`;e=PkZNZH;qvi$Z~mO?jam z!rOEgaN`MQWMMnELqNu^SaZn2^p`bUUM5mwr@Rdw}eQbk9Z!Z zX2dlYf{Yzf!q#c?L(r2Hda#l0y0)4+vs%^*cTx@zp93-!{&aK6c$T18N1I&b^rOY# zo0)B|diq3t?0JDo@&dAmQ3Zqlb{cp;gAi#m^L-9u$Nyd3{exlMzhm*Qhl>9IGrHPF zp_$MkhC#?)($(~6U}cA86b?36t}zJ3%nY6YUu)NQxG$&E?afa}UZ#=7jU-HT`2@EZ zJRhR-?G_B~f%k3aZcMDA`)_A$QEmo4R9XCx38|&qy_>MoCtPCtydU2&Km`s5#BGH0U zhgkEjR}c-*)!BCvl6|u{qx_~2!HSQwu%2OxwHZ}?f#|bf)GhWaftQIN%XG6DY&?=4 z|M20B1KdcKH>^~yj@iDwLm}^x2noa%grWlSY5@6X0;y!bXDnNc+0^R``JX3;A#(gT z`m?;-vJY>xDPT^4hi{7QF}1eHdhfi&nkPL)YB68L2Ke7uq)Xm1KrA<_!7RmQI5h%F z(SVt-Y_tUzgHbP@QBIah_aTC4DVMm ztB4fX;n7p^AxbuHey{V>Awd7SRN_X0G%;{ctM+|qY$5bt{Cke;J!qSzb@hGYK{hq> zf|1G3R0kF1%hWpei2Se802gdqTQMU?&uLFagL#bg62;_8Fe^;t3!g|fVqa9>)r~`P zHQm1(Cv-5sh{frCfWURNRZ2mAwOO=uja`aUmQFmZBAV2{5SPy6`y*2J<<=8N*UKF@ zhw__eWZA+VEtMV2<0}YL3y%jY-l_+z3-0IK@*_FJsUoXb`?;j$Rc9S3wN!Jlk+;2~ zJ#!#iLndcLJvqD)ZSvl;0sSw)Atx65-e@AYoy$GcS?T1^LAze>ZS`eu-coiyiGiA3 zPuTVH)dgNdCXXL)HEr+B3VmK&%v+{jUen?=)UK&fnm2IKq%~&U-qLJ+yrXe#GNPr19&CrgsJTciJ!i zSz+|L8+1US8SfE)XT$bQ<5Od;o*cSWUPV6YLObyBpi+2fRl#s1+xQ?!Cco^xg=W_8 zbfmmL+YGjXJF)LWo$BsC5bv%$??i2R?>R_qy~p)(Ib%MX*ZU@nJF#l({FOwpIv8I;iI1?-j&0&(ZYdlT7geBywHKleA~dl!;Ct^W}9&==7N~dF-aj7 zK2!u#d|*3+kywY~8RJQ-5!cI$*^+5o)@nzGQ}s?eSe}2xAeR+9Wb zANUSeH(Qpc{{evCJ^^sw>TGB}En16VRksKfKAz2ez219ffgJ@Nwsqhe5{WCzn-AQN zJNVwgnX}5;gOJiCm#>rXx|t+X&N_tlLJ5$)IBme8-A6(rgt7*I zr!$=xZ^rLi+^Y5?cEOMfYvv}#;?C(C0epZwj-a8KOreT}mIk}pXWroXMp!1+B%r}{ zJmEL**fSMST=+E1alZuyQmQvuLIIb&BZc*7`)up{6^Q$1E8+@7IELhp*qHg%K6DX* z!-?~CmLT6Z?01!U%$7m-YEB+AEI^ZGx)8l|`++Ih16j!CBy9KOsdA=i7j2i?%*ey; zSo|L`rZPCJNMZcLLruj#6_F=M)k7lb3=SVwAr?yMB!mvYE%+Vtaaao84lK1-W*i%1 zh?h4@0#EdXl`Nw3z#+ZCT-%u5ko?a6iP|va*hDwfs{A%+7E=8^ql5(;3+rR5C6}nVw(K>tBf#j{Qgg2$?H=$ zPjON{J|_tBxA8r_y?Q9(O}c8Ky_Di<&1QUCz&oAX;{ap|HaX?Ifa8X!*oB0WR0@*C z&Y?m@;7<5HG8*rlrNB`8iEZ>L9--M4*KKUrg_g76un2&Y;z33UJdO)aN@H%Unhj2~ z?urHsaph29RgNNkm6d#7Tg{cP3q+LI{?)BtV{0(H(fJsUv=W}JvlCutCiG)ca{s8) z?><(q-=kV9KQ6(yh#)CB%#Mba{~4={2Kky&ICQRS!2%+8R_pT%{fI95Yn+3;^w{T> z)p#4-d^&~S1I~eX;I5V3XqRdL(Caq{SO3A|oRu zG}|)MA`L+1cC{5@T4BrdYSqEE=P!-dHoGF_cclvG5$i)5*L)<*UiE@8o6PPD>l;9E z8?;3eEg|(R8&(kiY*_izxuz`OQUjSNpo85kzH))2dlPB1^8<99hlrQ&581{gvBGSX zAmNiwue)VGf;FgH@0O$iXojPGEiwJ) zqq&bWb)xpj>Fz|;H`Yh`Wj?jJ)?^r`Z)ZFUJDj;NxH&sf=f>KaKInhyXHuJ9y?^WD zWm8#PEe$Tf&Glf-&$EIrHu-k^DlaGBqVe)^iV1$KCEG^yhO;(*D>SP>qT~_Kj-k`} zXxQHK&e42fMk9Q*7^QHinE_5hKgY$4q z!Qx%2??F6WLIfunby`P;C+TL#$V_2U(I-)MXyPZkV|V~ePtvRUf+2RlBpL{=j4*os zQxe00O|EF!qc1dLN?e8dItgVK$6Uz9c^cAJ`+b_>IQeA9Gm6_tRoaNBEM8hWEuuDv zamt6z=v8LWcyz$XPzB-k?KW}I88(Wd)ZY&h<{DBGorKVH+3G>#e^hE#G!4cV!+$wm zpnqZQRENWaaz(ebl9IXPEiHoaj>KX`jVR^ae|@!>&2g!LMNHcAebqe@(Cg zUz$T;KeKkfs1kn{_ZjW!3WFfo26s$QY`*&#I)ulbnGx&|cb7IFLBCRYfh6!Du_?x6 zY}cGLIGb=4PI00CF({H>RRFPeiqdv98ST<=yLFOK!o5H=xwe|bI0`YLLsAMikwt7b z6yx0Tkj-t6ntnaFT4|nZraKxS9oKPc4%~A@Ci%4xtG$?LJ>2lvqB8FkW zUk?GCtzjn`RJw-76Z8ExjV9drd-1xr;hEd^Uql~;O2)#TUc+cc_%6WsV-Q}{Z5_$Z z_1}$rCfIf!i?};G?yem)MO>SedMYs? zK)M4gTeG;-<~5f34bro$$*PHP$CExu+EDvqQYzW>%JNggGeuuT0A1tkoSCj)zxY=F zB=LW6N$l!^nufc@pd}7^fjr$ANNrEa&CC0q0h7T4h>wSQHO=;2@t|15&T7VOlh=%y z-j8zvh;Ca=nX2wtwZKP8<5Jnn6j!d3L8XAl#kIFlWIkdEBrKWL@QSFNoDp75IpW56O$LA7 z2)6mHWWv&f6wd%PXhHUr*GLT%#>#_M(&B(YOD2O-#O14s+dX_r4QmoR%Js5IKJLW4 zF{QFZ9T#$@bo2(I<;)aQFsdTfGZN0m%c_O*Y3)CA;bmpytwrnW#<2%9q+9$^(-YY+ zLnA(!J+tHZ#zUBD@g}}za;t;|^Yme@YH`{LB)iWgY6ZPM=2utRF%9{L5_WcbQ)c^d zsJ2JuGROR*_dVynOQph2=OaECPx|HZ0q^*PoZ{o66aEdi+)PudgdzpX(n3FtELBwj z>w?Ida-Hh+W-w%1fk0${-U+AL6^JibQ1x8sgGK*6Mpq{#)Y!-87FvMhd(+PqB+5}y zw9V1*x`s$obt--=?h}^L)*hKDA}r5+;JU#D2j&>`iTjlJcQ)0MKk!QX#!T6X?Tg-` zGUcOa;hPw`yf^rMz`QkP8xZ+GMRorC_O3^(u`%V@if!aoMMgczO8g=cA=1}&7Og04hSr7I?Ia6(pDmK>zf(l1B`@X~N zSEoQ_1|3}6o2iz%6)SolD1O#NEesI9>BY#h@0B5h6ROu&T^AE_Ph?%ra^43i@W`j9 z`_Ir!*_N2n?RIPv34D#voUvB5RaKOTbkQ2`5Xx5bioxaZ>N#jDLa~J(1L7hf|3UpP zCXM>|zLJe?+yydB@hpEyKgHAQK#XpcD7n5_<)PF-i-1qMXi%a&DYdpnciC|2{Iek9 zTroBM5*Aj;f$0$gFD%ihS0&mGFg9gOdCc;}j4U73cVztb+{?U1t)(sYb3$@zkgmeO zH&>IwSaa4CDzO65@arK9X6E!^>4W_ML6e51XAsN)DCyMJkzP&N&tSsA)=98Jv~FN| zIHYjYO|Pw$m0{9_)%CCDzZf2i#FCQV8f;7>tvj;qjF+7yE>6~o z$JqSwcQPxha{bq4Mmk&kB|4$39~lVN!8KGA#dkJ1j-wlcqE>|%-|fE1C$)y9Jz%0{ zLPFDZCPlh-Fe3*L=!#)AcvMlY&&~^+)2mrH8edVas7**M9o6Q+r;E7v1+SHfY<3V^ zH_mt)u+|IB_&BCb(^Xu!sH#c~GW$g(pOn%bD&U@|VGU0c*TKESVDq;6RmjwCxa~Hj zmuVzKeODh9d71gIh=R%;QST)!uazB_Mk9lhWl83OQ_hW_Hd*5uQ*w_zn{y3WZxno0 zpkGNxc#<_G!p$d!^I=DH2V-ZM5lG$>p#PpEt9q!sMn1yK=6w10)prA{W;rH*D|bO@ zbEZD2x9LzA{UR|0HG)BXVefITj@{A|CL@__X)r#C9ALoRIK*UMIZ~aMhzL|3Ae{G> zLVBLxY`OWTjfsf(c!-&vNVH3FurmcG-#%fbH`bS)4^nB0da%b`l2AgJ=?4l-lU&Z zs-KvCH>~UgcoTJf8nAuR6w1=vA*F?F_zZm~Wy=yl6iDP0HP!j_Kuo+2uKW09Nx=G=}>?Q>{dox@+^pbjAWD-OI#HxZQUU zobWxEtT+fpcEu|g%2&|!udmU;3?ouJs zn%0)=T1y;L!c*#aYG-cZL6r-($X5UqXSbgFJV~B$|u;otZ?3oul;4>?;XKC3@Vp^~{k|KJgLL@Bcw=Svq7#;I@%g3NS8$}{7 z1OedmOt$FiBLEr7hXRJ|S#%}Z0a|M%j$`Lwv>mjkAf+%SeCFlrlfDjFJn_i|3Y zaKUA6Y`Rx(jC)-KXQ{R)jFq2nB^j3HRC#H>USir+454KlB@dme*-1xHmrMP2&RA}G zV7j;3&$FA#wEukMAfme27p76#M80A7nu*)(#fz0In(mlGx3R8y=r>}ipTMp;teZ^e zV{$#0^qA>OE}?=vZx0TkdYM*VLIqbLdhYa@*~If(SrBkz(2(Nq zk#H72ki;i4TZR(lHU!CrJXz{hQV?@P7~I?`s8sZ~27mq~kfT=PA(72PZoG?dK|Qb5 z5%u=*NM4omPT<3_7=of0HJgzifV|r(aK>WC5%yjGSOw|`N{4&u+PSsXCzC!UCeP+9 zR_H~-i6InoS8pGKU(P0|+x`%j{l_>#)oq13yl<6wd1t_|{plraF76thRF4unO3!)| z*d9`T?GbykfoV_*K z3Jee0FnE2y$LSIlYDJ7pxLar_WZ6Ne>OA$5ODjEP&6?ojY3nsEb2IJa&q+K+^c$j1jA zS6;_Yzc#!60Td;dw8E)9l^x4UnGyDa?i7JF%V&hzql7dcVR&Pj(za{ImOvpII34Z4 zaTgLLTgYLe`8z=1_QNVZfFee0mI?Z64L#Z?jG(0j0aO}|q%8A>M;~&8^2)CJKz&Hc zP%?fUod+j$T6Rq+Q9l&S9zODx^_U2^0(N(UA2-Z5?xJvC9?MEo6 zeKGPAs?`F6+Tq)s>0@o6u&eSy+6|uTLjI^WQz&jZ#>TOsw+uuUspBK8V`Om+SdDvr zPzL>Y4=JC!STFXrwCxHXcKiooPQycpM5P9AeTFzb2*Q8wxR12#B^Myb1AK-nazs)W z3wMHxx1cDkpU3cXiL9iCuMChcgszJyL&I{rHqZi2gM)y%!r_lg5TWve8AX_>MTjO-G*xt7QBclnLQE!Mrc_|KnrgmM+py9K>p21$<6fu_#NvI`lcdOk* zexZ3fBlmtP2Z3M5U*`i1!;kJT_u}Y*buyb5`cyJQ;$~{D_#}OkE68y-0q`M;ktRm6 z6?Cb0(M^textqUd*}|=vBK$=%H={(3(A5dzh70+r^*9FbxhraFBkhPmqb3(Dh#pN0 zDu&t=-McnDW9^b?S4@q4y2}ccml47nNd2f!F~^>VBg!}xkR7pQ^yRKyFF?xWjFWUl zurTEA6!4vKkwKs?3rx9?Io`PPOcg}WN##fX9`y&`W}yByCGWMx4fIarbTaHxnzplQ zZ(K6nDE@EYLnJ?G_#r%-T=Y2UB~YpkgCF!Gp;~w`5wRs~)OfgaO8DzJhj8+D2V}BH zk<7X9viLs)Kp{IM33hr?9nP9RBjpU|(d`TthhTXdxAyCF`cwnigK$oG)jeY?)Wdr$ za&E{G!(@6wlLv$loNqvxk-ij}`S~4rva)`NTOO$`QI z5=q~pXvE-wZ9%SxKIn4qEC7?|b|Y}fi%Hk6UJQmU`Zhx1E`sEs$y-P_vbBW^60FUu z=*1`VjWy=^!o$25qOu7qtvh%d^8G?JtRW>EM4PKesL+s4KvfZQ|*IqZiIOkXd2 z4)^ulR{6d~i{%#em2M$JG|cS+T-tF7-?=RtP#>zf0pz@ zUW1sKuJ6J|>P6j;CZ)xn_Z)L2@6N&9U`|lJ?=lj)Llwzn`xhwcRDf-n$L1johC0Zm zWd;V`+L(1X*~`kzLTIx}=JQ?(Yz8AmP`XY9Kf`XG(og;EML`GuqEGn|GdYE0Fd%X@ zA=$+Xh(d(|;Rt$LS=#c}yebON9_jKMpEWi)K}(l zWkhx~aB__!OH`iU(1jxlyQW-)U-d1{qDna#`r5=dTXM-p7hg{GJg0DBB57|ihofNL z#Oc|3Gsr;Y>7vkG7nxbLQk!kNtU#<^bZ&sw^A9~yfRiL{QYIV6GN(f(GU|DSYe z*E%UwW~n~N71TG$2e=^RRV_SFY8*r~BPQNb(bZkp=qb6p@8y-r(6RM`g@< zDqb#m9>oQ%Io(p+RcyLo`qEibQ z3ZK_pH{gY`yC>|+x3d=P&>6tlmE@(&V}L}X@HjIoRJh&QM_ZsxN|0$IwF2QdOD{1a zS^e4Ri!d#@KGEu_-O~a^whX;gF$z;Kk6#~QjLPc}o|h(pq$^WGKfzmre$$@M<}xoD zpU#C81SZ;@{Kkx!nVB#0TD1@fl97ng^%qk0E0D173yk0**B06|Gq~uxSck@82d}=> z-9}SvW;ocbCwF&*cFhScpBsL#Xc>Rm-0YQ1F+lQ@#s$fr33b0c)Bz489whviOZYeW z@d*&)0}W&zNinQ`-*GFVXb`>M!=(R-}*1{c~^bQ2$1ssr{L} z3BFcMx}?IZ?A#vX3%QORckA1qe-0GjzjWFi`Y;1~_9V^TYk{;)@d;&H<0RR-g)k*~ za)c6vf-k!g-CnWpKm_OK2pzj@fmad({RrejXmP*_mIpi*WBXxnWee{CmQ6Ihe`~=&;>znGZf1RRx3c&x-4zdj}@$m2F>1=zae3xAO#l!{f-J%VGu+DcbK{ z%hZAl(u&cvxsv@z2yk6Qmpc8QaTzuX<2D5q!dqO4?|H$7H^O5EzhCSIgdG`<#7Fua zNwfX|bbr$Z&!3AzoD7E-IS~aC82^?jt2e+3c=-Aw^jqAmv`vNMRF@0%d4*QUaV~MJ zgE-cE`ECS)hV%Bq%SEq|{PE0|s5QyPu2`}DW>LW7?xO{Mwxnp%)lSwjhaRPx)M|wJ z1*eWh=#9%1H%k>=hqPBlpSWH`8vI1xr0*3hhkvVIcO!Df=h3|lTE(rt>|uLTA2(@Q zAiE^8YOnJglmM#RD;BCaqV3fuM4K?V0bTyO1^t7B|4dQY?j^DtS?g_=lyc!aS6{na}uRreB^ku?A2-_SX~j^5mUo{RTH1J}jFTZZif z>ZQS?*Spo(bE1JmYCITHM|=luxv|8n?4p-GWEZPQjAk)J@dN0@ zgDfPVHEy`u^a_{sR1%E`eVK#bp!QQVyD4Zf7O>g7wG4ldappa ziZjMA2yo+FDg~z$+QSOcn9|aJOG3`DX@`nN(87avBmVKk|rE+~KWC(@r{1Qv}g6s238H{=i6Ejq{UrD^G&!pNi1V{&O|P&D%J3k~IH2 ze)%`n^LR+8zj{Ri1}`^o$i-(=qC1X1($Yj%D7M8p-GQi#0e7l{>odJAWcR`X zzA#qo#cjl!y#p_oKAX#`N@E=8Vo$qD{}(aejMx7-@>gr2iQ+Ng;)X(B>0&yG+zitj z8yyCrP|m6Iz4fN1i7MV5qb@tBVDxS2GGxKxs^;Q|f*fU$#G-nl(iw#)Z3H-TK8d>` zWSB%~aTAJEE=V6MT7A85K1LeFWwf^#3NiZJw@ZjEtE@JTEp~H*Msry(6X( zO_g7rz)G~T%vrsEz6#m`-{~}k69|CktCul9;T&C_7|NnK-tLm*ppf34eMm%tq-@>jQU#|o| zz4so!Z>;9cjygt+d!;JFtBugkBbY7Rlu(Mu4Z{*ueO1(|dtvRDy|er`ULRlHdYNX; z;9a_|2{v^(aQp5qp@h{*HagQkXX>w)$O~4K)67}%50#&gstc^k(xTwZb(ZStfI45> z>u*&V-b@TN+6S0V#h4cy*!*F<5`}tzf-%g$0m}}lw`&Pz8i&QH>H>B7{qr2k92);> z&**^bV2c@&crbcEg?RT$La=q{5tzY+Q-$0BFC1|0mM_zZ?yWTXpDm7^J;8J{-KiCM z#d)RqQ?K83ItdIcgH{&bJ0_o1T{o&DDA_9kWY}xDT(dTL_z}#2QGQen_F?b}Xr)#! zU7JMF)|6oQyWsLNQo5U0Y0I?pqINADeF_V4v>U?EdOb#jQc|^Eiqr^T<^ZDJaZMm; z?0?Da_SqNLY(FR8aN#m>19ILS7|9eoVVuzAngwL{8|lBIk1-cK@p>e8&P6Ixa=m7< zWgKgP1GR+Q=@45U5kfze^@Ie$Tl1EPfz*OE25T<6er9=Nj;eNix96RoFr`m~Vo@^v z<0GtuV1(aAj&AIn5Xe89c zd8MU1fGeB3bLgv^b0zz`Kg|qBOQ7nRXCDGF_{^x(F4bZ^Spy}udciX+#8&RO3a^;f zay_nxSp^ET9dnxgEBS7^O0`xM-_&F#`i20rd8F|dI}4{d)Bh!)!x}fP#U$J@xH6-1MLNbGo1=6yT(FU?$+(}kMh^a#)$ z$@uPk5;Y@l_AR_TCK?w!wjEQwcC`Ix^p-gMYb}-|Ajf~E!Q1IJgx>HB*MlcnHv*G) z1($*m@|J>nua^D1mn09rPuEY-D+)G$Xw*^8658S??G22%;5b z0i|hZOCdGP1?3X1h_%krAwG;EE_A|%fhb^k4oxaLz{E)=vGt!>(Yeg@NmhnYN_vXTpDde5=$raNUzvq_i>gLE2V!hSpLYt zsaN#$s8cKS9{$>Rb}yqF55B6V?lm%{)YUPIgRQDWz27qlE?W`aJIQ7hP=Ak(*fuHl zPehh5IK&nZRyQZre3`>`lhhrAT`!bGZI~5oOO3<+wKGN!5_cX?Qv6v8bsZEQ-Fa{f ztqvD_iI*yzOh3cW!z8kj-Pm9ix%yM1MSVZYWpsN`yJe)m^v-mAj=ABupc^G*!?>uD zTg@fQ1_pNNJpAfrwVYR`DXLzndd8?ob%M*)LuBCvy5tILy=e!#rr%@?NK70R_ku#d zT|8?S+?V*IXF6@2FK7WgFKWUBXvk(?o|oQ(2iS{xo-`oeTc9~O7l@Ld`?)M@?0}su z_H*LuNm+7l#or_s7u-H)s5n)%Ag>19`ib-Pv?@yHO3R9ncebQ_nD9o*X0^EAV6<>? z>vJ0@ngSb|j9wXlzPn=6GQ|qs=3m~gx4xB%gGEfua9&t8;86ADEc%3Me7tFmV+@#( z=nEP!W_R&@^BQif`~w1bcfbHLc)vq0-_GVs@Hk@7Z{D$B4lWX|+_MG9>z~9RNXt(U&FtxC1!XoW?9dRGmpsQ!=S~USCj#Vzm zn=6h`?3=8Z#JiasHBTm*Uy4O1|L`VWas`(?_)+5>r>QbE{Zs98RR1r>ymy$>!W8?{ zt5Lz>T_CL<927e|Jv$^4`@#?<)^|5xDz9MWj`w7hruq#LPKRu4p6aOWRmwEqi3Ks; zV$M;$2Pk7-HDk)O*QFW*V`^&{{4*;)dv~^h=s$QJ)43G}>t;=DOiH!vnx&#(WU}Ir z%9LUp(ZYEpsKPiR4l_KeVsZCw6yDL)mH{HmZ6y>nezI{~zsX%m-AY5ZZLmCpEJ5W* zSL8~n0ph@trD%FQ8@Uz5WPuwLTH2{q5R6rnpJMU3Wc36aLxh^gFmt=cjC6*HaR-SB zb)yg%0Bv<8UHt^@+lg3RBjlmCZnXlP$4KOuYX_TzlKNaR~pqz~rg^@=kI(t?$kYJB?k+=XX6rodQX{*3gcAHDX#Q$C|9iu?8;V(qyQap*+cVWh`O%i%qb}~c?+0{ zW?oVERStOMazs9$vhNlq+4r z(~fBuG+>(Fs+Z4=-vwd=9-tP{Yhe7^lMgD2J?AqrIO@|lOhI*CF&A2A96zqxb{;%1G zTh(`&)Q`XT1A3P%`d?TKJz=&sQG)v3$lsa{+;a@>GWVS`S~n|5pxp7>F27yB?m9yj zX%+C~Jarl|Xz;e|SFzWuI~CHN)Iq6NHlEhAJ~9V7<-f%6e*}F=yj5m4N624EyPIo?2~Zb=_040i#gR|N5+9PnnlJ8*N;)+2n1#UP;$;rENB3nb zvFH%D_L&-lfaSh<-8cI*yHpPjUGq0b@3h6Y-lIdVx_-Sf*L6HwpriiaFXnUYJ-I;J zm=LxmjcG(;w!cD^>G$-PQ2sM$tA1=2D^@is zda(WCTo7>;+5gScnH>J|bZ=ES>f1)mz;f#UtIofYGRyCu%83LQ^)3WejL&z|-1+|~ zA=Xh-4HqbHRc0ij{SnD8myvd$;8AcZ7&mL*xPDfR6qpIg~( z0GIBdH{a5}iG}6w`xNR`1op?ovvSkI(_8g8&uIjAA^SjyUts#9oz@6*o(x(Bw<64L?&f~vwDK=gx5oyl zliHyF2$$=DmA$*^v7bI3nYJ{MYxIui;nP2z{0lSfu+!bVF(p6BaD&4Ah{_A5+OB_4 zen#P`NsKC5hE7(Dthd3)+ZJdRdQ-E=b*Inf@y7Za$pGO$#7dM^wT)oO;S$ddWQEIr2be36oF&%+B!~ zjHj9F3>D!jDab!&imf`-E;n}{b#Lb*Q`0KYSgST;8E}=_r~~|TIYl%2z*$p za9oo?2&NDm6S~`V*N~A|sR`sO`fOapu=^jB8mtRiw-O!DtSLI`{EMP{8sk_fRc*M@AfRWDwH@N%O^`#+@b)8Y3^21I&u!a>{$2a1*3@aj`oD<>3*iEdXp$w=}y& z;(Q8oMiqtqi`a^C`*>!keHtuiWIkT>SE&TRCDi_K5*HE?g&D1}QB{@*3p|s7s8Lif zbC@Qvb=4OHH4qjf)VfHGsAZBHaJ~T)gIV2{a1nXYFF=e@1jIG{Z9~0US@Wd_L9{c7 zY7Fijb}b*Y+Jd~OM4=$#QfE{%$Oo!xz=Z&0xrrcBRJEf!nH`venOr2kdI)J8Dmy5v z@xBxkG+|8Fh=G9vhI*xB6SLs#Nii18TWZp~1cAqgaGzML*dDw~*3bqxh_{dhSiCrINuY4#0e3MFGP}ZlC6NIe zS4JmcOj~3w)r+SKwK^PK^_pvQTZT00pQk~{ODrfKp@X9`QtY4{slsV zmNztB8z}Yk!V9(yk?nQP$b{0kev*O;h-8d#qs%yhDayZYMEvKU_YKWyAq3>@{fX$5 zCqQWIoaVR0S!(~{RM67A+Ci4aNXfqLKLM^1ni!|>LnfErERum* zh;~6$${bjDhsM*3XilzwME?-=CA2j{FukL{t77s9pL)gfsM)SM=GGL^`4-sVq?NB?G@5U8;%xUR2yo-D>Z=Eu|^ z8%_le-Zj$JsmR6EEulvA5*-}Ft5)l_xF2W#Y zhqzN|TZ;$6=9VIn@hRu`4HD(8%P!)F=9#V(L0_G;btLg(cQZS;^%I4=M<7%;kK;hH zU?myKcTF$YC{klP%g00$Q5GiH^^wLW%v*@a&GhCJfqn?^gFHH51XWvQMBp-R_@i2h z%Ti7YZxb&5RD&#Ljv|j*c`zBUSa9eqBpe^qdJ{zU@R$r9{zVCMw)UD$;BTJEQk*R? zu`T9dDeZxTLI3x8r=RVL9U5uqmxd~#K_{vz}jxG85#kwNI7X|*x~n`f=|xmf7vRG*FqOfx37^Qy{5 zLvuYY3IdqI`KtijTW;KWZpmV+;*U4_es9U|-9YT5b41~wTz|Il)9`Z)p=B2wy@sTN z6g8fkOoirVhMkLdsZs0u;;_KYF);AoCje1aKF^v*ihk|UPE2hKE&nN@q39LCWVg20 zVEUEjw`lK|oJ=vk&#hS+2Djav?va5{`Q7!>UqQdo+N!|2AuX9Me;7s`|6&=PNb{q- zR!TY1U5@LmW!pjBLX=F7DpuXzXwMDmE!bmN;@?x>=eq5$Dr_L>LBUCbBL+-NOj(EM z%}(HVc@@#C+vI@XAue7){ev7#nk~LeAIdQ{`cxGPe9^BjKKwO&IWtNhjh9;X*uC8zN8;*1if=0z?OmzW4u z%+-1%nlY__bK!yDSf7-G_aEHG^Zt&ka4ZCdZ&m;@I!K`bGx{8n4U~a2}FJyHF{n<24(!#L+-I^fCV|Xf@uy^^MOOR5Bi&_QFP`9 z?v+iO-hCjD)aRlC)Zj6$ib#zi`MpSLdO~0Sb1yQ&{OPv%57m0Z-`Z1T_&SXoNC~}s zA{eQDEj=k63HFE7FdSYgnVK#S?5k9aM@Hjaw%H%w|6< zR6r6BcBQQFpQcDab%y-|D`yrlWi^z2nQPCBYFMeBUFUWkSb5%w;6M$S>$bJUYz(XF z{pIrQmzVPL(gN*4jM#*&8rtGr8(2UduJI-f^W^wkL3gIW2(Np*5@v9XR$AN{$AmFY zI~4R?pKF2~uz?a=HjL;u?2*S}qh%M^mq=tH;8i}7xM-vnu$u=Y?M=5YDY@AB! z{w!9>C}$(w9g7*IONuBzCI89YzjhulMUA~TCBaZL(u%4f=%Ao-97|kzc^JF`xYxG7 z6M$}d(-IKi@*VTZU{3;im-3YmzbHOtv~=hc=`jb^JCsH!=X1|pS(148Y9D2z^f7twf8wK)NIVHm5%;%MC+KZ5m~#??eFZ$Zd_Rki*3d-csTY@hG*n(l z8NxS$sTe4(7)mbO4+rnv{($%O*vpfxF~nXv=a2?%#<)r!d?eTsIw`_UgE1Mfdmzn} zX1bIn9&+Pm{*5SG*VONx@C2{BNhqV+PjiYyguPj_k5NJRHG}_2U{Ey-&&$AuEesQk zf&E+bf*45QvIQg1%i&iQ&#!knpJgM>uJczJsgZ#(BsOErtPF0bc@xRv zZnYE!k=9Z~U$MA)x`-gT3^m3gyqS|rfwynYL^NoaO(s+ph|C;k?TXNnCM+@r3m zvb-XC&-&jY=Sysj{7y6t-H4|>kpqWFFW^9mvo_AGb9fxwrAH5gdr{R(3_x%)e&G$iR8t52}a)3(DC=F&IL=YPne_@*6f z5>@G7TxUC>XON+a0mmPm%M!LU3^*JReTNn01ZIW|ctZ4%qhuIaN==D(O}L;^b1lxd zl=q?>W2O|YI}*N67`;>rULidJXg4B%CiJ#;|#1MP27zs`q{K2KxWzQH45b-eT8qg{4)oV4R@EVlzpln#v zGw3j@@Jfn`xjfS}g06+_qv$AIXtj^5N!;|FlE*SIG<>!hhyN>jq#leGGx<+6Vgthd z8Qt>`#)n37pDS!0(lYK?b(jq0SdmlC`tFtf+g&&H)HK=ScqaEE{_Ez6fc~^U72bJL zzHqq89W|3x%VaxEi)u~GIE`{^YpZfij!wl|RQ3A9wTLg~C^bCf{CMn2or7W@_wP}B zRa^ta#MaMihdvjFsv4H~V934oR7TaR5|`g&@-y@>rGG2?C)J7|d6~Bg>JSd4s@jsl z8!Dv>EoQ~Ce|bw^YM@nflPVc^D>I`C|IFm6qdYF9cazz>LVs3XI6hq_}l{HKpNeIl2R&I^z$R1s=MEJ4v^+oSRU5 z)UbQ`?HC(6Z8iM0#&8@@#{?N-C5K|Su&`%n&ykzoRYXzAoLF+|4A&D|lrm#?%h{KZaK?pt| zj#L09(>y7G#j2xR#luTv5mypyzi6Qz&0r-NuE3NSNInr|yECcgz3lSrVY)8a3&29P z*%~nht?o0SPW?;*36`_y}5@DDU5C%&jz`YYS*?Z4i2?G37f zm+}%0H0zC^lqYO0F>rL(TQ4cNJT-+x8$;FH&!Df8c=Nyy?R33^HA;`fH#foU z(lEoEq|e=)11lg{GaGt1U7sLuL15J}#(wI9*1;kROb1D-hz{D)tfBpkh+AYj4f!4@ z#eLdlEE0^WXrjH#SWD!~IjR{2NJxpk3YgQz#i6gxzw|wdUk}~we`kywz&~Xob1eM< z9!=btqA^(Xh5#L=OC7&OFsBQ#HIeazg1rGRxWpKh>>eyT=S4^=F)r{q1Zy-Ct~O9D zL6ucY29Er)KCJck4zqhLRWJYZ;#Vg9?N5S**rlS$xTdR013F_v8_u0D>JFr=NDx)z zv2$Z*{(Vg2=7mFOMQ@oeyudAtFrRY{E2tWevca|x5`)Y6TCzAP*tMYM&q2*jGzTsZ zgI&U_zr|zo@K?FAv6L^jM$f-O^oK%1?Aq$2^|}*;3GlZpOEq)jY;q=GT|nYs-Khw- z1RxZG&w}%lkbdiH8(Wfc7Ip@N7@Y1g*4&vmFGeyhBeY;%?+E6mJgF~VF z_WfA3&m?{swG+@8m0!s#Cyd>KXR$45d)AeMZG>fgO=d6<^@QgR%Tt2MN0<>cco%n z(_^armrZGzG_$rTtO&_F5gwA!)^GB)A&pG$>+K-icVWiKLo6n5yv-@b8!+P+&K>I9D)urmpQ^6pZ2tMdtESPSw zmg~l=F0?MR10Rc^bdpR6Y*v|yCp(+!ph>&51HxjC2vn}rv8J+Y-#QM6gA6p!twzW- z1L^z0)NP227bYFmVz%Z3;jWJ1_THGKnV~sBRS26%2Y|nDV$9A(tnTa(_oD<1OCjb5 zv6@au#$HKgN#c zBPGz~bDraJe7F^!&gv@gLlU2Mh%KI>A$N`GYj+kl{pMZ3O>U$Fc;Kh)28R$flqaXK zFu4B~@bbtjwjtx;P=_MdV$=4%BJAMe)GR>2Xb-opvn>0q-wD53wQr35WuF-2E%WT| zG?>Tifx|>}j=0jDB5^HXs!}VtQ;W+yOU0mkIgB;SphIhL(7x`=!-5FPG1o}eLFwrs zpNh^>zwN8&N#Q|NNXUgstwp4FbQUChbQZ1d!E@atjZ41*AKq~?aA+|yb#~j}99{0UvOnrW}s zGG^pdYn;wqohob9J2IM^Ifu&!sY}Nd?NVmVW~X;DW*G1NWZqy!&}c2e3zgwWpJL7w zWBUu1syBbd;h2*PM?SiM8@W$UE475G3F^M%}0d<{hBK7@R2&&hYIyKhHpjkxgQV082iv-jh zAo!#)L+&T&hZ{9pj_(slS^{W#K7~}zbh|xSisFf(J3Ly)G$=AcLpIJ7h7R}v_VEV8 zuA`HK7)~nwt!i<;nc%@1dDE8bb=ZUit7$rtq&|FS^q5O$xm=m{t7^jJdta zmJ<~9M#I_PXQUsjV2+jGl@XG88KtcES}1-R{4*z#hE`QST!?hu@bxS@cF(}^hTT8s z>HoRKdm6%Zdzj_B>`$~Wc2M@c;9Q#-08!T)-4Izcof{aeAVAkAvLN&Uk`4%TE7)&; z`Kik+%U7DOJsNa71^!|U;etSQmYrP{96lGj5B4pgRp`;E2=7kPi zVQ^IYvtm?a)96b$Td~UFmiym8#b6t(NzuZHk@b)54 zldeB3*XD{ZFz{C&Q(#Tf0jd7hWY1*GT(Fr?>YB&PgX^69DpH>?Q0AS^h4+MZ4GMYC zFV_eDjC`MiVn=iw#Emk8;AqJ&N89XUlx||&h@#is&eeW;yUz>Li4@`c$r9dvf5KR$ zwx4OiovxmWM9R`-Jr+Cq7Pdso{w{MO8h0elS$SBpURI-+qbYBjJ}+2B(DzMl&I1Zy zd*(*1j~W9$zoyTU3VMErVEvw#B1GxPz z!x1Hn^tI9Uf#R>&5rrP)JncN5^Qy5co|Pc|h-?_AJ^?Z=+=1(&utUPL@%3o>b+z zWO0U{ld0XtU^Bz8zj{i_*BMrc@b^yBxow5c&;zGe+A-^%UkEXyJZ%&sTm(&qX@#ed zn^ZdOOcE8*LjkV)2NL1_u7V>{{HC%1<40N@YfpjQbGa~nq@aZ7) zo0axl^VE!5BxY0A2HWNlgrCdP*dd~k0LW_0?5|{ifkrp3s$xC2gCiac?zCr{i_Pq7 zQ(02_*lbiZcHWSF8$ZVY!L}%1p#z)yZ8vLMW?0Y#25Ha5A?dV_{G8_%>h=Cdo09`( zzZ%8m@c(5*|E!rU452QWVsy@C{Znh&wTYQF}E$q?5Js(z@=(I}MV`xXnk1MX%Uo7Vod}?Ap zS*W}~uVg1?@Z(EH_=2O#S9Lbo#T96H&dO3xV{sd%;YmHbdj`Gt;1MwV$Xzyo`ol6+ zn@`@1A#^5!&Fhd9A{2-Vl!Y{^4(=z$1f0j|^-q!ZpAeHOR$;ZQs89QTG@aFPd9KJc z6OV96yD2B*b6yxtXtb#f2uHDs{{p^o6n9C>Lf=-57RLd%k6={5ITos*0B40?f)-R( zW*EIhWzF}qEh!*UN$*k|0FmN4i^`9gU=&b|6z3g3O^sxD6&D8Jo0E^_)(bl z3h9&!NUP*wdKPpKTWUETBZwvA-?aAFZ;C9M|Cs1fuV2VQyG z66g3)Jh(qgjlh7wc&IS4X=OrFIf#Ax>pSZ6LBX3^S|YFAs`%I^*EnB*<{o=0aJ*%}6;1Tv(F3gv|O;Dd_Dq8)rKrBL8cMhJ;GV7k2S zj}C1x=izptM1$e;v8W#X4doc-`4uc)0&P~* z-jvG+PG^Lrqlg~SEFTg&Y2aT*r-fO!V#PU~z)qxjIwW{HHfS(A9?y_`ZUp>Sr4-$> z7|7@D&S5;EtIX5l5c31ahR_MzM!ty-6Ce==OZxKC7;^~1xl&KEfQH7ZHFSr6$!>?y zZ^}oV$$NM66xyHv6krqeu(f;%ayH!YqO-gpi&9$HQK}{)U+Zws;xD^7A?!)1XQf__SoGu_nW|tjdsSB0kf+IGXPRig64l-;%=PSq z@OhGaMWkgE3=t+{iHs{J4k=(gy5VM}RtC2XXBy)$l9pNXZb?Xg!#|e{McE!os){1+ z&EeM?g5MHurh-vlAmQqEzrpnd_@z5WRC384>q6dTpV6WsSL}bA?T6^!WnW*aAGtb+ zO%2(x5M-mF!vY-YXzjYNheA`mhlsOj&g1-dkAi$ZApF-fMh4jQ8nhr&2f)9j73Re8 zk@ElYn{jH55Y=t@wa~v#q|(m)?AUaKrbLdIih zABk{m2vS8r1@5%m58M%d#h}kbNizyWRa#_sul{Q&NRs9>#^d|XWBIXIFr@dk+FF4MFE6_;okt4usp}s$fMI&TI zNjg2>qWJ*b(u!|pgh!Y0D!8;g(@`X@ulIvwZ7|hd>Q(KUg|>_sN3`!ZOk^$_T;kv0 zyM5+iTzi>*>8?3d|6>NnhF5iw!cAA%kKKuH7zM+R1w4%=KereBW7KOUP9@+5PO_g* z$L9G}{OE`#ouA{NZof>vUdGgKW zF>Kqi;ZA$u1j)+`9W9a`M z+xXv~eipcXOHgT5A9Z(#|FteX2rbqKbSjsFXAoZ@BDlEE&}~>g>AZu3FlL!hakW%f zHlH3?ZQDFZKB?TflPpSOU77)jI)8F?On-geDz2Y2{(`B`#S9X)zezZp5oarUl3lok{$6_m(xoMBMlmU)d8$<72pEl{3zvr znXPriWp$%6i))VXF zKVJ7E{XdM%64%|CYSv0QLZCfIBAF&sQ$ZKakWE}=&cQAevWf$t{ z&XUJlRDQoUnt0)gwCBxOKSX0R^?sGtJBpJ+Ek3ho_O z(x(wV9|P>mt*&TOBq%U+fzi$e{TgTsWYDVV__`61$JlQ_r0XXaT+mn7-eI1S(ezc* zz*%A&`TL&Q`J2-aAvkTC@s&W^dTz<*F1~;U;1_`RIcmG2H@;lSxAf)|WK?GNW`rIu zst^vp<1duu^>LaKYT8d=8_~WZeQS zeGmH=vS0+a<)3F(P|A?|ACpn@_eAbt*x)skqq#rc3op+ACLk`t-L7z&3H6yM;Z#@s z&Eb3kN2;`T*6T^#U)}LNPee9`uQ2?*-&VT6s;?GZv?p}J^Og1~ygBbM>k z>}lQn_6COr=cBbrs&z>I7!%5n&kwabHBe>^QVAcVFs+y{PeA-gd+McGbOmH`@uY{E;_kY_n7|i zQ$7=d9uTR_FlW+z;>&Y(9a=|$OD?E?>~HHu&@;SsR=-vKD1X+a89W<9)4Q;!^LJQ* zSKs7Zwjl0MUhd(=xOQvh$Gi0dDmJGR=)sGIEe$>-t_Fyhk*hjSuh-a znMjJzT5$f=&ZY3x-v|Ym7S9{(uCR3R&x4kgb7paw@NO{L#F&A$_p2I9b>QE)tUtU(4 z@-6Pd3BrMWQ9SaFtPCC20ydHm62V?c5U)j~-zbLS;^s!c=wAJvEhW}tX)Hz`5^rjS ztL#n0XV0r{{u3kvSL2-Oqi!=ghvoM{m8RhsdD%!VS$-xQ*jTqkEtLM=Qs%&(2eq1o zjLr5NO04b4eK*-LHk$KaBU=&RO|w<*ebzxRFQSm~S`ENUfxn~ZQz~p?C}yaXtU90h zeF6imm(*!SP2N=N=>TI?3egI^PwUX(*H{UgYV~sRDy`Bm7^cdB;-;~JZL#9s^%rKs zdq_hAI=68h0_JB^SU$?=j?JdG7vF}WL1GVtU6HyB{cE+N1hhK~4>MW?dMue{hU3BB zOZZdFn2&etydoK^u3Ko{S8sm5{&+0nP+4NZ^{BSIz*@DVEkp8XZ&|)l&oOG$>q)k$ z&LI@?sImVfqCcrAR^A0Xd9R?I_mMRUf*Q-vDjI(R=cC0tnnz-j`3O7>0XU+XY>lx! z@4N%Ny@2VR4m`kd&uK;O+sz_V3~#axVi~Q`UqPdU2yjBM=Fj2WNoZ949L^3UhC7Em zLo<)&ZJ)}s_o{~Lj|;XD|8##64aCpLwWG~H;&mQrJ$LA0{3e%9>|5rh4T{l$YIa<=-q7wfmFc$g15McyTE5yn%TZtGJ71lo}fb2ls>S)Rx zinHDZ?P#q8@AR?)!^OffpK%$>zJBjSrKV&CvVxuO8NcYzih_}WCY94*f<%)sbBMl> z=z;5Q&nA*8Kcm)Pe=M9T{RgM>o8sfc$28Y-Cc$Bl=N&TPw7>p{BV;43=A<%|#@&p{ z;AU^?KDUv*fG-YWmv@A_|4oM|=;>3WA-@}|KyxMCkRjh*q#Fz}3U6r2R;rgkKY}*b zv>P=d>kcQ3CO_Vk1?7@p#*bJiGvq47ki3djm5syP_HvX@9Cv+x6T-XMHxSwGzIAt5-SNKcmYD#s`|_a8fx^kwb-EOD znmYBGlrzISFR5*AH3&X)>-CK>p2sG9T$B}}SrsRKd1zV7Pp1z#?H$f$N#ZKx2-75- zj!`*L|63N2%_Qed@FH9N+d0F`nAW;Z?OQvRUtKVOlq-5m#;Pav6;$*6P!w^Hj#R_` zwx8SQ3n-msY9Lm7)31%ev+bCC;?t*9-un|D@a_ne#La`Me|;l4z~jIwPwgcUzJKXs zV_{8YT&*47FkV7yV)OWz&gC9Tx`*!b4Pzlsu@GBT4Z}220hUNYcNSB;XvG;QEr0;P-h8aP}US?$Z4 z?EQD~+1fk4ZgQ%EX6dKLTy9Uk2~~s|2denyk6bU}pCy2tCf}tC{uGTGLD{|q(m{9 z6D@XyeC-+5v;p0O`}|OI#Cet*$ftu*fwdy4+%e&u z%^mRtaL(n%C4Frah>fGl(DVJc#^Rz5W=L`bMVT~L{O&Tj5()s?h-Pt)l;ePkIZ_hI zUSQk#;94fs^*))jcjny^6M;qZrJHG5RUuCy7(-CQzN>jRygrgbVC1<#nc9)`zE%`@ z$m3y#_?hSCVWs$zTV|4V7|M92eU5n|DK}g$5!&{Z0p1oH;2&+Oi$CpcL{4IbyW4C0v!kPwdohHtoF4 z)>qEBY&gBO?opQS{Kd$4V)3aK>sZDb6rLKpMTF9S}N;6fm7U7GU+f=$HbG?cCt^HrL$Pci?p6*e}D5AVg}?W zQ}o#b^MdhQ5Sjb3Y7G;7;i9p#3=w?7qKFycbgCMZ6dqc?U5lVdfpK*yAHW3Xj_+M#I(JHx zz*0CkefP>fRc>Bc_>!8~uE%|ne6L~}KDUA@ipKB~GL#uT=4}Kbq}h)-v;x&W#-Q*t z%v?H7wHf$oEhdQ|{lOoJ>0}49!s$dzA(S4!scoRaOoKE{#-$Uqzmr=;hCL>K5*h{1 zD!B@zf=>lP#XqR?EBOfUadUxi49e6GU{>PgL&{5_zOK1relK&>mgfr3P%j|Ui=KR%a9=%jacE1pAd(^ zK>Tcw9wCB|P+faXXxD^HTe9Y+QdCj_H)=3_38Ma$@y-sJc0b7UR|9Q|=sh$CLSH$p z#k3aa%zUnV6b;e17D6};J0}d){+pHuEND0aH(I_$1ehNwK~IbA8#Y4-61I0IaRiJx z&;zTc#^Fi|Fw9C6p-9#~@8luOK_ZVQ4awtE)AS8t5d=1LK$6#XDUNLX5$QnESt}HH zO>)GiW|kVEveiTdAjL59D;Vg712pnyXY#6Ljl;do`l9p_lmg+gNWFyWZwKc@6E6bz zcezXX{1W~BbNneaCgNZd;Zcxig%nEseuCOD|OCz&0#D1*l|^%XZ018a;wS3P_4)^(MVFyXg2y# zf|WVM+Ib2QK|}H+19RXA>f-rQ@T!yLcS*F=fhAkVBv|+ctsBlv0>L;fW8wCm*2u6{ z;;2dSKW^Zui8S^lUv~Ra7b6%|5|T;uNt4wifRsxcS&BPPw3gJY^wL6`SxB@jv(?5+ zFAzV^wW?T_-89&o7Psm!PR*UhUeOk1G@~m=6m9q#o_7e`(*W>#l~7AGs=Q72^CFEL z<*0Kdou&;$WJS(#{6Ig=GHM#)9wd7zhOlp_o;3MZU&vNib{(V3^}j``=pJwZcB*L)uBw)HbYMg{gM}#?X@q zlyiZul~RByo<2fwDC)cVDLZ%kphHoZodP$Opw|TPOvED;P9nYf;Gw+?uC(NXn@paO zLDcFcG@=ppkM4UtbV_83q3j8h((Z3()~p0sIMh&X0zP%^is%vStc#cI{m|t;c2;j%SYQh5oD>VYIuLjemrjb zk4`?89*{~Wt$gT;+y{ItR%$oSs?GfpqLf+r3>H12dGk>l4cp4mM(_mHRnsY@1}L!} zgMJN)ZY~{F^gl-qO|uJ#S>)Dtrx_4}i@&6l1c0y{3>eG`4x|6AZqvaV)MgyFf^tej znbMZ3v@G7%uY+vI_|L*1vd(`=F|)___y+!L4Js7Czv!Un|G@;yDOH7(vgn%H`moJ|i%#_7|RH$`tDAIix8_Oqg*A4SmHBd=#B zSrJR*GeXYb@K8(0qzn-h^wK~^gdY(wq#$KhC7dIO3q4p!K1{PMpo){3{_2A z8RZ1!KV%ZCjHmlMtVY9m$r9U)BHB9_sIHC6<2V1YT|5fEAlG*bmgR4s)6b0HRJ_T{ z2?>ojFa{cB638mk=nXsyw+FT6g{NqbSWj>OFPHd4Ffqo%9{1c3J7kghaG5 zbu&n6vR^S{HYoAb$*#&WIp9iae`{4ybP{x#*agX`DiPnp<;l*fI!l*QOM?St7eq>? z>%B{t6X$5!?r9>d7H^%Gw>B2dcHB$9hN@-I>`QneNWF zZJMikPD8R2`#jY^z!)fx6IBUKim73AQ>31mURJPq@Jp^_o9vRNe$zOrFuNA9bdi0& zP1lRg90bBs43EHuMW~vWh-PNdHgV28kjjX;{v8q)qAo$wWJc zJ>j8K@)TQ%b7ck7q7wwPZ9q~^g0GXdX0CB*R#W^AVKt$aP`8W%`F6FX%29e5$of#@)zT1inC8fx z^=_z<)U@u02xcvF!RlU4PNC5JK|SLn4Lid;i*f&t`H52e3&wTmG5r+N06FNy1_X_S zR${`T0EYv$xevo548_805eTVxoaGVk^s*(A}+d2It>(v>k7blVN%kNr6{O zjph!BtHW_;BU{UlMWj}>kaLC(CxGWF=kOk*wkFU96qO=1A){|apuws*7P-|HG>J6_ zoCC?ADiEn6{iadjZyt&%Q&GF#lYirSv|!IkttaNj+PS}oOy4G<2mZ5&j;8f9Mryi? z-WS|rD0F=)f#XC0)zMc?dgLuiF?FyZg)JTns>$x;*SuW+=7QTq=2Fl!xssiYvHkHf9=V(rxDOS6i5Ao<7gUM98Jm;*KQ_SvA&Dn z0GL;f{)NIf4X(jZE2tBxi^0Q=yK90MSebsE-k*TA6bNu^Ht5fX3hv>&l?M4T3ySRX z!!JT$sI9Pp(N|;!b(!XO%T)@@y-0K<$&N~w{&ZGkjaP(#wlOrivr zuQOIe8=~R8`MsWrRfCOTl_))t(Jt&15g8GHFPI^4Z9Xcz>C&M&B6&$O>jQ_uFYETi z%aGcIAY84Vp6v%(O)fb}&F&tI`t|7?FmB(Cu!mLO#;eY#QJE{$@qkbwMZ;KrwLN-6 zPa$o^E!?hW_*SQH=g}G!qWRqOl#GE=sIKoZb2ak%)x@I}`s(DXlMkCMw|2jrjW0QA z?dGt&B_y);z-yGr8qY6J$n$X~RA+{7g6Lg!`DSp855>$k|ijSTG=kW;HMM-Gdv8 zc{Lb$M!2_Dycjkit>-rdcYo2SN5u6XUU{wc3Qb^5HmG+0&Sc~+D1Yi%9|gr{mM$nU zm9UFA3!SyKp!~ zoT`?+%6V+q_MI;}+~4qf!f-HEKyu(57nYajt?ZMvgzZjsq|o}bB&>Tj_HxJ(Nh4CE zikCQeE4XWu5OVFxKQ{f5NPCnU+gNUnv#RsdRT7tRY!KlZQiSE=%GoYY$_J0v8Y$f$ z&%<(Z@HCj}DjlOmD(v)fL!;IM6YB*n^(NhJuLX5;8v1Oc9gQ+5W`|U$KJW1~xSN~v z8%N?(L%;MX5terKk#3DG)mVTV$b)zT8=}8Rh+4t^X)Cn=fje4RWGMqJfraTm`RdAz z3~aT%K8n(<=DiPIN0>Xq1lJ>P4NI5ob6a9+N2VXzLV+{hi$+%&G_tqZUEIi0(Mb#E zR)I#5a05QHp_2?Ax*cE{nhgJb#&#V`!Wdoh!I@ACk=l#bHCyw+iqfo2k4ij`gWhxxgL1HxG%soZWd8azu= zJf>q{rIQZi4mzKcP7F7N4F{74W%($Qp~!>90fv94Dun>x0-#_9_Liu1U0c5Nmc3R~ zy;#-fgCBO3rBlCRxzK{r^J*_oGVdXbhgNaPqaX1%cSGh0z*f2> zNTzfix*cBjjmypqTR^su<-v&)J@WhZ#^l5&Oa4*H%bi)%ww5V?%Qmc^q2G ztgRgIcnBJQJmPdpW3%{pSS1~`l66f|HZ(oF7OAE0VM;X_Xlw!9#IV;mfQ}SwTAc91 zmdpYvfL{Mx(oimaMaW-lv~)T3@FqE@uvYJG$9%sNEdmHJmWx1}^&*-T%B_j$yTG85 zTQl!jP|Hj%_!bC}x$5_i5$9*wl2u9(X>8AUt2rrZVO^#!!l5l6fo{=tN zh_cyfY%X*;%>sdAL+{;GSqC11&!vNpsYFBhOja4SVpskNJ81|gk!|AGVZPCqsMwi% zyDjxBotdSa!D$kV0e}AG?nr~mujOo}-)ox#2H7Y-jh+yCUcs zcbB359uJ*-W?v)V+D*p$e`h+ca0PfK3%l*mwO2cs@53bjR2?>pHgn!*{O5}EOer{9 zXo!0JlMxdWQ_f+=ecYFX7EWh93aR zFueoZh(ij%gGum)7u3Z^Lp}JHbe|QEEFNZ0d1+gy%NMu*e zdB4)Dsw#tKRUA{70m=>3&eJo}Q z@>{h&SCltxl<>1JDW3^-LqdvLB@$+>ZJVwfSdt&c3*ma7f$cVBE! z5y)T!hJf-O_f2*s3XXR)pjS2Oyjf)qE0k54#l`JyXNwIHnwtUKVRuq^MWB> ziJ{BydqDHG+xNT6nh7WJ*YAxamv^kj?!ov^M9%^~qaICCNAvb=oOsK8G!fJP!__-* zXBKqb+8uOk+qP|69oy{Wj&0lM*y`A}({a+V?cA}GlYXA}eB->|s6Vjx9#y;6nl-Ok z{1LQ*mbnq2uAlx<@596-EdMW07))!VuM-t%jS`5Kyrb$u|C_dA=xlaqV(60(sDx(& z`D51WN!Jo}OXQcC@J*)pwy*w(ABO2po8#RaiN3|fk2@nVBp#w)^3hfrR_KE z@3N3A(dTk&X27C^=GCQw!P@Z4ym9kD=zU0BIYb-wnRrzbPvk&*qO}*P?%z{6vWb1L z|I)D#bCo*Sk}i=vS;V`SH|hYu<=NfBgITNJ2hE(j2|Rciw~vf!HO!@SqI6I96FzjO zYns7e-r7|$$MrW6NY7nM2^i=CONXC!64}ooJ5_^FgTdd8))PUCh6GKK%i4}6eY{NY zaIgL9DyK$v{(`Yj6lzWBWpjpe^1Wk1JYK=`^am?`bcqz{_(np&II0;7mNmyVsqvg* zrt*+(uP?N5O339Wd~QrDOW4-zZ~Fm1>`>&?)FUp&^s>VQ+MzNwoOTGGK{<-5`thcf zrOf0arr@hVP_Jd`wh`_AZx#UD35a}pB>bz4l8xar03E=anWjvkV)?#&Mgb_O-qa{U zsr}5Jgl!MPMHbx~sDEmyb==Udl-G^WNE=ELvf>cnojNrmIwZ5cehK7~TX%-SW-brc zN{kGqq=>ZrdK(;Q*fTDrzF`pj9nyQ)79U~r4IsXG91Qx}9&^~_cW#+^13|tA7{MNsDf{Z?i4q<45 ztJU%{Q}CS)NlY8cd6P~~05MLTZbrP}SxH7rD`)>@HiQG>_~F<;uk{yt*A(W@3brwM zQ^AO$lEU$8`8HIq-(z;$Ev1%L%_ujbU!~_sfoloQWLphEA~Ze!ST0IgYXt)`pDsr) z)z54oc1Xw6i!D_{pI+3(66~S5Diw6cQkU^1Y+~S!2q;T|! z)k%xCkt7#;!WWj+x{66`%3X0e5nwUhtC~{Cq%XxGbBqBuR$JVaFV(g_At6J|>!lz8 zD@|q`7J(MFB2d4P)i<7`_yD8Q=(rALbOqunq3hf78B@PJsx;7~!e&lYY+|tz#i_+a znV~+AU^+sbWXBwpgHAq3Sqe+->RKcxqCnDtEMCwTO)fjFva)cKO3#9p)Rk8}Edf32 zAnmM!Gh4s>XymeOd8hUhvz$9ok0HtjksEN5_LE9$dho2Oxv|oL#5ly+d@y@Xf~#+G z^Xu?LXt<|5Ux|G)3%4TqqK2t`(td$K+~jP~qO&2>G%L|iqV!@dpy^ypl0||BJG|*d z2X3(bahYCF6JYJIxVgWkws0zE`HyDhAQ*%N32$DQ{(IAmRjO_apmC9@3Jfk-Y^F+^ z=8!-#T!`Dle{oR7Yp4@*6+!b6RK>AXb9jD328ZO=EQ+5fTq1J;S*0i z{UR~5V&un}DQIG&FQcBtpxXXMcK6ze*Dv29F)Jl2S52kY0TOq#YFn^N)o{p~jjfk9 zi+BJF2Z_Xv^-i3$>Qebp=vXz2*I}n>%@G!bMkgaAOzbcwuPBILFe_aPfCqp&iR*>! z(A0TQ7jUrR{4@16a^7PntSj<5Y#75@ilXB|a*tA;_a-a7I?0wx94d@1MxjZ;YSW$r zVbrM#JoBuZD0JSB9kNIkrIGe$Gs*#zThGwS112*ONzTtg>B4SZ1{)vk)z}olzt4;B zx-}de1`Qk;>mb!of)2aEy`NlP0U+>H86=*frV$vU`UvY zr25&Ef9Mnaer?;QqM#b9?KZy(WB(QdBKbixE` z>2S1^#PI+xJEx?g;*PzZlm#8ar}Z;)TW%kQU$}57@y-^cv~goTgn{{W1qt~1*U-+^ zOJWnbtAU(Nlom~=!DhUSCG^G*2>!PeJ6W8(pbYxalAOJgte9kXL*t_X48~21Iyh?lZ76Of1(6gL90mK z-#xksaI#4oUiG=7W)FC;b+&CjFK7K1Q(d;WqxGUaHPjL6VQH;i+jZ`+2TAL2!z{kN zfbI`RCS6U!D;@eDJGll_z@j%Pd#2j-WjBz_Ns``8u6IF(U5h;^?Ho+nG!z_1q0-oM zR0N70hn_K74+hY3P!Ok4YLM${%JW$){|l?us96vjd2tRqeq*o$0{iL@hiy@TJCaWt z`z6KIp4BZA4NY2fEoL}GSK*IabP)=P+|xB`2Sk=*d^%<%q~+5$a!{JjBw?9EuXg)t zcPHfcFX(qGRgd+od+JwjAGzg%q;42={ z{sx^EvDYJgf2$_k*uUV($D4cc=v$1_eCJkpwypRvoPFlWynXbxF+(?Pl^q{}T*`rr zbS$?p0lLAf(a8>|)&Rs^Ivp`rV}iG62@-LwS0^ds_y{ z5bc4wI2{#KyK$NY(|&sIV1)(?!0eSmDhs@X(oV;rB3RSP+CQBQ9J?HeLYTb$JVYy_KC6LH zj^wpg#l?O;59cpJJVt2gtmCQkE<4DdlVZq}g#J>i=xS8hN}hlOg61nb(1F=-j?eU` zcHoizL~s5sO=Y%xn0;%}xNHP*fsL1Oe97%dBKvZXcSj6?loShAEope9=4S0d@z&!F?PA+*5-&urRW)H%4^0cKF=&79ZbB{ zdbK-cD5R{-Nj^)PriG6G1x@D^nw^}_)+!zTQKpMMGaB_`nf|V`t51&JCU_*dIWfm^ zaXd=KnMNpE|KQbVkd=r_?V+mwpQBHI)d6y0eOrbDY{VcXT@s?A#x|L4+pwuej;1XH50_4uUrQmQ9R6B!jd%eJrY!jtVT=qb)Z4lu zEwG2`gbl`Q9SPr#5^HKsnX5`XaEA&fH;$$3BzcIB)l~(K;s`4AtrO)r+u2HCrR?|5 zbSEQ1g2v4lbK61KNHs0u&IJ_vpj^^k7mEK!xfRF3dVjJCA2sT$KVYzjE28yP&*Q8 zeZj02A{M&QQ>yOm91g7i9D=h=zqOW|jA39(BuLn-=`p5NH{p&UG7LatZ4}sXFxMz zdX8~-C$<|e-J=6A4$|kFF#o(8Xst`MLe>lXoN{ycGdhcffg{sH%6zj0rNyCb}wXhKa*yTJ*t}~IvjI{ z#gEwm_&{i(6+~u|Lze3)Z76p^W~-vfz-g2_VL$eK;PwIN(dw`zTyUK0r$pM!1PiPX zCZ*O1Sdc&v)(#0w5r}(hN}F`2s5Ej)ant{d=T+GGNt-^c;v`cSQ^j%5&Xc2pDWw20f`f2(9{YXS z-b_%ZC^myG87GEkG#(TE!@(&Wl4fjPzo}jcgcHW$52kZMZih-zl9VM<*l>EdRnP}K z<{Kl|Rg;fwJDo$iW4?V;oU1gpny&ujZ8ygsJfJMiPjIa8`t`FD9Y6S_X#^Nm!<&aY z^Eiz&n4LK~{KfFCf!B8B72maX(*6gztU1 zVtUGfZC&dA5IJKgr!)xA6oKj*!_6k^08X18yB-z%)M06_d?j3WmqWoS z-!(TXB!0s_ZZ6(2R>tUzb`A>cFJJU{G%6$3@37N>CA>O$@?hM#vB&Uyrmc6gPX3lADb zim=}`N?_=G?1H?V1rUS9Aw~R)XPA!8jqcz`-A#|z*T8ndABeqNd#p8Dng&u#0=Ic{ z`U&lN+Duri!Tx6aXnS&eP2-YgRhtR7pYSwg`AI+PA06^u_a#p5_YgoI!CcyocE(7j z_XclVE@op~UR*G+XAR~|HyeGH&jT+#UJQfR5{vT7vJ&$^JN%khOfhccC*;cvt|8vcct?&%!-cMg74B4_d0S7?502mC;@Sw8W@ zRT-X-5xZW~Hz7)yI${xrB< z+vg8urF}gjE6()jgX8Q6;&#vH{0gd(6@=W-qnU&4G%~7;h#NnCQ7UH4=;4}8aUg>F z@F7>pi8C@k3W20zqN21N4fO1B1O^ADw9a8-H=Znr6_6xm; zZ9f&`au_Np6fErW*adqNHimlwDAB9TZAGgK#0~as2u_y|SS$5_@oFzS80e?)rQ@D~ zPotnRc#82cO$hwU&g;?FFsAoZCGh$0&}OEu7Bks(zj$eT?lCbnJvfZ#b1j4#NFZ?# zSs#)(eh42(AH%8WFIrZ4GLd*qW-fa~Hs1Y&)nrRd-1-lZ+gNz<#gn(U6xW~$J`S#DNY0*jt{#9T=b8baZu0N#|Pr!&u{BA{tpB<|bN{EH7SpVCWe$Bp0vY2S4W#7=%yq1(EB|S!Z3+(N! zGb)IW=z@RK11A|>op%$g^Q_}Gae=-;INEVf@9LosO`_b3TW(DWmX)PQN^n$^)2+{( z@|x@oj5elB&^a{=-BCsMrJ@s=gsfL$Pj|N-J!8RU++&WlznQ|hcJA4fMq;f!&8aD?DyE8v>5Rq@1SD0g~K(61Z6 z#@CHf-A5%5n)5BZab z{@ed3rpuDxCbW(-GvBV4alW+wvx#h-jT*$_vjVX_g+T06u=@MQ69e4OeiH5^e-iMI zds|)o8!EX_6mWhSh^7(75k}5UD(i`-oNlPSEUy`%jOI;B#KOlBTq^>~n2fDE<*_x; zE`R}#zvNq5@_7SqxB$f}K> zS1$K!Wy3>D#nuZhzJYicQljww#zPAY@fCM`Y)fxe;;mo>UMWr1+x~Vs_r1cRSzL~ zdAs7Ln43h(gz2ECpgU_XcTNDTYN}po_ZbCNd*#kztTX8x@sx7kG`BXoUKs!Uz$J)k z$I7J>r9R_n(l{?4cbjNk?cG=akBpwl&2WWwsh`>bd3=SevPf|X`FAQtD@01q{9*I> z(?q#*UI)~;*keRSN_5}Vwj7Kf(#W$T8+p|<-sp>9^KPJh*W6DNBTSP-nJ4*$;081Y zWhxa)%Icx0nK>i-l}lD>+=BC2E?jQHGa1vPREzHUW4nh>O!`?6aukklm@OahrAs04 zE7T})E^IlRt6~y9-^;@ST&GtisLheSie<}h;HO5PR?^dVQ}!-~4Ivr%WV}g-Nc!&9 zSnsVLvv+#w3>2aH8a>x<7%PMl(WQGFnzgR14C}bC)<{Buo3!tcZUvtGzy^uSDq6vvOhz|USWx?$wQR0dLFg^-%;2a4oDHh(8&4Yb zNjoq06=AD?1j-rFB> z;=QU%yeAvJNhj}UHZ#pOP~@?^(pElUyOSz}mU{6?5l9Brv0cJ%FX5?PyHq$R2jLDB zBgRasU6%)9#>ne_YhHJF&b-=2qrU!gL|bQPi={q9uuXX&$Eefl-&xhIDf`}UKsg)i z2X$|R`}6f0ZIOApVgL)`#$kIyG4>d^kc!$P4ledJGEhP3M-hOK9^E`$ zY#@mI>>zewyxWI4s>z;>fqIt&PY48(rmOp{Y+iWyh@sQl@Ho{(8H=5725-$1X-}D; zR&CjW?Xj6b>cm%jr#)e~!g;68U>CVCVn;_uy>{a=Xg*x&xq=v@-J$htpxKZp=^V%g zuhE&Yi?MM#=2s6KXBadd|lZ*n7J{Opa)N^s#nw?QaB7xsS(}lRmE`sNRQ1}L`LA<0A zLSxa?1OpCch#ti6ZUWvA4`DUQ(Q+${gm}W=h^b$MAxu7;TF>lP!Qm&iD$Q>X^aeo)b=|i?aN) z=Kc20xLkNSTN{HHv-~?^?@Q0$yr@S4&DPHyA8&5FAqBo$w41f~svSR8%k~`b_g6hU zU)%x@?^na8oRTal`=Wq3lXpe8oZ!2z-7g()BTTFarevOzu=@I4b$m(sCCHdbVQG-v z5x!WRdn`TXdjDQxvgup6{^sqbzwhUxA>k0k2A#}3lB zJLiNTkWMc??P`kQ(IHqusW24c5#;cdY|Elxaoelcl^j6Vx`%;{OW+;-ysd<({t?`! z7#DK(Htld8q-?G`tBQ{&BAPIo*{BmlpaJVsup6iae*T0B-Xs|ngyrJZL zL)tl^Z<*R~EvnBC`;ypaM$zo!f$;&ZI=pmcGPR(ugao+=>)QqFA5VAp9pdS}2t%kG zoOJ=Kvwv?H4KIPFHrf*hV7!jPdZfI03PwVz{75cc-f$`4^Q{#h)EI=)NU`@!62msjW|doF-n>&=r2~7AV2+ zbHnsh*b2>)gao2k{k_D&u6Mv{To@)^Dd^mZCaaL!rJUoII z=5>95>e@VxR;28P+2$9lEwkwWs%&47g4`mT>Gi_y}Ak3 zqv|+@k0>$#WB;YEV(&+WmPXQ()(&~Gw!W7+#D_(rC(br?X^HDFTk_!@O>(3tIqki}0gd+qgH}(@d ztlzJEQR}dKRM~dP`?y7}i=|uF9;x;|i%cD}%tzO)N}MSN+D#>{$R(e1kJDAKn9(=5 zxs81>oZZ8KD5xJvp76I?gH`%In_;UzD>F~p@)4T&7pL(W$?=%whi4_d?A~mb9Ow`n zXp+;?f{-P7XAxY){+gowcARq$64Tu6qveu*zC}vY15ReEjxP zdF)!D4aK#(u_CX~Bf4@YBcU-HCS)f>*v+PZ#UKrf_G<+j;s;2)q`wBG-quDE_HIM( z&E&tZJow~>CUNTlRpUB3(seX?c2soQ9z`@%Z12W%YtP$qI=6jw6!ZM~QezLhV{-0# zul_dm#2>|gEwh>B#g71L6(SZdH)bX`a5o4j;w<#&%xh;#j4@q~vJ&M01M$)a5h$d-#o@g%m5y6a7G41Bs07Ve@43>7C z!rZ5m^VXi9?3OT8d0Ptt{X9~_-(*xocyxf<7j<{8Unfrv9{Q$@F$?zj&+Uc47ByU6vg^|rW50Fz*5+V0&r0d;c3Vu_Yf4Sb>fE-}*_D}kNR7S9)%!~;kKXgaFqHDU z!g=I@Lnf;PRu}=BL^FUZYG;u3E1ua9w{@l=K-)t$P-JD4@Mt$ z?`0>*v6;{pUD!^zsP-j7PW=yCZfviBh`3j4wd(7QZXJWjwczLqm^tPs^1N#eXU50a4B2Vn56(X|B@(O z#UMzu8O*try42MyASf!Z>7ou}#9ZiQC0bS&big=iPk&LQpE=F*-ShXzgR&f%#QU+N zCXGCk35uqX>GWT0D?m`l=C_8!zcF=kY>ud;dJbwBJk8-7)Rf#aqQ6FOh=2-*Iz}pM$uBQfPreiiHw46O-$N0& zT5$Gn9zP4=utbdqP*__Un}Yn^7rQmY1tS%rrK}w>@A24P#z@ zax>h~pk#UjXpG5PU_E#P!{bxnAf-PE0@1rTh@X44oo{LfPU42Q4{|MAFy#?cX(CP& zRzwWit@mBf(m#|n0;R&iIJIlML?ahF_CdGP#E_M zhm(qP_C!Nsl*Sq7(UKQ$GCOnf;C1f;kY(qlh&_7jB^BBqKj`745EGkeC$R7Y7V1)b`a-YF?!xVa_Kf`EK8fHeY z2xx>%{JFi;@2aw4S%;}ZkX2xH8%4`kdtawIIVkGfpqyYPOr&K!i;E6COJ0_7<ch$f56uX*S~dXPxvfYz^jM6{8^s5p6k9V$JPk))*}$fg2S5qktBcn`a>jg=<||2*W~ zO-Z+2n1zBev!Q`LceoXX1daXSrtSBdP9-)Obji3~-OH~IMHQtDu}j^&|9ptagBsbe)y^2TH0Mw)9Bov zF$m(-yoJtz7-y#w_06%2`}r>li2+3Oby1pHtD17~oIylS2^V2YxaKtnJ=l%o(mL@a zm6E!8hQbbAMHi&4(Zv!gRv57WL^L|+XNB|szDHqm8 z6D|+Z&OyvA^%F}d!8&2u9w*7@gAv)-RJQw`*iys$(cpeeL89aGfw=CB#1-<8*K+NpMad(GWOiP@y>gG6$z83^%&Puhk!I(-04LJs|^>vX<;@= z9)c(hg~I!2!d-st6V4ZSTaydRh;s)r0Gd0cvMw*XnUg@!Jbw1ir6Nr)JxxCO=sK9@%}w230t6P%P=!FfY1!jpuWU z&C;pD{^tz7HrH{`jaCC)QN*l^cpiLA*D3@rCP3*v3n^VWO zA+n+naX7Y)Tv!hCpKc%pu1%FP-oA3Krg4366b9_b=cw{Brn$%?=F(Or+3OH{Q<2jL zr)xZkwaCSWK@`ayxqc)#ijxM_K~|@4w(hovroL?|4kgj8g&07@I}wP)x>NZHJVDJf z=K@-bkG$%3`9b~u7-S9HuyiSbCXfxePP^#a+6J08ydISKt&JjC9DW;I`jAXGfO;yj zXb(I175*Z*$#p2|FYG5M?G1sT??Dp4VH7@vKgrDkk>ZUD34Vyr6C9?M1Y!K<&YA6} zlwz@^E36(nbOdZ-$2MK=JYV(TMPhEP&5_1vCjuM-p8vv-6A`g*nO9xrGX8H~&y%F( zf&o`7_2J5qePaGGD}7{qg52lR$R@<$wkAq zF05|v=v2=e)~6c}-CmVhQQvB5I?{<4Vm2cLiw)h@5`t2FFO=)M`z0%<(QkecidBq9>eD>eHfB_1JMCz(3>0V^^YKq7LP|_5X@)VARtsNx zT7W7VP8l3Zcpd^9?HA!36gq9Ub7Oyk6TCa(HKb$E#aBulU5}H&zFuH9vww7 z)ex->lbtn=8Qo(#9UrrD+Sj7B4ax4_Ua3+;6smCpII~s>DLn4?Mp?H{(Uz_ zqqgQ#HKm<+7zq-V>vylwj>^Ni;j^b&14eI5SARB^VuSX z;D&VX`cL06uhY$MzuCr^l?oP5X5{wel!G-X@3wsHjQ@rZKT_GaVECwu!Mq(x7n9c* zpYu|e><=QlEL?MskwO)Y2z}cHIP#SdpqV!dLox{dd+uPMR^eS#PQ@Ja)U!jhEbUO@ z$0a)~XV9-3n>H?=H?~y-FAOjq9HKl1NeX4nV+{hX-qJY1PWcwi3Jctdo4B1QFq&vT zD>Odb_ws_AaU8Us+*YkhoxH0yfZ)we`3t~ zcdOPFs|3GcmEv>i+@%#`{k2f8c>Q@sjK*8E@IwHX^g^NWKNT4XxiuGx?PZQzC&q?G z_UPvcb;6rv^1zBW)WjcA(`RY6uPkyZ(LxB*cZUwb!#Y2dK`} z$Z4b~R9SIS1CJLe-ivDfZXCHMV@ZcK=zKbTl~dggv5NTf=&{*8Jz28L{+h2w3XZ9| zp;I31q1On>Sr6)LVPQvtu)Ll=DE9@-(@MNT*-O#HD6Oo6E2*y4BMNs*ZLBS)(m=n_ zZ2o87Jk>BhPB5DX3dFBF+2F;2bp%6n{^yej8m+l*YV z@1+9AF{80oqfmr~fwJ5jFJ44<>1g&g66r+|rT-&SAb`vko@^S?FOvPIk^0w6{Tski z$-Hn5E~^z5q<{~4tLGM6Jc_BIbsVQysW?P*v$Q2(2L56WiwJU zRGiqU&cUx*LF916iTx{Z+O0VhQYG!T#KT9-*S1!)x*|LyZ@)?mNJsLcIg7(2b=xC5 zuvwW)Up@41!$C|c_`y3$HM}ZoYr!*Tv1c{U7mwfv=Sv|$p*}jbfqKcH8YT{{ z)+#()_O|W~#4XmI&Hg$0Out(Nma5I?^ZQvIi6%fHy zM~h~_DDz$CZ&D_Z=7qlpt*=92Tf&NZitrVS8dkzsYJpj%*i6F@5NCm**MCMWxOa3s zyL@kqHFOq36RS6}_x8-H$#Y7l0z)IO+7Q&@_wD8JRPH)^7SQ_*4xbyvr|Z5b6j4z# z@D^K=>E(Q>wMZ2^g^{}v&u2K)Xv*zKSy?Y4Fxvf1q&+4|K>8Vv`DT)TA$2Uii~qam z@JH}qlAy^}GdtFL3Nz~AUYEbtaoZW+#j1w98S0K~omyj+WcGmVnb{<^NAPL??7#r5 zo~LtuanQ%IM|;r}%`c3J^#`721=;>+;Z3SMF-X`qxzktf9;?7sD+jhUi&e3g<`g?y zG3PXekl+W^&6Gp{kuo3Jf0tO(lg!(;wPEvbIz|zPkOzyz zI*qM9unV5P`Qq~Gpc=DGdUM*o%Tcwb{5fa^%cwlRu2_EvQ}GGGM(nesn;kJWE&;{q zfli?v_ylp63~>?kSX*C2gISc@o)E@idr_1>UX_A9Ht^gRdq43c#0%73_ip@1@w{0Oinc66nTMI4Ro;+Md80V_`%bd|; zy}Lt=Uv?LZ2bP`NL1S%yMZlVp@kZXvd~<(s4zmfN917lDI=w%hGM^7>l>LQv%nqW- z#Ev(05?5#fsTi&Q$qd@ju2SNKsY~`Lr2XQ4ce0f&X99B$?=&>H)FU>N?{RM+qv4A( z|FsePOogN34pDibZB+>t@ZB_rUb(9NyB{OrGytaYjWP&dJX!4UWB)9Qc|0s8Y#25s zQfIH+mTqMpF^QUDXB=?%ISuSIT<5!%`&YGj5E&Zcw9AI5iAzPk;%#~Rq4i{O2dR+G zzu0Ce2>2ID###%61z$D5KT;epG<89)Tx`#_VR~oR7`v!)#bS)&HY#*L5(L)(AgTOx zW8_OCaa5bxjZSU0h~tsDAs`aHct{EFB#GL3uegfb1Y6W|6iFXX#mP)8;7g=nRP@udhS&(>EP**6L9Ci`9&U{7xnkXZXvZM$ZhmJNnymrD+ z3hIYqJSf-~H?RHpWHKI`wD>M~He9tvf@LYQccGaq2vPOEQePjFoJgOE_*q(7*gF8G zkaA?tG5v%L^>FS`N=Z<*WfLed*DYXtwbUfU6SZG{f5KH)8SZZe{(E^}X%aW=x9Xkx zKojaHotSJFRd+Ii+{2GrH&l{jQ#CHxF#_8=iSN9Vmkn+W;IhDy@ZpTUy*ujXuQ{& zA?yxJrVF%weF$5}tm4v$^bXd-ldVjlg1M8TRt$YF)Q<&4$Q_2aO?n>xOEo?v_HyF9 zpN2~gEKmKQuFevnAfGzFh{Vt@JmEq`^@KlKWUjxMuSfWSg?Rt&gSNkHE9Y_#kfS5nj7 z_j?gsE8hJ@kAKx*JgKP~qvWT~sWzrI2mwPQM6ToBs+G}0ya2VGwa31yuCy5d9m zLZU6ljg(d~E$qC3l3$=kT6bC2>tC_v`Qo8<@-^uD6b&jcZfk2dxL*Y_(>p2cMO0B$(z zc#ii9{lU=-dy_Tb?(|=`6qs{cU`4yG`^cPg7vs&`#KMfmKyG z^WapacByq7#adL_Yi=O>^PPd)3&|>F)4jh3GAo&T`OcGzi5^4`?#S2FGyoyXjSDMr^PG)Z!V8QFBG^Svg_<36(tmq`J)%5Snzk2j8V3B`=ASEl zdYx8U3MXwo$rgkfKTE3D*L5#HAh{{M#QUX-R1`p|(^QLg9d|{Jl@-RN$+tzCEr2ws z#ecZkuj?fFK1kuy9EM89Y3I49izQ3b(n~Z2HP9XFfkfFq#~KY2Q74Ks!ll=Qc&eo< zi2tMFhtNwXqdT$Z0`fViy6@f>-IF<#$!vwN-WDhQuwbVfP)7$z4T#*~kCPn>_Ip`Yi;}eKIGGP(%TKNB)tDE?~|dp`bgYqC8601&zT3 z?ukpmdXkGJDfW-C{NXZFr}JaT#^@8TL7pRW?L$qlKej%m%(rE#nhTYR@ zx{Hsq?9Qm3QiX(My1;R8hLjttI{2NlvAyt$2Ph&d4on-btgT3qltGa14A74-wgM0I zdNlLz6g0Ogt%fmhsT2uNH`-DrTx~1^RPv0XzuQ7r)W;N@%5M^#A9){M)6GjF;A~tK zS<}@2Sf9pMIXLWDzJ<*Ad=D?M9buUoZXV#<$FRqi3TgUgCB;TOGw~-%{Bbl1u zza1VM8E9EtLPScJ)%=WV-}}=LMr^8fI=dx1yeKL^mjyYj1eqt5$)j`%UleDFp*9>p z6-=B}$cUM)svJsMipB)GImI>N^GifXiO#91C5b2|;23(>bcD6FGmDME6NeQdAc}=4 zuoj1IL$mUPVj7JCW$ZjcT}=Y9(CAIx;8iH4IrJ1Ja%cHXR4a98s8fVfal2jioVSXHh1b1XHh8MF-HG4wFNkDNj03q*cn(9RW6GTcuHPiHtY2Ne^eN_;5eL z?x(TpALt00xF|jBG4bk%-2ym)1X|M8~xRLd|7v3 zk?TmQ~D$8#0MjV zMHT*{jSs^$bcglzEL@HZEH-=#G&a@KQHa*3Zvs(C70GM_sP14v&R~D#^SKzq?obG7 z)0LS|M%WlUywEVc_~L#XjzXD0rx~++QccM1-Rx_F>4UVum>Z;U@2v zXg_sJhp6A4;zLIqwT8^ToL1PePiH*Qe~fD9en~;0SDzgRIcMAWI*}k)N5|dpF{H!Q zDW9+AVhoX!u@wG9N&8W9fr_s2D`^PdYzYwK@W-LN(?PC(h^)k3vL_DRcbW`Y*E;7K ziqksrq3FEKFt5P#N5f5PB_S%?LC9Glw*f2-x1NRII2#0?J+cF}?y2w#eW}e76t?_l z2>I&A#Y{hi@8>-d61;rO%n=Q@hQy<0o64(>g=Sb}l8zkf#FEsAObKq6zDoN1q+>Qs z2H~yXYsQV6#;Q{Fq9Msd3)~ND7r8IrHRgQj#5rtdp-s_S)*oj9CEAsyiK6lL+|ZKY zK6z=z*k!zT-%ZAP<06csSS#kA-ByQYTJ*1S6BPgH&u5UJuy|(X0Oq8@;}u-8n?pX5 zY!_xum%b*~Qx8Pv+1Vj5+USP`bp4#*lKrRLjcmnCUmX$=8{a=*Y3`C*$?c z*#Y;WVD?r=`q5sTIJYk>xh{K3KIvt`f?Co3m&uC7D`R4|+!2Clu zcTYOd^K_eTG!szB-jBfKCoCz#T?r^GdBY35NR|~5pu*pv&_Yoy*!~@zV6sV~L@W9P z>Xdx)m?p&NGG}(Pv;`uX4P0{>Rh&?~6lUe}-8+ElBBrf;XsX*5NRxV>b}r}ZwYm#z z4-!gWz(&kD`UDvH$ zv27EP=vVLKf3g4q zKSFVrs_}S>(82#&i2C`=Nd&3N9vCPSCfeTgERXOUtKSpt(!s}*K`$k1L#+yjHZncR z%?^kq=iD?aZ_hvWg|KM{xe0<{eEOaY*kW&obT-(YO!2;=!4reB|0P9Kzwp;$A91x| z)o`3`uLg6$Xq^NXa|LWIOR*c9dOrgLKMdcB0^G`=2zN_Ey150qC&4azr;<{k&Dc8* zgcx6N*hXU=%h|1J)k5*CYI=e>l2|KpS`$hVdqW8Bl$Z>evbV2(1z}a-DSl+#(-WXJ zr`ch~C5qCA-K4R)mh@g0Dk8N+lQn<;!CTwDEP}D%Tl3k?2$yleR!4Rr2(2lv{ARI+ zRw0-SFpR`fDrcyT3t1&bKwotKS>Qx6p!A>Zdn=Kgji92WRYxm`Rlv2@tp$4Jln-QQ zM0sf_#7F{K%%nGL+xN-6=0k6|py7P##gveeJ%mV+j8h)gdhX&Wp=~T#%|es1!b@eg}tU-W^s**w;a6IXIE%c*~U|2 z8abs~T*#zjw$#)T3CRUoumidtLao@ zn~~;{lwcs{L%jkB=}X<3J*apx#6%TjD&HWcc-L=Ze^7PEO~x*Z4@HJ5iYc;aKGJL> zF&4rko%#G~aGF;Y5oIE@P~pP+WfVLlcZ#1+(}kXt5@o5l(&=miZz`L>jg>hRIO0=4 zgIt~Us8#t?`kU)q1h;4wYXuocQq`Q48<0^FW~A^k_YVdd`DsG&J;B}29|V1$4Hp!J zJvNpU2h~5a_*9cC7apPH)L=b$q8Y_F60u3UKc1rMbPyHZ^xEoFwO%bayS3E1DM1r`Id&q|3?*n(=FMy? z9#@k|`lQ#mp_Tv3mdUpGBd{dwf7_TyzUthQ=}T7#N-8S++N1cEf3|Ek1PbejGcr@t zLs*n{cUu(dFITpK{|mG6yJmFa3z@jYGQZ5L1qo_1d7 z@{q;~b&4@XbFCPNL+Q!eVeRMmkEtcgZ+3#r%UoXXuMnx3!Soyuas2{2{JP`jdL7}q zcT(QD@BGpex;CHX4>j9A$tUa;9W2xmC`e9C1QT+9L5$Vr=vkWsYjjjJ8PL0T7!e!& z9{f}^Cs+c&!^nTi%Tu5`&G>QzC(HW%r(FxC$2oFh%Lh*5>C-QL+g;;UW)&H9>T$>b<Z=WrB1R6gEhm<&&f|#gHPeeJvB&c-CgLxGI zj3OF2C^+<_tIvy&kjWd=l$`>3)X!y^dVIHpZ-Y&>O#=usGEl(y-WVumsR^l(>z^DB z-AqOh*(#&&mM1crazPLWW$U4^Uoy9PhvFueSc?DkBd?vHrpn0&vb@i4Z#q zcb)Clo2_0I_0AM%1XIX<2UiYDK{}3wNQ!Q&=57Mu^ATwyVh?UD>K&NcSy88EVR;Ur zaGe@X5JFHWCB{zrl9Lfx<${c*J8DF>e)UTwCn- zfLRPe^|9!Cl+jgT#{SH-xLNeExM^580+uiB#2tZVAf#j_UQ3a!h>)DM6)`gctrp*P zYsDnTAU0hZJnQceiDZoAK}D>w%<2wQPP-4eKy!gLY`V+pXf)Uz&MlLm|G3VrfvkQ7LZx{Xq{bb zR!=TeSFvuf1_82c^SDK~BN4t-X!ng7WH-b&sK24tG}G9_Zk=HnKCnk?@ot-q8f8|X zp-lL=5xW1hq-++9JW7$l3$wRxx3e$&tSj%ZRxeC#5@lz1ZDujeX8pQJ%C3jh%4!Q> zy0t8Csfg1Oh4y~Q&vnU0S8SwH;MdTpJE)`G|8VK@n+Dgp6`QpUSdc)P&GaT7)|!5| zS7_#5>NicjI$-AQCS2PwHmbna#o~^mS~b8 z;Y2lg>0<7!t(d%eR_>v7+OBGJNnZ6-7OBtupXUProP=a*C>Vbb*6>q$X1ZWO`W+pq zgbG;sMaX;82tbn#AgD3xado^e|IJI4Q?>g&dl1(bKy5JtRk~JZYnrshUENWIW;}M7 z#~OPgNt#NSB^S_dq&w!g3)U8$tELGfl*KVKLJ*DOcB%oW9`M4Yk?t~|nVz4274yaO zwN5#}i|JGWUI6y>v zF!Wn7q;su~@iApwBtPg2g(UGB9RJoM913P0<~QOLo+!1Y*(w1UqZ!xtych-*L~_P< z3sgla`}#WT$!rN;a5DHE*U>(cM4tj3rBldN?odxJA=(*-NAG@$sjT$3FSXb6Oh+(-nk7F9bq^>ZTMf>IET5ANoPSgTRxPE`1?( z&eniN<1K1Vlwt#SlbotK+OTLoSZ_VO(V2iMl_I>d?jruj-;KOowMgg(;gC#JphD3_#tT|`fB&a= z|M`A``A3BHCem4Q4?O5TOlH@JEu9p~=@V$z@qz@AiV#zgSP&cC#0~k`v?(gmjCOm7 zU1$pA{3yb9Z^w5)aEHB)5>y?P#7{L(D+EDE4c5fCyf0i1-&GMk?h?h)&gA^uBy>X_ zgs-O#h2H6A`L=VQ^VJ=3iGI5rQiY}kGNSu3-Y^m5N-36QEyH*{8qFZ)MNky!0=u!g zY)orE{L4qAP5vsE^pQyfwta;mAB4W+^zv=JNTwB5d6|6!YR>J=2zEdC5X)MlS3UB5 zor>*&-$uw;s_m?{xV(rKLK>a*%xjPWq2l4Ezn|4`oWr5UJw6Lce|cyi2Z9(-iRMc9 zG19qZy@87sA?nz-^qz`{$es2n)$y}Y_RFisd?*j?5QIVh;t?H$!-3mFEy`iEF zdnNc0Kzl+y`U27^wj8+u#aYXEQXmK6rafNh3@QU#;QULFhntWfB4hY$>FZWZ~re8h*pRk%i2F0at^SlCUEO|myUsauJJySaR`iAJA#~OkGF|w;%yl6(nzctUdB|J?i&Lr z-m+ZatI?~L$2`VlB+Fs4(Q3E4Od3)Vs7TL>#NX`D=llj0i_HJJW&fykMAJs=mX>J_ zprVs9L*w*X+sBOPIE!z)XT+Ui?}V6}^SDD*dv>4iSk!n<=s&>{$>7F^Jb>z^9hThQ zZ$z1)8IX4**~?7V5UgBXdyzAy*!*Tpx&}!Ld9>3fJC~>dpN%QmcDr4QHxn7LwlHf{ zn8N3++YQ`Db|jumQMm6Dd}VrOV?#+!s`f40=GFF1wGH)l{%ok&4E7wAOErzT^;`1m|92(-(= zjAjIR1|pc9MPax(TlYiQRaJNdJ;O7CGs&X`c_6?+QT@}OnfGJ(l{;l@p-@_)y9&Ah zXi7?XHFx~<8dR_K&psUdj-c_rmv}o<7ehD^o=1|5UW9ES3EV}lCBLiwh{;<<%tK&smS^hPDD&)#p&znqLS!e)R;gIhuNF~97bo_V0&_<+z z6wTUTI-vxb(&H+Lth77t2Num6qiCHS9(`-VKE$tgKpK7@U4=E+BVBiSd@Y{Hed^xpZ4PB z+G=s1mQ*a(Ud+SO#VE{h zB(W%SpyYm2T!w0&j>*3wUjb~VcQfu8GG8q+r zG`ij2Z)FgXeAar>+eNq%3_AhQS#4Px>hl{&`G+0f7`m*dV=BJ7YC3JEL%>!Fn3yJJ z&=C(O*gyqPbL^*2!Ipy1Oc3$nRlW1^+!a#J6)_|}#}D?@i$6_A`bs)JnueGqO2eB3 zk`roSehZAQ2KZbc*GcD)$m=4zYvVpWR)S2gRXn~AcfgnwF~iWdcXyKk*_#!5aH=j{ zJ1L9#G|t~Yw7U~P+&3w!HPQ_Ce&yXnF>k$vc1yDoO3cTxzQxys8dh!>p2B3p2NxSg zfqQ1l2WEVQR%!afr@i3uSbcPd6MJK6BG%d_sFf9^%8lRGCO&t)a?eqP!Zh7(`b8N) z4C^M_oX?dRIlb2GS&17Lr4I1$A9r#4ecuP){`4U1%EkzjgqVt4x751e^zx1bBW69 zU#%+jdcq|;dy^ya+u^{Eftm(3x5~kasXQ(b_my7Ulfq0K+-mFYQ)v@D2}U#d-yr0M zXKall~;VZM9L6#QecISnVvBX+mAsCk2MKr}e80~1CaYrk?&5O{N(pI}YEY?n-xu(VR|JK{fpbFFpz#WS6I$im`#^E@n(Z^tl zq=e>5*-M!n79vU&X5&ig(9jQgoFU!!e%KlUvCPc2HWhmZ6#fhc?UR$1XEqq78&t2% zGxG9+!geO3?*1Drq0M(>brM+0U*qw^FfOkR^I#cEDO!@Ro5Pdc^sVp{$~vs)F;F?8NV9?hxOKn5E=j5qXacR)r|a^Kg<6n4MA z$cG2L_sb0~t#)(CTSoqC)fR(WcX>yvvBT;1EFRlxh`E&1@tx!y%v9W+2Jih}D`^vMpW zayHLk*Dy^eZ^@#w=LfSgFvDG^H(%tU*8BwT@>cbjVw^O1lhP_op2#qf0=a`PEt79D zqg^`!j?J^kyLWTlD7gqSZ$L;1O__FP^K2&2Hw$K7IX6MVz>DhHj2&hj7t9Lu?cC;TgM!{+j-*BJ6J}G&}EaJk5^2Sk+D@q_{CJU%8>75_Q zY80vjoS))gb{@7S?HH?Z5OXlo4w12ZvjsU@JAK!gsFH0lG<;KI8uSiI2n=yplDlsi zqf4;gY(Z>SYVCE4BSD}ry+WELPdA1lMTF6*5k1D$OSi<&XN=xg(9hvn*Sa&zKW@1& zNH?#*n>6c=uVrWkW?WDwz_et7avBNXD0d2T$CV@VOtua^&)2#Y-mhAQ8cNz*us34= zzTvm0!vEl9!9|1QWeK$fo9OMoKEa74W4V1>HAf}oT*E5}SVK{QqrxRd1KFWtk*AvVnP%2F5?Jq?N zjxdOL-v|NP+Rzc6SllB)Jt4koTB`OV7m!VId_z+B?7VmU{H=6e5@JnttT0TiW>*a? zj^t3zGULBYek%MGC$sy&P56LtAa*{3gU-sg)&Bsc&g2058;euJHodN;GCgqZV>jc( z(GjR0nPmdS%KSk;H`5S@bNn$5;7|`MOh?EIm|z`qsC77jy(LMDqVFK+C60gHJs^KeaYjfwwu#GlXJAWz0f4x%j`q)98PW=Ev3 z*GD0WIXk?)jA+c9O)qJCEQib!?^X0hLWhr`%T7ulaoh1OX~k7+E+{v^zm;G8%)w+?5t&M_Z59vD|4qADJHR9Kl=d z3?z;Y!*)72JhXq}9cEvlLY4s}+9Qj#6adhYQ80RaqY9C2iPjih(Z*(ta63|RTzCFA zR4^9>TJ&>qYK)P9RO;HUpJb$~@*%f+@MM6kyPnQ%BXLP-@gI%r$rjGmBM>qvW`aM0Ugw63JN*h50=EKPTSa5yYCK-xdXrlwC>{Bv}K zG5;q`NH}cbEbAO+h~(&O5%ew1hbnrZ9h4o()ILfZw{OiHz@n6CXk;$1wa!s3tc9YN zmP}Exi(v|q6$k^!!6+$W5Sh))6nHE6Cl%Po3cHSaYESG+*lTFbJH5Z;><-mV+$|`H z^cxq2Sg&51ls}x_lNXaturpWC0PeyAkZ8kTOx4VLiZ0yn9w3DWXEtDQ+BG~)CpcM-vDDb0 z-Ru_1i=Yw*W_34dC_X0tdg%8j_IzXHgP>!p^Z0N}0^GT~o}Eo-TG@%B`Q?$bwa;G2CS?8VQ>4NVq6PzR4h$IX*mAk~ zHL)A2uSK!Q7Y+@!;^=6F{c#HIYlGau0&V$`b1NClGn6&O%~)Kfo5cNNnM7Q&o1&=Z zA}_CkT4$O=A~+=u5;c3NnCX`$++4dacL{itm!e4H?O{bPa0T8fEd=Q?4CsawV)5Z<4S2fQ9*$_@Otgk!`(~Oi7+0`iLzeGD-KMUXCsj` z&Nh^cRC4b@O+i9RvvkTd7!7>)Q@RNMhd@}I?%$1$1u}=hXmTNFV%6is8?sX?3>u`^ zX*R=5J5I_5b&}GgK z{)+AJ5L8^nZao1Vusv7P{tsV(&|}%#*Kdx`Rk%~DsbYtvnh{?{FA-?Ro}iDD&z>uIa&r8jumvol zJnvr(;*Iv=T8LXZ2B8EyN@c8MiFg#}JE`g4=&t^MgltUX?t;idC#MauSV@zSQAPr< zA0%69t|4gwToEuDKlh-SMPOLW^qj!Hd$_k@49%uV$q_UhZ9ldI?!HD#q5*xxEhWtI z;Mw1!@(vZ?BFGLUQL30i_sF3Vcwby8lVcM_QRJ*H8Pde!Xd!pv%;Hp3l7>hvU@_?} z^GXNA0hki|!fx*c@Q$=nYzdlri}JJr1|_jExn#^A6c}|1`5G(oxm`uVcBM)-i_uWM z&+`etcqlOa^17w~nPMu&z}Y%wCk_npb~7ZL-&lsi0c21SW{>G;Z0=8EY1rhr)IKzf zBS@6|MA4T)H2mm;-Xf?VVJK+;aj8zP0C6*FBvF_VG8sEE?V&4rvM5`fxaz)L$4%^k zc%e8vBLAF1pRPsw$(=d_lN!Ekg(bd?DO~7Oo&lOqCc{R+2ybpL4s8!9SChgeuYM(u;A9{mV@`5p54Ci z@=)jO6$e0Eu3?sYnNVo>JC&?`+&rW;!l;DJ4Qm4N0DCOW4p5wsEdQNXNM@{1!!J|H zEB1?BZ_bq8fKI&Jpo!5lEIhnL-vM*RGs1^xefa6QBIV7*)O@m84NtKQ*1OYUvblUz zd^;QKJL%c9+^=8gySBlBBM;YAwP?;yPEC*gEV?WMY?-~Q3!FM9lhAwRlHM@aKL&R* zFZh=^IbqN=fG~`ZI*GiHRi=Ei+kV8aZUQaEZ3$hy)K7r4h(qS;Ez&lfu%xvo9_>B& z9Oat~!C!llV2j@k-Cfp1WYD7^QD_>7O}e5&RS}0|*s-HOUip6(AmoD;JV;&N;P~|@ z04Db{b4S3|{t(7)W?`a`P|n^UwLFLvkI_|jZF{!KJ>sq7hxvc?Rqcmo_!eZ6B<*Lf zJz*)>)M5v0XaRVqx(lv>62xSdQt#-k^%-p4e!-(~@l(a$lnf>>F<8@b%#Kwihu+&q z{yZTKJxm4ZMMT5zze5OU$BC31v5^~1!C&-OV?d(yfyZsZ$wVoh0 z02!US+3~)IZ=%H(jIDRghR_}PhF?yKGLES~4d^5I?&U7NvsW*GP_z-WcUOtvJkNb= zO&V9cKISrgN>z~u%36yfLb{l0dl}p|Kcz#j-v|l&hX~Ax$U?9L_zuM1`tyykK}$>q zrg!xBzvH(AbZInJb3tJa6goV(n}Q~~AJacHS6eXlAg|mwZb7U>UX3q%sG9UQeAQNQ<5Ew3FpmR~Q zmn=uR#se&3BoCqnE+MUH=-YUM1|aW9==jkOb1Ry~kG?}gaZ#rd?;?5no0;=$du5b3 zV}sH?=4lacYN_{Si@ zo`0|ir1|2)yYWAynL;A5*0geRXz(&#vG%rLvj){fIcDKQfY;Kqui3y37Ggjk_$JRiUxjTF_ z2C zC2sl?Gky3A1EvU+XqMQwG4k1*&II92y=w4a-fxMW1ylOE)m0@`x+qZJPBp2XuC>P> zsSq!6!gv_yU1-(ftNI%d7t;enii~>7gw|oahfm?cDl;OE5A{Q#%7S#SF+f#e5}jM+ zW|nHuaf^n!^8qp-1wwB*yi0?ULC>jpvFJnTjf7q}#O2~O>{*yVmJG;#V{(qAKa?YW zI1iXxwk_ac84CHA6R?nw+vyxtv@fCLy|H(TZ0(( z3;tIJ^z9-8cD{ylh2Cq8?(aX+E_AVjKi)0t(4eegpN@7 z*I?&jK5@GlX5>zD7GjaszsQMg=9k}0|1c}4av>p^B14*9$vDX!{)d*JJR1A-{!XvT z#M?O^Z%@U3NF{+4;7KW1M-#kXLiKCBqboj!^Q}Ya5X1eBW@q@a-8jhi^Hu_ zrhGU+P-Ln3Hmd@!i7X^PKP{G9pD@-*v`2^B><2@ICZE|hQ|UpgMg=?@?7=%MphTo> z9&IZ`rsVfK{$6N|dpH7=y2y6o`}j^!27p7EkVrh ze4j7)_#cM&udQXa?pt4U09R&1b_uEcM|e`3qH8~MOB^=vjg!(Q3Qn{(R-1vTW1y}b z?dINi$!{xBJ~!8}?!jdqE5^#8w4^(hL_snmePbqa@uQEQR%*x1XPP(#6<|+_%+?23RMc!wTS@X*cBPsYopsS+V6h?csNJTr$q9DB5M5B8S zLY~C+m3N8%?+Y52)KkXY))&Iu6SB<-jvoSY*P4wngUr6n0O8TtZ-UMY2_fj#HDx4v zBBX#gE~6PVY^sal=|fN(*`DPcR%4C>yxB}P_;t2sH^*7E5- zIQy#zg$vL)GFF;%hyop$qR{^Tbjkf;!XO7yhOr9zU4Mb0w~!uvW^%2C-k(ddvqNdE zr;T570T9QL(kw&i#5az~`I<7xamJeTaSP7-eh2&FK@1v8M8to*^l|YcCHqdV&EB0( zR2#8Tuz;u;nT-C!#^mv6F=TQ`$3}(Ec*ys()0}W9FafQLA+5rNR0PD?0dh$|1pkZw z0D!SU&k3;@#jliX0>WVq@m@jhB6j=ZTZy*)F1;Y;E04W?9RPQIK1u$AT0BI3x1)M~ zyrv*TVbU2_ypYhV2yItK@MW^6QPSGm_4o9O?O5^7+$e>fkJk7WgeHQ!!SuoDo{nm#s9!Cm^eqlF& zT4|Kyp_Y-|9g1hf9yZDlcefYWO#$TD|AjC+T{y$a)D{2@U3L9viq-BHMH_HUfgKec zz=@GbLrkpm?D-yE4%rY138m(SN0f&yf7T4u0y-<{^?^MrDQMqGxN9_95qWsm5m!)| zGt=p?3n!M}u#9Mu9Ce?DWS$JM7p?i;(ejXltR-!T8DWfVfpE{%^hBlmjvZS6aIGmyq;-{N(@nOrr&+ zNy!bxZ^!-_vlPGUvYuiiAhCVzP0ONuu1L|VB_)i_nG*h+rOE$ZhQ3Gjf~HXH1;OcH7X*>S)#=B8kgvg75wbpOk473)i7;bygHZ| ztWVcBYOd&0pSwb2r8UoNtT02&zJ+64-+%y6sVpf?Tzyjp$ZH1(PGf!AFTx4^9K6gh#d>EWyef7)YLa1u# zmM&|2W@p)^p?wJCoOO=UsKJpgT6g_1VNh(GZ>#J4GUQgJCzvzhuNmqqSEW(&w{*3D z%-F9!SqXynMt%I&bT1gCe?=ev*--R`CgJI`YU1uXJ8HF;H&%m>PEW^sgx<3{VCt^t zQc|WR2%rYb4en8qUn{o`-aVz` z>6kC?zcHOUT5(fPFs|EV&>-G+%#E}MC=_6$y_{*J%gC4)V` z19M0637qoEwZ33*XO2gUb!N)hJLUY6;?1j|QjOCPj;(_e!cbbxahL!)29Cu(WZn}W2|ukM}=lrWMG@VOoeP$KssNRVyU zvhD4y63eEA!AegQiwX_kUJK=*@S@Q`&l9?x4x<#BbBv9g)gv6-)XND;Av|8MInnM| zrw0$+c|#f7bg($wK#a!5`AM>r$t@}$;3ZcXf1siWtN@O)G%?hkLo!y&NsAC41|s^S z<5?1dddG)0;1B3Efy z1e(zp)CqbL&t&a>mwpQhZAh{7<|JKh2t$vZp-{wc1`~Sfe|23x-`#3n^GNl*PU1tP z7cLJr!WLXW4OXJu#S83}zAqFZD5_w*0vswRDyTc6FU5L1ms;usDqSxix1fH-sCy>i z&p#I&8kqMt=ri)o_gL{CyirN^cMa>bw5W3qlxC_kBieA%o~2IZnyzw8ao%@aWU(2D z(RHb=!15{Y!((rH0XY(l=@k}q>ROjU;pttDBX<V!W^mLZ-~p4h04`6LuL`z2ReqNm85(;$K5P@upGKX1 zodqBgSE}HCmvaVi!PU4A9Ywi*-;C~*pJTeuB+--3`7`I%KO(vXPk#P>*|sRTlrY(z z7Gsx3e6}OZ!A$eUJt)~1;OF~aE60V9uMXqz=_0&ei1~GLQ|vtc;dfEd*}hQ8TUo7q z3X*Q0?^9Ba%@*SQ*%HDIk=M;2{HMS$-UM5!sNK)=jB#nU8UwVQ}%YGk$nQ0zi)xTg!Bf)X+k^oBPD1bH4y2a@8E|q+FlExzaKX@AM0$X ztq6k#A14>ZB+ufIkY)agdy8!uT5_GoZ1S|P;f=L`xEg5Z<@ngImb;#9ME?O&AjB#A z*=3GJE4g@1DnugsDQvU+(I@_7NQ7{=<&fE-UmM#qpDGZU(ylNikKAk*DO>dQd*I7_ph>ybEh%$jUZ4Atv5NE-I==xPWyv z>32sXT~b{s8eXT{4srEIR!)iOVpGa#R1jCg3o2_9cwgBt7HKeDm>5;iV9$08G7gDav)I0`R@co@8>dY_Xtd@`FC z0Sy%?vYB(JXH9#t7J*B;jlVOp>k{p(T&vz*4zalmNe)(8)#=8kDfK8I^P(%vtBHf6 z)Cm@-aGWD38Cm_mb?^rq)q@rLN*fcyN#6aoKp+e!*&L`T4? zMjv!@t&zawSH{q%OLpIEsZEZGs}KA@!In?R2f_HC%f!@Xi__v|&uvD}cWZPqSOg40 zc)U-Be@o535#BfCa>Mq0z-?T^043C{Dtga)B#!wZw;FW%_A zYzOjOomKRqv10C!U=XaHtacH_oUj~x& zMh`=5Zigh!MH`@a6Pg?|BzsLr0`8wjC>UvQcegj(1#6;WSUyzVKF-*W$yYt6s)zcz znAwke<>Qv7@9z|&k7pF?YPgjpe8L08&-ceaHIpm>{C(H&!9%s=UeJ#Tp27#eTxfnX zTCpkoh1l5}Wo)+Hf#vbGK-_W9uNnUdxFn+1fjw5~h{!&|A4uIJ*o%Fdt0}60`SrNf zY)-f&qM+t2%Z8CxU|{&=i^*b-`5GL%Qx76C=zQD0er-rruZe#5>L}o&K8PkY_L;QZ z%|4>JOF8T@soD3?zkpV~eS^Kf0`+Pv+t=;eM`ypx2TI-tWted+7& z(~?ZPl>0zQIXl|1DF;wrbiC{;B0+M=Tz!AT-8XOQGd`9(pFcB zrgK-teBB177Q~=F%-C$Q!Hbjzrwl(?xPJVqsH1U%R;MU@;_wTp}^e zcsNj33WecghYyc=;)E(?wBMrZyA3&s`f=mp377@(Ycf?3n<8ZdyI5)1LQYzJa1T-g zc5W1yj?P$p^xmJ}!KKig%fz}rL6T=|-Zj{6gGshP7n1fU+_M4k;|2sad@H1#^)i}y z2`}EHMa5%|32}*dXD)|xVU2}sZ;$%@*KY<(`d@`8&Eab%6vQ5z-|cEH+RW9+h2USr z_v$m?4>NHJ^#y|lL)jy|UI?4&wg}OGmQ6N$XR_f3J2CmwY^RoZx0(Y0WS7nnc`M4% z6`Rp{V0&QldqZJnzP}6Flhr85ez`(DndjY1nz`?2w{*V%uH+~n>6zAwy4-}`jJ%|S zYtvw@ukfY@=Gm|{W75;o!k<{W{8`OX=lp8->?Co2in!@y3@;^?Ubi`Jvj(5uxa;e> zVFWne=meZXC8%-*&;!dmQ8g9_16~5Vh|QLOha$e?;&+%|PXymUyT&IHe>0HcUQOVK zLcv%Ex0ohDRD6%1Jf3N`;r@J{fx1UPaClB%OQScvz5D&nSFxupn;GG5iAG7#i9`uF zX>3s1X8jo2VIExyTG>c$ywHR)CZ{gos7G_yD~-2v_eJ5EQ4fTm$j> zJJ6np;t?yYw219*5h@uQxlj+Sx6U{pys9ctru>(1fA!*)V+@} z_oR+>U*ZS(NPVAH4YdMSm0hPI@$e-Y0H&w!2_^hupbX>oPp}ckdC$hb@4J?$) z0+$fQk2cD!=EILxenZ3i=HYStP8f(_^eB`zy4`09+w&lF-w|136ssw{442e0!Me7x zhY~hT-&b^u=s(QJXSo%d^5Zx|o3#C1U;JnQfW8@QERf|(nd0v@D*dGX4me?;FF;`qSDiPhMOO0F_3L!myq%i1uvDxh2C0Zy~ z;&WJ7R#~&Lg}dN%E=!lprLVK-l*|q=HwYYEmIcCejQ2}-rndd`%Nc6qt%4+9v;Mo~ z&SNhWefNGEQ^YLoWT=nJjg(p$Q6rU*yotc!`5#8b$8!~ZZd8l_;dTQKbd;6j_o1J0 zOZ-_bf90|Qx)|y**Ze$^Piv2PkL&C>$w!@o)$uDlR>R0|)vDUA8Ugo6m9$AJ>vW%H zriu`dR;1B%OWbdCw+?gkL}YVLLpbKCn;~`sM8#*_isKGU3fi-?W+B(N`ghZvZq3c2 z=)gE8d)zD5RQjF=UH?`;-xD!n<}(N!(LNdC60+)0la9e#REynhPzbp*JXFqMVfmK6pLUY+xc zxWs|92WOerrp4SUim-a?Fm4(g9@uO`{}^9dB74KCf};>f*&~x}IWem9ZiP0%M9FRD zUGu$KDjB^4TR1Dv)#ZUT1heSDAC>*}38+znr0UJhjWw`^GBH|y=?jcjRfo(c`}^#< z;wm!iU=V*d7jVUZa)*aHNFyjIuPJ>X?8!;Wv8yz?Oyap+(-3ClSd^51T85Li7r-F# za*;lrZINrI2tyh68G@QuEg`;tg^kYS=?0{%w3sJSDX^lN$+VaBcbWyB^dw7>K2fAkX}Ts) zgsOZbd#L2e7#nT5-6_$}Zvu@&q!G0B*C*2nhq0sThUO&GezwNU`Q_eQYfGFF8M{$A zg_g28Qr)USs(F}Nn#kdoCN1M~e2FIcY1v%*&wAfNyALJGq&IPY#5O&TqMSO3_#O!= zG58Vm+nf=!hb9&}E%!KLoieqb3Bjl;WJbR4Fsf`HrNzdr&?b|WL7Eb>ROaRtdJ~Jr zNib+sjYF(BxBd6x#r2;4+@jVHHq9^M=`TGKG-%0^4hHO0<4g3JYrkx?i1et4u8;=~ z^0-6?Vzj@VLaJgf8AGt`n9Yn!E!&j4WJ#f237%n3Xh|8UJ#O+K^67g)!{N@EM5^jX9J|7$(BlWqgS> zU9`w-hz&7W{fyUzsvmE*B#c~O2ZJ$zgSZP|A!`tf;>Q@HGQO=8IXfRGRS5!9 zm(>IZM}^Y+TWzJ4Ni>b?;{1YHze>u<(!w{&XlnP>q^5TwP@rR@%%xEE-h6>(7O&Ak3+2arzjW@7|<6aDk|zTLP3Bne~z99cs|w?wL#nSdpuX= zphA+sQwzaYA@zi=c&{5Wl?7!}Hs^;Mrl^kWl$e{QxJWjSg3s!>V<~0uIgj|=Z}m9W z%*Uq-%Pekb>9|285$5ng<;Txe&3uP-m(j~UCicgpOu9$g1sbDLmYiCUsjgf?MKYZM zrZ^ryPn5MZM%hEz6OzK(UT7#@MyiFPmS=LB1$sSGzQ0rr;2b$W*AMbCM;xmB(iLjainZ z+B9Ht5j=bc#`tS$$An^~pD(e4`M0&5*IWyxKZB0VSxlO_ieDI8){i-iEqN%S2$ABr}!P+q+ZRpol`{|6tWzXO^{cK6eV_m z+`N-lQs~cGgiwr(HWuB{WB<<5ri5!^;?kBd;3Ut|1os(29xD7u13&nmEP&5{ypt`Q`6Tpyl-QQMtWDc*GogH7F$F1x5rlT zb8_=L+r46?M%lB5OO=94s)7t8AFA|TU=RXcUv>T(s^i!!JSBH>82ethH@x0pnpl}2 zH~ykIx0EZKV~T`kZ;H~P&etqEzdru9A0oZ>x0qyn))4HVv2n%EI-J7(;I4(=w3wuS z1Cy;7%NbE&mdbEvOm&&DQg?DDZ|t*Tb;d^}D1NbPl%kLmr%$)U^Y6t=sHiGV+M9&p zxjpi44k$v56S$W#si-fFR~QOWj$!Bo!JPF&Q29LHC9Bh5SvJQ~z2(F*FWLIX!7ZpB0pMB zCA9I}ojE2kXIIA=U0#@O^8KD6+ zlGE6RwJsUefuPR+;p!cuD+{_s?G8G&ZSUAl$F|c!r(?w_0lyxzjVIjqt&2=fy;z$v{q zBtkG_@WAo#M$gmZEs@PgXe7!4~4sI z$A<+Ql%eP#fEpxX9$ir^66E7xEj-qJnkX$LK`^TL zl{x8V01e9>VGtnz)zD;#)F~kLwfF{LNtL-no~^I8_#35{D)}e$#XxUT%0N?@at?D( z`AyEuhP~D}%h_fW_-TC8{eEECJ~o{e}UgnlaweWD;OW{>gQu)p;HC zJ{C@PCwT9N0aq{bgIIp7SJtVcSyE6|J&qbJAqF>z^LxL!xiNgC7>w_51acp_$jq0 zdJ7C_2beEG+S(Fkt+QPBAz>nNG^$=WeXE7nPHVSZ>n3iLB2f7{*irKDO$A8uW>MNEf|Tc-6`mJ}2;J|u zz;lx$4uMmbg%V1dKeS7(Lk&ZEInZ@CR_k(x6+!OFY4T04frIseUS@h4f$V`?wl^sQ zn#R|}rxSFGng?X#Nd#s?%h%b|&D=T=p?(nNcA!?H3I5$H3Gsd+mQ}e0MHH7BZ{$(j z4I4*r%!z7^qv3{&CQ07@4-ce%anO_p!WytwR>17FcS27{A53g(5vcyd5|sX8G!aQ; zYy?%?BNG!i<>7M!a$5V)A+Wn);v7yO*F4=SgS5=VYn!br4NjGP6t7+Vh zM=mr;M%PG+DKx28@yQ~aEXUwT3|5&i`~$38c2raY$_g1zO1+_sjn$kAuW<3}q95o+ zU$LEXAdr%IJ#H{mW{5P0xn8>$IgUgwIk{nf=%YC>>ju`Oh?Mso6N{G2yfNMFX zj-*a#Inh<0NKXCKH*srxGWjUf835;rG1;dZ=gN~9o)u-y@va>l_KYxJm2i4hW{Ghp z+(i9u&G8ke%vvnOdxa1$_dEhJG8ICbJp?mHa$gCqu)jY9Z8V-Fbn9)Q3sDr@k4j?H zLnL`Q60NDso@HqaJbKBY-Ub6kjip|iE36XjrC*Rb{vdwZS)HBfTMjccVhp?M1Akw5Ux?(wraZu3V;=nJLS}3L@gTKp3nVE!S)>kzR zO97Ln^DZ0|^!*ZqBTwim`47X|&YtE?PSA6&8Qx!Y-1Gg5kSu9bkV(xJL>=Wc-(^7($d`S(+(bw&7EZ-+iH-gQ z$gI%wHvN+L)zqnf%+SvDF7;Sp`J%U(TOCdt{I%J(`n{bVMx+QQcKB}8h<_Mb&|H$q z%XwXbgqa*hh0t+b(fFYbHu2nxqzu{j_0t^yqntM564uO4zp&evtiH1@U0b5e0VV$@PqMysLvt&~R8959*kNg-p<{?`4o(^&GC}Ds+L_{QX$p5^; zhej^zg&3rS_Y|N%c+k`L9PmtV;S`IAvQzF2O3zvgYaLP6;XiBnu0)RxUd0Wrty|5V z^lCE_V(5G9CmHf^Unp$~izw>yByaTF?>gQ_PM;Dx)pi1_#M<<6loWOqR*n?q%G*9} z7=?k~&Vdb)$BEojJm=|}`^ptJRb<{o5YLe|gEOus=lqAM&Ihss4bF-Z!ZH3$ua$gBvEhQKd$C=LRdMr2mx7nHW1X) zQ3v_xxMH$J@IIUGm>6qGaHk_AZ$=!p+j694qEW*nvWJm(iQAx)?5z4C0&buI@FHkS zfE^PT8DSO?uUGN4hve@e(G5FSL*Bg|)PUS_CIbv)vklqBa0ikOk7Nl312ZRe14nH3 zN>|)$eX^YkY>9w)kwr!XQc48WYT6(=LPW|H8KPreA&^)Umy>jJrP+Y<03Tm(ri(fQEg05cj z%95l}rP39FV~*wc=|MoBeS%=@!-n66YThI@&`xL)gT$Xqdmf_Yji;ms2tW~yPwiNp!6WPEsd zc)gHjJ%706aqxuDFI#1>@*}i$;S81 zxmEppBS(-%(H@cj+wB_>0AxT%xs8?=T`f?my?Mf7Quu zbl>Ub;;Zu}`IZfpDmQY_nOa~JK9YN(U#1!jD9`|v8^6s0nG^~4)3b1$ZQ^|ZAy4xY z`tJ5jDE6vbWlDEc=j-5)?JH-`s>9!N6Y6YM`PSrx+4j|J{3FeCkSp!X>-i@FbG~hM z^^(*3Jp!}sGPfAdl$5(QYV42Lldu{HOsC(HUYTOxVHupW+mwO1`Qmwkns&2hMo}4- zKV?YiHYMxUh;}tlzPi5_?BE=7|B_RYdmw55oB~- z4=b`GCMdwsYemmNu0z(rS|JUbXo~384jF^y!MDpimTu?t0^Y{5Cto6R2nG{8Q&wF% zGuXSP0%t8&LMOiyhR(;8?{$oaDECe_?b2*Y4v)B|aAKFN34{(GlQSzg_gcB8O1{ZV zHd}k}d5uQcqeBPGo{y@M2w{fGWZpo7VaJ;NGFtpasp^2T6F#6pX;<7*AZwUX_h+lE zQbW@$s($hY{+kG&j8hIHY% z*C)i{W0|YCLkq$2{prs>yS`_uJ%!)Tm`R;kI1Jc{sVx>(Em>o5(OK?&C)8ZiRr@rc z@7AxW(_Kl3O+`K-e$QO6l@Qnb7WRgRPMujY@he0aA*yR^mz&EUO85vTZ0A0PU3 z#A-y8I*QzOZ9$SWJ!eqh-0#pvWvj;EEHTRVR3Ke9N=v^Y5oOQ&bu~-0Q|F^@dOjf>vn1iXv1;Q+@b%4o$TL)XYPm8KGT^O zM+vv>?-9`#*71_xT32yuukQu6=METopH@G6Rn)EhE=DULxjq~$0=|`rtRHX)c!{-e{pXXd=#S!T8T@ZLd4K}HgQ`CZ{&D_ zbeLp{xw+<*G}|q`&%s!hWMD@crv&P*c0@+y;T;w6i7!i$!Wz(|0NMCA3s>&H^k%kRo zC69mHi`x$|s`3S1VQz966;EJ=?5KdDf;&!l(=0qr>#K2P z5V=g>;+)>jn6!rla%%k%Q}AK9m$btIbM)oTJYh+zkf_L0{!_5}uix&4NFV0><2DBGXC;%BY~N}rgtcX@8S`+Yq@-K&DM8&5 zkapM#F}qEs6d@LS4EK~&(xX9jW@nA6M>M|Y3iZdpYle$@|1;@IKDx0cSmdOOc`n7(;DOE>bIfe7F-|H7q>>fhZl=9p0zcE_6<74{C1g4sPD`5_Ag` z(pp9e#Gp^f!Qmc{TkPWcnIMXyUjX(sHt?h_*0%9h^GdBi2@*cG+JTRU1R%^=cWQM* z3sx*U5o8Nwq=rXu@p`M-qQW^g-ivpBELRGhZ56WbK46fx$my z2a^Iet%$Q^W;Dx|@);(^70VZ@Sa?j0dp%mSQ!*ktiFvI_4yL3J!^2hyJQfcs{ISYt9HL_4A( z_LshI!+!GV|jm~ zQdA=_LB;-3Y{C6O23~I1$#|x+&OZcn>ujkbSy7h_=~qq3b~z(710>AMT#AVR?6BMh zgAF=T)|>Rr;}#QbGfJHmSvR6a)yt}2+sNifrxh!V2pQhiIJ08fuG?{pQ`Xm=f-eIsX2YF7& zzqsOv8B~hroH;-}@ta(Pg(CNZHG}>4CF|fjanhQd^JN$8a^S~klWChRUicuGYH>O~ zgKKUdVej>>c&&pSdf3z-u3LO=oLdgwU_QdkL3ein;g20ym&0|%znU$m^^dgVyF)~@ z&*2DQ5AFU9Edwb@ZG=1mE^wb2Jkam6f4KH|zPDz_3hs^IGTG0`{cTW|n1y3;dxSwAf(5H7Fz7w`Mg2 ze3rtURKwUB&XY`t1~ZJzYwwbF^%j5~(4X3o=>t}H?U0VkFreHRbt**4KN6tceKl}m zj8aqCnv(}i8#*~zcRIkrg!h~~Z$_KR_k+pH^sVorGMdf0^mA7JYJQHz1h(5D7O8j! zC^u+^&OP_hp~ZWB5Exw!=;kN&oK(T@G zzfqb}9z&4?!&e?RnYMe_vpKM~%4bS(q} zY-lrv3TSwA`R<-Kb|q@vOWJ`d6+EeeY5-r3OyqZ)|jD#hg$GJzqC>La^GNe0cvHQy`-=V7sOqW$mcf*{szq zgG2jVWZcS$H;=Of4wZ0mkYRkmy$s=q>fi#|EU-kAO4j1 zdc6o*R}rgxJh`*;$}#%}_W@&x93jDbEnVznaKAkU)q!y&&QC~3Eh>HD647EotHT%k z*~AO&!TO*ghJaDZ;Ln0Qu=b9&(dy1C*YSy5)R7eaJu7L_bs-X51a4p+TbQZ+dTMxx zRYv~H=0_L|8yO|4eTTHxTkEt|82`;S{69EQiw2FHt}AS9dwkb!n>LP^rV5|$O;|9a zu_bMy#sB7AOxEKM%Xy{>gI6keSu4_`ULrq3p%EtsL|EvAPfzlDl)~AnD}+5cFV)Yh zCg5(j+-rFk>Ssh@7V(EJA(kjAyzR*B7!iXoDVvm6ovOg=Q87S|e=>1wsFT`Ysx~tj z-c>q`_vEIjkvWibnw0*FZU`AbGuhuYy0{|{!<_Qo_FT1jy+I2J=UCOBG081R`Bxh7 zUs|gbOgIDbdOeSzX$CgbS@}eKhDUIZPlIf31}`Bab1bTcLXiD`@i(KCBeFSZKua&+ zkXUFhc#XORle>m&fi=D48Hp5?h>^&)9TtR{J2LCuvpR10|0V3D^RyJKic@TtOxzIx`^w?#P|OI(HC~o^{G=HGal=&dBMu_AoM|&$4Z&~gI)s8{!%4h8_aCd=>YlB)-BPK z!E}+Qfv{*>g^Z_tByW!>!Zc*!WkUMkLAXnw7;v!>^twt%QL7}Q%=j(SIi_S#ViaD; z{{WXcwER9!2BXkT3KO$3(SdCkm8G^=sqhW2Pj{JB-KIKkj!ffF(O+*Y(lG(+e)@gY zKe|9FN;nd>{~l7>3cYv&;fCazoN_4|lA z@3Bi*D@8NX^{aq{d{7ohM%IG6_6iSPS55C9-XYP*__|`%jLH68ImDld=yuxfWF8a zRLpI5e4y9xGqk3z!=jJ6^*QnM0PEcEn&G3elAiS0NuS%jFWs8SS!QTwejw$uIY=Zt zdNQg28BN3=#xrC}F56%N2y~x>jEQhw`+d=jNpl3$f77;H*9{3)Ev|iAb_c3I=yJ5M zKWQ10Z_O^Vv1OFZ>uR^3@$OIAq|PRlR}#!(2FqE4Q9Wh=wa#%Q*UZO7KXm9P!FxMIRfNj>1geBh;NKH zrChNq?20e51tN4<+b z=?J0MVd*KRuO6<7gMC&6>J=0u(3S2nKUPW)?>rMrzk9!)qrC*Bgi7UOi+K_^{*;e8 z6*0p2!RK_)7mp|ZD8$59jFLD;>3&|!dng^ZFW*E_p*Ewwh>mk*^L!!Ky&%rB?-@fL z6VV3i)b)NHK?%sIV&?@x+EG(O*Op`r26VB8rIUT*m0VP^Xo zstgYHMkvpO+G}YTcW5zp&vFuP-1lqb(UziHp`h1Xn0Vu^Ffdk@uB1P4@~R9ZV3WH@ z!8RDIY;3uu+pKcRM{_}Q2?RP#aor(;&FRLcXI$>z`>egcNse>{xS2ARh27K?j&dPj zpjR*g&^^mruBnG7CAnFS>B>k$nPJf#;e$-9EhjuNX=C$7&C2!ewONau z9`al}^&m4{%CZiWl|di2RP9AXI>>5dBomk-3xH*x0wZqbS62K^Jkx6|**%|-U6MSG z2MaYNip4-~%j`{NB%V03EKp|mJ9C(1QFWRcGB6{6hbL2E&A>d;u4cs*x-WX_u6hWY zMw)&s3trH}`Mo}7Lsr)0d*6pB_a6l<6kb_X^1n_cY0asoXG=`>|6m#q&s@>NZLSj26R!Yr1L1%Wd3(?ZUeXv|PYu_3h!#aerlVSGWjMd|Cn zdKKZbY-ybNqSM(Of!XzEsAC)fqsqwQ(!^xT(i#i$; zM^J&ui0Z?@Q;7dDhhYX^{)f`M;TTr|4DYNm$jwyX(kvIdh1u2X&NLk+=8$GnhosK! z(&3F{iuai%iXG?xG*pJIZ$fHj4X0u=vW|tcvIfy(yHlga%;nCX^8`$p5A=>X+x8L~$E{cN&7Px8{~b;=-B zF6xz1f^K?t)8M&@vnU#43K-Seg-8u~y`G^(L_!X>e-IsY{snt7T2QgY{zfbS$B7=dQ}g#%1#)O#F|J z+vAb@6)}6j)Em8xRw3h}ph3p|+(G724N$ z2(>1z_!k%&@v?f?7mO~e9`oVC8ZC+kb`^m;?%X%#KjD9$dL#3Hmr*+%lg7oBbfp%e zp488O9^YxV`Xa-E?8^_>NlpdDSxSkMHUM%v$tDbLS%0rfj#8ta$`GB;!&Z5%Qg6!* zLL`+ttHnu~7fWiDR_A&dx?8t7(QMDx@F{moidyA1_%Y_R((eh!k0C%zbKKhPZmR}} zYjyT$_MDk?+U|RXFszg5w|8xsnchcb$=}_~$*s?+@g+-JDMXx<%eX@6HHYwhKc>I@ zEa{RYK0BzaH`pp4m+Vx~D~*Jj)aXmAoS;oUajTurc-x}sM_s{7^bF*Sql)}^?O8yy zMqtY1q^6=e5}_rRGC?XCm;B9&I=P>mWMlI^x8H;~sWF{o-Sq;(v8Ox4qCh1K~1HkNPF zPO5WaAFuLTiyQ26S;o>LO4){3TL}kHkz)dK$xzsCag&mo)f8oMa_MS$VgAR2XJ7fr z72r_e>;5t`p{0C;B0nE{)!?i{(Xr?+aGaGu8I|d=O|hgi3WjeFSbGsAhWz+QO-ag9 zj=Hgfwl?PG=g;F;|3IxJw`33BwF)NW;~6#DwGvG5Z2w`wqnR0Q>5bVrcTih7$b9YD zSEaYoYIn_bO0lwvHAJVuq4(0An4FDUG;NA+aPY&{ihp>BOT}8V5Pvp(iAUU(%OPcm zCJ;v6;NZ~kQr*d${~&S2pO;Cm8E5g@Il#5bK+V-~U;AGf;5&%J=e2pqeuL9RCoZsbK(8Z<+=Ze9jZBL+r*!oCKnt zRZzk%ql}=~l7SQY{W?VzR*6(e;uwk&r*+ zN6y~9x^j19w1cj~V8q14_>Y_B8A)>9Z?ZC!N3ucH@-&({vRq@0xG?pIv(m8zxxhA|4UOe7D-;%Q&tmXN}8Pog}ZaL)JFR~nHrnQWwRnp zTHcIt?Ux$;I;FNHOc>V%+w~DmS+UV-xp4vgm{@scsbQq_`b2E7 z<8Ty@keXvimB69zRD;Zu>!wI&v zEyJlS25oZilIpGd#r5euMD^@u$vPfa6*$>U@G6#>625d-&)odbte#$1lRcNPJ^`1z znHbFui%Co7nIY18ap50JWXekx=Ef7OMYkv86mDW^P?)8PuJFgp{<|x}t?qKuu1%Cc zROQ$~=hHy^+D-IZ?UV^^}M7ErVzaAlY_E*c&8Iq&KXMzUQprK8B5xA!z6J16;Ad}0@JvOOj6Inbzn=+uS6Lc4pK<8Hh3nC zfideeD%I?`P{P_2rFQ{c@esNQwaEG}k9p-Sh$&lKE_LS5(c?g=mzm^mhtAsmIpJz4 zz^ybp;n1f6{y^P3`{yz5s3apOF(h;V{GPBvvLovK^~3MWGOJfWxu=sv+csK5 z2di0Qi{bp%GpgRCj_%WN4ass-2OD`?) zOB_I1+(qMn^Au}I(2mV7*2mZ@wud?1cHv;Jj>N1e1#Nh2W=(?SC1Baa10wCVc#PpU z8$X070x&LDGG$^{&G;etkk`MRJ>-1y+4fPjC`u*e@`Y;q&{ChbD0NAcM$hbsDlyf9 zs*DR=PB=ax?~@r-nB9ZKt9JLCSN@V_+2UtTNfw-J6i6)L+DU;MfLdDIenO4rwK5Mm z@+15`NyYc9{{2kv67XC>mrEb&sFI>H-=0{5VuJW&QTzeCS1vL{nl&oqGEqf#x;+9g zTsFaeC+!R~GH>+TW>HV4!x1}EDIgje8j7uXw_ zJ}uA0xp}_ro!~U0L64Bn(;swBg-N{$3lH7DHVOIpsh*lW(Lg@W4SJMLF04#2QL;w} zWNrc3@V^ZxCruF-j`!B~+&+j|A3+_Mo|oKmQ)acuywVSu8dM}NtU*hIK4LEa!*N`8 zG%E=%vjYj^rep$`sPCDayK*U4jler^HG~rJ0-9XvH1?D zY4kb#p|d|68%3xcnSJFQ=?gviT8=>l=)0Ym)&9lsqW!E!pKWF7Iteyk792P0Vhol;(>f@g zyk^@+RBYDuMT4%grE6%!eg~E#ZYz!;+2w*$ zZI+mUR)TCVK^5`>pSEJm8r4+f*-@gV9eQA^v;y4iY}>v{W=P0^aEa*H3z%vH0vM>$0%PQFhHm zey;(N12+&$$p@a+9Z5xhYZLgd3>nR;@y!ZvcszIu+39{h4>qzfuAj}SIuA4oZ>aM$ zrcElzBub~Epz=dN-MG-f=E!vH2)SfZ96Re6EXnbf7hAKoHE3LY<0GgG^d>Wcb2!T0ZV@k0YUgC)OM zRV;-!#@-sQ>-@)&`G;{K%PtCQ3hYmR$aqjecX?b9zzOp4Yji-H6h4{>LfU+`7X1WJ zs_qGp?9DeJiDlp^MMX9lo8DQuQMnO>NfD1tbI;VT^T@(m1cLGL5Y4F|?}o~Cpo_mbAoqub zsOkNv>9@BPEVcv9mD-D4D=~^)D{A7&Pwh~t_r%i5`*sCPh80O!y21JehLP_idX~AY z8FG4c(I=t+91Fx>6SL1QjU{SVdt~J!^kn6%l;eVRClQy&wEv)~!}h4;q^`Xi_sj^( z-Te3V3gi|e=`R)NzDR6=#hJtOIBCH~YG@b*P5lw4Vf^OVW+(JJ7s+8mLr&gNbV^4c zMi#|j*vS)(GR$^8{|gDtJ~t3WsRI#3)osKvCQ(T)HJGu6G87fAyXsefTP>iHCEJLu!D18ltLEdj8ue`l zxEAH4Zs=E_2-dxzp1MM>Z}Bjv@v;Fj8^BXGRV){SoKJX;KM)F3mVig>Zzc@sZ^kfR zl@-ct^Qnhd(G?-0O-xOJ)_W&RY|5}rVMKc6h_(I8QT5@7I#*mdVo1{*i7k)VLXu%bzJ`pWPamo1)Z=kT~mH~ShewdLnBqr(QsnZcCf@dCrJLWI*oXL zm0MIk+x68cJ!JPePtVe!ZK{y3>hD6Bh02@Z8tQQJJOKj;ImlNf0tqy8*K}uZ^Auc{ zVse7)ebMtNH4`p_A+l{4!RrXFzEow$!j3+D*X$7^ieiYFMoUVhn(mF~JKeGrv7IO| zx5gxo>##v{>VwSxNvB|d$|E&cZcENiXQ%%#eF2H7CZ;HcJvOcyDLG_h*ZxM#1WSvX zB$h+zEy&*$G&yiC+i-6zq`X7UJf4@kJiYmCJhcj+N6Txk?nP2+aJN>ItSQO1xU{q- z9WdZ{ZCy~so0;GcYa1W$$UU1WTCl3-Uw^g-9-wO*pQO%d7<1+dfcd^bq9{9AXv6^7 zW{tDs9amDDGD3u6&2vW)cL>_Hq5Vy^Z(?4;Wg3M^u2V*z&AZ`N>e|IAPsvM$<@(JaR@laRJhURU$h*r$eo@0 zjLK@fm>$-ngj@#}X3L$`6~6pZ?{oior9-GQ=RAtJlG;!Zog6NbH#+q!PokI@T>CmQ zBKDPxq3f9CW;z7l*kQF)^a}GgT#^2H6+_P;Z`St>1j8KA0G1`)G74l-8$QX58DjmT z`a6mOWMWU=Nypuzw(6$6OEG3QCRI%2J+NQ3|M`H%tfjg}5VVo6KH7;UW=_hkV_WLj zolg1nhI;8m>dh%?9YN%`Hl}wd)>3VQ+-R~(LUO7`VFCO8A_uBT`mQU{z91)e-}B%? zvi0xLx2|TmD8|HUtisoi6*K<`cd20kI+mmr&g9cd8GAt5nKXju_HW}ttypE5UUtci z&u1$8SVmQfRnPn{?4kAUoOvyC{{UCryBYegL!5(}Cil>ca>oCHN4_fRHsCL|28i$^ z?&FP(X;)pI!pPY4dW<_VRsW5S-3~rF8Ta5gVpX9r(ng&MlAEdthm)fzA`=*UO{?9~ zHQ13e)AYVBVZJDhQz`@m1-U^9d#$lhK_TyL>MyCTb7$mOfOm>EMcSd`tPtSpuUd^J zA9}QnUc2n0azry_aB$I60Q~w$pw$^#6_2K&ruGM$v=K?VuvhM^dUA zkAUyg`6AHO`!C{bN)iU7)F@95e8 z7yX-thf>+2_^rLdinSar7u8}NQyy{^@B_d;86~nvSNO$vM;Cw7y`&DJsGg=G5TF9r zs^zaG%nGIck#6lqDG+dP8#MAuThAUm_zsilxVDsj443Y(47e8_F8AFpAGrGWul1Pt zDHoqqh}%{KHJbBUcEok99KGmYt(@v7JP|$%=YIfMB$hm3Od(Onk*S51-?k~X9ONgc zr1NyERWRvBYnjx1lMZmL#dw-d0X}hmeS5Ak{sbRa5k134{EHgn$63}YQ@rXy&_=)x zEYOn|mHDctvcq~-snHhe0Px8F`2FA@nKp|mvYyXX4>`efXK;89q|#=EpNoqJN(&%n zTe}Aqg`xcC^2C?4f*l-1>C<<1qU)*Fs66>VoGkOaB(^l!SWHn`Fb5TCx?=IaP%`gi z%y&7c6A!d-0_ph-Kn-HtlI>ShWYR9K9(^o!H&Em8aj{B?=|d>n_Fu#lYg|3g(k|aA z*LyiZov-?p+G35T%VOUy`0-X>DJUY&qS=Bo-;)19Vqc?DE<$;ftF1pTSGi4ILI5tMdhtsgr_wgi_Ll-#74PGF;b9 zi=hxC2aVR$%_vFzj7ctBth2@EK~EllaQ)f4&ZMs^?7p}zzj9+#`&PJWB{F4nLw=#{6GptQjbf^NulRRSGn(?C3d!9e84er`evlF8GeO(ZrmDJh^9-SMfJYvG-{0;)H z?N&IT`DIoNsew>Ljf-Z^j3vU_=?|>OT!MCr6J1dyByGwxRuG4?N7Q$Np>S$w8KS+Z z<}MRV79(u9?6t5N)NHZ*)XRex9k2F>C<_s7n23q!{Figdr%1>JuE}M{^y@rN%wLFt ztuAAJkzM(+&aB!pAqr7(-7nD}0Uj&ky;qm;Ar@)A{7fTH?h7m$NDR4nzI&gg!pr#< zjQR&^tXjJL3M0};D89j_sNu1Qok4n#HU4!8RsZGVI^qIPz?S6;t|Za?ic|mJ*g6sJ zRtq;e={!nr26tn&`}+ln*=%+yP}2MBrjQ8MQ_iBysAooyV@pqSkm0@e3fBZUB|FHd zn9l4*E}I7g#Orl=p*itCEUq4^PoD)plSL10x=2LRrH-Ig5%vnt|5frv{>d!i^qXYf zb3sGTDqkmt1LiQaV2=6qqP!D!Am{|YoJuYv#>quOk5;o@J!4&8o`)&cxWmv=c&r75 zOqpBzA>;9Gx{D+GCM`sLb2UWWB%Ywa#BPOVrDZOQCA;*7gsFVa6GXB zs5;+cz*OtRS?w0@d5yN-Px@&7c&IR2W)D;2r5-=3?2q$R8aV!={b{+fYxKe>6;Y0+cro;@Ol1}!sQ_RPkRC3 zTO~chz;yEx+bQLV5YH{M64S1$t_v%N(Bl81syzgtsDg?Jy4OjNo*#UEi5B>Es|J2U zPF4P?v=$8wQYhn|$2x#b$VaRhTS_!73GVm%`c3b~mrwkP&2d-oA4LZCT(Y7ZRQw zYzD$j(ti2>za~iooPt3+be_*$0X^Ff@@RsMO3gpviRKJDCeWl9?l!%&NN0@6*c|7; znkQ;ZeZ}@q-8XRz+1`dVFjlU8<8}$xa==8h^(dq;(*!hI1(S_IU zS2t^Dtef@VuaDM)vf^{Lr#_oMrfv_EABmo1(({_sI)Y!5+Wn)a8n#yfm^A{PFzbBb z04EFSfz|qJX0_e7M4K6>ZBC3x$TB$&9ys#ccG@Vyf!PsND*n}jFi~abi`Hj;JnT<` zsO&DETgpd+!DrS8>>BXKKi#9_syUwkNgH|M4(yl;UfTy&I6O``(qMQI+nw@~qy=30 zI?zr`oIq2aO{M>(R*EMh%ZiG9hy49_SpSHyXmGHvD!e_Q!BR~dfpg{p@d#F(7?vPz zuP8eMQruvxMjwlr5zgLD8t;Bk_zGdeyw_ZnhMC`$Ais~QY|LB|x07Ub+DBo;11;dx zU>M_G_Lc1EjJKNppR?(7~g{jpz)0ea=DQvHWB4BYQ0*8?kM1;8NUOzqI=wcBUq%EI;HV;HzuXU+J}k)2{lZ zV@kv3z3cg|5kuwmq!-LwcC7bzJ?88A87uJ5ABEO?CU&y=^YviEKQm8Ko&<@78zH^` z{L9lM?st}UAr9XG@6ix*f55!f$DxP)03OH?{~Kzo!xl(*L23}+r^6qFL1J6%sf3K` z%p*3_A0e)GDLw;QR}_OQphn_M7`^XaALB01UzV;b0#{bs05dGmf>rA!nNIij)(b;2 ze5g>lt@h>0C}0*T=^?a7Tv}=-j+>y?d0c2Fkdqes3KnjQyS))ov{Y%uK%`@XFRCdk zbk|(}tt)y*Ww`RM8!s%4R??o1a~j(o<#`Ei$j?y2&ZkwCgsAX=9N#9Q!*y|@O2*a) z3T9p-+FsbM@}ZI*f28+YJWJiD7=s`L7tMarK5jp$;0PZ(^$yZ#8DnXn)4p;5cFWPV zi)0gI;5)^(-pjrQ@1k?+h|&GtbIFie?#(uCE=ipAPwDSobKZEmfV4pPdV@APP235U z^voJ0iOsMUlx8wMp?mOA06{O7uSYxj&smb#x8BXz1`A)*T{-jrCu%xO!kS6_zow?g zec8BkH@Ja(Z|b4DbkX0pFP=8P{`Rx-@|D*K^VqkJI_R=pxZod42(M=lm@gI9DX{UW=r_SC9K+JXPG~5VmcS2|r^yB)c==wXJntWNWr;T<0%hCl{7FGASPbbp! zSy()o)ofq$d(yUHLTKMrk9h&cWq;O<9?1p6e9XNB70Wr!O*4$LOqXTu1U@*?Is9g~>WTu1{-d8zWK}B;JlGWas zdh7ZyOWA3{svn}N9c_zV_oi#&1((^*42l#W76 ze6yG2Gtmzw+Ga$Eja0eAv0N`(e@|`W>>jedg4mTUpKP~96^!xQ(hrTMgkY2HFDUaX z4)Q@}OrNM==?Y&UtZ%e%t_v4>8?(Ip!eG{&{FN7%FjKF4zdKpJa<_W-x^B{StgL7~ z2s^6Pho)ApmvWxs&GS^)tx3S96<~U6V~cqW;u1fkpTzzA7B<#}d zOl(f9$;7s8+qUgwV%xTD+qTuQZTsdu_ndRT`~B#D-D~x#r?{(XS1S4zaE0IJ=PB}4 zvMb(h8Vkd?M4r8(QJr{xD#k;gq)>{fJ)l`->tPlWAO0vUXui7MM6;+vaO2>4X>!E0 zWx6JBfh)~b$}=Rt%T=Cpn|r9<^`z?P$j@CXkzYat-pHD%Zr3T5pJU>Cd?*k!u)@>< ze|$l<)u|@?VS~k8R6{--?_-A;er?Br&Prww|C|3R^HpM{6DNF!Lwl>DA}6OuM?b7P zz$bNx%Ja3R;oaVtUcqxpOwaSxbVd2if55y-DsN}2LcP)rmK`mFr3i>*Lw={d+m9`#KL_1 z?6b6iFc{&Tq*2xWum%iDBQwMYIpuFc5Yz{?vA1+gW|^7D*Ja~P|J0K11GBK{ytXv) zq-I5eCNUIC8dKm?*|~@Ak<$;D>+4E>{;_6@n*`n4aAvH=E8SD zjPnv66P@<=&O#mY0%>F?Q&cybkXH1TAn60Gp_7s3ASe_IKu{wBP~;#f!61S0NBeAF zk6+D8n{OGOa7VrKDi$|v=bg)EPa0c|j{u90C7Tar;_3FDf(T3YF;*JGfz&(oCS?*> z(UGLn#Hof)Pl9L~@88wSe_%> zwQjWdy?m|lB@Tg6i5!O1eRQ6*IPFY93YgUU{E9l65pk^;{p_}* zd;t>Cma;-=f(S77l!AJbA}?}O$GS%vZ5#V`)GN}csq9?cy;y2o5NP&AMRSK4gK?(2 z3y4&a=IhKcOo!&G6211LItEtMA~6z->RDk2BZ`GGcVD+Aj-+bgdms!04lK}Zp*$u` z$#da;8mk44(gaO7{0}I3#k%UKNhf(j|d zk?j*0`B!4h`?A1C1ryG&&e2F0EqVG`@g(uZT0I~3yU}#r}GlE7BB1>xIu?{xcu zK6|&BbBfYa8-QR6$-YG8q>$$C*qSNN+f6=yODp$zs)@LLx@s+Y6f{vbi+IR+L$Y9i z`6u(Pfk-JdOJImPi!`Uw?xQ+c=1%3jSkMAzvm=fY+xv!?^kj^@Yo=^R0p*boVC*y< z4E=nPw9tjPJSA~ikY7Dhu@7>!a11B4L()7GYgI649&SC0(CCMXFi6^pyA)@ghke51 zS@jgqBi(@02{H4tedDmC5zx>o^h_2Z)U?Z^1SR}q73qVN$GD%lO14~Trer*8a?Yp@ z-rRi`<@F54Tw$Dj@^7Rd$`f6cR~8g|WkQvWx4lRMfv=T-IKARWqB5TJ zdz4B8U}I1fZIe;?RC>s}<>3;iq+!ta1(F(0QqQGealBvG?Yvk1O`WsNz7IrX>HD9d z?3km1AE;+8il3_PifZwuzP^ym2P?*DKV;vuL{=)u4hHMf_Iq2RT;wX=2 zF%0#_eSVVN!#0V#iPiBSA1lVuk_~VFHI5$v;9zL75gXAa3?7>@9O1LulK%$#=^aSc^t_%== ze}Or1Fh<;u>~Pqt%}|`;Y1lIFJc%Yc|6qf~N*TiD#0grgrXZoyUW>o@J+&s9$c{M|i$j&}oc7h4UiL@y_$YW>2&8(m&(LP1!v{A=1td z>D}xlGOOv@dC5O&cvD4-MH4+x%@flkiKbZ3^R?Br{}@$|#)&7wM$!+ z+GAQGQgQ3iP$z~pksVX0llu3CcvdJd?O zL~SPFcOvuh7=VGXhw^tXgU&$G`?8wKYYGyQ`C*3+In%7U0~wlEF)4EKkBd-sLvHsY zGk#fl8H)Kw<kN23=o^7v;onJp#p zWy;;2Fy#zQJu#yJ(*br|W^c778|-Q`{qOIdXbXIubnUWbgQZC`HWD!a zDjLl@sRSytg}x#+;m0|xKUf55uA$~4y{~+{wAD?l6T_kyUm$|&B6um7Wc)zqaU`OW zEiNibLw+E#uTeV9xze1@A+Zt=KU3=0E}UO0|6{5T&BA531c&JzL!7=URj)Q03Nq)R z=MxaeRr$A@Q*Of+5JsG`+;S=nV$^ZUB<=0`2&GaaCY*v)1;F=iT;3TIc0xmTn+Kv+%( zQScz5^`aUMS&rY%aX&?q15zy$EHtq}2-%DpwmgoJc~ltyjHeqbjBgf;E=roti|Mf1 zs%S!J8>f<5N@Y4nFD}KA!Yhn&Jfm@0%tgnC><*7XEXgp1Gs)|OS`uwW#3x96Q*k(5 zH3mY)>#pxH>c^CykeMk2B)o(+!p~Iv!w-bt%_0(M9yQ^`B#o)g_K&SQVNSxQ>>BER zTHe>sR|KZ4X7);z8x?}tMRg5PKY6vBHKNTD=T=$3S^@uwNJ!t z)XH$lN9!x@xKl~hk8w(h2f#^tPt!EQ67EH19Ke7X?YS<|K^cvm%->a?f2YE-%zLwm z{-8_8%myRKElS)VSS9vB{UZmJAnN4w#<@G&*Z}f3%J<}%fCt6b%Tjr8V&t? zo2fY`Uzwz<2cRr0RAeSOEr|c5y+43(4WCaBmZ9&*14Stnk zy=bkJbkc2>9IWSZx}w*Fzkr&`^9>gy=}z^5QLY;Bu5#Rm9zUNDaQ9-Pd6Jun2snNXtP7V#Ele* z>x_%-yu_rWlO9@9!x6R5!bOT||I9~t8Lc$s20*N(f^~dMK)YT{m@3YdGH;tGAKMP< zqIK5rk>5}+U=Tq=F43bziY!&_r!s+8)bn<_W2F6*5M=m-RRaUb0W|$JFBJ?&>phgmXr)n1|YzJ2gU@dV<6t%bA@bInV68 zzD}@L0A1XKi6r6KTILihwU!Jko4X4{#&EJYK4^bF>XdDkRIO%RqKBmkHADY?u+{DBR_9Fzg2omI8EvK^Gusv% zu=TGM&139lef!SG$iq~}lkDN;kU3JY;E&nI;PiUZ~s`*qtj6zM0PlWFMj@m>o(dl!TYD+d(!6a$n0rz`lj1! z(MH2PPPXQ>>x;sM@%~r96mlH?ioaH3w~FZ9~Yr*D2Om|+;v@3`qlJpS7?XS7}O zB&)tyUJ4tvLu#ASTfht8RP1< z5!Tg?s8`JDKD*_+iYfu=6>bKJP^QpO z^Mre^&|%C!k?0HN)B#oU+N5hIyF0$86O=|6s@e%jFv`viadM}ct5eF_RH;a?iYC6U zcW}mA&vTD|j0qFWs73+9QXLm3OTXq&MfkO5wQm?v$4;e`xD~91_v7&w;T$>@6C~D7 z=5E=lDm>G~HZqoBt*-Xht{5MNn#}0>3y7;ub}_6IFQ{V>CDeukEY)bWN4@;sE6mN& zTcn8FZ>LJHG%&X6%yXD!W!4}^NSUoV_pG9t1i-9i3g#vk>tGF$GBW%G=o!++6rX^X zQop!^EX?U9%+f_IxXf7X-weR$g~#tPKblGA#^WxKC<*;9G!HVG@Y2Lh+m-4PMjK3i zMV2H;6>yEXk~D-ZVLrF_+CnejzMz86(d#!IK$(|j6ByK${glhX`MBE%miC-99^{kw)mPY`%7mPneUa3#aPr*=3Iz{ zCH}Wl~!rcw-vSVau&?TQzJ@|*l$+A;<_?!3QcUL z;}ch@wbNBIi5J1N?(*jo$kxjtmOyOH=M4U99`5PTYZEw$_ATTPw>guMZpdbfLlEhN zb)yZ5*}No21|!BAL5ldv6gJi@5=ss#w=&XB7)Z=9R@CwOzqxfYoo37k#|R~>STYmD z{P-I!vxaOp&M1G_X!$pZ)ULxYkt4epANeKX^Q~TvMh2SOxnM#oi8aMh5&0K&5{s&d zceWl>j|x<>P@m5~ms@46PR(_h4B-&ID_Bz3vYs|^S&w8$r^bTH)WuK=)b0pY_HEEI z7BUnZj1CO|H;^nhvC$Jw7BUd4U5~gPu!5E`ylCx!=`Y@zy`s0Pp)`zL(50Sh5M8^T zKC*pXh~>EmH6Tj?G6VbaSK8PUebp+Az2pYvLPUX&NWbY?^T>6@(!LH>e*j$ zan-*n;rF5R6` zDeR5tofX(QHuYab3xnpEz@ z&}$RnSwMZz9={E7J|oST>Tp3d`! zz7OSC{Vv@qE4Z;4QA1wQk5NHectq1@T_)jmE1}Ad13bwsQV=OFOUjR=3BSo3fos)! z=8VbowcsW-^%|}{HxEOjCb(+;zA%&&%*AD3AL{E%)1jrKFYxS!pq)$a50?qt3n}>x zylt@ENxw39XZ_*!?3_e|HntO;7)Bz%U`QqQjlWkAn^AF%{hV8q-2QIgmDXA)yP}7x zZ@G0lnq5C*3p+qo>656-sR)j50)#8ClL~=j&v9>P*6-u%3EsoG184bo6immX!gzMr z_wZDlF~f-Y&Cq4gX)ouj?t_DA5wvYCPg3B*gjLlElL0pcwppcU%g#!GZIzYN)O;xB z=H~fe+UfGcxA5l`N=JDA)(?X#(Vla$v_}9+ONk{MlIfEZ%?!%ipD5mKc_H2H!ZBB! zyU7Ta!-GQt?-T3^G09&;SZ|oy5>(wey(#zGZgj8v7u;Xuv=O z@#eo85t3iKNmp;`KS>BlZ9(+CJ~;_bf(Zmn^Q!GX?9q~+ zQ&dc92F3}`ZC*Gmqip(zMwef&zM9CcPQei!10R+2-}(aAHbyNlda{3YEbdeFO4Y~D zqGN>C)a&H5W#NeAI`yJUL<@-Rz4WnSHDT@X6@TgZcrjt7sJG6uU1!<-_>(`ZyX1dY zb4KB!Nu{Kb(`|%V#O57e`w_xZk%0l;g@3LB4nNrNww$-SB9g-5z`0BRXf}tqB^J-r zP|WxB_GfN=fmH(q*Z3fB>$U?^s^_KU!JlG};(L5#NT$C7oMC6R;}u1PUDM!BD>lW$ z1#IUP5_P?DI3YrR`9>_FxtDyZ_snEDw0$&+ZP?8 zK~Sp=ic3Rd4#7$kRWn@hMWixIC56PpUl`(k51cvrY?DZ^yi11lIy_)78G&52K1=y_ zE8@zT9T#ukx+tK58>wFd&0e$s9fGW)=Q$99%G|a+*5|FgSh@Xtas(#!2)h%8zZx&Q-#Ui*j^9vG>)JKet$Nl<0; zEi$rZTR=FagthS`4-&??iKi=p_CGW=Hv4^Y9e5vkJ0C&0@sWQ5`Qp)jOZfy`^Cj>2 ze~9_JA{GY$lwE7?@&>?Q`r-TY=aA@0tjBX?szWuUO`?mYvHk7b)T;MqL`IGE<}@pY zhtV_Jt0g7E^$&vK6MYXibzabI_4;vt6JGQA@Zg$qi^EEbTduRUtftZHjGEQPj!glW zYvLl1JB&QwpheW6P;Z0Dm)T6jKIH~fTnibEYeqMhi=`Y)Z1|?ZFA4C_f(V2>=EV4_ zcIjnTJme*L_L^77$m|>83U*jko9&gZnLiqwS=j92{3Rb-i^zOgt7Wp`C{x!Y=lOJX zXgD8s7~0y6?CjYrl&InKWYTNLe3NdOQ|asyEkzSv7WnF?u`ZyB&ns^D%b8J&^Hv%G z3=Wq^9~AQ_HqGb)(<~!g5gZfx6Y&?KP?LP==8C_HNxvA9Fw+84jFwV0;@?AzPlc3p zjnU>}=A@PAavHUD1wQSdn{&_CfH=lbhAHPnQF;ERWb zwj=p(qWCYnutoeW`*{k)>91mYyZ*%Leu|JJ4O$l6$li=*k;ZVmtRMm{z zvz49Vi$C;~@zPFz-$CFzVpBEjzh=|3xmRp^xlZQMaR5dr(}lXW@nq^o?8yDLpQ%r4 z6@g{r4YN$?iI$!G0ohL;sY&|_$PG(<{IZx%uL)76!v*5vXezJP9*bLp-G8h$yFgCy zak=E&rbdzwBmI}Z*-ZnOWf#O0%6_f8CuQ^rSnFqSDI9`InR>= za1|Aa+utkIEn^MXuvf7@&Od^Xt47ywj{uUCgdXqJF;PzFu`Sp%#+1V;`nQuVs(rKt zhl1%ZeS>^mJSP89T1ILJWb0Q*+8YwlEZkr~S-GzXn%N#>2(xgr$?0L*{L?W&YAwLRs$d6AHgi%yPLF=HcY3_^riwn7Ba# z(iwt6#o4E1W8D;>Dq@?rW6 zXx+78gqgn}TT}d7L+PV_?KZ3vKKOJpVn^lZ2u5NfuZffc|L^D zGF}f)AC4Sobym(pC_ugFi&u&KNfFi0=Y>qt>u?w2@N5;^44k!hEbE8MTJ@l}_vKlj z{Ggtp=w{>y%QE!E3Uein^Om!zWD`^;HT%n<2r`U+olvO^IV!b#6l9m&HZH7y%XMn$ z|6yboQ>C^IM2-(IT-v{J(#N8X5X)!5@}+b_QumQ61|?;9f#$AHYMGH3$+Ihv#l55Tr{<4Hv~*^vX)P})aE0E{`f~4zM5m!JUeLzJoP>qC7<_g< zZL8c}^+f9qC6h3fP4ZZ-3!Q*|V+Q}j26e&J|5i^!ffAMsXz{+M!Pwy^jG0|1t$65S!nZrY@$~tQwr-1EeKB0Pz z{TOfTr8Vd-x=2IxbIM~R42rqod+V|A1U*Xb+@Q!nFglA$5@3r{6yG$pIplzDcQ+jy z^9+4#;3uaQB%9;{?eKU=Bh4?(W9$KRPX|wVwhXVi{i#|>mH3T9&N8RDT^&>-v zJfpF)d{a3{_e^Nm1RRWOxjLLeuOBnN59_is>d2;2 zCNVE~G~kq@QHszt*Y8KOhzshcHZ>VXxjlpmGa`RZlBlz4p+eDjZSqfBS&_8TUJ452 zM_@5H{z72M+gJ)Bp7I8cQqZdFNYKANe>=^Ne6}_-1F0`_N~^LGln5*?Y(u}oslZ>8 zgj)faUyp?`{yw3Ou#II5klosQwb;FCqtqYN8%Wj2u+WYQa>3 zvJ;U&aYj8C5J(4Q*1&q~{G@m8^Wh-AR~`|h3>w;f@!KFBS@WZs()kIsG2a}&!Tza-+POH4fd25 zSS7>l+axf5KKLwD?Yp!cSe!JZxkv;y*zF0MEypTknl3IbiuFPM3y%7?YPGB&t~6P# z4NmPE_3Iq8frLicy1ZdHjPKv7Q4|_R)3R0Zk$)dLLt3aQz%C_R9=RK-Docj?zWWO) zpNd4n#x$7Pt*6&yXx@1DUfJj-?M($ACG ze{_2&S$gbqh9j`f2~4b6*(};u>`4xWr={-IVK4KV$#DEZdZFFV;>?#aDq7DZ7kHnSCGUx&6Bip{FKmhjI7%HE}66b8Al8tc6r5w7;!rp<_i0N)DD-3y!$7ftOSerUu6B`;4yYXQBiLVJPX%fQx8tUS zlFBqDUYfvYOd7+aU8iIxJnhUs0yXcQe+Z)Tb@JvER)Og>##^myTjXS;&x=u%qN(X@ z7oaXEVjmu1YrB1bL`2=@-Ym&ze#+We5v*w~>M7X1nXX!F0P0t=oBb2 zGIzL6@yB}aNOiBjpry&m$vHXdkGSsn9w=Y`E2{o~ruAJQ^ML#%HH8ZL+$22q+(CRd zApCq??&1&Z{vVj?zvVjv4PwcRm8yQ~F0kLJD@KU&pa1kjBq!L9*f;Bc|73etFh}nR ztV46gr-t_T;Zb-ktF}c;E9e?S*09JDE&K8XIbnsWZ>gtVL20^d!@_z0RujtZxH7wf zh&M?RH#0IdG%c#4XALsP<_AdSz`>;0mtO(dEHzY<{RGB6!vq;eU}F3q&CjEostZ9J za_)*ArRI(B7Cm(hJ~&1dmAsvban%Qu9uKMrIY4sa{jj^g<#p3d;hh#J3bL;uX2DI8JH+Cw+}FY!|= zfcRClfaMEofuDUgx*p^lwHok+ba-J42YLoJrk2ajt=MhK*)pCFG$I>sC(@j>JkU~b z1H92I)8?h4%M4OBOtZ@mwt$>Z~H*J$u^`)wI`gWgGbrtm--E` zR1akqRYJj2To|>Qpog2i{8I4StL>iTN_G7wx2Ki?36Olbtx%C8|8EfZNBxsIf#3kR z!dL?cmjbYT#5TVBsKDv%>Eo#rV_O$Ar4wHMzyLxSzT(2+G)4==4v za5<#OjqU*EpjiHsG+UP%lMHI;u@Y8XG=EoZ)8})%l{;03E;scjfZ!(jfwa>bxQI(N z#CT17fVKY>R9vbE&g1R{_cs}M5fAYnK;ohGIKuuZ1~#Y#+UyBc~UQF zOE(kh`-O`cuR5Z0b!KRpTIdXk&A`|TjX{HY&r6_%<-eH zx-lK$m;mcPZsk^(*OXCf^MOMA|ASz*=LC9YBPvfqAut#r1i%7$ySMcQ;5}AKVP}eF` z*#!X%K4f6QqyS#pYrkukqaFQ#$3$^rMLMM(xyAj&%!RgFdcUZeRR?j#lM|mY%BKFf z$F^s4Go-D1HAkc>y%R34Y>;g~0vAp&j}FnvjkspPm?m5xR~K?TID8hH@`($O{)H_3 zcL3QNzI&<=oYE~>>pGgW%o^J|Dv~dNTvAs4d-oInk4H!_Z6DVea)< z%h|S%U+j`3(5bFtx|&kU`2N4llKZ2C|2m(l2FBHlhKHl0`e&c+UnE=tq0q#>^^V)V z84kdO|BlUUhmI(RC0SFSkzMv_>IzK6)WKPr@W5mP4~vns39{HDxH093=;PvD@`&4v zo9DVFbW{x{pi+0LksXML8f=jR!!5q+hFHH-gn|UGuhE&e}>ppo9@V@PsF{!rTApzx0d5bnujgcd?a3a>|o>f&MW z9Ib?NCSb=tZK#Ur>AzBN*d9NNF)Cm7luj6SsM&cLS07YU_b`0#olkp4*B8U-ohatK zs#0uWGJkdnsfuPW16Fmd2$S#tfq{#Qt{3xQg=KySmDyopdsW3pXLbsj*hSMRzM-=M zuCB7GjMiCRXosAPh_0q^MKY275f}=Hm2&NEH(iOWimhn%Wm~;+6_(6ON{WVLNcmD|9h+8b7una|8ly$Zb|tU)>aK!n3%P zg+|hKFp)&8KV>8roz57-q+=hJG#eAqiN-bQ2_l+r7Kc_ z;FK%o7`;)D3Rg?>;>EZu`t6#9osIQwJ(o$y0HLUUfv;B($1Dj=uF3b{tf}56umIwR|DNNStpI~Ew)aZXu{l9q+i?BD@ITvw>C%L_dHruEhMgqzR}lvHlU>b=Q|F< z64G&jIl`B{M#?KLn9$L{&!OIo3<6dV5-9IrNQrXaP;&6kq89UvO`YlvJ=B=4UlduE zJu7<4_@^XiH3p+xx6VZ+kST)iBWdylJBaQSMUy|^IGnuw5U{d+==!4!PU`WWkKAzg zTCdS3ve5ivC%yTp4|T2cs*wBt18ikDE|BJ;a}hy;7VFo(pJwlv%RjVU9ekfs?9__1 z&8o_6`HG~U=#*nt+~95U6kazT$QMgY!B|wG1lcLR%NEoga8j)?hx}CM$_|i{bRPw} zt5tBs2`sPbKw74I2CTIfEnHj&Q~1X?cf z6B4)lA>)PTpSJumhk8XdZ&(P=wb$P&9j)GKbw{Q5Q*M2d{8@#(BZt%J@R`*amS$qF zOH~v^ev_l#l^DJZcjtc939A+RLBankf8)&=#*})r`KEd5rB1+M3!Nu{&)?s;SgBr( zUb}ty%H75*Ecq$|mRbatdtUn5*?)QY)Imkr>qIcj-zLT}qZ4^W!3`AB^0%qe<^{C* zA9qY`a~<_`QMn#0(TRE#LdEv~xlvjbVJ&J@$6)oxGmI#!a6PUc`$*1IOiTt3)~i?k z*zkseQi4f^dkqVKH|v5;1*=Dyt8K|k-t&__r_CDO-cy#5h|T=tJl!wfnTj>CFpO;d z*SO?PFCjY{^z@PrAXEFzXY3%5rspq~@{1CSTxvb1DO*=C5;L%7seA84rA%uLh|}$) zn7vuarsv1UUrfNOt*7pO{fj@0WY?SAJ}O?|1Ai6c8)@D(>UV6Pq5;D11w^Yb;=1V( z?XCc+NYDvOdm_X}TMdmq*0Vm{AXe;FkgXLnS~@?@g8V^0rwFyiT)_2O>tDHfgqsNM zgyYFG$_vvcxXga%Sh)5Y?`_7;)Ya@)ipgX@RDKsM!usXlQJLKxFnEECklT@m%>;Y-sbvs4+kzuz z=FK1V)Ai(Qq>SAm$^4zV9Lnv%yMJtOyyiw11IAtcrYN1xfzABsi$j;q3tcA#Ztps| zY6~qp9^b`VY0;BEOmz-;Ifrz>4j*}(7MsCafZW@i+*aNS3Mw;e+nmiS#vH=c@m&`N zojv@rJciYancL3mezjdb@H9Rwcn>>D&f~+WZd(O^BT$0S%kr3?5mD&7nb@+AIOEmZ zu9R}s%_VgsV(|HXav$5cH{ZNDu#;~r+37_%ee_LXW;^VpqPO2jc+2DdOQYF4geHA@ z7l4>Xk})VZW|{D1*Fe(hGo9OCocEgr>t$48 zri&P>JPR`%@2x~$2TWH>(BtOvyIACKgQl<;-#nv~?aFZBU%${|y}|wC)G(DC69|}$ z{+Zq3N9Pj1BQ@A1I#W}sn!%0|m4?8{^_el;evyY>GW87>6BTn@wSa=g{_$1{iFW26 zeeD@JS}v0BiShRbjefSAx2^~S|5p+v`1^g>)u+KH>GRBcx7dbqXrR|wvEz*=<>p#_ zAD1m$XV*geayGwOAf*$f@XGp6J)kEoNf_yE;P$hh-`R47r0igVOi=@CcJ9$&1xGLB z5H;7z)GW8K<S&SSz6#%fs`TtpQFBjWLsX#vRdUsz~#^6s<7cu#^VCO0b|rfT*M z<65b-K}IdZ&pnH;;6Wa#fDh51&CQPHWvMne2HA`f8d#X=Y8ZVpD|3GMhAO0#e=rd# zWAqyv8}mYMHUJ^UyXi#O?3Ch{-Z-ec8{&Ht&Q(lKdAW#I%Q{kEv)}|_0k%|5M5=as znIjTw;a55##OYEjy8r^6ox86OmpT3;5cF7W4y>KE9oE4>Rpq|U$^-QPAtBpy94aN( zr@i^-6P$Qj#)&AIrY_0!LKxBPoW^9s{x8g7-CpJ2ZW>fg1E&4&wab2$7&O4mJOOMh z(S8pj?yhF=v=myiQIMTbEONIpa4FZi5paiN{yDk@S{rCa@FINxDniCHo+J3>q*MKb z%*Y|CS2~FLrQJjnMq$yhVTfkpH3rRo5-K4P@JKFGX_s5spF``nNVj8K{ftg20&Dbm z(m;omTcN=^A4KHZ;`p`5RB*5k1i0wv!*&UmKdZWUY!wmz8Chu=K&(-(l#lkhC?>o+ zu}N&WnDc#)oEz%KjRABXxQr26ZGPVr@Vs{x&Qc4zQXN6CraX^d_+(E7^A8%-QK!RJ(ZMpm6q@kW~79=$?6^oERRT^(D<#XE>$S6?cBD$ zG*?&XXH{YOB44;#g^)~BS;SBFeYizTTlAf)My1@sH=N8?LuEZ0XDWkf{7D=Aq2XeEmCatceBD zBAG<_%yOY95nyOtFRo6(NE2C}p|GOCFw4Zac8>T=V*M4J&`6w^=q`_mQYYVVu1B>c z=D32wz>-5t1m%pUPLs0~|L18(KfKjf%dESs=I?_FDdM(KdALOv?#7D_oWe}kl8vEP ze~{7z$dob7<*LN9l4z|n?aivfU$x)6X5hY7YfYJW{C-fLAW{oka4}#ovfk`u4jM#P z*`*9gxAIO^H6WPDGc0j~OqaS_8E|B4IYsl@3WUg!JQa;@RSi?`;G$sBpGzuCid7QF z37aWrr|l~);ztw9gC@#sXV{&0#L?g3Y%>!+^g7*% zm&8LS_!V$Z;zUB+JEUclOGCV)HSb}~UaUFOoDJJFMjn2WGkM_Ibd*k%cwaE(xng_RlGib(@RsasX6_wIygr3Y@uKE?;8$HjK zy?cFz_u)^c{UsgNaF2g7a_Gn(e+dn55r{Ln>ofqzN-+!6o^1@t!B*=HYvl;1d5Dau z;rn97>QRRD&Ekguc`^cDrvl;9Bw{bixe1bH=mW9hOfX(aUY`O>Bw;lohuZZQlTMpB z_H*UZQu1tXL)bHMH=Oh{i^4f84Dq8(N)&9;cqkSlakjBw7TFdjgw;B_cq;q4kY%u?b?227+sAM}y72?fLvv{BA<)4tz+yxDdM)FDYqs0Uc zWM&j!stovidPQ?OIBv!z0*9tQEU#`yn<_ypv`Lxi0dk7TwKZ%TO`JWbw3XA(M@HOR}#5+@GT$?wb3K7HXa1*^2TJqiJ!5Te;%qqO&-y|1hG(myT zkb(GT96v4k0kil{Gt>3$dKn{nT3W5A0-I(TCPpx`jromAT~8BPfpR+DWE@H}3-$6V zW}3!DHifA}gPC$QbNqyFxKH=)dd<$)9g~b;Pp7J`4)F`8ku7mO)@?C<#7|e9%k-{y zisMoaC^R+Vor8;5Vk|uE5$!Z9YMRLZhpl&vu7t_Lg*)ju>7Zl##I|jtW81cE+eXK> zla7;)ZFOw>o_=TM-kJ4%Kk_fhTBoW`)!xs308P#{`6EestbXNbW?5#Z02^{w;O|=` zjCj}BwqC1E*8gUr~-R4Uz4B9V|wX{OyyroPJSKp0KS{3pBZ z*WiY*O_jIPHZ*^(%VNuKUZ~}Tk)0grSI&kt`v;>cDivBYm0khVuo-DJ)Oyp^^H=_o z8B&I&MHPvo@IN%gIt*q>4vLH=jjQh5f1D5uN0X&@bESDku%7TgH&Hd?F6;<|Ri8gHA;4%)( zayjWWzN-$LzO8i_Ui`9DYj`q0WY6BVNQ@By7U|iWAU2JyW2;ag-^29$d%*?&V*7|! z0cYR>e$gB&uCk?4aW_Bi*LZh}KD?XxPd%mA#f-d+gbcZ7Q zY}sFAwlJ`!6u!O}6=QM-df>V&7wWL%pTjoJSezcLIR)oW7uAp<(&1=a--hWQO`^I8 zanKkIkiN4bi45K%@z@7sb;)U=oTM~xBW#&S3k>C3K zdB$ipulE=799IY(vUr4|RlU=X=7%Bg)f|-Ir6*4r7%4IE`FyEN&Q*S{t#~4MjYkCp z-D+m>NYN8P0FIB9A`q4xEr_jRa8*?KX!C&D@akTvq4DB01vzTz*GT zo@d=VbKTmJHe`XHBLUp3R%5-K5+QqISijMwDA|~+HRWT_7{RSCs)SZm;Pv5=>>Zw< zlXJs=HqnBV*$Xkaqh_1M+t)A>!iDaH8*x7Gz-D2yVnT;Qr@5a-*LtUx~?X{t7%>hCwH0$gns}pbC={Nf7QQ7y{FQ3fUA9$G2 zRzi~(-<*Vx@op@8B{T^($u+(V!-=xte98W6w+H$T zVte{2kr@@HN^4C!?V^;2nQ{aNr{gPZ=4z~(YmR)It7_b*dF*fbNv0BfAL_-x;{W(()5(k_w`Jh(sy46 zf|1Dt#$qKJCHj#V^DOG*GhfZPROr-Vc9AU#oAqD!gz{rEqmY<%6x>v1UpnIA=U6Qa zNrZlxFE0L^Y;dtH5j^!l0o8n6;%=JzV$}x_l(0#ac0&nseg8V1zjjLwK~_EVr}N&8 z-HjU;zskPyYX#-6VQ1^wEb`%TbGgJ}OpjPK9IjQl_z(3nGcA0iC;($Z`Yjx?bMqd_ z4jxt})U0HGR{piy_5Gw9gGj9UJii!)LwSBX7r6~;Q*eIkc@Egy?!_8I*5*u$&Pt4^ z7`xBCXT;l~yBl-lrlAEL&9?*PLl3yHt%)sE$firQ@?n4t|6-vmg(lD)MEU`IzJYKn z4QTry_|wPhrT2#qxga3KLf(zp$;m@&odmbQtA_s08a%6Xy}-a(xtjgRpzxjc;trBa zq0o@yyfvKRFx$m9X*k)G-N4;5e89~18-N+2!MD0&V(g5v>mRNKH{wxxG{EG|GttU3 z+&WXqCv)>dxo%*d_DA=pYAGM=R_CpsQ~BH?XNA+uvKdhqQ}e#p{99p_h)7Pz z1&Suw1bM?NS^|8jH-YI3(EVcyPH9es)MiU!Qniiqd<+b(CaHzfy~s4=Nx85CQ2I_b z#D(dnvOA`^{C2en?%g5TovRTDJFaP{oPgcsbn}NXX=02FTO(<%-utP(PVZU0V`G#I zdmZCvO7kKHd9lGz`tt*^YSsj9{rgY;#;?Ilf!XDgrLxXr81TQaMd~u8m_v{ylG**O zFwIv{m|jM2e!tZ=CAjOW{uWgS1?%>+j)-3sC|rnv#5(IM2-Ftm$N6va}` z(}-iU6u!bqY4i{^V&*OC(w(%YuT*u+A9K5rG|un7pE6>OSu%J52}3{_cxE>0dEMC^ z`YUra7OdRSx3MDtyCFO!*J8S{0*pe+eQEyWtSVm4Rx@y+bMOa&9RmSD^KWgqCIYwr zB6@5ai0OSnW}XQu)m?vVlsj0v6jwFWBZokkwX&X(xBM54Chxj!y2Yu{RTHwT0pgXr zeO(j_CuSNd$a8H#aFx%xQ3zmVM=luHDRMM?!?0Q;|6Nq9+Ed%@L~av@RZaYK;Jo#L zm%7}GgbPv9_%?(R_K-Gd?1Dzn)(zSZc=0XUU$d5&ql~QvkrAU=$>Kzb)l7!IFSO~5 z4aH=bo-hl%2hbd5ubPuzFNU+osdVu)cpQq{=4^_t`cq$ayDEMe=xzVhSXadLF&$Eur8f1>`Ow<<$spJ-G zF*qn#+VQ24Yw+@HCy&!v-V*x0Uz5X{BfWDUVqS_)h{LSi5yHpouRh3q_$&RTP6#>Q zwQwB&wjg0#Zf>mm?H_IOn}F*7<}CP2f%^NPGCPC&N6JmlqgDeeDE=)%y^6JnS_WAD zkOPL)wYQUwP7&E`B;bHvcs)#5QG7Pv0>Rpw$>=^`FAyvgR@_d_I8WQbGprRJ{2nqM zaqh9d`8R1tFK;s?Nyzba!!Ce(LFg6M8WkH6vn2>7!SAnvqRq$`z11$Dlb>G{SQGk? z)8zk$B2l00hWcHlvUmPxH`?2$d~GND_=-ybJSx7*cKOmgLJmFUvQ*UM_1(>=2g{FxXSB6m|;Z&?K?U`-BAk zC}r65U$OHve!*4+C(<0?eREF5eSGsM;qqQR>Y?-HqRjB8K$sYuPqTri|7jINa2Z*i zDt->d3J!XR>yNi)#(9|q69DQzj^aN(Bk_|@KJ2t@uxh+94qc%xAVhW`*Ja;u0a>o_ z$`2aXyPO9(VoeD)KD8O~`7$-HyXh^I&}jFb3j105G9M^DKw>aw&^VPLr}Bk1?BIat z49iH<`#1UxRS;-3q_4cJs+QRXLmFLlOskbkATN?p@ltuiJ38(PFe019n6mbOpRN)8 zN`cgo_4P7-a(v{7A?<#f`|KqGcYenqrJQDZi}BlB79S_rQJ59@ENVrmYa@oUDhXgK z+dslESFdlwLwb~aG3o=uR)2abE40Si^lIpR4iU4*f2|7W>LrpL3Q3=t{k4|6X6V@4 z$L4K&>bAnbaM{<2Sc-kpE3r?tG;cA(;M(_ajq&11SnA4tZ&aJy1KId?;u6J3vZ zT*n3eE0k)o?AT>~72beXrP;&mg&msgSV`q5QESx=BI)Hh> zLOajhbstJ;L{TN}n4DR;72Syy2jbi=Q+gr*8WPWn>yqaz(LdlcWT;;!56{oJ=2xf* zFDnLI4}Jcb26sFxGHu8**R@XX>&0~5!hvSb$CbPs_&>GNgs3}37JEFGv{yqdiw!ip z7h0ns%$=EY@=`XpMGWf;Ed0(9th%#E%4hproJithW|&6NW`1_FK)!i zuGCTVlTa0O_$Lpr-g0sPiV=P6zTw8+|516{Sw`c;eX`~RUSaoC)r?ht`4Gx3qOhWE zbGFYI;X#&v{NXFJ42C_tNmOiT2hU1vT^TUHEG@r^uf1GzxV?{ZsIeX=%rH16%dJEI zHOl}>hCuyj#bN$Kt@@XY^bQgf&8k?5@BX@ogNYuG>zH}Iy;B53{PFt5U+s=FGn}*b z^ZsBTJ%CUsL{EN%zw=2z+tkF$^jJ&5)wE(o@)=&Z)1GTdnBsR>sn@>gJ+}_5^_Dsw zA7UW+C7}?6{&oPmLLo%E>EXdBpY0?*_we!Yo~og)2t$feI!1Qf(|yFBNbuKVx0;M>ri#{PO72v4M8ZIfcf_OcOCY0T?0A8FqZP|0H)>fQDI3gA z07)SXifqE`kMV#6=XG;_HHbA{1_y7V6NMj*=%^q7jmJ#9$dfV@H+p|>zK+PVHd~wA z;ApR{hntvmZI>XJfXJ^*f5D@e0MyR8ORUko;DT-G@4CP++Aw5!^6eNR$15=#U+4F*KpY7yHlDH7K@!@`H>SD^0) zrSj)7fo3e#I_eSRUjAk-OeuOVodVZ?N`uC5pUnF$(aje~Hx{!CgNAoq_`L@{58CGtuqng(kN-ofO5PabwBJN@Sx=-8Jm&=5#7oU11_u7O5QAQqvjC9LNDf z^piRC(iu=9QjyH;2DXEZn7#VdYsf*+Z0}%cPsk*4u|n1h3%w1I^o|91q3T$kkPqF@ zpa(w((hEJWBt^IcYrqcovJXhjq(}=F82AoMzASb(Vzn?4h;avDk{@^x5W!RFh6zoE zOkF*@QeAtM%RVf<_1r*w|MLG)bII{p>CYkFw|-mV5q1H+>=A|o5E@APh!3n-HbX%xX1dgk-R{BK z(!{NuJ==nW%7H!&*j;8aR4TKGNZ@_4?av>}l5w`Byj>NbP0r=;y;KfQbhKlwZfjg; zCo%V2AiWF*Up4!RfCi5a8%$i=nFEt_{lxq^7Q&vZjX{)WHyws+5VKbA7M#9Fj1|;o zR)CGRKJmpV_B5{;BU~9zhgKsQi{5WcoT`ND)og)^{E1R)p&nkYNAX-S|AL|60~rDw zK~Q>Mz4K~9)9hL+!oXQ-2$#)O`!F|*LR1;jI~bjD&I?=No5{dFkm^yY>!mw*vx2t( zhSteQic!IrhpM&nZyNA+y)ggdHWSId8^qdiht@|s(gK3@!28%}wX^%U-61l*{^;VK z8J{OS8N$JLi1TR+fss5gM*-j@&l&%z)WIOkQF@2nGX#toCd#Gx+MK9F4mYx{t}YB0 zGny-^qt+6LtKDghC?uHCY41iit2HSd-x-Rh?G0wXlnfkOHu)azMhl}!M;_jpAO4{> zV(5aNa?F3L$ys{Rlm%}{Z^vrb$y_ZqvEUU?N1k@{vsMzOn+2qaTtv?jjDxfR$aE+ z%G&7uCWu^0iBqdz~7Qd zEA6xOd!-}0J~K$z3CIWpo-}ZoEnm+JM2zU?TV#8=U2f^T*qNC^6IbPKt{9$$t=$tU zKi`*9Uk3zaIUOWD%}#2c2e)e)J)i!St6qca!nx5XrWf(4C_0UiyrP=w4K`a-`y|O* znNoWxa-WQ(kj^vrgGrtivd~_fFXpYk6~+n9UJG2ZYEBMwHgKS=7`x z)${FT&c1^D*8EuI#;h8YqYD){En8m#GC`^~Fzi(;ANwjFJB^9U$8$aqIE!*9<~&`` zf*2%Lp|WG4{8tMvn=dMO%Dsa2avF^~?H=)8tgp%yzyHVbqm>_OnziWD;T|~(2M@YqC8(#XF@Af?2RU6gQGdU$#$=abKK z>npl(^2O%@EH#$KvVpk?pyY_N@dRl3gVSi;)SQ2@&>7jNS+$eGvc7Q-?n;K2z?W6MTOV2*?*Xe1_b& z9jUVl5&R=gIOTL6LmztZLFIRsCVrtT9d-z+B;i#BhUn?(y=lH*jS% zWKlV#6O~C8Z_PHI1k*ztn+0Lied{{U##Z<+l6y_trknjbOFbzxQ9?Hw0!vTjqLR%v zmo-iC%#~fI738ABSo?`Vi;(d}y8wRfq6@Yv_qEA zb%`Sl`-j#6s|u>O_)}xQvL{Bx+~M9mC?5C}5Np~Z&I78L%IoF2b6&8dBWmNs8c#DWh;oI3i7L^`^(E$;k7_M$I1m{l` zK45^TT)(Z9@;ebT$1Kx`tC!hic6pg`+Ve^FT8dP1B%0k2a>vS%Ogpyl=P;LF2ikh& z>;c|)JU4&7Ad`++x<*6|T*5pQ^wxr4YvqEXRHiM6q;&!ut7P-(j{vdy+yxlDPl z1zVmDr*U!W^fwWY&lL>O1T0t-%OP7xI!bgvgxqMSRrX@BSP|uSf{s74H>es~--w!_ zllJO@QI9@-`Q)(HmEhRAyu5*il~>gI%W@<6tCTpMFFn9v%I*0%Z>?YaY`L7lms*d8 z;EuYsRNLekRoU!Dtl9Azq{{;&<4BVT_RfsJnRAL}6L~XBj7mousmziT8dgylc~oT$ zkDKL8nuxO0Fs8=$z)Q(a>QP`7ODnQgG+ei{rsS3zPamc6%3LPY=xX-k)SF4TelWJ! zXdwQEJ1}8k`)MsR^xb4cB6a^{)B3#OwnHw#wDmYI`8vIWGT46Q{q zwH}4Wx6$d^yDY7gcwsf7;2&`gV&77$3~9@ppPj0WNz1QgP^qcHmwv34Naznbl#2Iz zzbcm&)=NOBu2m(kD6?svlm;l{&WU?hn2MI|z?-aRZ$Pk7jH~o1ikGrdWE*!3CB+<6 zd=0U5Oe1E>NI$UJZ|Am3rM5CUCJ}3>RO7sTqf0thRM$+Ow_Q0HJb|02R!yqoebah^U8*P>)7` zRi{ghuDwO_QEZSkv@MPF_H>NQonn%v$S~Upp=AL>%iRL=qe@!=AXSU09-I+v?!H$o}tN{ zjGZ=QoNC3EnyBr--{-fNJRZSzQp|dwyjT~YT&*-bR;iM~Rpe$^2qdXE_|P>m2qjo# z#{7{`NjdEgTS|`JJD0LQz8qw3cT!O!HdU#db{{Wsc!`Gj<4<^-XlTr#kpWrue()n; zt!!d^{u$F7dw&$QVg)c|uIeAY^Op=mhp zY~U&3Jb~f9>lntVSyS8hub|BY&v*wPSZHNU-!HAj>X~9Xuai$gg7RuX0b7nE7)+8ja zmpmrab|+sfIbbYo3s1L{R0~noq5G^Oo+aS>0bs6={Ml_^dN-`&9cEKb6_0;*Y@)6O zT+N#&8D&ybv)O*zRxF-)0-1>&Ga>^qK+(MV%v}XvM`8iT&6nMzOIe3Q9xN;z4Rv zBIhHBBG&k@lB@|F6*cvNi9c8=1FzDg))^7TH`El7$rz_;b=Sfm?&h}?;iy4FT2;jt|%CsOy#Rg>aeAgMH|_R2L?dQYT9f&WY`^_1w) zA^AE*syP*PCP*y<$89UgTD0x`WM9e}%`)^{afM$Pd1Xn>FbPnX_fU48d=QEeOZZZ$ zy{DikoJbl2qF(^SN*}_%0!PaH1c+ZifSdEB1X8zIJ@bh7c#0pAm<}qVuOY(LiX;eL%%n5m6KJyX1S6h}`> zk)e8Pek9`!K}#Zr;ZWnd%toN4Js|hiQayjT!v@_<+ip9r2i*Tf85JL6Ni>C!C-=&| zSsXZr5IvaI7{6DBL^j1q)MOoUd6km(9U5)PDKr8QO& zW#CmDYvZ`daZDN_=@|X+VI|C)u5ax(`7K=Bsd8^c ztnD&J%^BI$#Ezw>RTY%EOABsY$$PfU#@d)19P_5?)Ldjzfbuxf(H2Y&=#*WLITNMM zLXvTmUB;!O3%bz#=K~ptj7Uath+yb%4q52o9mM!HJ;?c2{6FVcAi+8?NXc6-~Hk zS)JlY%CvaDa%J(At9=4^hHd(KVtPbqNV~le!=N6|V*1=D9mACi6eCFU>@UCf)r4$( zSw#p+`2H&{fXbqP0wX2C2CJypdE_L+t9y2h*d4;Oh`PJ3(q)kcgM%BU3dNM7U`h=I zZL)8>&XD}DRhc2qS`l#mr`K33MI}i}_3h&jzTSLTw?uk)shAAOF(%^0N(FABh&#=RO*Wtm6;lJPxrkxq&pQ8dp-}ycV zJSGZm*x+|=?<&&Uk(bEvct9mo8#r>>1-G$W_Poif)x8FLWaN@})d;Sv#d-(7IXC8` z%leSVOSkHiltke|jhi}kw`c$$`yuzPb0_opcN*fJj-=o05P2B4=pmTENB8mn{9L>1wifYr#9Vb^nucVSF)b-;eVGAK_CDXxe#JJnvb=x#&HOyLy)0ZqJ~Hsi&v zE4-fIP-e|c#@*1Ear6H@#VmfPXeYWF)5pZV$IHTQIA7HoyI6j1*&4-l;T{&i#T)gM zzw?uFWblC!<^r#uwM;w;?Su{aNSW65^rLdR8qBb(p+FcSJuphn4d)$oNKcoWW5p(=NPM#xxc zZx9N}oS*s>k1TLXHwwy$h4UVhD(08ftS zgLJ_)Jnpdah94J!b4{hBJk;pigsNE)pprqA3? zd>{UQ2h#zJXfLOqZOaRJ-|>J1nT^xp$nD64On=d8!!^z*p@Rm%8sid+EeFix2F?pF zZ{WKCpoNITYa+SJ7>}?66~<$(s7pt6b9TOGsEoa;6^TK3{`_(Rd5#PjZdaF0idq1? zOo{hO?@PlPy=~St_h#2FF5juc3k=zEojNDk>xc#{3W&Jj?^GHA$;qla8qEu87V^7C zLp7_yKEKu9i7;Ml!0Rp2R)Y=VA$F691oi4^{bbW{#hv zx)=M$ZCLcV0W1K|BgfOY)G+X28J!Okret}3YaS`t*@kuQK$2KGRpmXlHsi7L+4%El z7%P^w*37C^9T>27Y4g(W=p)h~99^Jf7WY=A-)lAD!DO8&2*_+JI#Fa(iYIsKN`PBy z^PE%)v0rpxO53IpF)rMZx)H|N-pn)I^LKBx-7W|Rt#nlvi+wZWz*Jf*|C})D8w;M0G6E-Fc9SL&uK}w= zvjUX!U59{!qf2&h7EQ0*YUZ0@rG&B{ENQ`Sb4tk67Tfe&m*8-iyUxGCZAB?@SQwnPiDI73KTH- zwCTH0zjU;w6O-=!iODqnTYt3mA~RJ-;xuDwe)p)au+@A_j=?AHQ?`t+9hNIXPCm@9 z&+V*D-Hd6n?fcg(fYs+5FPxWrsDx0B9j_y)i&O1IQ~#t-30AI`{ie0G8=Mb2Em}8^ zX$_wr-=+O_e6F0(un!u_?*R$AInQOe(G5L&62zwm!s%lSnJr#&;YbfkQ0||`0-K85 zj}9PXKp!He)Bs8MBKc=L5iTzbRy)RzRvLV%!>)krVo|k6-q=e;@yU^8lKJF|Ux=jT zKSDvy;!(3OJ|eS!YO+*Jf|ZD6P(}UQ{>ndwc)N0NceAUmEXDJit1b-eWn}(WTEg2V znp(TmJ1SXy40U3zA2O1+;ueW*hAhD_D+q$#77m7^`x{JzC|;*i3N1U86Y=1gw7d8X_Pqb%knuWj=jq^6c8l6ho~o%hlx2C|^c zbKAje9Dc0fsTJ7%RvjW*6;O>e*fWU2-8p7J34zpQDLn4MS+={hu6^Cb3vO{LLt3e143d$L@#6M=#O8Ye^;}Gh=4nz9aV== z>%T9(-uqDggZAg64K9$Hnzf*%L%_7XEy;=MEPP7@Y)IGl+hdK(C*f73rtfP^-;rio z_+CVR8G7=#ir5v@Z_E68jN#wv_C^vgMz7%|xQsci9NK-_43kTXO+GbKRptECuA^1D z@7QW~Jfk9F^7-*z#(T^$=IU9DBIxRPuW#jH%48;h4fE}^j>ngZ6|;HPq|&HEk&Tc6 zb6?QBd(+IsICm~H$GU#~~3O+{m~fjyt?C1KPVYEEzkg=Q1vte(E= zSBI&p{F&-eBEpQ$p+X8XzA{5?sJ1(*;hb5Pd&ysg5wIfgE%sI2KCJJWTdAfz7;U^B zts;x@ni`26GJOc;I*jLZ1Z>O+&)YU!#EfDT?6eB6N5(1mRaoIY-_Sa~YZCsQCtiv2 zBg$;Lg)#lplK;naeajt8l#df%YWQNf;x=K%>C*s*v-aBn-@@KSX08yauY6=DYz^L4 zY_aemiCjB29m~Y8{Q7sb`&DkZGvtufw?n(fJ*oK41H|7sT%miAi}`jl%IlfVeg;R; zy}Pb#yMNwoh4^X^nHmuEr&5NmTilgqbbBJb?9P^7A_?6LPVLV4yx~*natHFi4a9Tr zpjjPQMhhM_XIBh~LB>dUyPZ5KcxmXw#PU*x4g!|6J1xN+tex#I*U9|L z-_u@y&tdExHY}Gb zA~eXFH7+^yr|>4xRel|X>B7SaI!5(u_^$lXe)f;G{WNbZPV}?U>BnR``Pr>hmJNxP z&jW9cI91-}g_nhpxLepw2SN2cte3bB!)pq!pPhya`X&_~m9}uU*nun_=V^<9M+#cV zA%JlGB$sl(AiEFlvgjg48Mfp@V;c}%RGE&!egz-ZYDmzJtn)}@O10$7Lz}1Fj_+BT#=U z)z+Z1d9PocIp^_8^`jKqZY>Vu=~~Y^mr+6Tzi$qpkf59Z5se9g*cJlM`;a|_51H&Z z>n>K#o^jXaj5`N<@)yuUy+e$);RF!|O*&ybsw1~sv(95-jepgLI-N#0w(XMQ%;QoC z&fSaH;&adES4_$t&4n3tZgyIBn&HS#jynT~%7B&QIa zrb`H#-K@utfm^pTW}?H9C? zp^i6V5Hg&p38sUT8azx*B~F>TBWq73<`^KhGdYyPXb7W3?siCkF6^5Z>$BT4CN?xc zLU+U#RnWG@Dn|W;nmIJQz!m$RGx*tAkeIU1m)s2+xvSZmi`MBGW_eOl#QRKgP+)&f zJ#YJhApJ4QEnRm$_(a9pAJgfZDf_6>B9-kPBdfB9KT-ogMP9W_|7^}tSfP= zKcU^4?E=Fp-qYjA9vU(ShziGEud_!+4qcfadz;gp`P{0`L+s;{+lK+G{ss!P8icoW z^>RkhbeX2|zuXARB&I8P_+{_KVT}g(7XSI;t=@z%*re+@(uIWZL5&m$KDX~5&i>a0 z`2YG)O(P@av2z{zY1%%xm47>p)a;T@9+%F&5vr-UYe%}HUJl`azMLvcl8QKlCu1Ah z4e_}s_clAuP8!(=NW@SwMT%zuqAkCKh3_yUd4e73-OezI1qn7JT`D^7&K%Z6*p&(3 z+CSI7uHO)-9QfiVJ8llm_BS*>svYeYk$L{UglnC7*TY{-#lVxCWh93zl^NRYmLO(` z`bj3sD{}O>-ABsif2(b(`7CsCu2ZCFbOzU%C7Rl$$o?#@a0A_{ZRv)G@Y}L4CSs00 z3IlHKn0uY^k2O95!Yro?ip_2Ifo24~)hx2w!{#u%C58~!6YFmBhpRoQ&7^?6Qe@c& zJ>LE5+@Y+^5<8syAo*5~qE~(OQPN}RMuW9h24i!*4-af0MfbwCDVosZ_zb(^T*NhA z2h18x6Z@teh_`Jwvc1q+TSLyfqt%M+{_F$fv}Kva3omu&a9BW_{YkK_kCJrt9GTsO zc(>z?UE+RYT;{r4I@wv#dh`@A8PCO-w?jI&!b>}gq&Upo|Tm4GK z9tY+m(|^q{$y-(RzT>Hps|$2PY`a*;S;hZ#4{@RZ&DP<3oD}H>H>UnGA@Peiyn!KP zQ8Jg?+y(Pd&IyH;8UzUNPbJ3^q-$-5{R=z(&qKw7<3GaX--7=MzIa(B>}^fDSUNSZ zX5{#m{R^Js+^m_oSFmzCwPeo8%71jWypbFW+4q_JYLyD5rz|JHeNDe?GZ?+Z6m*I& zhCTSpv0T#Rd|S;Pz5DRetjcZKb!3=!MqpjbX2k0d=qonuUW_MR0PQu<&FGuh4*}X{ z)fp|OpEiR*Ki3$d;bSr76zI=Plzm%K>3(ZR6)?d_d}sO=n!*=R?3m-He**Ic@b?4> zmem&`OSnY7S`J`SkgYTN7wnK5N12hS!61M81y?oyzelzTBtK~?nhX4uhk2M&ZgO!wTP*$euni|Jkbn98C7x49#t-o&5V_&E8 zA(kXz$=JG?{8}+ovWIw9$yx_M6jWjL2xWE2Y{D22g!gGNI{sStWkE zzt{k9v?vQichNN*n#WgUJHR*Bd;LfskBT;6{0fg%qjs>)Eb!8Nfd#NG8Q zSJrA|POGT~zA+cbI<+;9YiW6sf>EG@YyW{jL9yzE2z*tlb^U5GC<;-w^igRUf*t+# z6@0CDD{;dn^!SL?=(|3fch;FR3X2VrKINW*hHR=N}frl9MMr;KO7d3 zzr9X11So4}wDZZFLrnUVuJTE9?d%(i)nu-edL&Ve%alj6$*Y1%GjqL1V!Ae5UTJf4 zN;t{CyWD^9oV-%vxYX38IhixT*Gg)!wMcWNIdz8`ov7w`(=O&w>YjD#<64zJBTMt# z$C^_XIOWhPDy>9=6;Uo_{tGKfUYeM53fcS0u9)Wy923h$P-f+Nn4BUt1;p-US@;?) zl|U{=O6o_FF~s7}lS2_{a77;%_e2Bb*KRB4U>oTX)@ac>rObg!l7c$sRCCl!(sd7W z^`RjHidakfRP3VWad&0a3RAA=`ftrxfvJ-gnCB6UqwJw=%Tlg4vrZx@G0AF1(hHm? zt}Yxc5v2eV@rBldQ^hnLvfR^_g%OdXPyW{D;q0@e14?Vy*+WTRDOPjG^ht%CA%f9f z?v6oY@wmVU9GXBtsK$P#)kGYa=#;z;e&9@1pFXWV1>W;Zlko(LRU5lza6<0y6R*LR z)2vUI^_PvO4k|}#5E?3_j-l*@Dlr~pV0QRS+x4z@siw+wi7l=(IG%U;ZKO867Ve$r zVSR(-L680hOd}#KaOrDxvW(gl1y4^y29_0_K#6_1Arm34tqJ_-c-I5Ea-Q4cU|jw+8qQSH~0*>0?RSBCfByfU(2OAA&@<{&6_4SY@$Wz*(k5bE1}wmBMt7$tJWd_W6p0 zd=Q=AWx?}emJ{NmiJL;^B1esHdT$XFyBWYpH5hX8(=?{y8!q3`XzR-8?ey5!hdEoy zl7Sv*%t*b~lp5JzLBRtG!zqzaGPwAh1tI)-15i#L$64janXtKgw!)11)56lq;(#1B zyNP$Vs~z>(`nG*_=+@^`I=iQ|cK>n>O|QQRw*R$+cg$cGu#CNXBB$uQ;bh3UzZNx| z)wLjLzC{W;IW;1TD#s@Gq)7?XJ?=p#yc>;48ZR|A*Ao{OkQ5AM!kB5&Zle+zvd`>Q z+YUcOJ-a#BfZ|OQXk>nd?J`vd{{R6-(GvuWv}o%Di`N)*EEz9BlcoK%&i2SlIdus! z+C3qa7CN>L%pAX(hWvQpcB+a=-qzQnLN_q*B5GD~HL(&UGMV0H1%j;oRt1MxN7of% z?SV!GxTvWBgEwT@HcE<+R42QpkJG+Z5m6Ch0H7q1LUXT{M=?Dq5x10P2xQFI|eg@b*IVXd&Jn$dSqR#82(?z3HbI@K5tLV zPU%m1LmUdveXPnFv`TB_XACR!F$VmDlsYuY`}cN_1&?1P)7sw*&w$%VuWO`*3zk&{ zz~K8#5R41mb6M@9FDaDOR~?q_(V$*Pe(E3Udb1fcTji*#@cH4B{H)cPV}ENdnK_r& zx_Vky@dT{m#2tTJ+ZYzL5+FXo6Hc2K9QThRgd3HE+hBy}aKU-rAqPS~gU_ua3oJ@|n4(j|64+N-K;hxK2NNO6! z|2eyV{}5LMn4Xu<o5sI*qi; z)&Apw2i8yYUmx+G&x7EvVwJUmKLz)DfOM6k+FRd4dO7L3=V^o$rN_e=#Nb_}Ue9vq z@+!Xy;bj|eq~ivX*iPZ6{0>=B=OxAiF?f2_&y-lr?h|!80n!5jj-j!C>~sx_#9KO%d+ni6w7e{Mc>U%M;vZ-9XkP``cqSyTc2W zFdVR$X&BbE-x_^bQD}R#UDnhW{M1K|Ph*FkIcI&tLhmeT1(`Ipu)o_@SZ6*c#o!y+ z3$ZF`k2sKxTq}t?-gd)BqiH~|U5j@s@uNnZJjSo|&vh;KClje=ZRrISOc53p{Jb)y(@wOBfyE{?CQ8+YnfKj8tD*f&7Hq>Enf3QF47fc3#^ zhv($f^%D=-hZ!@GhZmVyv&+|((5~uZ4ku`81I0_r_3N%+5&yQwU$|t+@e+FNe+*f* zmY~>YR##y(Bv6S~%CcO8Gf-M(13O4uYfu?s(w|KpxMS17u>LZRbr)uiu7TA1uwdORP*4TO znsdnog#YvP_V@z2k4xXO}E>xtCRnSt8dP_Ss_i981pQ(9~_8{SqA3lSTz~I(G+jtF)w-TnV_jH>-?=?`9-L z^4~iN+q|~G2=lG&+yYs#j-x)7Ux!$32v-(3xB+M?Ii?rYdpyCZLIt(7r4Xnp#03Pj zVDtMxc3(sA~HcH3798qzJ@of)5-E zvqy~mY(2jn3JHIdCxz$N-=jU1s>o_Dvo9Ii5t@Jwi~Q|?_<{Vv3(G|fE^ah5%EmZY z7c%a4xiiB}#J`PxN3d_=Gyg?>|4j873|sVf{ZIgXO>TYva~5WTUE`KnZW*{H!u}r$ zz5eap&ga=+NcMPD)jO*#fft1v8gzfje(vSPV_xg|ucvO@Wpc<=PtfBPEO?Ci#vI`r`@n-Evdme#zQ;h@UVVJcd7s(@lMXO z_{(>fPYdh2a4Ox{5w$P+XRjbIg;k*ur%Wp?$j763O}d)fzW08mh?LDB+Yaivz8&-6 z0B0vpS~^$oK)?60yK0jo^22nlrt6sE)N5)!e1RbdkL^t9yqGn@{zyuH=vEzk2~R~* zi%`}!YCGWwpl?+9#_wF(_VpQ>vsE=}fruXNfUIO=NZU<)TUDBAS;JSRW~mZ8@O&CSF7a#rmAh zok@U~>w;#tTrJvKj86$a*T(Yti;r!@U=+&9NSP^6Y&1g}AEFeBu0zL=9@QGF2a}YiGSQ1AfNnW2r9a z4QxX|*)H+V(X8MdJ_7)=;UlG_kA`to2h!}}BOp^buIBCGbBSK?bau7jwg`OuscKnP zX0L1_jBcE~ELd#69isM6gxUV)JU=JS2Zqz*LNW%cyn_OJmE^y(_rBc~GaG#jI4Gy~ zr!%*kUvNZru87F4!C?iUXURD=$4l`1N%A)@2M56i42vOq33m5LXnxJjsH~Uyf;OJm z@98^mtaW!p;i>|?L!}GrQ8DZCrb8=G$vuiXoX}WSzrRGk$257J_<|NU;t2N`mGaR? zT`YUYLb{t~wEL6k+k+StxGWC~zU9AiVVDZ8$uYJ+aQ?h&w>7sp?gd{TdqFcB{w@UH zb0MQhUG|mcQ3bcl9%gT9YlI)p*F0}W#b-6*jG?SgQQ$tN96aB<`Caemh^9JFEqnFY zhV*YYyV1tBmtkuE$ZePfEV^~vO*X`5(@*BZ0 z_P&^G9DAh{t_cNeavZ9oBaq6R8W))uY_+uBgTZkR1lc3jRlr0Ovh?EisfwE2UNYTJ zvCGHq5;xIa^V^x-Y?l}2jt@1mDC^!m@u;!71e4IRfw2G)^;})kDluzON|w&Zi{r4J zi(uJR+8j?zq)n(mmfTTRNSyWK4&wPtJh*cNbupn($tARNokw%iQHb6*UF^VytaBY4ek zSX`950mO6LxGs@+>;*NlYa{2Zt+pg!=Y0@v1>XSX52z~OU&y0=9FjnihAxj@ly%0=gWywinPd zhy3oi`+FseX87#;>xNk5=G0(!9w6f15e6fBEwz?beY^|6`iQxF0H(@^R=zof`>}nl zlk@GbO?qUO=FDc(lZe=Zj(cJaCq{^;V&O{a^!!xzFtC)JzTk88z?i*59qAqHeJ%!} zS@`p=DhU$OwLRUeNh@4>Q7J^ABYXDLSNU~@(6PwA>fbjaL@RG&pHLscho*S&#^;hO z#Yp+q6YE4O+jsagGzJ&F0b2L4OLQKiFdYupagX;Y8$upR3%gpM3qoSskm=Up$7hx< z{<|kc3$Lqf7c3j(f~yde*AR9ZO3ly)y8MG11X%CSBS&y-QlpTpi zqZ0Ev*`lrEarV^8uH~GFemQ#e#DYxePsGrhJQe8KE0$&TVs-5EcGLh5adY?}oF0Yg zvpSuQ>V?0k?f8y4;wBv{t#gJ)dv#%VDMxXtK#PuHuTiJnQ6la)M@dj?IyHlz;T8xc z@@{iP@fL*?T2tGhY^aQ<#03k(8|#lhdB>4VSn<+i^z(>y@h)E=#Bd(Ly+03uKlkA7 zOzi(Gwilk2D|9M1v;(#N)#rR`pw=#eA(w+VFBfxh-t8fagh^gaIQ4WlD_eriT21&p zDYFq|apGVOzDB2cwy{vFM_@sSVykDBcmp-piDo=sEK_|fouY+*0 zmG~;N;M+of9@A5clQLtHSwlb&gJg97tPaZ%RFI1hUirnJ%7K2RK96e%@3Ac@WNA2t_~+k&ey z%7#?k5bN&_W3Tm_IZXgZ7IjxU{^UH=aXC|5A(*K%VvD7PmEL;|o^~uC{%S{S5N_NR z#V!+baoMX!Q1a)`3(>a$fWlr5=nWv|pP&4x5`6PA>!4;|AT(RvLQf#gB!9XOs*=UEffeJ7ii18ZmjUIA9KaW8Wx$+i z&*X%)jKRsL6%C$Nh*shR7FHDa9*KiRisHWHHa7!K0(yb1#b3#Z1NZHr$mpN7fc|#0#OVN>@ziiPTh)15jWLQ^2@tmffXdhgm&NJdrN!+>Fp`cJA-=NA(zsY zo<0gq>A~u0X+=eWAX|yO z7^jRF^y7TfDtrsB&(N_L;+3j>4cQCQ1Ci!O0LPS~Baws#Qz25M`VM?g=pj@5!u~0D z!mOavN}Bn^8#5e=88(QXP;xK`vM-v*t9Y8`<))V=VI)h{gsl}xGSJphBsJ7%7R}KT zq9rSm@97L~ti)6O8?N02xYpEn1I|pj}H1CmN5Aqdr+EIH>k*cQ;y2o+2NYi)vXl zXF$)VXG@?@t^74>X|p2ukrF>%FJeS=nk);UMp0Md**J?*xf=e&aRmbvf%GAS&cZ#S zrhLwX9TPtg9t)0VQ@2=?;qo&vLBQE$PW6*{lNxAE^<+>`Q88}F3y585caD)s`#%*m zpR$N=vB>6vlFP=K`Fh5r358Q)=Ngywc7$DWm@2*Ik;{8rJ7dO4zW!^QHJNZ=h7Eqd^uQ97c{F9S`diIL4aN>|d#nNYV zzq3|#<^*k7;-?@+>)S>u7gOkovG%JOANHx_q#Zo%zWP$GSa*uG7W@H%to!48$}Ww8 zslibDd##t&f}e#FPbz|ulN8bo+Jn?!)N5wR4fI3Onp|bFsYvxx8c(Ohrl0wz7YpJ; zwM~j5_TTaw>+yMd)q~M}f18O}m!uK7Q`gnPEv2Dn%-FnPs5&VS3>JE~rw%{WEbmv_2Q{%lzIitstAxFsE5W0uJ1a-9`3rVK( z{PfNfAI_jSo+)&dxE2{=w^_TCnf3m0CL##B{LOdE@)?!!*$~`aF9W8j!{~6m#5&5f z1k!#15R%kj74n!*5i=DhExIzgu{z&c34Binws4dNCN$N_Izr(jiY)~!qr|e$n?g|) zT~oR-#o@SfxfDzjPLclKQUDB#DXRL0J_cpx^venoz@Q@p___TmL*WH4w@?~!6WV!Cbk9x$vk_2b zoP0Bm9QHVcRaL$ZhQ|?6({%yx(9xx5|%l{U=uxN1_pEr zlU%92kw5tQR57o?O>Hw``*b)Av#2A{=U}1g@@QlDyVR=U%O-KEueA<|nWe@nZRVVA zQrt?fLDHoEfEr*xE`V=kh+`oNCSz32TlQ8dv{8ea>E$ucl63;KMtzJ0#YT}Y5$J?q zMaDeMNYQIX?WU2TWc!6r_}+_T{1q6k=BPFP8W1>`dk0rDaOFlP_g=G8qjrnOED7%% z(AwfAW&&-AiFE+;0p=p{q6z)ndV?e~#pJ#{0~LkE8+3)Gu9tGL^+cf%I*zA5#X$s{ zyB1D5;|=Iv-M;E?gHqwUJ3L>)@ZSyzFdquyRBBJv9%ef} z(>GZs+18S4jIr;oTmq65=2{2@7w(MDVXM%$JC z&oZQwHKn?^`}6z}q!_yNdHku0@N~??gp`3=``UOG(b`U#MwehqdsGb;bI?lW5}4X~ zmf}bVd=-V4|kyAKVg2eF~;#@KklC;%CDi?p-@aKNqcuPC|aCl_4 z1RtZATc|BTh*B_>F+%)d!AH?03{@*NWQseNHS}l`IfD`4f+vB(8dCn#vwghd8wpyA(Gxoaeo&ec%|RGUf{>I313L@v|BN-xPz%j_UKDM_8wn-D)*O(9r&i_zCtORjkww$YZ1lW9pQH?$Wn z{3GV)%xE!mW!fsyKoD3U1x`QqND1(l{C=P4quHRYw=kS1X+wG`yxFu^4`1H2m~A5d zYq+594CXIvj-N@~V1Z%y)eo_Rd$sj)+AW7i;`Y|*TMrL#JEb}8vpSp!E%}m`Q}CAb zK$qMHJyJCJo>m-D{SL_j17#*RV4^dWse=OQSS$#(Yt)^PZtT$upkZn7%IsP z8NOPLxhdXW43!ed?8_L zD7Y#nq-)LY0vnO0_m1Jd(YM}N3piE-VfH9_$G?Pyq&`67z}vWQp#4Q3u$KTKzdoK= zHKco3|08&z{d1**La9=W=)b@)Y*zOtdch|ZRK$hoR2@`rlz^S{J?_mG1B7m)){Fvu zxL&52tT3?tgeMI$(^g^iG;} zC-^NKp}h1-UGg$(I1Wo@V+l^EREI;G5mX2tW>Xq>4V@+|VY}Z&v!^ZO!t{2tP*g_X zn?49XCWPR3fVk%SuiT>YS=u;I$%9O9={U50+al}r4~9rmJ#Pmjk#NP&H+x+Xy$ zlpL8zM$Do?g6P;TJ#;I|AC^S)`~#VJm)TmPPQtS2#MPUAAi~zlvKN~n>)50sS>E47 z#dnj86=m%?gM;Ks#XaRnD}?-AGaVYCpo#mpaSI2w4(U?AYYsp(?Q}$wJc+i6d6wjL zL^H>^dwO#g>M|;`SL~+6l|4#9qq387EaDJZ%`|RG=$*@1A>F43GQU?5 zC7~&kZ~}=*GN1WU%EPo#Z-_}GF*+FOVRb=kknXT4s-3mtz&2P=l(uB}a-zYopqzNX zj*3sJsY%{-4d|A%Wjh2AEco#liX9QTD^0eiYU$UffV-1c&<`kI6=wYpShJ~sg%v-l zM7rgx`rqOK11=!|cCg;?!=!B_c3L&eKE{6eW8^)FL#(Ca>5?^rT)`YEUHH|Rx$ z3n6x>?Wk`C2@1Zn8`{SH2~Ajc?}HO`(M%jB7>yKpH5M*g2(0#;3BGskknf;|%VQY_ zSi@L`OI|x8G|$Tg?9jwpQ*SAg_NI5bb;?Cj^>~fJ(#0O-UtZ+?#dl0R)&`;m}9XgSgbuPKWzPRh~E#B9JwNB)SeETXX4;B^1q z9kHQeFC@`z6zUG$x-|WEAtbrlhV^vW?w2A>=)Yed3T}96YUq5Wt||wFuYm?o>h|6# z@TSGjT55{tYNS!S#M0?BiMH!5Gjofkm+xN|*=z^gnqdNAn2Vdrhv#52rGyEHORhpF;Ipy>z7P_~F~)L_jag`Q2WY0M4YI zTjp==j2Cwr2o_dA9_ARB20^WcJBKF|Ej>s)Q1!mIye#&AGKs+&9tNvel$)DdZ|yNhown=5kQ3X`&=T*=lK zz9(Xa3W9%Eppku~hD=@;@$u0Q19(-kIBwR3fNt+@Z_fMXVrUoj@plyE(lsc62a7(D z2G%}b)Jm?1J6QB~E+O(EV@uMmk@Wrne%(y~0Jp^*Zj^(O=+lCP-l3wXKYyVGaJ;$u zjF%UXTH#vXQcGXdaHXF&gJ+eyBOy__6GT#rOsY{{ZeXODY5K5!fI(TQH|XMBX2ygE z0su`P&C)3>++0X=%Cid1p77pwcQKDdR=fg}F&kDrqsU56E?w^TQ->n4{|{BpAS)Lg z{K));<2@495g~8f>0hrLq27&zX}jS8%VWvhS+CvQ79~08?Y~g%EJ_$_O&w*p3V9P^ z{knXqSdAg|4L*OrmOmhHa(mJfe+}O;peSbYr)%kOizeG?pkS1)=`Fp|5eJfNS7Qb? zSavq!f2T+er~o@N^SZ+VAph>Zzwxy*3=Ax)ux#s0N=fvHuwcXH#KaCmbeOZq$_xbtJC%Nlq$!~*T> z>|!>uUL&T%mCH5GSjyeKy(tKgYkaEc3_K*{7^~-uSjSTg@b&R3D%hVz*G@^_meVDS zaC~Ugk>ZAM_u<_=zK2%K#x_=|YxAxp z+&17;Dxc>z8dmhXDGC_17_iBH^oaeHX?V?Uu;jA*C7K49L=6}A+Wn*V0woh3BaIac zwP`~CsxdZ;asvV%mNUDM(tfF%0%!-mai6Iy8Z14M1u zP%KR-zXqHU<&H6c3`De>%I%g|ab}J$hxW}6Zg#xMVGz)6Wr2nkt^XKWeIvo03^Ldi z?90`M#S;8DEXu6w3>G2AZQ_g*A!ecW40U>so%8uwdT^VQ+g$!Bcb}c}oFfz|buuO7 z<=A?w7S$Jlj#54aixxx#G19M}g?y0zJMAtRbfkYKq+e#$)Mh?I&2yJTa4#lF-n-la z^AWAl6CzCfdv$m@{sux0UUv%S*Szcwf}*Z^)H)&JV0@PS$NH zQ-KvS%woZj$T8W@;V^kV$r7c?_;mY-{yYrNBzNtoo_l>EE@C~SVr20IHEp4Va3Q(T z{`r!_=dl{t{R7qP^0hWSMbSTg&c9rDVEZ3Hd1W{92lAc^pKl+9|GIy1XW8o&lUkcQ zh#w=6z@?XJ`Lsi5tSR@5Gy6gzw^N7ivh@qi-D?KgUF}i$SLw8PzYOrcp-Ey#mCpDt zuEPs*_lO(RKb;pvJvZvHS;`Z)Y1iW^ zRPKn1W1h-p%drXTpHJHC%b}{%b-n;!=h!2#;CQEVYL5#U>3g>(-3Mfx?pexwT|;hN ze}q4$B0f2t+XJ1ZFSEH1)ei47ZZ)ZdXTr8FpWcli`|?Gp(-PkG2IU3lrXB4|6J-i< zyV9(i|3;8MdbP7$41nr^tzOo;?O~!GTgx+nG2m)e*`{?k8W9)E1_u5LIBh_{9Oh9L z#21!OB#KKahF->Wn=SiMf4z0S3E7ma0N0tz-towGeDy)GYy~D4n>T2!jXBuk*lIfsdM-*TQ; z*!q#PCiOSPqP{dOm zadt*e9tktL_K?(IYU@Q_2k|IB1qLkf7Yvv+5&_Y&avw zst0QN2cY&gF^T@GYTzJ_e2SmF7%GZ%Cq4PT#`+A*z3FYN!zH(GV=qI*a<-4Mn+s8l z7fs3@{L2WTwZ+56#H;G$4qTlOD?Yg%(+jcEH=^{bnE+rquQ4PrPJ4c8rQmlpw4tzc zk$-40B3bot8{k@-w2@R;vC-LXyM-Rg|8Nfeh}>unCh*}Ufjh1jj@v8CTb8Q^HO$Hy zc&Q_iY4=;#(6o;49GuB;lWFf#c{xw$DqFo$S|54TSXv-AeX4#wzqK;;>o8;LNKic) zqDt2ocj@l&cP8W2s?yr8ZFgWQO{+R6i>LPY2JOgy1c7l~33#m}ki9^+#_YQ0R=GO+ z#IFCgT3G1R-i|1*@BXdO_cHHHXm#ALfm{3N5;a8J?tl6yC2jIOeBtyt)g62CZylTSjHTF6gWy6kBF$e*rK zHIVYCMV`Jw3q)B}^op+}(9VB=h$C}GF$s@mZzP3IC~DRyh3PqEaQo;FBCy`1yxE`6 zA(%icDvG(W-#RYX-qB8GS^aUMXslA%F z0vAO%If&Z&-Q#Gg#P~Eg@ok~In>X_OGUXMSMe+rF-wX05qP5{8(F0U`w2A!+Ba`MA zXSKe0*~XLI@Le@+tF5w-GYEe?xgd1UUJARyWgAA|21iU98yZF(vfjP7^6I5S50|d+<2wC{gO+k;;&2a@2Sz`TaAWJ}^I@xD{el-b3E3OPlCQIuV~dnxSJ(UYQo6q= zh08Fo1fI=aUDdV+I;D0aSM;k+V}o(K;@1gCxi>aXWZ3N*=a&ceUs-AQUDZ2@g961g zNB!~lye5@x-n5)IPFU)kS5Anie4@RGtoOzb7)nod8tQ)yiFyCv*}O|j@6QPiez{X8C}ecIoCsYB)C~Ybf;d{W^Nx@I1%I`S;`ZQmC*tI807eIk8iFrUuR}O; zQ!0~U#81LVg_9mwK_d)ZkH^&cgEaVn#?XUeO&lDQ$dHr~MK+;gS@fCs9uAvgfO%E} z9{Uw_T|4xb%}030@Hj&6(>4l7`+9B(>@bN6z|S?>Ni%x>TuYXEhXO zE^2&W?o=ySAQ$Z|`R{){hlbxtCtl9!J%8v&wRjnw9>Ov;L!|G0f z$xfXl@+gLiB`Yc>ia%{Aw9?y91?AEUbQ*09I90u`E4qCFe&yd-z zt+**-Y>iJb4AxUcT}0MJ{@6316TO|;roP6G$))0jT$O&E8#E2f;$A#DeS?|Oj;g56bYb1Q<;!^WOt+I#s^+xHS!jxu_=^m;sOq>$LY?KH zMxjrjDHD34V|C1e<(Lk7MB=EKij^S)12R(e`nUnRv{8%83uTrAT4Mrj0lPhF9T`o~ z3Zmtrm|s4L$Dh31>`1g(hgl}ou1K`e1Wt0@3bOlJ$$yv~;R}+vd~s$X8hMKY!JPfu z$fQMWT@9)D=$u(R^NE~F=&aC2sNUiBDpmxgS4x!?2#Pw0IG)RDzC+?gt@O}sgk(Fh zIej86zf`M16E#&3lFS+u#+~Z-EJVr#Q_2ZLH6;1h!V!=$YUP-iP~gufi@ScoxOj=$ zSk;j7OgeR)_3{L}ETST#YQ%;Q(Uo$k6MvZ(;9m@vlZoewL;l=F%L_r6P2PKwdQ9_HlF-6{ZOkpVTBg;bDY{`V7kTPfs&MrOI!Y9>)kvH9&BnzpTa z-EUm7rJx-D!{>5VwY6NBjkfPBQ@5Nw4J;0P9cSMaCYEXd9eXQAWe>CJ8{-yAmR4UZ z*9VU}OD(G7)8Sn@&*Zc8M~6Zny0?v!NozJXN}9Pm8Z3 zb#%WOWw#g;YRVb8#0%5#>qjU(RN2L)7wXP8nCymB#q&X(HfjMEO^EcWM~3b4(+qyb zVaHh-DK#t6eAr5?Xbzn^+1r6qnyaIk=XR2h@ zhB@zwh0O))3{&n5in5sF1_W2JFU||(qe|K|zhg?_G9rx$K*4Df4YC_iP8jbG@DcJc zFAz?4YY@l$R)u%b*LNJ`JJG1~HHh1IDG?AeWl#}y@llW#x1=1|vmD9A2#7eib27Ux zZ>|hs!;~!dCl1&6?VL-CL7?{rQ2X9Lx|vpl*v!>E7W(Z2X7#LSVHpIaU zSByGlrja4d0zWWROB$+<&(>OlI<=I9L)B4-(^3DI`ERE;6@-ZwK;pE7Lj$GWg1A-i zt;<@j>O{l-&^fbO3ZLEuYkNNw3pHJpJdMac$&z+Wg8YiWeG;j z_gY^|!dTOZ$Gr1g7yzOem7~a-hInl=xsI%79DpZbSjo%D=+Ea0leeLcZy?p0LsVo~ zcRv0vk|GQWL~>)@V#MC}ha-vS&6L>GBAkU1kK1!iJ6IH}_s7W{c?eRuc^_tSm2$G6 zRHi_XbzEb;iR(oalYlobTN$CJ|3lttK^fGpY>*pbJm$F2B!Tok;X7{>q(I#kYt<^r zAzJvZM4!?W^zGsIHMP0YEvR_#^#ud~#Tu=WoVx?W?R^#=k|vr0ZC23Ya}jFgotE%2 zU&-6$N&d-9VIjWyQSkg$wd@De7Fy9;nft9t-j*j$&7~*x&*q~gjPs@+A+6i|dRlk! z1pawlV($)Rf5mm=KK0Z-g>}`j^~SXo7ek#-W&E*((GrdlLVUx=x#l2iLVrK7{-!tM z9f#+tp!%3diEi~6yzu=iS6Rbz~!{AZ9i&T=e=d`IiVg!Dx zos!-SG9|+8H8K4t4&aiBd6FKFiNLQpAN&N()D;K^?f6t}c48XN_$Uoey%=eV!&Tmt z?LL0xHW`DEm5K4>E<)c>G#af)4c-1oBRsVY-CiGUFw2Vc*H76y+0FrQ8^CmLd%*SS z{qzaVxH%2HPE@^3*4krWyqyMzobi{tPt7^1%3>lPA-s)ks!Ckzo5)Aa%IDaQbMe#s zyTHqvVR3EZQ|YH(B^J>{kMr=0wiIQBK|NtatWeVS4EmZCN&)Xp*R zX6bCroX5)aDd9=wf@65}5R@!TFkyhK`J-jdec@@EX<6zN0cU!+W+4CytU@DX9g#p1 z0?-_qfLendN{?7OI$d356>3yHw2hMbbUoN#P>dmS%r&TzYIMmt7ZR3laoN~!P3NG6 z$7K|%Zk~$;?tu3$ONoL{}1@F;SiOYan?wMzOM zn|Qj7mHA|w@5#(oq8Z8ev#5oae)pLYA)RqQJFDA)4~`!|J|vJ{c2HR9;h|fr>Y(UT z9Iwj%j+=hah1NX6@bw|T@8Pu$F5`H`rK3TycEaNA;ay3Fr7&&{Y4M)Bn~46>+_C*Y zj_@-ya~Y2)zyg+KGGcqPnn-Tyub}dgN-(wwS^ZUyDP-JwvzPvZr2BhC|L_3Nc>T(1 zL`^Gv?mqgtA^&ne4f=lRooOo0+-*HfK~2aNwWn+ktLs6rlgl|}7v+seV?{A|Tvm^s z{ltHKnF(9ez?bQgr6<8YVPzZ$tZ&>I1U0u6*kldkzcp)rV0E|%=oBjYmKMdVLyqK@ z-L!+&TRIAq{A7qnEC8a8b-?lck8E=TG*$2@PvRg)NF39HD0ZZ;aL&B_+^W3nw}H%bk`8lVSEwqHNsdg??-re?L)1N6?YzmOe>$ za@T^cD-lG?zz4rX)6oTBaU5H`=N|F-&Km!R+9^YX-JaJITs#vZrL20CZ#oaYC#ax% zXfBaOR!(;O^N+h(Cm9(Ls8fmrmAL)i6w4mLuA{m+*`N`5@L3;_35feO@5@`)Ngv$@ zscI1I#e$9#hNNdyz79%@Aq~7caAj7&yP^=O^;?47lCpma(tgu4fFwUW6JmD41+E~P zIPA<8h)5C6zD*`K*K{YX*t_D{-J|+PX&WCSl!){&YRmk%^L!HCSB95|h;$*f4{5f` zYVOs9Tu;`}-+C~QFzMe;6@#cO+4_?(WWNO%o z&3cLbPD5&&nnZ^!qT*qV^7%=Pjv66s!r;Ap!)cuy^*O3^PcO61)V`dH+i~(da#6!g zCR|&f2+>WNk9q@9x>(|h!5pJLRgy}4!$Bszj8F=IeqI-#-Mnj7xsM5z;^&$kPL0iEw<_0!Lg{|Fvvd z(nfb&P=l40oix~4V=X@|o@z7XtEqnIQ#f;gnvBs(f~h(JSR&sdFgxTN?ZJY42GpEp zAVd3DVMJZoeB#G>x@KhmKGt|z1YGN+a($k7yHd}iUrrhKIjECeF%vP`%)XTjhI}74 zBK0=PO`2OqXZ%}1l09WP+0X7Uc+X-iL$Zod!r6iDkjh>+6%r8A!K}p3W&GiVu}M}$ z-|8f!P2#AAF38Is@b3#6{v(V1DEt@C3hf%+{4PaB4ccVLlJ7~Y3 z(o5ewtQ-I0#cY|!#c4FwRm3v2stG<&s{Wnso7#2*+xOqtBrgB{30V&7`dICc2?U^z1DU@2g@qq(>z8Bpqv+n&nxRYg-gdpk>3t>-~!I!K}Xy2RLswsw@b;?fULhRqoX2wuAV%uc=fny z zU}NG|#W>|%;P1Wl{S<)#cki8$k-I+|<0WrqPaPN^HXD|LBMW2C+A$?BtfM+#$#%7% z`G3|6S2}7AwKh#R8j1iK9aaAxGMLTxiXq$4mqnqB1(sJv4yCYB#jIbopquv%qpO48 zcPK(Dil;Zgp777z;ysg#wJ9&H=)e1uU@@RSGciveki0){E1Q91$b=pu< z!gz8>8Y>ZEM}MNqZisCNR(RRXbD1s}&Ii4Mq{YI4`U%HHdKn`nK!f9)?Cpq3`=z(Ip%l5^T!ILX zS{Mj{A7;GC5FTA9ge?;4w?|`KlnZzfU7GJuqL_uSW@s{x;`VSnQ*e4CB>4rO3P-Fc zor^5sPtG^c_re!_f7OgDsnxxp??;?14{j4xC^aw^@K2EXo6dZ1xN8K0Y>FZH781_9 z*c?KFph^QEPA)FIC^f)><9=R>R${>(d2GM^cmwCxXT0ty(2=v-iO;$RF?Up&peURJ z5MY@VHdY1GYj51D2sXl~g)Mi95Udh91?nH3+;->17TuAEu~M@;+nvvxjzo8j&(*ZQ+ypB*|8^_4(YA906`u$rxwcx2=W#yr z5dN+{B|=+})?O4hQ#3S?{w?1{QIGwU2#RlckAU|vb}c^LhKS!nMhCZ54BH_)3Ej)h zoCt9YMvogUg*~yfhK-7Pp-fg)E5vp0#cVwHs{IMy*5!cY*;0a$nqwH|9L-nQ@Krf0 zax#3{SS#>X)^=5p0liBEC-(FN(irlu@wHA6GeU8K9i~KY?a=@M-+a_Z*id&`A%m;iaE+O?d3bH4 zKN~ACb1N87tD|rhfXDQNa^wWbL|$Rp_~0`m2)#BA$d%C1zQ!t&pO7B6>Jzt0OAztw zP5<}X+my!Jh6!1vEt?ZwJ`2UtK5gC&d+#wkRm!tOoiVfm$<*wb#q$~vB;U=__7zw$ zdWZFYTjX!<*_Op?P+UYN=5xP{gZYU1Ge&>#uB=OFQlqv|2A%1hjDJQ}#npsuHfz-%{(%p| zRKs^*Ke+Z}9ngRECl2#Gt(U3o_T51}2cq)i)zE32GMxEV6CdDNxcCI-P~o_FYbst?!M}?bGu=opRLmw?SX109M`&` z6#{Z7pVV-m!v49!PdzFxD|e`7$x-*bUi9wy<3kwMN_sL=*kG?KVis8}EBiS>%*eXG zO)iD=_=R}K6l#sRQpS<HU&>YB7qF%a=QyMyMHbN`Y(4EW- zS1kWnY2Z&r#`Z&!R^0m_9qOsrm=P4tG`oSj^A>EQ9Ro`OW->32u)lDPu9cN=bO!ot zu0z~-cb8<7TsocBU$?H=PLY|bky@d3BDCTvU6K+!IQ-(t|J_vwp{#c{>c1M{N3}My9_ljCDDQmOd(|J>*nC2kq(AEX5y)iyNM; ze$0$Tsk$3?TO)sEVKGp$CQ+((MnpI2A2F$+2daV zo5=i#4-jmO^`vlm-QzX+$o};XR-4_WYZhjKOvXWn9f_6z;RvlNY#6n6_lH}47=7KF zwUo;WlQo`S6it>xv!;DB51!j%Bh-Wwsos);t~iledB!>%2htE{K5rwj4)iqO@thONC8huNA{)VS*CM2p%OcuM-j$fwghh4Mq+R_HXk&@>@;wAB9XQN5Xc z=Hp=p$&#=p8R(;NAf%+F^$V?nSc*YpCQh_y=SqjUrY(-Yii3iLNtbbiw5EPeREHXoZn#^|{Pz=CAj9k17!vG637UoWY}QE^|R#Doz8qA*}b> zPs;gGR&p$kd^#t%fK|+n@=rDD-;2l(5*uUqYhs#gpylT$K$Cj2{SOzA3xI}&S5W1Q zL-_f9!};t^!qTdWirn|H_$ffZnR)_xd@da1&`qDsV(R6HhbtLfSH#Zz91?j50nMsP z_%pAnR*^Nc;&0tk|NavrgFXTm8_9NpV)rADq^aSw2^nJDuIcI)+WN7mtrMx%cr(dQ zzVBvm_u2L|IJYj1#0IOo8CdE_N8B~N%4f+Jl@B#DNY@^@HXJa)k zHxlSc&YTF;0cUi1rC5m~Q?ITX`Kkz%3rb}sTdbW1`68*3fx!}(rFdB8kvb@7WU+zj zZVV;2O1#)~fCQdNB##vhr6tf+d{r}d!@A@^rgObEk$R33A{&-=pRtcv;2@G~>OFcM zrsCDix(JAOdB+y!UJx!uc#jujJ%i&Bh0;=!-0e7JPvPc&AlV~4&&^HF&mQ!(r#z)8 zML~CnK-g>y&%IL*ixQ6BkvNL~A7AenWNDOi3wPPJZQFL2ZQHhOciHZ;ZC7>Kwr%UH zo|*TZnR{=1e@?{t@thN}_kMD(Tq{>*N$ev_%b)PzAFi!sk+(H(Y7m1aghZC!5GviZ z;9;Ja-l+)kg#B9?m@~_2p{EgyMl=ZsUk?p`wAS7>z8MK)=EmCQX#3e*-mh=C?XM}3 zTUsh%cjov|C%1N8kawxPW41WlH~c*tSqtT0=5x!;S2K^GTVT2Q(NMp?%b~sL&)679 z_J2l?mN^KkjkX6F)f?E^YIXJ&MuFUev%y%YJbJ4s)QA%u1|}Kb^?o7^aw`kuMXK>P zGE9&>E6=jhs?bnDac|cqA3l#xxq|VU5vD~+#6RiQ?YcC?wU1j9jT2`2-SW$gv(woE zzOl!|1m(FJW|U*h%{VC}%xq{-5JQX+(0TEn#&WvI;S`5^b--nsR81?(`InPxCVLy$p zHi&gP^>LPFy2+_Roopqi9n6kvGbe(L9Ag~|Bd=ftow<`<=PFjM+ZrFn5$d)=TgX%} zN1!L)1dK2~Qg*4->?)G*EMx0f(nq%Ss!Aa^nMGyM+=_HJj^o=2$fM!#r0=wQ|7UEC zY@=X$)G66z-OO4SF<;*|BFK{M3B*WSwOnq~Ns6U$FG9b+cZxcdsFMCwwS+yK?3*K! zk{ye`?EzzPdO4h0+AXLHC2OD}Q>2jR`}Jv+NcNxj;8G1xU0ppaI=a*Fp&bcj&YWc* zhR|PWHzX2Zp|WIQ=L4vy@?Nx#G?$|l6oANO=d7Fq-S{F^Uwe8bJI`C!7lK%)azQte z#er{q*#ik`^)gO>alm|SA3<K&Gu36#T)P?(>#O1i-w>$Gri|{-{gRE1ne9ygG@-1O1BU z50wN}DZ@!AM=#29!HcyS^V31c#LAc>Iqxh)hE0bky59xMDy*-K)#gi$YZJ;)&M?x@ z_g6NM5jGYzomwZEDsvnXcMOBdAUF<8EQfAFs)BQv{mt9LL|JUCCB;?TSerlwwOuU; zO#N1jIFWl|e-kPs2)8EH#|f&VYgtCdyd&`_X7sewaV)l~$b1qV-j=OMj2x%une9a? zlWV^Jp@IGxgrArJ=pvqWljFnX^VGg7vZwqR3*2=D-1!%9niyg2xIB!9($nOKn8tibf%j6X!`;rfjhpSa6#o?4_-Ubru`Xa@1t*)U^FL2qFSh>xXpe z>o}bBS~UND{aOmZTTW)?qax~2USrU~Ej{gDmv;8tcNNq=a5x`m_FFnCv2llsucGC~V-obdUQ%(be z+JE=e|DO-3AWh2~S!FTM%9mSiV1Qg1ZLF1NBo7Tn5+=950kht} zy2;)PKW(UnslM5r|HT@AX@(dGvl?@SA36}55teC+T=cAwm@B1Mdv=L*UNa~&wjKWR z0yy4d>yR7HlvX}pUppC`y4-K=Uqb`anke4IBpb|fmn;4kx?X{tg!gLewg_yD%iO{Z zw=2ZmIfk?0V`^?xs#;8z)4M9((i}2A&WPG#Uw{ZaICcvQL|?k?cIUfr*ATeT>a_?s zhRk!N5|`cfr@PAB#HxCb!PvDt^-5%}L~nW&2Yi9-f4VIZE8W!8T_A^l!JxnO3A4YC zI$wQ%T@}>nA16Ez@Ls*5L}wk0@uY>tG0rae8`e;_xYV zF%PaQBzJRj>k;Y#PU0MMabC{a_qXWf=>Qa`hr_)^q@=$LP_)cXXY(}o=#b>Xl%^SctJ*~EZpcBzUf{EdotXQ!V7&(QtPeU@tU^OVDR z&~Jg9R$;fjy2UwzU9FeyYYo{M$***Y?P)^h=XFOHfuRpOkp-*x0-~=&A9HYlfgJ=tVZ+bp14`gh6 zb9KYD^sGusq_NP^V||b(?@1U*1y`soWv=}NZ^VUY^BnKpJ%aFC``@$?5P+=AzuxBm zjU(StXr8K;dI*Wv2LSx~&ObAX2Eq1{-krkiTkTBbcHDPpZ8QaQCmqk*lV@PKzSnmy zpf`0veg_2HMtUGnYC|L*e=ss0y zbouF-L@f!C=y4_1X^gfM&2lMa-|)^f$B^vez{I8}rozfH8=@8k;*ce z@5JuU<~{)M7?YG{g!Y^N{Rxpes}WrX1cu6P=HPP;69F+Zbl@As0AurBtYMW7I5ecN z>uV+F&#XU5<6(J3-*^6ElPW(O6$)VJa9WhqIa@+DY{#coi*g!jD=1G4G)UZYiPp!r z0i1Q~;CtshzbQbYseLjpVKCH=n;6M^NX0Q7!`X`>m9<{953Z_uEdnP0weQ9qcN5&e z|B@ZogmbqO-8!NdTAcPstF(C|Ukd#4p`43Dxh1wn**zbbQDdnDZ5CMSlM&Nx8g5vy zm)!x*U~z_vK~io`Oap70?dW#ls7d$4;E2CSkl=8iktOOK7$`n0&o^!XKRGO^0TWy@ z_A@|MZQ=#?i#Ah}H}Jq{b%vs`Qf?lGKE=^*=<6zv%vMyGFSr)6e$v}U`OAK1eTTmO zb7Y@U*})R|`XgYk=4Pkfk_<)$h$a`jl8S9rd1ZD~G81@`A0s8E#;0$l^G{PLL`zS~ zS{1yJ3v`zQ4I&%{-RZO`+ZjTp!aTH@JmGU7AkT*xfWI@wpH!-x?rvd*3}tzvCFo#5 zbTWg;#6)|XC=8xF9rK@5HRV0CRGMvl7{?}UeM z>3M$Id)=%!2tPj5$IXRIoF!kZEjcn1$#^Q0pn7rSV@b>26_>h>j#Qug_B4bD7`Y}P zO&5LoZ249X-jb7!;FzpnPxXJCu7P}*bzggyOXwIlFYzEnI&I>iX-$|WINxQBDQ_iL zIj~`v@k~dykXm^w-<#Ae0?OgNU~|Pq)Dn=QF_aTdwu0`Syh!vMMzgQUmjo)0eWQt% zCvf)9q{h0OrRv{uDmvjISUSfndf>0TM&1Nw6&#^VN0y_?tz;q4XK-ihDy)5x>Iix^ z)70oVjs&j1gxSoSULz8{#GIpsPh-7d`>VV&$_Y#yWCh*xR{^)rB9@7U0}1>B9li-!A4mx21GGh`d#oILaL`n!Kth1 zrBX7^OZc|NoFP8fEGpw9W0)lBCMcM^SJFOo=Ll+4nDJ_R|I1(g0ME_L8U>TjVTTmT zMwjud-uX%vB?@XXDXtjsdQq+s7w(mv9Eczj+j&3YVmN_2Nj)<=%~aeF_hSY|G8CFt zeK57^BbJJ;&GZm{`9&;{2M%=_+#A*S8TV;R)dCV6)b~X>K_Nsqxj`?5hJ~R|Q8d>~ zhs{OZ6yMefKf3o(L+kT{@Q630IFmi}iSm-7a3~}NG_HEq3YiYult>UXhjjw3vGmeP zRWpX=szRg)56aF~d?|f;-Vr*PROY;=3nN(5cMGygXXC()hX*WBWk~O&q0z16#XFKB zR0@ygv+)*)oDs5jvhKS_)K35JKR>al=I{;7G;{1$S25|PAl5(rpIjq8n`$K6&*&pK zgSGD1?RPjBa=s6gy02{87U->yY0fsV^n4ftIX-tKAHGa-dS}*JiLoT|xYrL) zq21MN`}Ip|Aggl=XmOFPyjv-^JgJ$fERQzZRllB0nkfUP2Ww%*l% z5c$L=EN*H}J29y=yl|!&Uz+|rfi9O}n8G({z=)tlg(7;JMdo?ir@^#0i%H~&3}OWO zvs@ahFZb1DbbcBs&|hL`d#PjPZ5-B`si`?Jty3IySBID zg8u%3LX5D{dwZaoz(q{Vhf^rDAVd1C7}xB64!}0d$qKU3LG}K1I>I+=o*p)#RN0tSR5504}1YOdeo4=Sg^=w?42(iq=IMU;V1uz{!oWX&E}yC+Iz8#V~p_wetP zp$vd@#5Ung96BmRx#eeuzKYGtx;yFce8~_`HOw)n!sw3B!SK@tHX38*g1Tq$NiWR^ zg}tM8CU!@E9ld6yMwpjkeJ1N;s^*w-*fPYTk;b}Bm`dVabQF~6<|gbsicq|5c#NQm zgjY*@jlz!xj&g-bSFeYmBCLt3N$;ZtcUZD(MWXGdypzLNm;p-UxsqW$2Px{1X_0qs zce;}~XRo&j5eG|*@Rrok)Xy>T?O_Gv#p#7?GA_Ubor1V}3ZVYSE3xiUjFI(MM%>!A zYb677J7V5tJ}fXQ3wilC2ro`JAf1U~O}b>I=iD`L>Wz56^*YXZ<$Xc{iO?04P8bTi zXD#r6v!2j#!=GEl(c6}2C;XUQlU{hXG`jwovWI<(R7vhs967JWLl!IC+uFe!nxK4N zoBT@XZG1g85JLp>yCi}VCWM5#A3y4sa0LtvS?W+JenabdBG_%Pmgm8hjW%JE9x@yl zt>Qvil^LS>IWa^*pRaRP zJ<3p%;Y6=DdP7J{HdT+d{TBvz!uPND%?hVDQ$pu)1o+Fce!26+7pCM3bYR!@^i%$( z`0e#AF)R1-04PBrR*(hT%EgUr%#*jh4W$PiokLznV$?m-naa0JVG}0?w}#V zD=)KDSUZ>Jsx&QFsUoE9E#NiXE$8LGTHt-iNps;(7OD`HUxsyjx6Bk4;|_ZZZ;O0T zF&sm<=UuZLl*m`*1UE2M3@ajk>#Kja<1oLZYT&vGm@Wveh4zpv$Uv2i$rp&lBPO>t zgZ?zYZ`QRDDch7i`=l*Rt0H2dWzeQjraZ%2+hWua9mgx^s<0m|;yr72D(}FKCApgz zPd23PP=u9OOp>KUc$c3}`8%w;Oq8Z+%t4@cX`w+^*H@wgq_VVP*0H=~NOND*dTFUZ zW4;>^&73-oT8K^f2IoOc(xZGqc{g$b^tGy_DasAd6OM!kvMjaYyfJ3LmJ)j~$j*O#S|1xgkVQT-`=p4Vng@Y^PX6j)AI`ki zF(((4C+R-$^>~o84N6aEC|^G zi!m)%e7vD*PKkWHxCzCcLhv=;tX3LdV}!Db3ETqFLA4mXeh>Lq348)-5x7M41nO)z zH51FcS~3+eg*fl1KHiGuNkD0v{7?Jh)Rer2rIu25N%0LODUz|Ec@cHgS7mT!O^vwD z3`+}1Gg@S1r*ZOO<+bQP4*}4O1OyDqsS~eL_mPrll)_Qcf-3m|sltjm2~urjl{|t( z#^MtTf{X2Nlyd~2L-5X!X%L*Xs&;GH|mJPKO{p)jLij`&E}}|(>GsPmDdU`H?k;-M-pYB zPzWx%EV>leNSZHhps<-5ObllP?_QV>Bs1i}F&KGF>WmFdXJRIu{JPr4c6R1fa8}jQ zilsP7N+GJy&E~%#1wRXSN3|bW_ZisDLtdL^$!hRpFpp=Tm+2Di6*u${2CU>NJ+U?m!?%}+#QBXX*sOkq+w z4R(F<#5ndfV%-}J(2b1a>RxH%wBo&FPI48@)oLnag@Q_FNj0mgE5u@|jX}$wjWyYq zd{P&pQ>gjIuTA$)?$Lc!NhY0x4l@#hDgrFpJ=CvNYIMvqJn?BF#d;l*)NhOv)H!Ms zK5UA=P10zN7qya&zl#ZpZkV;8u#zxfZzZ0NA70NYsBDtku!dv1=AhPFr&%E}AlqD7 zVp10Tm?6^6KZo674W64iLaRn3>qlZy9jI-)QmOkp873}}DZi)kZR&ejt$~<81rPb_ zFPz1MJ#D-?KoXRU+keScD1p}MnlVHJVI=JEfZ_;el^x4-?CjCgpeK`p?!df!|j>FLW7+1 z@r+b_)uY;y9`i}5=;T~&`){}#vT{raI;+>ZF@dVL=~kU$q;y z`9o|dHP9HPFT8S`UYMUJ}Qt}f?Z9XjG1i-LhRTi+5QjV9$uPIkW_7sk=JX4 zQA!s4?B2a~5l$si*{Jw0&Jw3^F4fMQIx(86^ zVoi0Cw77Pa>T-h@gz|J57-^$Fjvl;CJtB4-#YV^z_yzgwv>pX!koMvRY|GZ2=JfPG zS2vS2rOGe=Q7O>^1z{&NM}ys9()L*Um2uKuTP4%IAwN-{qJRsT*OGOcj)@g4+D2w` zMpDQ!!OF4-;q3I`nx2js+}0+#yK8b5Wl45&sbnf7YU(h@rq3LP+*BAb_inPQTUmy( zd{Jm^k&l*i?o&N?36PEzyt=B9H#vBXX1XpTqQLq-EkrcP54AlljfS0_SaXrLt9L_VeBS95i|XD6+m2!ieMVXP zGPQQo|Iu(x^AaW*Dr$H-qIXv2;;92(T%^#>GP8>6qL@bhyBJ-~p-Dt<)M-5N1W59y z8K46CL@4g`9pPc;MWF7mOd}-u$huOJxWL10+Uo*dfap%;c;Lt_UZ5{Uib3x+|Ey@B z;@VT9(6ppM&iTBf1HWrhYt5sOs_z+KuMp7y5Xt_~W!nWlG%Qg~B&>k|vg5Dhoe7bK z{gc|C9e5~FJ#k`#{ORU+G`)&eT{<~vqXbf!%&xXdeHa#Q*d3-(W^wjJK01{75dJFTxb(~BYm$ttj?Yu5spR$EbEOSg-6ZscaEe7-^o(Vev}vE)lf5fG5cTt(BHATdXt8Io`b zWXrD5sTk{ws|wRawJuwJjWf`K|I~&L1MR>8Gwo7KP_Ck}UB=siDv1z{R2^GaHstz^ z5_&lNU9=7U+lC^3NaA=4iyfA_bw9|`1V7xUVB~8L*!kM}!WXK3&eJL4LXaMB9h2tx zSWQHK_=r64* z^@?(UksuoUK6h};X~td&ZjfL!?)*6cDEUVVIJq#rfsmWzZ8~8hTG>ge*kBmmSu8d&o68T8e< z$&!AzMi<6dyNE6r9a;$zW>Ee11}9>@;{+U+Gst0bHZ;av^K&48!SUsLuH5smGXJCr zYKz1_O*Zz%&4|1bt*JFNR3Sgp?L%yGGr^!xikhE~(i7v%D|Zi-JeaBy5X2sX(kQ4X zBXz|)Yh{v+Djc=WTlWoqA2~>wyJdutVwhm)KjCS&eHZFN@wlV@lPu}UlIR)3>o1`h zDyHDQZWUNk&B3+y7(FOcTup$v#=4D&B%IoNUcfFtIM+r#RJTEj+a0tXME6d@73{zh zbZtIhuR^~ae?y*|x7R7bOS&JjwgFsSUdCIBz5GGx_l;Y57^vZLjNWOCJv- zZQ2;z2u>3VwSwd`=!x9Tpwn1R5VbIlx3M8EIEp*bXijk?(S$@td;@?5q;PRD#c-iQ z0+<>_aa2?Ev7C+K3n{3(0g~k5GZh^#R6;gLu?rAM6di_M!)WRxcx1*9p4SHl1cRCE z+k?TOfIkp zdX#8`0-gP&>$~#fc2S~-X~)D+m7kua_DyL`1rRD~z!MqE>7?amxhKFxL2m5Ukc&Q0 z#UUe6F+6!~F~9AQ@z+CRhzpB>pCk!L%Y57-=LE^`(f;yYcy=XCO%V^>;vb>Hu^^4a zW1~K%z5Eo*hft7un^&J`|;Bzl?PjAu{XlFP?i!ADlKSwooR@)hQA3dqFvT1|5V z>68q{POX$q)N14~en~9$3Z^K)c-P3Sni(q`;uNzo%OxEdPV921B`a=1+EfLB?WT!9 z$kF2Zv)q3HKrw6hP-|i%?LoS7LeBp#cC1)+np6XOcXIv?OMUkaJjE43DRfNZw1PGe z(UEP4?rCH6ruHstlRO(D*eh2(GjS|ENdG!xI8ylVvV#KzG2AsJvmXjt=j_0(4~P9- zkqI?vE$(;4k#KB`D~e~CL<0MzcnsVD$$4=0ZO>vy4eKikMc{@X`LbqlZ`EV#3%4bI zSnQ73Kh8m2dv824dt~GNJQ>o}uCE#mv`A4iMxWK&FIot`-6?(cs0E{O&E~`Md5fe~ ziM86e(3yQV?9i~{H;!hsc7h>3xK4&Ev;_W-D-1V6_JJ~Lz={@SxqfQ~dS;Fo>RKVn z=V?S#>ewWIWXBmnf{gCO91$m+rEW_z(dqs$w&XC>6v~5nJn%EU5BfzWKP*35F}OAR zxL7>Qd{-mHl|m1){Aq-+QR|Sv+Z(0CHz+4RX&NJaCda(d^w&PqeVcI@@oa9zul; zz9M8Kbwm(HD}90b4%5v~u||VeuoT1?U{3GwuUK(w-5cG;dYReBcsW-WV{xHf-{&#Q@jrq$F_#IO*u(%eCi-#l}l)Q4@RQd7U)uUvyY$A76eAFFumID1hx1 z7x}Qw3=Hs>wj2J$b&%p6y|lB@xShAO_;%CbpKOBWR#Kj(OIivaA2;U`?Z)_!(JauZ zAq67by%q?n^%5~R0!MxejZg6Y6&2J2-$N#acy_g0Gaza_IZ<7QJ~wx4E>V`U{;6+o ze@~k-4=G;k+xh-TXnPt%DHPKeo+X}#gwoHvcD;H^f4Z(B%2g&DQjN(uQcjfrb?9~b z_d4gp_*`-3xQgk~RL zJ142(dX`PciKqu;vI5rN<)wU!Ab~_i$iwq$hm)T+@#R&xFJG&{h7I`Pve#zg5z)s# z3=3e(@&%Q23fPlF=8J~)Mg*7hc@`x!-NAj=)}ltc&CePXJz7f((7aqn+0~xXuj~Oc z`86TfU0E#3iFLA(%*g!127I@-A9I=&A*&}LoLK$A=&!~E3+;#$O#=^a|53+om*J<2-6Tw|&Yd@=e+0!pHWbn|;&$dO1JxM2m z!-0;aC~?RQossHSX0x&Fc>x_kxr|7hJc<=)*39J|;i^)$UJvaMK{L85X+v%>LlrF% zx*>skjLQ9EuVm2R%GJspW=$#9O5>qYc7XW2?V6{n+kjPXIoayW$9)m|J|TLzDFA9Y zi5>#z{U~<;9t$~L(T#u*F}~ro@dYWC(6DPc6%=dt;Ui(#E9@uKrS(G5#Q}whg~G3q zd7-X>;)~?g)A>;P{&p&M5h8_Ut@CKIl zPG^hjx6O$DCe5?iv%~ZswDh_J@G`S$I=-l44bE2GX-T!@`E8(>%wRw~|LDhBoaf+h zv7|rx(;uy!w%Q2?ty6HkbH6w8KkjP&6H>Q47u^U(`s3 zsyTzhj{Q+!mE9zaUQ+(UTudKwnPOuJ#5;QSj3Kb}t*n`XY!&{R8mY`=|;s%Kx5MfzI%S z7Bf$&aWlm#0cMzN#YZ@Ii%)&@^w#9|%u8lhjj)X?{j?f(`}uD}-*+8tGtzWv4F?G* zuaD1PeVp3|G@sivwS(YP)LzO|}HTH|>de6q1WyPvnvK<(7OD2cw3YTtDfO`C2?&73g98KtY^DyhzqPt*ZM-CW9Xlt*T31bsD z=5>^QVKY#)%j+hJMeT4tSD*yVWnkrkwQW?V`sbs^>H-V30KdQ-bF%?eqQg$z;587F?9f;VT87L zNKZC_n^JL(jJYYjxr9ILh$=S=pgs@KMR7;#Zdv(w{}`9w1IXCu$o!1bLspr2E=md& zl{t%rrYp&xrKG(Ld&$~QGulcV@1$a(RZ<8+v&Qb;59B6{kPm(-A4^vC`q_9}`&CYg zaky`8x<^~a4=erh7GVGM-_;`DTVjhat#?=LK|}zv>~zdbo6QxY&K?akGSKVz>dq#; zPk*z2dcp2_gIEUHyyu_+$jj$$nXLo$|1gb^$uL3s`oQWCNtdUm5#-V(OkECIiikX) zyA|n&b-+{O1@8oU&iU9vM~3wz8V(zn+4-ej9biQbXM15L>R>~5utUhkMD#4z7QkEW zbTa;j!pu$6rvGzazK-4(2@n=p-;@``C&A5-EW*zHmbByUonNuG$)<(Td>IQ%yzP(+ zo3wrLbI@>GdhT}z&&ae1ePLsx_0d7&axFV3?gnA4ZnA%x5Kas6j8Y{^4q!DO+NB)y zonX85N!wrxhg=_m>VRX5fAayv`D2cefxO z|B+h$($S}3D1G@E^uGi}_ufAUitIMBqLY6;DJG_*jE`%866RIy{Rd%uV?XMJfHs%xw!k`^d{l^LaRFDZt>bhvcg74yxM)Q$ofQl3CPO+fN_ckkFKdVNXj7 zOC5g0U!(2Y$SNdX3jQZJ`bW8tzh{PDZ1apk?<+=B8XmPUuqLNeR%lm2ao!pgmfguI z%lh*xHfkg}^jryb%`#r?ND!MaUp_17{3VMAXp`+)jD$Xq9Ulgs%pr;XpRlb0;rqCm zaK#8rOl*)5*5=Bm;?^A}jkNDs2yKj+7#sH3_tW`&Xp_IVG8N1g3%xa8%}rT3<1EIf zlOGS2ZU+(!=BY-*NE4@O87*U({ztYvk#RDk3xf8Aw2%CZdVt(6@Re6`E-&njNn-Y% z>irfO4XjsZ1RQITO(P`bUn^f651Bz6Tv?Q?ErfKJ5tjaHqD(nHDxjsz$V>?eemHzR zk5Z1YRC^c%m}zQ61hS%YsTB6_0X|mDXt6W6*A6Xw+-xC-)oOTK?o z_cKK9l)v~J2JjLqeMIu)W(Mhc_pg=X1qF15`!XV8jFi&ZRCX5dgADN84VXH?=XE~5yVYW@0(DI|vnSLi_gMg`&MOy}@}_&R%%3|RFh*dO4Ol0w zJ}XrOYe>5Qc{EisVA^UG@V+gjrPj#=&oH6s?c@hP=PV(W3Q}MWs7oP2 zV~Xi_@x7r@o}J12oZA|76pd{yX&kG>Mp7<@QvJ?%QD&i>&oJRPmzVvhH1Swc5)kp0 zTlhTzN|6O>v07c-O^oSiL0Nv^776GimvW>p+CyJR$LW{BHbrn-uX=4a&qzK2({iar z<=7ZSb7Nv(i+S9xqiuVNR~UGm0I2q>7RaLR_qQn`iByu}+Dx}J*oo#dp7{q6q3AXo zvR~VSMD#?dWQ}_c;sYj(5?S+J!AH;Y4(lcZi>^K{jw`Em)x(8)@-IS<7t#HFtAQb@ zJ2KNPQ7M=tHB=|hHI${EO(FADjK4D8^vV44!wZ-n;g2qr%GP1!5)}inNdit&ik{9U z+|b2J_+hJY_|BA6r)Mu_R@T`PSYxpz#YjdY)N|3ogE)~ous{Ei3m~Z?$ zQFwy%FD@p{`^W*^nJ$hEZq!A^GSWtg`J8b0Yqi+uB-%Au zLksIaQnyOrCYucp&9yHHmQ6M4!a;ZN2Bo$gBBa?SRLBX!AWi}%d6UV=Y#L&bv!}$S z6nTiY6h-tib)RojMh0+RDfOJz67iOhTm|8l$r;R zKL&q#Ud95EW)FX?K608kx{ayec!8kbB;xaJbO@WibKOWw?$h}O`sW+Jao#pt35Z;gOZna+AZ|tVWlqW8%OUR$csoW?CP98r zb!EeAxzNO{h=1F=)-+y5$MRTf+=2Y}W!94=fKNpQRa;Bl2QJ$j;g{T@lA04QOxdWJ zCz*33G8e`Ru%WRLo(x5~BrMS7 z!I=(u)IhB`^apj{P$Ypp9GI2tHWCs(ezox zxQ)@Az`!8Apj4~F%3|3L5BoGC48P5k1vFQ_+hZhA;{R8|e5d zfm68!k#cdq{{wbiTiLn-dccSd)Ce3420(Ukgl5P9Z@T6rMsZ!%0DI>o>d!R*h|8GL zcDrTI5UTtbwa_>(~jsy#WOxh~`{=wFdd3 z*1jA8?SRQX&p3baq26Np0$+L_+tjeS=UGmHiA>1iQ1vcw%z#_4kwC$F`AYV>|4%P~ z#Q(TOzZ1F`;#}g`Nc}rk&IRl9h`s%AgR9b=hCb~~gii}n$YC$pJH(EgFlDczM_0=I zv?qcFOBoSQr#QXy@uwR7*R|`%3;%1)!-)Z>C0MYhn<`Zao6i$s zSoBHv9=T8OV5>ZS?z*T3f=V@k+&*D{uOt>gn+&2cD*hDs zHssp|h_1c4b}0Yp zNI!N0tZU_H;b@-AXr;ouP5>2Recxn;1P&gBcgheYAZI>rYTRhmP9}^}sd7vwCP;mb zn$ybe{Tmq30h(c?Hxu6E6+NK0X2hg)HW)l^1I5NZWvKkUXifOgW$rqF z)_4@JlDADIBY0n)b2VpCZG--6b^o`r`L8F!GuUq}g!GG-Pi);bWCv4(^BwL|2#q3x z-Zbqp)XM-H)C}_mPZr|+yfHK}HP`X(8d*h#JU)zV2h zVed65ww&ftQVJh5Vv$C--=jmTi|3kewaC|*GDUO{(UVYCSno-A&&m6JwdZ)}~okOY+y-I+lmFJB9`e-GJZjRm#M{*N{HUlZto+VFrA<=eWd;kIUg zRbknLCAl1BO*%pTNz|E}_$FHZheV{ezaI$qmgIMXhJeO@6Ee~+ZO8x3n3S#f=&Lqa zgE22(JF!K%v7(UCc?CY39-ybCgC%81~X_SEw@c$GMrgb(<1m zxNMd4eWy?K-rWmJtwZx{K23|DDdjJ>BDU(uaPly1aF>y|T!`|Mw>Y)$mHTxKaH;0# z2%uV~k2B$W-e^6m)a>(Liwr!#<;;LA(0?zUXOJIghUpkVEa4Q!6#4n@nLKVsSZ;H! zpO@hrXXNl?X}-5hBy$XSz`(#gQ^QDjmlVxc-H(`6tJn+4R-~=jVL$(%^2pyR6o|+8 zY#m?ZmU0K}lgmEGpZooY(8v5D_!*VPdVB7weOA0$FJ&c*+Xx&gb4ZZ(II`anbqn$26- ztc!d&9>X~D39l58088SjBL6k9p0I??=oWL_sm*=BATC4D#Op)c|F?OHh|IK-f$O5l zIlIdbku^Rs7a3MoQ=6en!p_C~XAhF^z9oIbv5i+i949#6olCsEYx&nc$+I#2YqI@a zK-sH%@PU7Zrvcfw{o(HD08-Pf$&8XB)g=NW+2Gg@o{sk*LMp#NnV!%HBZh{85hWes zq%%Z7#!$3U`JIR#q*95sE~~HognG$wcpBW3%kNZT@A!)|rMzn}Jw#GYRYkC<>CQNy z_!w!xRz_q;45PW43$rUmmY-Ng*(#mtj;b3WyzFGkPBlR6)$yOq8!;?SrL^R<~~{r!!;_iBH&_>Krlw zAn|&1NEmxWF&s2GzWM_M4EoK$3`d$b`-%(osGzCf^pr)b-3zt6^nn0i402@w>7>TKl-g`|4TRePVXa8VX;==d# z?Z)l?g~KhHU5TYW=27H!rPHnQH+T+CHF0c=-S~=lD;J&KM&90X!!{%DhZX!I>ZQoL z|KJGiEPtmhMTnGCU&V&0Ip+$C5{k`W>5Cx)1y9bt1pQ|;-0z|+@u{ale@8TXuQ7wd zsh_>}CPtQ@0Kp(z{1h7B9iDnm0Fk}#V16o_DC+c*-MD3#X}8%c?z8$L%Q@vu`amj4 zf=9nBRR-W-#HM%Qq+vCvK9Dx15Vg(RGux(nq(r@AdiDoPgkfQ|{nsZPrpkd4d*bz;E^ntZDLhio zWV5J9CLug1-y&R3fn?OIPu$P6#Lv#o0k+xD9iVkO41WLc{;lQ^d-UunFPZ8hDNBP>2CV3MC^jR<8G44aWd^L+co>8+j;s0WQUTe0UwSfT@_(5 z+sjP*^biLh6elNlc{g5ocWLOu^Ci=~`tbaV8$a;{OlIlHxj&4vXQGs2^!A!aR^~Zuz z2=r1Huipci=8l+4`h(9;njQ5;!!ojRcHj-8qyT6bUQXnoM%bt;T|;73%^+0Nsr2l^u+ z-K=*w?5-DC-X^leMG4P;a--82kJq>dwlr(t6WKP$1bz1774BoO>r@If+_asE`(!5* z*_9A%zideQ0^oVo;IUn{fqB1oiA80vAht5gc!G{n7H>gi>}WpCSx%cNy66087-Fx>MNlflVAou@_W6r(88HCgzS2 z2(vsV^@4Uak4Ob97p#jzGJ~RfAXQ(9DV|^r4I=pMx?M*IKl=0HU0qz3L2bt)Yu+C9 zRn`lXi!aK*_=cNSXKu%6hOr~l39`htD_EQgWAfJZzJtzqdZqRO8l5F%@^Bk1c2qc~ z%oI^Ej{X6Q@rxmcMsk{EVf%j268xA6Jswttt-jEy<_Imso&honOE-Y~>xNya6B~h5 zSPJv}&q%Jh+_KZu!-*!U0T47yYr&NBv{?KH(%L5C)cSK=7!{YfgZ zd(L+$VM8R_Eo{q(!DK(?*Y58dbzS89MbcKPyE_l z11rjUGN$!=blOa850f9+R0E5Q8qJdc1~-oUfQ06 zR%UJGSLEC*RFKkSE&&|#w|{rm4w(Jl8{I+z4lKGyXPGlFCHjOCImYoOS+9TG_DYzA z6)W)JDO9bnn`2u%V~?lBy%lgQZjw8bR~jD0Qh8(-6EjIMl~;7-P5%r=6vRzBauCLy z4tcFUp%n$g9@;osJrkbPB84jtWSnTu2jiSBH!u+$f=6>yMLjyawRj~oa(wKPQfe#9 zmQ@ULI!39L*B$vFjgBq+=Q$Md2p($|YA}{wR4tw1$ZV(G&?8 z&B85o(xPr9Q`DYsS~5mzgsB)1*uGsu(B9W4+j+0U2gEBCU&RY|+|Q!4j1`fy)rQl# zVL`Pe5tl%z2uf2}%?mX!J_hoj5tfJo!k~(AYxEQkGQF%W;3Cq}P`fn^LWojI2E)Jy z!ydz!o@p>OwV0XGGa~Cb8512q80$^o`gnFRr5oFg!m;&K*+&N7&i%gg^_aeGV3P}s z`Xcx$X1RNIVN?N`!w5;c9x@s?XG#~b?nnZJ1A7wXEh;@pJ>54S9W0k?@Z1 zzcR>w;;iQ~s^{r)-Npr})q4rFL;}z)8k;}bt<`VotV3Iga-jBpNN1xCkq_^RA^^S- z*R96z5ex(oQkWUiFA`(8t;JOQe9eu zdLaB&AwV5t^%ApWJP>hiyzSzlbJ2=E(PWfNsw~GG!GKLJ4G+c8EKAoQcJ`JFrNvwV zC=jdYAkOH@rJ~}=)`~lcOrJo8;wr}cE$9!QwL+8R2>V8p(O5kq@&(G#>IQ-&P+Ol; zD_zvxFvOy}f_c~B&l9eRH{*}y$!=h7QMM5+Gfo|1oxJ~juj1M>Me4IV!i@R$+@Heo z%7ckKKQr_9{knTw50hu~zjMQmGaoJu4NSesbeGn`u6v8`ulry0FF*p0FSTMee}(h? zo11YyJ~$n2mQ5LNpdlMl<&DVrMeatKM%L4dbm??bqXMSRjmayidBFU$&?6|espzDO z@=*a!g|+#8eX$nDNtKHEASQ|Kuf0A2@9mQXO*mjx-ZxWuPO%DRENYDYjg0T$*Fd) zuX&qDLw9v=oL6benFn;I8oP5iSLux^4AfoY+C1#I60rS8$N%y#ddF&%8lclhleaCE zYP`;u`B_!FJQuJHH~ubne-P1D2h-!8;?mcycK{y7ZW|*YtJOb zz*xK}>V(emk-3jN_q>nI8H?U0CI+PT(@`LzA!N{PYfg;p0r{3VLQF|Sy>Gy zF?j##20MXAQpz#%=Q+0~Q;V$kue!ui>>mr0!_HC}_^PQ0m&@IG=qf1@W_=(!9xLxa zjMO#%xM2rCNl@2^%$|f)t7~xRd?e03*thHPmzKE6Tkl`LmBGCA8>e0VSJCj#8o1#9 zX)BuqMZN6^FXIVCsC*4+O2^v4_wO(H9gnPc+(c#=1UjITH%!2eKcLr!b3Mw-`I!rk zpivFL{fyrbPJ#Y)f&t6Ugj0Y3{tDGoy|odcM!1*tn}8i}B)(!Z)B@Kuh~mgCPg&)_ z3`FJHgE*&!y>x!rSfyml$QIC>6x7x7$HeUnw9E3;A0!`m|LVGm-|Y(B)}_VhGU(cx zx3WES>HM3RvMcbd4V~w8bQ83td|q0S2hp-M>%YpMfB&0szq?0(Uas1KHlu`fT^SJ{ z+T#U81r1TER-8HT&_YDZk(R6*ja|sAdI^g4=PH5IlZWA6dg>1< zDoMJTv-4wiQlY8aKIj0kdVgWO1W65q*XM^uwL$zDrJ^7ourmVi3mV?x!AV@LGA}9Z z&-&P8y@#T8tot)B66nO2+bkM@(Q<}PabwpD$5>*ce_$}JYi?+JoJb%^G1i5TkD_oR z^b$fEphhKCY*E%nl8rg&#zZUr1xPI99I-r+!vGuXmHhB4KF)I-?xmODM^t<8uZFDt zUqAStN_OX6u;=~CgU230;fiys$rN0QKQy7Jw@+ zDSt|rNLt0$#PfsB_QiD~D;`=z2rUg-E^P~y=N>D=q9b4_UHO%xvAp+4=V9n%Sl;e# z<2dD86>+Etxwis)zVeuN!u6TZaamel*wKe_tg?nGwovaePeJdkkfTHEggohnExd zYnC!5`mq4IUhjU<(qN2zM+&7puE%WKRwyv-%N#f9?o9Itt}o5w9uJO=@Ntec+VB}` zFu^?18Qu36JisqRp$6NY$#+M$q5zm&`I`?a(smO?+Vdo01mDS&YRlLoe0SrI%6-em zXsQO%VEw|&8H*W=7ySv=J=Yy5dj55g!|EOObH>8$;YzzoNIH5v_}@jfZR9UEBTD@0 z)RYub*U4@0G{L|_IY&$kf6{7FOQS7FDkN0~9`LT;zd^yl{Ztn4G0W)gZvj4+&%)E{s4?C)!H3qS6Dz?bh|M*xPa!5Z zW+NAE4f?bga36$K{v8l%bAeA8rso98Yk7n>N-;e17i)+f&ALmwU|1~wI0WqZb-Z*! zRZjTV;B|>P9L1Kr6Qahp7Y@#>oZgl3#n`%UWh;m5>_O{#xaXXy;1fg>gSjgKDMX1` zybR?H3})3U+$-gbGyf4%v_Ad{D7p&G<(8!jZww^SfnbSZgb}Ss3JRUzaVn{j@=}5D z&%pz%2)n%4&_V)0te&$Um0=`1I*4CKVmL@#)_yjdvSTTPH4Fv|L?^$4pL9NwQ>#F!r^xZbUoRuicBoxC7I zoj;PkiQVg+S_RGrbdlxPM&%lmk3Agn9xnCS>i7dLVdhqFU}B={a{%LIk=ZwRL`qf& z%5z2$ncA{lttUs9s~fnnA-0nQx5R-W%bl~^yWPzP(vNv0P_|Vo zj$Qt{K1h1Ia0`ula*P`fRNxoQj_0RYh0hzogxC~Hq~#ig(#yvT8JxdEvCQ6h9lht5 z8(LaJCaw6!O!ytRuoo2 zmyi?2-ZlU?H+P8C=I`}Ui%eN%Kms%Y_h9{<7~hji8DN8W-+6IMsV{QD#}hJic!n$- z6C{HTrjyyVrwT`6LrQI8iiNWXnGupOkbkyGJl%#+58xne2Q-r@%^sz+^bMOE+Kuhz z;>4Wm8P8f^9UaBqoplfaqu7&4xBkkTTf^iHCzBZ{T1uF;4K-%z^rg8oZanz0O{Wu- z!XBGb;nh;%CV0!41zndZp4#p*xUbIO-P7$3P&Hc>v1am-O|7)@?p+ukfz2F}TK!wa zV%HXmDI@kb@aD(J?%jK1AI_)r@7@Q{cN!*Y2N&)*P(&w10gva`D`FhOAgMf-fNZbc z%<5PLu%ICU)y%Ko4c=cjI1iv-#qH}$C81GW@?Wo$(YDJetuL3J!^@M;h3N`4u7bm` zIUXxj89uqWI*{5CiB7AXwFcrh3qSip&t>Fa7Q_1Z7-kkIAaQ+7Z$`|uGkAG7qB!Gd z1f4UX;P7&h8&I_LiQGp-b!AEWmpL100gf#^0@@!nj;6wJD9jUezxbEQfS5Y_?988t zfyQbW-Oo|wmra2ng0W{gc{+9Yg1gGY)$8`9Nf^CY1KI|dn}fIMm~K_~RBRUWI8tF1 zhhJt5E;sosw4sx9=opdHih&{BB=CBcD-4|Q1!agIBmD$xPd~oU+^B4>#6ywjQD}<8 z>EExcLysm|d;?AolLR9^+0LgQrJEYE_K~k!q6+Qu+cd)!2c{9Ou82gcA>CE7F>Wxb zF>$`h`RcvIF7RqniuC-HhR>#RIz1pb7ec42?wXyRz`@VnAq0))`S9Dj7hjy7nu`1| zN#!NgoKex++y3JpWA`Pol&KwXFFBBPdYxKZFCPL|gDk1#u^D!lMaZ=yH;&a{=Q!AY zE00Jgo7F7T3D~`@#>3l0oK(5}uO0q7E_eXt%PL|1G0?{*XsES>aKueAl&Ah%0Peft z6G)^smyB$@!-_`i@V2D zlQ;%}Bv$9n>1)jX%|5@T42^NwHW!`tTdkSgB1GxMGotX|W6($0SC?g(FMBd&W5pC$ z=*Kt2)-KH$os3A?%T)L(ik#07aJ)=v;jH+(Ga~6%- zYp1#_*_!Vxb012jwO>P6UXNw@wSaaYnS~?&5+MCy(a=KqKJ#K^TVOyWzA=`v9f;JP zzBgwle{CY^t_=iVFaWq0q1{v_nlCpdS}w&(-86c}u?od8m_Ijq*6)Ni2Cg12o7&WoZKve(86X=XELDs3J#4XZID06?$>m!3Eetfoc2o+wGl zyO4{qSjnfqG6Dh_1TPfYxtU{Y*NW|<$`j(Kes{R3QMyB8O3{#i!*BEah~n6-X19vX z03{_OJsPh{Pe1+$l3n@A3?wz{Y{@t@Rlg9Je4wJ19F19}Xlxg<=b}q*mH9=w% z#~0#Jrw~82I|C)E(1g81NfASI-~>qn&24?6py8>@I(*=`UgO#x#)Vx)`o?s#W^0B? z?;7*$`G+d$p7q1<-Y;@@bbdmx46$CG2=6B*5zhrLbS~ItJ*Df;hI2;X8`NfLCShM= z_%o$58%TK~V&}Tt^&Th@0pZ+Lv4>E7Q|8mDA%uO|P+|Qpb5~};I-{w5o09~7Gw_y- zbSjbqkV5J}ivTl>=5W0w299z|ID2Bv>+_OL&5qPcB$w+b3+-?qPoH2dLr-a*V$x*h zV*K+B0Ei_`Ha&aa4WuOEto!;wh{)u8h&%EZ**y7v;IQAXtjjk_$_nHky>|#_XI}qp zhCe9U?^y-l4%ZHo+*tRUk%ZRA6;W6uddMvP>PYmMBWMV}LcJ-9yNYq9r4A^#$#|Yt zG-~Ac+zSn90$kyUpFCd5i1L_PL57G;Xt)?5h%Be*BbYJ6*A z`no1Xy-%C?P|z3)PkuizND#;xCHg`!sAii7q%i1~LDw3AbqZ zwYABLCJ5vtA^X$?rux;TniV74ql^KjYEqBjqTFFT@HDie3A}E1o+fbCv%LnWY|u9NFV3>GdiK(;I@lDiV;DP@pD( z<1z7-ajZ|Ph&NixG#eX*#-u0W>m_9n9oS4G*gM<>*e8m$;VR-xA@2!xf;~4#`cA;| z8>g<2mB^U~ZWw~0lyV{QTcee;oYO3*lyv{PQL=+6=t zbd1#EXq6ggDr}JHPv1xjJ`tCu4?_9boOn7<-II$&KSi`C5G|*X=8kI_$@sUVmsA`A z{lF7RCCVofZKXyKsw4XnE3VrRqM6*a66AAZS$ z0jV(>r=yS*7$1VIf^h+=sh8H0cFIaVyDDfiPsKj%2hJfNuZD6+1aOWm=Zj!QmY%!{ zJoa>O@=-*cTH1wbBncT<$@6NElS)1&nn0*~wH~@^SJ`n&?bmgl9^I*}-cmROx<3cA z4!PGb=b0D=m1--C(sQlc&%K#o%SfD>57tJJMH+3G#m#w2q92dXXGCmDf?YPB+2aL1 z)KRayN8p2!<1KS;8J!;RYX=%t7*ka-`e&6NIoC&>4te!SOS31kx(hakTQEGLJyjW2 z_@ui4b;`z24w|U2lJ~fEmbr)#eO7D%ScWNr zomyfh%j$ZI)P^2`{Ol{Rzf&N&v#ig#x2Y@%3E&wB6Is}p)f2C`L~n7xkGrifeAZFZ zB4{q|4lMaf&5;!siG%@yAAVUYBa6ah1lpf(xCP%cCM5%*WZbO>ZZb}%lckh`APx|!FZ&mdi z1?>Ebl$;3usy6W=a7aohpy1KgxO|(F;6+M515qhBYT#0&F=|{xjys9ds z##-$=#WII3*U1r;BZX}f)glFsvH(kCNj+`Jpr+88TFcSG#>2x8(zOmv45Y5TEq z+|)<&w(J^iys>yljLSx{NBmq@gQA$uX2B90<=ENKMzs#N7_BTL#sbO-cyV&^zz)XK z779m$$GEq0{tzv(rI;DD=VK=vJyjRr>f>6Z9mK>C3<~{CR#bp<7q`=DnD3zi{>7A z=R=5hwhB3oYXX3aWAP(xr=JsyrsUNi4%iFa)dEGhkr!Y zL3tzgiBUqiQvJu;l-_dcM;=`aTG~pm{5mFx(N$l=9$7`TfApsOsE9kUrArPbbHP^iL);qn1?(oHX_(%|T4A+5MIM zu14Ff21ex>_coCmgHq$8vHqzwia3#|yt)duAu)`k8hg zw*3KHuCoFQ1rz2qx=odu`1^3$(g~4nTdjGZr8`>Fm$;%d3Xj77W48i>@uTW2z#vzi4s^drpR} z)F~H#=yT`|Qk|Hv(9+I?I7@g4P2xlp+hVf#ur(%TgqO8zTf?T-5)v0E5#weRd%M`> z+9h}bU(eGIW(~_V@E(_|<|YkI$B3f|jUVV9fr`-H(=6_ZWNlm|#Rh!y<9%yOuhVsF zc#NOPmWq+otg5+|Tk2>^gkebUuqjHLG=1{6E^xG9Aje-K0}T_XVmgW|IAI#ajbWou z2Us>5QQI~M}wd>#+YG(jGX2tS9YtLScqv~ zKK!02C2=a>=(L){3$r0{$yqexvSWs;-8}Y(}_$uQa!)<_2-1@ zSBr1iC(iy$pbee=n8M2{?`Z|96UNtkIZd20{rYRmmP>wgN%=r1e)>K70ZqhERD3wy zZM>l3#CZRNEpVHuc4^C7uf^phmiTcJN)Y<7Om&*LzWyUIS zT(oxL-R#EQ8LL{SwYe73$fcL@+BdfZ2F;!RRj7T@AFH-<SLOLY*0sa^zR ze2J_GGoRHkORU@YnNFvuQ~+raPD~u#ONskiW-W0$ih8-N8#u#HOh;*pUFG++qUzg0 zYG-`V&Hd~s!K@sMGU|J*(Vi%VJ(U8!b!^k$iBq5MfT;5u^3?1>V)!}zPy*^0(E*24uL z>_};2q5u*_$h|C2`*rj8-IQ`Qu~#OD>d*Vs!)HJZ-FM`qQMBytZ&c0=)+m;8{hrTh z=k^>JWCA@BJCdRul{z}VG!6PfZm*;jp_+uO|dlQl-7a?Pl=K* zN4^vR$4b^^g%Hi=(ZfqL$x74XOL`=IRpV|x=lFs`mj5)9Ka!zmTG{bsEoE55m!x$I zdZCWH|9Hr>3lqjs6-fA}qRQbnYFbH|yZsfV!bqKs1;P)u?C=AhOO->RzvEX94jT%$ zuGDq@A+BKCOMfGvQ1;Fp6ux{?Fz$vR|L!s;R6z{Ir^tX4X)4ADwHK#cMc~OK5)j(^ z?pIbU$MhrNsF7DY z=qOw`chP%@FPBwb7QEC77HBOu9c)m=EEIP1s&q|XZ>K^#`K@Vb3?BO4W47`8p9_Hf)KbteR$P1Vvj`1yB)BmKjc`N034$I%*ysm} zzuJiX{jo50E=*YQ7_pM@X2CS73?hQxXM8gystmIdQ-O_ZMHr`4l#ECo7A5<6npVLU z1~rbXr{o=p$Opioh`7UmKe5D^q-RBcUMUQ(gz%dZ%^VZ1r_I0I#TF0|%mVKuU9Qaq z7~CXEvjK$y66Qve^|jHu33FdCAD$Hv>0 zt1ouQH^lI#2`?DJy5pEol0F55uV0|(YzV>)>=aM0MZUzrs(D6}j}Ny2tjr_G!;Y1A z&6k`s7H9|Py#uN$<8VIGRdyDWnjU(~(Ajt^u)9#GY__I(j<$<)k+Es>y;{yZe`Z}= z>M$WvnZ+u1U@0DSDq?7BRfLJwDk;gyi@eQDfsLTxjo_9~@P|{JAeK8Wz$!=*V4EVMX)Axb*Klml=C35_N@Vd8rb9X`vd)s8;gn*qOdU0OEbI3v-lSudhomL5J;Q$lu%0=ZG`kQAR_?9izfzBI)BAY+vyL*jS{QDto- zti%!mSkVT&2&Z%rnF_uMe5`s=_`DruTj6y=OF7}{oFa!?lDwtCT{xUPjKqA@#^501 zF~?@gbV0q*xu0juQGGhAoBVScF_oHq+uA%rt7q7TJPq?BP58^OWPDVH7DdyezG04J zP%LD^+4Kl64+>bb*;{(woQgbiQp#o|))UK^MVt0nv{Cwd^MbYDK$?KyzA}>iQjxn- z?TNdU`8Dg_p}qpi>cc>v0sJ;fxB=mJ5o0KZRKeE*PGnp9o}`A0qk=W#9Z%?C?9Zwg z#ht;AmWdS!5>G$Wz>d&=?n}LzQ7FI`rjIhtJNC0_52NZHfHnc5-G#PQ3qubzErwaHZ4+YlCt^x@#664t_^w?_Bl#a^1sT z{0~^yf7eccLFKWPN35cb0|?BXm6n@Nqy**N3)+x2r@s`?;iGPf9Ofg#^Ww%Kt}DIz z$WdW=cXmV4xsJN7X0}<1;U-y=cmx1|m2}~zB~}$>zW*OO4j7>d3-LJ0ni5Ly`1pAF zXdKzXhDs_8!dafBNwXdG1Js3M6EZ=?glQ`zu_)Wwst}4)9XZnMl+i~v z7UHKth%>-6--v2!mMQe(sKOqOJ3S5ek_CsW?wj&ATTl2Di4qIxgNtInuFG#iKHM(IC2k<}DA)nEf&7-qh-ni+picb3 z!E8hR>I`r$U{l~46Ci-alBLFa+J3_Hj|?f*C*xSc8bHPC1WCx|h>J^RMTw;as z$_gT8xqAX@=W_qNhY~HAg7(;s3TGoJ#SvwWPfqoH4%y!8fPykOX!mc%qQ@%iFHBIJ zaW137?mHO!g=hrc);RVFTqC9vvj7Lc6X6rD&E9ebvkCK)mM(UBZJL zcicu7v+E#yVmr{K5uy;hHE^(-tLm}=tdthJhrV3aJsmjxQE6?rofdYe5!F-4``3eU z6Fk8U?Z1GlkDY&MJS#WpvSfc{!&F&wNY0f4iSex>!#9dr@U!5u}P3G^&;#nKF(4+zd za+gS$R$%85XabD{Ub|~i=V(@hg#hG`OS~Rd?reQdwk(?N+vw-WF2Y1wpQxJt+Moaf zm`7#*oer@BB_R%K`yhnOIE{ASg$l_AOs(zb0T+N_*J9ZZ!p-C`+F52FfkF@k)rtfh8%2td4b{VshG` zIgVX)=eAp<96?iD^`+wE*<(?mq5KKy*f42r0-|BDhT?6Ne2Jn$rTx@*1GizJe2R+j z<|DZMQTd`xC~ij!CnZ&i)`}DO73&Sq(=*)tdap$S!ZHwd7a_$B6<4Jkwh78kk9XiX z>~H$9qwj-1JXLA!4HPK+`PDg6cqIwd78cYn3&BuGI8Faw?{jH%H~P|qJjuST70oO3aSb6CaA;kutDfjd1KAo^8Td+RXQKuUxz5;Nox^q36yzt`bRXw?Be}5 z&^a$yN?FzVy8CprgKX%$Gqz>rQE-U8# zaj~JJH$MOt#aPa;5WB%sE&kVRQ!mVJL)vyt?_HBz^GSq(W+xmbe8kKzk&-y8It{x- z@-5d#`n0n%Qz3(L=+V3mf4ZNGo5W5(Fxj1&{VhhOV~L8H;=h;26vW|&za0R(Q~+CY zPdx&&QKtTzF8@jA27J0N@!>VFAa-)okiY$79Nlq{m6i845uEgq00^>s!iadU+LmwT zCur=x9;`WEz44h7P$SU~L<)v=E!XbR78YfA|F0JSwRUU7^p;kL(fo3Zo(Mnb!|ouf z7bA!lbdlcJiO5cN2TV575w6vd?1n(y_lr9YW(A;rF=QTOtn1NXFRLr;%YJz`Z@Wa0 zY1G~*pTdpPgtVq*XVkfhv;kL=p5P2QV@&tp!a+AK!38ck1;eZ$M1yHp!KeRxjm>#A z-HZ)r+?IiRr~d#71RcRW!^Qd&BDc34xF7s;NVultYk%;I<+|lT7dHru%r_>-55jfj zGEeI*`|DIZsO0~TVFj~xS3vtH@FrBth8TwV|8f zE4J5SDDP`CSO%(6*6J-fxEe}qG#WDKhhw+JeG7iuPo2nP{wyN)LCSNV+2b)3ov`iG zI>TJn{n$Gc)ICSexLUi?^+)(Ay&MsJqu3MHMwTt8_a{;zTEtakyLeYUfhZBQO|TZpvHk|Gn5_2aX+;Uq%ptQ~sv`FmR=L>cS7kQO2MCwnw;E?+frg)kl{mYd zz959LXY_x#X=|uI{|2IF$dN^|Kx1JHJ`i^zMnwiW0Q>RZe~p6F5(*2K8op@J-;CX| zcfcVC53AE>p4{wSV-MXM(#G}0{|s=#J;-1G!z!AhrR?_?-6>O|l69U&hsVm3Csp-- zEaMCm8$G5V&7ur9dj-Un^Z55c`RxWx^AI7R(du|$b9~ugRi&thW zQjS^;=IGtu+TxS}pyf_&c>=%&jAI_I;8t7+$HNM{#dvQ|KsQj>AFuP+w1%n=jX~jt!qg~NW*+U-{ zZ>5SE=(yz3?IdMJ28uGTcP3@J`u61ZY4>*J5?t}V+W3Dn$7%kX*%E@mIj0Mg({Hw% z!s5Xn``?Jxd||kT>;J=NZ7p=6mrQBp-ht#Vb3N~HFD+D7Dq~7#mef@NV`y)OwEaSV zP94x(=3lp=S077+r?8cu_pvWxi?Kv)@Azu180g%{`-$&84 z`d)>DQtK%bnaqa+Ax|lH2LG8KXkh|H?cqeN(q@vOH`lm;sw;kITlef*_A(5mN6$02 zPu__|iQXx!Jf0P&P}1Vg6tJtjY5Zc8oKI1w1CkRUB#2joUB8XreYAqOo!VepNo+=@ z!SRGo*FiIhA2{{RI^~2%7=jv{84(qP2Jb%@@LF*(We`rQB-<(|9hG$W-3YbhkIX!S z6WUI+9<3U|BjsNY6)-iTcVeT3lk|5;Sn@1E&4Bjdi!USsGaxtrNMC1{+tSAya1d}0 zrF%Q_a{Wl(mgddgs}dTAm@E3#hf1&2H!F7J#g+t3M3^t4iX3;kOe99ZEKQw+2mu1# z#cH%CRce~0N105=Vi8L6TJFRO-e6-*yf*w|Ah$YYS^4d+oWVeSx2vQurXn2UCq2;0 zqg1+GTvaKs5y`l$(sAzscQCD}6?LwvGX8`qjl$77b^AnDk*5SJu?w@OC;WOhIw1<}o9c#kvq~49v=^RxNklMrq(78UZx;7z)tPc76{gV{lR zz&!**&8Z6mD_tIy=SRqY5_TKXZyv}@aKf&48cJ_c^Xgfa0T97M^5Z2N4ufW&=7fHr=X*E9^u1d=+iHIr4luqx1#O-mf z7SND2lr~Ef|7iMSVGoDr5RN`6bx@{QI`~?I{6L4gg9HCZ?y={c)|WFfNvk8&WtcN8 zMAyc>mZmof%4Q!h2-p6D#no*+tU@|VM4Osjkhxgz=u2UyA_b7t;bueuXvOUf zfHG6&gD;IfL+u$3?L2~J3m7Ubt$}gM5(!E@(g|gjJ_p8)=UGrxlyDI}scR5lRsTJb85L=qg2VVrGg5ivWN{6Hdipo;fy3 z$_p%Cceb3wwMUfx$C3wmdB;S-U-st9oHxtr_7A+#`3>J5EG!XPj zz+!4*3{6TPo&U$}>yjmX@W{_xENj>OkFLvb|4K)66eB07wcIkh5qWIQ3lx z9&En_&wQoCp5!D%X6b!SrT4w8vOci9umH+w8rTs?@4HbP_z%xCx+S?5{1QGb7j{!( z5gsVm>L?wNo=i=;2yZ_*29L)=AtYHXIt72%d<@pg=EmPDP6PU8jwdAi`VVQtp=ca_ zYIuj3t2utxtkBe?8A77v=rrr0tG+-1MJt!+lwCD8ATokk^QVHx6(V;;!e z7Tridbb`EyHDBAll});qcB_R3!JZ-wh-xwL5Wz_ze$VjE74KTr3!_q;K~!4ZEd74U zZV_TE&l8V>D(WE&p$<$z-Cb*BQ%!#%UGVfgup^OJGUW>#uUXQFOrRPboF1Mi)5wlr z8QManRaW1Ur86$dNKM}TKe$jS3?h8PA;$h-Ln~56Y{H+(j-m#7ynEX6bc@Y~F-@@K z08Vi-&_Ieq!f@L>gVGb{wTwH~;XwS!Tar?^snG~7OW=#^`;)^B<_S3}NDy{M9b5q|Mr3~coXRsV zzFgf>_EZ{f!t1wEZb^OzLlEN3uqV7FJV{g|m1Ebl0@MXZHFl|KS>;9a`=V9KBP{3o znCqqzLR$OqlumIp6YvR>1p#!@eFKCdeFGKR4y`d|H3PK`cHs7wQI|ScBoGh^up~{$tY36dYbAt*p+qvszhHrjLh1%y?L)oa?oA!2Pj9 zhR|yfk-7HAvnzo^QcK;Mg@plYd5-0*W!o?IocF$3k{gl(hMhY%{HNNiZu*G8zJy3^i^7iQAM;g9ZC)wbR^y$V4!38P~% z77w+e9!Vw3zk}8vlF~>&Wfx}^emifCR_bG|J!DDu=4$h(F%A^zGNP9>ZxfCS%Vqr1-LGc5Lt^A#? z2*thF6zN>B=4QI0!g+C+qcw3PQRWN$O(`mPhVfH{LX5TuIE>)A3#O*}{@BJDV`HO8 zP-3SA4h~EVthHr{VZdFE=m~YcB9(QroJmHqou?~>*2G$%21y#5vJ{96n-MAVWXo1p z@F+tc7nGQLiI%Lm#P@umhSkuoe}` zxBop2b^O!jk9V+ijllY27$P^HGFhKf-0?6fb$+U0&XGuTK9bwf;QPbvEhn8P+37=Ay*bz;}#t7{`Tc zcKDNXGu*;1P16&Hw85*>R)LG_QKe7muw`XE;KU8P63uJ3)XH`+O}=mwr$(Cv(jdzZL89@ZQHi- z=RSM)?Q^>OKCYL!Fk?l`_{NAa_*afh;ofH<-v|^2{kDau&AeB|iEo-w^TU!fvTsS#Revy>p>~-ePKOHL%8iKK z93udiFs`1XXs&A1q=g8e-;ENWU#gwRG3G~Y)idBMH_k$fBtAQCh@qzQ&(HP%u8tA$ z_qhk#ge`0Oq{*abK!Fk(PZyuCPe#Y-_b&$i&6egXdV<*d7NNA^8#5^;ug>_nbuV3m zeyE;i^ZO`+Gax3!V*len4i|(=%S(Q?cgUL;NG${~hS@Pdq6PFSMbxhFkz2TSZy2@A z#$}bHOQzc<1(Vq+eDi}l)tf^ajbAD)(2zm~BW7M@KwiOJqzc-Q8jwJ^ma7>O@RB;4-a{B%LkiVgOb5t#_90x*U)!lP$~VxgOy{|= z#foud4l%|_?x~v3=Dy{100xBJ4cU7r_o0W2^;c(KTiv90>!pnztJOOt)xe${5d~F2 zjG2!2oB|@p7H&8Z7i#Xd!m2{kB;x*Xzg~lLYtseC*g~wD48Z**xawpkdFx_l%~1zW zX~v~F}~^dNsuT6R_*D-6*zGQ zbe77i0xJ+QLcTJ%|1X@1`XDS8H8Oq^_;k70qk!l28zLS}R|sh9rB?=#xeg(9=Q42S zrD%~K(vjAxtSm-O*jSCF&L}dGW>Fwp-}BMG6dzo6fK6^tgWf$xx|*!OX$lZtp1{@R zG68&p9nH5yuzgV4d{`Z=_ccSoq}%0>nKmYum5;j81{g_uZ;`S7MJ}Vly8Rl3+3Zq_ zU^>h;-Bx|FFv9b6-{+6U_die=+J7B#s5~CYFEgbSZ>C8% z$3wtVVG08Z-K`b#bCV|GGa9NA*w4Qs_h8nM*a`|pfz~*ssKJk`tZ57$m+C=#18^tm zXavwSSJ%ac7iCqx=&>zEXwmOgM9XV~+MVue2?hx_EY#{zX1-V#rfU!*O6&f?A=WLK z>M1v;7LxC7N#~;uysMi<)W_5#sE=X!ku<1 zm)HjJy|wcTj#G)}KKl`;0z)(_A$-0U3h~5m?8D*`*R#OsMHSiwRvWRDQxQE{%^7~s zl`#<>RF*ng+`7n!1-^7jLf``xjTA=vz3b-`RWwg#)5WU$Tk3M}0?wT;%vRZFCOEvehr(wyaISDC+B3qPJ@25Q{heozF=kX=tYpUZVelIP|@a80h zZALGZxuw(y)J0KE!v^-~nK0zT>PD+H+}>|KRENj^IQtd$C4zcu$G zfX;~|iL&c$6#u+OKe2i{XQ^f1_bnnWR<23&2j2B78!z?^%N|Iu_D;+fp^O)Lh&|YJ zNlU8&k%};p*SAW7v&y!&GdMr=9*lH*Rc1GrwsqL!I+&$ zZ-&9bv!UsIk@0Lct6^^>%{og5{aE|6de3^~P?$1#vY2%bQgJ$i>uyd=CX2JAV}LXD zFD+(W;O~SV$<0z5ki26>`lw8xvFh!sYm%oCuX)(aM1e3e^_Z|7piTc6Hv~fx81bR|TDJa!F zMVEgMkraK(VG-W?fmy@S1@rmI_naS5%QncUV6I9%3EKxLiAuPOvQn@*H<44?bD805;HymdF5Xn^dq-f@Q*;CC?H2*wd#Ar<&+VEN zg8QO{zx2WuPy{|oD`_`*WGWX4?MPO0xsP*B!y`Bkrl0aMO69b0EwiK)B+J7des}-j zocInd6<$v~Y*We+_zp-qbBY<9Lh1{?@TJ(ivn|dBKmx>dXvP4( z{Vgy*1^G37>9xlvM6_SHt35w6^+!6rcfWVuw;_%`M5KhQ8Uptx3TL@A$;XDmJF?U7 zTF;YcA^$^jk0pS-=o0&bUfHtfx6Q>jUAH270D>V?>fiG`tDrWApQGYt^0wskD^l61YEAh#o^#*A_N+4Sves)`2n5l@Oc$ z1vRCGMx*{tI^3Hp)m2oPA!@g`$+ROXg*Fb zyO<)EAGctjqAX@(lP7<~6*O+F> zK9E`nMjLN=L{0O-v1T{lOgM&XH!pp=d~hleh+L9Xvp#wuQb2*jlQ9Pt!T=Xx)Q3#V zwZQfgecpX_jo`jxVNk*weB$TweB`7Gr3;wx$9}RmbT*m?ZDh8~Cp$bj?D_#2b0EO; z{4-G96Bu4v7;#2Pse>E1TF)`Pv2skdw>uSmn5*a;!ZvP-*d(5FgyjN@#%T8o*2hQV zJ`6+CbJzN`hHd(xTYB*wQiGw-iOWDP3O$JQKo%}%>z(*g*B?)*hOp|rXCNe&WP0|s zsPz9?t{X>-l<@)^7$u6tLV)>$h#AH>ohN94%iYMej@$Z_w&sTBLRnS8k(M8Nf*z9_ z4v~>+5rH0Iv)l#oQCuhNj|9X0p}n{I%XuCJJO))j%y3NR=G$q4`z`qI^QdqU|EJ#n zLo^2yemaND5x(6E5DrP`y;xqp{tIfff(xF4MZP^5H80PgHh*+qJGU>|O#%}!fQ(j` z-qz}!KnNHJp9~K|lTs7!Afl&CTC>)|Cz6bi#U8tIbZwD45aqWE98}4xQKq~P9Khch zDmT8Z=upgRI0wXwu1jab8J>=vKoYK%kXEmS(TA3X!M)ze;4F(qAm` zl(SE>#2)au;uYeF&H=pQ>Q72$w$ko5yCB(LvJ>hFpG7xe&WG2+D_=yZIqLH<(-oSJ zS9n8T6W^WLlSpX<6kc&0H=LEzqpT5v3f3toD_5#4*D;1QMXaX&Wlad>iZ9@J9jpi# zI2w{E80+H+jf`LUZb|XD;tK=<%}>_F1#L;cj!|XAlcgLSGcvMRBg8T~879Bdi$si) zQXt_yoHv0n@$2k_N+@zjQ%Dnbx{HRbbc0@@iwvu0W~epj z2oQwBLIWD&aAvGh@|nRM+LIVudv>k>P(7y=IbEV08BX-BfU}2D2{(Cd8)Qb4ZO4Eu zFx@RVQR!p&>ox-Zb>;=I;A?8Lsasju_{*0$2Qn`xm;{4|PB=u8P$oFlL%z7aDB?rp zBHLiD?|Mc`U@nwRQJPJ0_MN2XB}y%og>acnCVVpVcaB~-t(?Cf6cSw32((MgzOGdW;rUY2&H~LSr1S}U#p8*E-q?3GI=YnyhDuVFe;;(!an>oyPXZExZeXk z=k=EAHo6GD10#c)jE}!ZJcG*jnlL~wG*13m8RlN z^6b2^8B>uN)jm*V64uvp`?PGxd)K z_x&nAWx-M%7^(e?9gG4u1c&pU$BI*ydv_qwZgc>c*7QFFNlYDw43n8{p_EK@ zATekGaRILy2-2p!S_7yrM>D4LY*0^zr`uVWP^SP^tMBXp1c$K!?NzQm%Z`?l#C!jl z%+x#s_6$RS%S+Thx>dn<8Hl&eZ3h+4!W|7q`PIqrg$MKo+k-Z0_F-{?`m6|~u)Yy9 zF3?PR*TV=6D;n5yH)h_gOzZX>(`UwD;_jsgZk>fdrNaFF=MS6gSPz5bq5#iKs-iu% z1CNHJv4GvfJH8d$2G9z&6g1Fz)P(R}xE&iMH3MOTIG-HdtEK3V0l%n@@K>OetE&m( zwHv9L$hwf7KL{T5I8U$+64GP7GCm|4h}82c21i>2(@*NjV zDfhz$Tm{^rbco z9~@&^A?H!PJ^m7_KURknz^wu4?hdx}J@iaZG|g7I&s4OWmv7SDV-t|m*8BVnfmCM- z@8rw{;I}0sF=O<1>bRE`Bp_5UbRX_j6-#@YxBVWeu^(VT)-0JjZZTh{wqh_*xQtj!X(_Kmkd$>W+rK$Qdmc}^sJT_?K|JnAHxOU9^xbcsuJME5f$hcPv)I*P zdiJkp@GkRiM<@?}m{heR;v2-NG?IYiZ$vMoN6Sbupq_P;sW;QX*nkj5SgxwHXP~$u zvc@-sDH-PG7jSSAuZ;9JT1x_zN=PjvJb#yZ$6i(X9U0_$`B2FuTEdxZT$#BW%FhTN zb6*LViRrabS9t**qzHG}mx|I+m7z@(nBC?BM}FzF1B8wZv{g&vljqT2SFjSeX8FUR zZjP+Z*0qm1KIbJS=BZ4xl#2Z}U#c(PJ6GdfSSgd;7*zhwdJ>;deuhHx-{xDQ(3F?h zP+jf}NtE;~%3GpHSP!W=|5Pxdf-3UJ{()Y)vr=osZz2_q#R=Im5tL#O6jWNUXXv}0 zZ0Hn<-je8kjx07&%{kEsPInCA?5-3wu zjJT;xVRz~*5HZ{{mZ!HXZT-eU%=1wkXl8}}Y4yygN))T{8UFGyloL(@Q^y0Ur$W9$ z3=AmlUtzjCeF4HHRb;&(HxV~H2T<7frQuBb%W4xos%NEAQEpWVjC1(9WGD$l?7G{l z+u(BXyeTL3fa!;0fNr)!=zmrt?46OI_CrMrZG?=0Q;~NlERHi4g5Hz*2<-@{y#WuY zyfJ|n`nz7yRK5&4#mcJq1N?7Gopd5CCiuASQxIZ!7=Q)kqAoC9@`6XxPkn^F)v5B! z%kd#gJmwcP8pm$0O&(RtW0gg?78ZtOGy{llIEA$`Mh3w!hD%$^ZY4D`MB~fR4=GA8 zgcB%|D0CRtEx=jf7SA&lerwgW^-CAyV_BRLMI>lgXy$DU^PQY_zrrNkAdD=NjhG$o zabk2S#8#0S!(QB)@(B;}n%5=*@M7DP$H^I23z{thNj*z9YFgWr2{6ArYW%V1Edyta zYK3ZZEr_>0ZQG_cx&8(tCk6MAB~F1Rd#Y@nq46P`<`kP@`Lv0aO$3C7l#NB|KIouL zE~)(f(NU4{*m{2%fEQE$OQ6t|Fh zo(txKRd#T~Iprvn_KOr&+0&U2r^3S_a!rFw@P%RUYjavm!v+d>{(F_#4koBE9E!#q z&1UR+fH$L&fH#A5PS1W1Ldun(UD(j!7=u0V>;;9CI>-xL&y(U8zqw^)2zuYRA?Vou z6(JCwmz<*pPb-w_Hk==L|BHjL<{nDwr1ItI6q!2FLOsa@pOJi(MH^l4z%uF}6PH0{ zIe#M}s|BHnx82aCg}#d*hz(NU;)eQHFHw`55*T=COJWi7?6|WkM9`{@=;D6tu&^?u`aG2E@t=A_*m#0hQvfN)&m z6_%7}>8cn1Pek1{sfO%+$onL-yFZ8d)nkZxm9vIC!>F~jax;*r_71i0Nd$}~Nk*im z&hst>Ahp*?LtrfwwTfYdYHONz!3^?bO+@MBe?DQ$vJ0gr#5X(?Qu5&NWZ?_4EGEJq zxXV4z&r(RB(dhFfwMxIloMTYSD#Y8oCkHEqgZEXgYF^8rATMihU{OFO?H0-lZo`J8 z?*a?4c=y2A1anXopX+6rjng%?z2LHuwU8QC6F!g3*DdGcKd03~=Q|3&{pmzDV{6eB zSGfJZN}rZdiYSr2ozdAHjMASmQTa7(f*%LsRL5$abwVC#I_&ctC;x5UaKZ#QIXOvT zjd3sk&bXe|2AjTRsXL9GS*6Jgu1GYqkFT~3LGf6DmlK_8=4o!+18pZl=UyJ!6G2jc zVv67Ca@9pQ!cnoDTPHi^fTVV|urlf2q5LDN2^wVvAlytB%K--kMAxTmlI#Nt)~Z>c zY0n6eOUW1bWP78^{i0F_nk}jBY-B8=!t4#&oBi@q3sWDUUU5W56t^JdILK&JzOb1? zXjy3j@5$@S%Q<$LVvP0&;4ZkU%lkCA?mKn14f|z6iT6!?l`>KDC4yzvCK@vz?~zP<^<+37tR5 z`bik?W^l-fP{aQlx&14qHA%3$;74wLwJj<|D&JTxLQO`};sBLqpm1D7&7a=-`|?b@ zcvxIs-YpwB26}ce|NWyQzLEY}<3RA8S$^V#VgFGbSK=4`j0l5etiIW!VHXuZB=fUl&(R$Ja7UP@k81nvMpU8r8# zK9Gj&5ohWhe@;-za=EDtGQl|n;&;xdS?9_hri1_KmF|YG;m^^XRw}T84oF62pR;-F zP4U7016GG`(N0EC9`csN2rKf~SMOYGXD6KUA%wH$4E7wXrz+1=6)#Df-4^14tt}Gf z1z?TL(EwM3csopYk;=Q%N2(iA{Ir2)DT}%Qep(eC?ac!nq}UalmEpZLH){L4ysl~% z5Z4Eh6-q_nlYQs`hU%>Vj*$>ROF5v}5oi@}dZ*A4S{J8hW$rLSaAJ%(pleu4BS#@jnC+px^1=(m^%QSHKhtk-d zo|`i1T3#V@ZH)FZ>naUE#g_XiT#1dH$2&a{`|0o9$2c^^sQ=~L{r}$PZ?yBTmwZ#- z*A6f0?DGi*mfZ?LaZq~Zwh_eD#jSUKcH->K_QKfVE}xt%oY5Xk7Vg&LUdi}BniK}$ z;IIum=}b3S^9;s!TKwOMoHu4WFy$knujk_k9bn6zp#3`t0qz+7^)+(>z?>Yi?gC?~ zO+nS4+6_pmzv`_?>O}4@+yNZEVeG$6JAVmZnF4$P^D7_MTHP@91rx-y)Jv>PS#F?! zy^QwtCwRTpf2uPl7w2dp>Y2MC%P zyg1HLNB=PwZC>Hw?K^+>sKB~fQkUmY+RTy9zqi7nar=ZC4SW2!RLb6r@oqU9-f{VH z*v^LPpLFURYI-JMoNXgmYl?O#1k|M5jIOkNHzkP1rWkhJonGw7q*K;?G9|k=8RFw# z)AJ~*GXqRu8?CeT$2|C}9iki;ZOPHI|!#4F0_+R#K%Cm)l0?Zz{T$v~g!`NNjhi;MT)M#cB<#1|v#=i<^v z3xsd@+T=ZRRdC+A8+DA`iX-!MaCKWnqs&XLC@JR2sl=EYO1|T4J+YKT21p*4@DrASpgTTIsMxH)0(>zO- zHz>h02~sd;=j0I>zpP%;bS*;Fr-ss zAHtf2A3!p*W+=NNi_Bx{o)&bcVifQS48wgo@uW=FV33KQOty7BOK8hw|H) zQwfNuYihXb9iBOxJtyF3;$i`0Vq+V)?v5^xEFI?4O>TmyFi44y3obOUxSAteFocJHZX$hC8bx{Q;2_P~RZ;-tkaMuVj@H!op@AmeC>5A03T{>gYhp^&34K zZ47gc3|%4L&B)}l=5sb#B3b)=8h}~5uj@GYnghuK7dKh%kM?khF*(A7(TUIy88&z;x?px&|__a!ef?NP*xRhHlA)q?PJT|vU z_oFA*0qD6&q2K+vcWVmPbrfV7zhtmWNBWn6HBC}Ne5s(-gDi=vkZjX z)}jW*n{0wy_C1ad_P6yk)8zpZD>Qo)P&mGFL2l8jbuZ(wnILKsZ5^XjkwLus{h6&SAKTCZY)l6RG!e;OigQzg zWSFP}kQMxPIEg0LGxC4VK;KdGAb5Cv-{h{B;#~Na-ge(hIZSa)72n;SOD0wK7HZlM zh~Y3&D}~ZBOqfp$n9}QKNfgWV73*0Ih_%p?F)rigMK)e zH#k22j~a6anmRLe?y_4ed}mM0PD8R^{X_L0>4>SkdL3+xFH%61dpyBtT6~A2^o_}Qq&Myxh30i% zg9jEddP>HU7|Tk@iks~jM7%gLMKnq0HS9iGwKT)ye-TL~3RqV{uUjT59NvC2xC4K` zX}d^V#zcjX-Od_1sVo*~{GV1~IY^h@Uc?d*j&%8Mw3C+7O6qA)b9_)Gap{qCTznK$&(M+2`$g={mJZreiR~7uS z?Sa<$asuX(h19ECA{~!tb|IoFdI$&g_VFSBtv?pVN;(W0WF8uM&=}^sDpLzE1#bU0 zy4J-0+0~u>YsIR<+myKoXa*ruUsfNZl!c045&{F;rQ;Sai;`u42ZmYQ59kF%{{+{? z@TG{IZL1!5XCHcZ{jwvaafd1qUrJuce_aR&^i7c00E4lp7Q8iFu>Klyc;$_xsAhp5 zvCpoa26Dy~h>(vd+I}z{i9}L&Kq-iKv+GCu!=eJGOo%u>B2wh%Dtvu=v^!ND#Od5J z-=RRdWIR2kT3vr?0|9!vYgddb&j*6!P>7)vo%(M7!FC}SJ96UQZ?^3L#059TUNu%q zhe}y*&^TF&aIKegF=%NMER*$|Lc_nz? z5LJHwU`oRbg_rY%G?4QtwKUTBhcAf^WMj@_KugKyqo$OH5k1ZBvc(#_F62HX(7^hmdOyl5DZ*9KqU z&yIrtR@!FjYbW${NVFuTdQJ*NI_Y0OKTB*)w{BqvxysZ%4p{GX>&PrM<#GDp&He(J zP15$r`Tsv4Q+%|jIsz8IX_u3d!d353F%FDwVp)a!J@G&HQh$}VnHe+c)2(KsWiM0C z>hz8eNarocu9o~TqjZf0Jbl_R_Q-?vLgGXLykk8uc-*z1no12;^h`AvjLJ#2V(2v9 z3KIr~n$9DRg41LX>LIor&7VVvGQdU)d+h9G>_|hC4ql{i?AgZ98)%M2`R02 zVq%$Kwk~I3IE=3ls1mQYl1y_zi+R)u<}y3^Ee`AquS|jct5qD_Achk$&0f~an1&qL z8~$30Dsd`iAj|=}m&iJUsEt1=FE3)+b2DfO(E$<2B4S2}~P?qZwzb=MZa_ zre8#KZah^qIX*(E;&29*u&C-a?FIt^WjILp?D@7yQmB%`d?an}aWS7zlJ~V=PQ3^xgP>`osc@8UUWy;9w*9H>CRjV|jv>v;2&)#j8Wo zx+A&Vlww2*sHiigxAa3H<@o?@M2#8H-6EjGjlyu&fMrtF%HjHu&$sFSF+1t@_STnN zL82y|=W_?MkEz?;q4Yam_7hg#^JL)V>AX-qWVQNi1g=cxK7C*EOC38L)8d$FyZ|-d z>oK5+37Ii_xc@Rfrq%%;ehF!N{k6l)g5CmiIhPGllrpPdC>v4@^@&5c-G9tTyU!~c z(+Oi<*+)DA!#}&!5^Tt4+T&i(FB_<;s1}~NteSiw{j^YoR{_rB4Y)gIR3See7Mq&O zNIGwJM}he_E{ET0F71m{JpYnfRLq{)3LbU9`{}BwTnBovd7pR9iyCxR>hY>Z1Y0v| z3RXQ+^&>(9_s;O@X5U=QJLJq+&Xw7_#80mDI?ySbl$fHg&jb`nayZ`gb$210vUBGG zJdX%04_p7oZAKf)v|gQYp}V{KdxfuEDyjJ_OU`2Lei6OCt3oa8+RH8hMiL% zVv6c3!vzECxlTvM;cbw^g-Yya;o7fgJ1ds?fKu0bgDo^6@3cY0z2on(>4n7@{;n$j zwIv^2`TZ6c_H27}uaVh-_JD7Bx%a$kk`Qg^v=Sn3JV8y z|9za|pGrahtmy7&Y)+5XP_52%jGvXUjXBADnk93xFOy$)aBF$h09yI3RiuM9EhL((4d#MTRJ{J7tEY#NqN#g}}kdPkNJ(JAhUfB#6#% zu0Zg;gL>6KOL0cpAc48%hw(H}vXbule}Raf2MgfKn}?aYBSsmgM<|RN8@i~1A8_VP zER7W1A|SVYRgR?_#dgIKDAD(*O(#Ksn^bs$OB8AqREx!*>ZIf`-7)^YDinh!8cq*F zDz7WLKc4?KpmA>+;2fY(*lM##kS$mSMWRZfsWn81jYRqW1w!8rEO^6EkEy2*P0Mie zEB+gVu1)kR(;5wq4BTplk7rKApAVw<%~170p8Q%Yg6iuf&~@O~#DS8WbpW@b(wdU{ zn|?-eFN8B=TB4*%J4;eF%#RaSG0_mO?*&m%j#kN@1tJwv+a6$|qoAil2DwpkrCNn$ zC$15nL8*372wMH=-*a{uyA_N6Zi@1tCq{H`hXHlI;rCLplV?KAyyunO)5(v&-;KLq zGwX1=eDu5?&H#gANZU$7D^sF~#A2Uy8j1N2-rzy>@1WC;5I*OC4+EQv%P4jPi%JIX z?6*j!RGrF6O$mlo@Kyr;W z`Vl5{8*7cEKV)=gTqN=B5OVW;M%YrhVVx+f`T@V$HK6;juQ|fMWT%6QJ)ex>*9o|@ zwaSZdfq{0$4k12DZ8qsPScshJ$b&7(oM;_*w0tpaTlCs6M^|h}K?O(jUs(WHg$lx$ z=A_-wvI3fBQ%@z-YIQH16d@ljZYjE;JFl)xW`|Z%>OM7#%S8!7(u)Fq|`>g_pJDM4Lx zvn~5wmJu%j@b@-6#;Y-h9y?*>#}YXul;gNK{PR#a`z zPn)-pQ;1rqeWA|#@@n%TQQ37y6_~H|#r;ZZ3>o_cWkcUf<#8`HAMG0(O5&Inbok@z z%>11(Lbf%wA5THieA&2FIrqKFIkGu3OFod3sJebfv3%>&Bwp0XlJc+AEgz8hN1j~& z6tn&N>dX!I6BbB1L%0ivEDbPjUy|{_A%5y!K zr<13K&FeJcT9+pZe5--4_zUMcG56{siwnc5c1y?j9ap5YBVJvncSi-}kdAGt zuQ=`3X1p}Df~Ox0I)hE7em`;^$9>aGoWE$MA#nWB1<$or!_`gU4y^ERK{w}hW;C8ZZU2|{U?cZv14Z1UG`

oaBzXFsY8P{6j1_1rH~mRz^lT0* z(rpkp9}u*k_kTRcY5V`Uz;e|E6BxX|+C}Aqy~pJMA#A5Lu->KEUz}buPX={0dLm-K z>`#5D&aV+)Ge$rnoIYw^9SOBrS1v!s73Htn*PiOeah1I-_q8ji@hvNP?RKR|<*IQUU zV>I)ohIrcVPPq9tpv3j&1x4YsXe4$Cj7WFlFMgrI;<3u}VtYG9h;1^I_eAa+4HCP2_H z!K;BlGlA$*Kprz;xIMqNmd4)p-5(_xa3Br88m0+KlFPHiiyyLRTk>lUPu6)n8!kFh z-Z;-v%&Vg!PeD(|uED~lR`(ePR7~QnXsn%yo#L8G;F;E;+gT}M6j_t?v`Gf6i4lto z@4G#P;GP%DSG+Z!ltdTY*L7ug2)_3J+{)kvqFVkn`xPbRC!KxMJ-&1{eND>U$ioKI z%0d^*ytG>?Cd>rUa3!#b!9}XIA+3P@&Raod(DL0Ks*LZF>DK;}l9Z#yAbul)H#wQ$ z*48jiZf>^B$yJx5N0|lX>&++W-J6j))#iL^?_{tnH*iHEjdmUPUV%8X8D z0TmNQWxFs;MMav%4%){H{rcU?%Ey>R=QLNvV`Jl$*W`6Q?__BGwf*wn=G?!ggC-b& zC}B0k6-*tTkLjr)$lTlx_{UKk1$;4n)kl1fr%UOZ+{Pqqqtu$fT|xrFnYD=DQQh&! zV9)nwpw*#GxeST;EcK`Ygh_fIhYxB(PM%NE-KP^FYZ{ct8q=#PqWdzEt1cu$5_R;g z9fY+PPLz<~q|`fdE{3V$gt!<7d9B1%LsbR}CaEXra*rn-fsc;@yt@~B3z)T-u#zgY zMXj`2-&`}!Ak$l{G1E9o!5rH9CaV+LQ)WNM?MZYwwH9%0wo%`=R@mkHj?E9%kQ@rX z6M_z_cS64+~^M3j=!>dgmB~e-` zaZ1LePHxh0azr?;<(r?e|9dh4m*J;%8P`)X0v03JW#XPZVmj|6qj=k#Y3Rz0$$vzRN-RYe)DOF?ToH z6$#7U=SYv%8WG}s-cmxVuJ4m+zH51piCnED@K{{mJxxi)?z6LPYFKUa&QpNG={kd+ zkPO#QFZE^kaqU(Wm3S0c@i^!a{(Zsv!+f?>5|fQ(8J`JzuZBYa-mz3u#(Qf8&fdS&xc~f2H zE-66j&Yo%-&aQNzmRlXKz*DsOOcpncM=jSn!KCmBDI=Q9#VWCD$I9wFmltVn1D)!$7$5*TVp3e?o#vc*8&J zuB(g*wfb?9_P{s)1Y4(f0D; zqdL0ltO7#Em50xJ80f4VZX2zLDj=2u$DLv5Y^IBAob!b-Uc%!fN5{9t9%wC`ji}+O z1X1O|kZ7bmM^+=Hh(o(8KZ4coJ0Tgq{E^~6xVfywR0THF3_3Ko0QtOTDFHOQ!gwRD zhO-KE7$$az8vNTfDA#HaJ>$cMcvB01hfh3dTaIOP7c*4-4uD?k!BsT1nh#srdyIB-a*EbFv;lS6ed#@6n8B2AZq##p(9FH;j-VC~zYvG;=3l z0#a0ecJ?iILQT(Dd6AzaYN*C;1;>h98gQOePS%(CH$@~Q4Bc#!{v_`${nMr#(6mF( zDWR?5vLL;i3qO95X65ZEoU1l4%jXTC(p$|DuA$kC0H+&;jwXHioipQ%lij(Bmbizj z9VU|x%;x4!OybK}4GA%(qHg+TmFpP3;Z^=B@s3anh(7*d>M(zl`+a2~-w<`$J?hQP zP&VFIxrSDY7fiNq9i(WPRpw`D7guNu1I+gLi%0#m%#VBfpb#1S?hL3=eB8Zt_xz?W z?Prn~>VD!(KkEpm;1&!_9IT*WXyIetW?q^@+@2s1(buQR>yzC&BMVGPnbXD<4``&+ z64_Yrh8cftGczCp0s&&s&<=vy;?={G@;(7}2Q2l>+BCNyf?rZgsfNAN(_$61raqhc zldO$7Rc?gd6B=8K8ChWiE&=Mu;Idbp$7dJRi(7X`>E}lmjTTOS`lJ`HhFkVRDkru| zc{X;?;!@B5_z*qps2OE12aBERR`}Acs_o;1%M3!Ww|`r`U$y!*!|bE6+db-r9%qi{ zU_S01&_ZC|2sLSX2D9DI=Vk+xG36KC5XY@A>&xa?3OiG7SRUYQ?=RL+vjPQa9r!G( zr&{~U4Bgk;ik%}H&lJjJ5$Sf~OyknLaaJ`8MzojGj+z(X(Qc;+&Nmw{{{&nOUKHrD zXJQAiBYyfZxW2Jbvl^;DY{hAath2A`X%+Qn+|m_FgT1PGt3DPHdsqjM_N!SIFA61+ z%N0#@;O2|MkQy)9MdExB!5Cq8M;{F~5YJShaXURI@tJhI4;P^6IV8knR3Fn_pf>wL z?O{jm1PIptay#1p;tgG(pH{t#y*b_rr=_%ppbiu_{blx$i}=NfXJ|o0S!J^~xQ`ov zf6@HK0oQ9>A6WN0Qpw=>`E9^~*H=iUGxt{w841qvT~tZQACeM9)tqgopQB|_V+fUq z-!;h;vVPnnT%3)x9?%*5N5Y}so=(yUN+@nPHXbP@26_blgx_)sS&FFZM>~GZ!e{c@ zX(6JeXO_bq!L+^boHgKew;%DQ@4CFOGjUR402ys*vI*Otq|`49LjO{1YAh-uwyq*YI_cRV;m4Z3hOm zV}XQoULTszj4~n#k^p@~c~@h`gC-7)&Ow^AgQoM}<=j!%KYGHBo>oFSVX>aDSa~v< z{Dw(kLw0BdUksrYIV3%K4tfXB@${jXkhK|K1XWlYidZT!44Q%N6^GHzb9rzhM; zkq`pPeU0S4^06!bvDKxgPvD)(p#y2{$c~_{%B>W&=pi{|Z7~okBRxrPZK$m^GQ3lS zw~Y>}tAcijK^n09+v@wFJhgM9fBUG%x@$c&8or6T|8P$G<_FQjoS_^Wg93uxu^jxa zA}T-6HpYX22a;mHUamn2G+Ojq!d@+a7>tgt$HmkA^V{S8kO#&(ImcO2jis?p zqDMn@b@R(Q-Yl&L)<*GCqq<%ZQX1``qm`BNckg{Fz_eu`GDz_^WSr&77vz?7x`9W%bMFCe@-6Gq0gWRFAh+n?LkUWfr>V2%_k>`K-L!ad6* zuAznxK!&}bHnX?^+^87520RJe9sF!>+KW_jWlmL#n<^ZWQh{)$XeFVd(cG#bD`I;C zD>Ii-QpV~Vd?r>)kms+RG|D$>J!57m6B>`8UEmXbE~hCK?xaHA_tKVLii%1WHeN40 z#Q<*-F}Orv-Q8FY)sX+RP*Tuj&=|A`-ETY1j^0-(x9sLp)Xp^|ykY3sV`U1=vh<&F zpd6Oajv9~I%zJ6b9)J)-68M+rR$v+E{lzU{&EO?kH~R3<(W9uE;EA6(f-KrQB z+qP}nwr$&}*w&1#ij#_yij5gN72D>{z3}Yy;r$2KoJSuWW3+xYtP#m9n|fqd&E*`h zig#)&-g-ris=^0Wo0)C&nk*GfPIlFSX1?(`-M{K`AKi<#>kK=UO6f+AajJq|8ddCW zdJ;b$aG2)w-Y3|NYGAK%e?$DopYChz;$H9XPX+18rpov?8PCTJJz=+G^{0n5hso<- zUTUhUP<&*p=@!sTFi`UiI|?7d4T`J1#Wv_b{RCL&P~ij-BGd9aVJ~aeeI+Ouu8<=H z7^--E%6HOCAl<%+vNQNEO|D-F^7~fCsD+!77&nx8krJ-fRQryp@?6rtC7DO}g<~|u zNo_yM)b^nx87K#M$Izga`B14yxnQSES&|(+l~Z$wMHv*Mnu;{O?AmAwLo=E)jW=Kf z5*#IIjM?bWEYWJdB{4nUYA5Qu%%b;&oX9bYp{N^oVUWVAAv3~zX(MNacFuzd{W+p8 z3>_%;6q0h?VqzQH~wzpNzrNr3+_#af(p}?A2W`Mt*RBAbTaxPf_jQDsV007 z$4cb%J()+J&3prrVW8Y!@wnvN{iKpnzcKaB(({+=i$+i))5bjQ)A z96`J}OE7~;D~Ga+MgycuCp7IUKx8spnk?-me=w`yOJNYjIUWgZB98QOQLCBM>$0Uq=>u2okZno6}qWz(`?ex4$`slspo zPj#zlH&i&R?R;NYJaskJi5f~duY_Ne6)2a=JSyBdw?q3b)lC@nqMy{3t4dxs}X&6+GuvV;OZB?3pnNDasO7D=mv!iSv*+30F%uOUV`l1)C zNblxWpWpbgXI-7aWpg`NpFtak;6m&6WkH|&LV)ucg=Tfog6@(rG#2bhv=T$tuYY1w zGfaddANNwEKB8HW-wu3A9ai)!vEho98QDEvbqknJZ+PYu%TkcsJ}6{$>Kq6#&hF2S z>u=drtsvcmg#tw(kHRcSSQT=}>bK&jEbi6^PfS1iZpCaz0e-Bn4ko;grqprv(I3e~m7 zc);f}&vu&BXlx5!gEAQ=E2P^7Xykl*Ezy~iX`Q2=Q<#Lkzfaz~I0 z!AslLsVaXV0|pOKTzpoFtwUKKWMv*HPxC^4rPNDz)@A}zg~d-TXm@YF{W?djw6*N; zD5xE)+p+tjP&=!h32=EmQm_ot#B$nt$&mbfI0Yl%33Nl@8kXCiS118m!*)p0r`RFwH@xjw z4Sxpp^^4O5oQMg*Ap!08lO;Rjr08`x#p>nbX{gwv#kMx3>0e%#u1-J|()~!kvYJZW zk+np_Y{H_DnB8aL1IWle^j*;-YQ6mQVIWYL$PT=#x5b~)ek7F~L^)<3eGe9kO7>Z# zfrd;hnPx@T?IH}QOB8ErmK^IV#!O`k47pQ)8N?v+)9WsGltOi|)GnxGmFY~wIi))~ z4Y@;;9fcs`>PP^x3_`Q<>v%`H4D!U=L&*xIH}J@eyqiX|V$H#t>ZAEck%8lN9M?z2 z*WABAC`%7UbONjHgwGFkLNJShW#tiYp`EUUe^8Az#Aw&t;LQg2MU|9@_S#SsV?(8a<9+f8!K!s;+oXoK}dh{jO2 zo_$0Iv8)A)<#&|tg35cOz6tbuKu*e9W~wbrr$f6jpiPB9lr&rz2jBJq+8zv*11YRm zv7o6mw#BaMo}vbQ3VPyBUkF#f??U zEKBxsI)>(Bi!aNdGzRKosUTs$N@=q*g}ZN)m6z7I?I-b*)Qj@0Q<62EVGu-ef2K@A zstdJu&e{doG3p^%t*SFjr(#*+z%g2(Sue2gWsv|H+GHvC3LH~PK+P&TL%$&X?Pa;2 zlYdz)G!3F%NT|SWVVDP;VfrW(&Tt}ybE-ZLTyc|#$Hf3AYCzBqW_qoWH(muw(q}-d zNy^`C-;W|!ibqzDp@K%Athwh&xRs2zix65Bo{r>|jBuK))$i!j-X@6o7K(H@{!mNU2bh&+{@%g-6XX?pmdEt$D1M~ygs5l5Q& zJg`3OCzjW7OlUH06!uA)r4}l45;G65RTOVFYHsY0C@5%je!k|9Cm96y(OAPz*0hUc_C|B)SS1~oBY<_n|Nis8F_$y4PgP0i*?JuDgXVRU=DV9bW^~()TeitdcYWYCrI@ACF`fMrz5lrA=zX zcO0Ib!posj6$jSC6=xLGZYLE+mSEDk$r{vBmL^n(R?}&ILDySC&UD#eM@4x)Tt;t# z%x2ITX};~s5Ov*&*QfI;vz8Q-qFjs$-)KvXnkx;ZN;^lRYq)D-7STqLtKf4uk%T5$ z4vIN5(u6GjSydimpLCsL^4~{6sS*W8RAJ@1j9=(OFGZ|xfhoKRt%wwsZgIU`Z1MJL z=}KFrZA*bkZ3J}R&1g1 zmfC+uEEF%lZJ3gk75o2Ljek!W1unZ($(8Vz$`X}i&R>&XUR#Up4JB5 zg|gBsjaV4iY$U~Y<+HqVpCZX<(@~KakBrfJg%?jW7q@bfJd2V6bo&gUodV4%gL6&5W}$;D8{i+*>ZAG*vYDKktJ zjf#1r!5$G7k@30+W??yEUiJIx*25%+nA*z3gZF4 z4p#|aQGeU>l^oi$b5L8}2l?cMY)BMIze%1v@s0RNqgYd^MKXD+|Yw)5S2Z33`^)ai#UpPE_LFE9cPU*O(8m_I~ps@+;K zCQy065=jum=^T!I!2D?r`nRjbc_jw^OD7NH6plWdE6#TJ@IV>bQjDi1;iv7_=#G&^ zkN5*Yo6#&ai9uJ2PZP%2Wt5IT=?C4OjiCJr>d;UzUa2LEcYR>47*Z1u+(w3rTmd`w z?;eQi*(8%zM%#^iNJfbJY$-QgDm755qZxBl8WQhW?g{qluF8|cnQF5{Qt#eh7MC61 z%gP&G(!XJ;Lhi=LxLc67s>rVQ1rI32J+mC>Z9T7di%KuMZ^8_;Sgc7&vKs9i{}AV5 zK+jFO0cdKXaOChf#b6@7xbXg_#q{_=V6!xw8X3}Mg3_$B3B7v#%bmhIHY@5r8T$$- zDuD4my8OC4hGFLJ#(Qzl+#_-#sP2lMdiMu zKj4T3G^`ZS4PrG}XY>23cOFgqiE~0kl{tb{BV8RuU*BpFxy500*332rEo~(AJDl?3 z@h=&ghzih7JINAK_24tOEz#Gjn9CdB&{$ejTR2AOiU{y7a&r6jUoDZ6sfWM~gs6#0$~=W$ zlZA3&#el%CI5D^8aA7q$&uf@YE9K!FFHYg$*yV7<LZGt-@ zimD=~2&*wIvZV)c5v{6xOTs-()DfM1&Wn1=z+D(+^ya==Ed5MsY!z3{e!}>0f-3JB zNQt98QuL|77b9&{6(->pp>0>)9ilhs_T;3;zMRAg6NARNHgcx5%lW`&>@6=ghDVla zbRNkxk=pW+1eee`P7;xh4Xfj7K&iq2*660kXn#8hOyuGqEz6K4XIl_TT0^skD5q(t zFL$6!+HpP}(u$M16o?K&vMH}2Uy309M%mzw+ctK@37iRx4u>kM(wG_9K_)YOfykp&&URsq$V9Pdj_BRfS8xl=Hl;(3=yg(>W3^%|B_j%4JrQHsB5 zTRluv6@#l>S(TX60wJS*Ud+ys@BC?#(dEiV9g|D_#a$=0-y`fIpn}kCt_Z@lW|l}% z-L_FHIigi5VZRq6?hEdBlD3k^v)}wlf!f=!^#(p%DP`}x?!_5<4sW^MJd2a1iSY?&%3-9NO-y?T|-l~k-Ot?RCLZerVD>Li(kW{KgvnU zYS#+8m|pK^3G-w}{B~*0e-z<;%9l?Na$UrSU?j)J!Z}}5)=>5i9a(9*O9u4_;2j|U z-VPsaqpb)}PjvBNr(jpdFf#dZzPWg6XR^jLxK3pI?(v-~U4!KH^7JUG8R@h!&B@fg zMQ20snif}hl1%{P7EsdJ-?lLN_IO`$?it%cy{STe&n)7?M?c$&{WpN(+Jo;iGiQ3W ztBeUb?jpU~f8GFZbM8%d!lB00N~0=ddZdqcnZmTVzGDS|t+f$xTC zGi!}LXZI=StUz+cM=hu@9Tx;gDhHm=7?8_6eJHJ(a-=v3Tk2&tiFS50uX#3WHULhA zV2vI&Df>s(I5YO5JcJzUuQ+oFzfv*=b*q>-vYc#=7U|?COuv8x-xBjrg|FT2HvA+J z0g48#rO7{DMp1)Y4Q>AFaVOX#2++qqF|AVO739x=!Tn%mY@OuExB3iAPHq1=?USC@UF9w2WnW)%uZnJo>bk6HLbXNlnF&dz~BZafwH3uMRp4 zyPbl5%DRhIxC|E)4skfy*peG5b1RBX8lRF^QF)AHzzF~tCAk~nY?Q#(0#95xf#lfU9t z=e_CKNB{W3M^*h9lt1wNK*2lIURv?A@3zR~uK4Lh$vxGqvI#W*s%;c5jgief5HGr)_z9d+CJp^7NAb8;^R+D(kr8+^+Q}@EjaX zOYI-or#=uas^~lk2QX?nkJ8=!z*fiIAjmZGwrz7M1F!YT3Y12;>}DR}Ju^ERvS!*e zb=r}0URzl3D6=)S64nc1Y#eVJr`F3siZ*f)&lmC>ZOxD;rn5(o_Z&B6el;-6@C}LW zceOxv$L7#JA!91z{~MFo#ftH+lp=?q;BXS}o^P?1*Ag2el=bGJ4OJm2uKyr4*mg%y>`o!44 zkc*cB|L)^*o}ytSS4$*m00{4Eb?o?3uy8DDbnv$xDa06A3`sA++KSctycD5zE|nejK!SZm^TlFt=p+2%gRJ z{bJcoAeY}c_w-K&^7!}ANyhbtY$)VkY|F6Ar3*ksff3_swyF2*7|X`;GO_ zvMj}eeAk!y50cL@OppRiZc4Hveeo7m?qYP(MNa^1447tUtBQ|$LyTKkf;U?c>ghqW zqWFc_Ix2uVqHg))GcP=2{yl@{#iRz#I9mvjYEQYzDRMyTdZ4Ly;cAWy4eP*@B%rtn$q0?=D9_nT(vD+|G0Y zGovPF2W^Oz8g9}N(SHTiu1VL=UW)F=mWAr3zG9dUsm_Pb-737@X9 zHL*DJ#Qst)8ZJRa_V*zjDM9_nX#m6GQU5!r!IEI0Kb$JdSLxQu_<)!IPA9l0JIwI;1ODwIS01EMBSpbkhN$KfdEuZKqt2_`mQ&l2by693fnO%xQ5~&- z6uWqly<1qMccpqZ4{nO8!_cJlf<%X+c9|Dh8gzMj2kG^4g_;N42q~Avox4zy3=Tiq zK4kdcl_meTv%Bu@zY@jUv-gD&S&a?sTChJS?}K#&Ye)IM)yqhENY}gWB^?5;b$Ps) zqswI%CwPbmmCYI5ZLA$2mU`qg9FfzXntlM~N(SN|G;wW**d}mTK!b>w9@*mML@op3 zgylBO$(Ut}<%!eqYovL9BltGu5TNcIras8+cg)0zD`OBn$jXzl+@N8l^(#j-%J|ss z9>+i9V_muPZuRn-bKlAbgK5@S#=WAG#xUY%>yJ&<2~SkBMxAB2byMd~nYfNTXeU-@ z-QR8R?Z1(Mqx&2sD@}=#Kb&Q%5V36O!XeGO^~1vsv`JZZ9~aj$z1JhlTUnj|5YC9x zgJi)XQ_b-%Cph*k{UV)YqK)Q`wshX+5Ik6@j9?)C{0-y9v!m2Rfzl*(;s(b-X5W+v zv6jl!7^lukYA1G15wdam84Y6dPCU6I@AQAmx_)}s2NPfC&m64v|0RbzBUEhig7*HB zuw_lI)tMWC{v(_HFG z5N2aaxxZrGfm2%(`oPeP@wIi#m1cTRy!zvE)AMx>#zcIzjWx^i9=>Gb3zo55c6z)X ze&b~%rJb2kc74Y#imaf-PQV~K;P4YkjdO5vMCb%#-hKXp=NAoGDUX#4$_1>3iJx!r z$X58O>sNA+A@TZ+klUm}zh~kY;AjXSbHMlCd!0>xiQ%(uFs#naDba(yVMcf6=Ghs_Es;^XSp>Wd=zC?#)1FUdI9Ma^?5{eAq4z}D!*DgcS|(TWM$#iy9~L44t3j8@n} zFu4EXor1d=Q@uZTWk^itb&VOi98hd5IQ1H#l^wb=D&b`Kit;qQV|9elm}l!KX>?On zkkR8p>P&s=bgs=8XO99~~Wou;lO_M8K8ssMQy{uXi*VT+ybaq5d^F zp^*cU#P}fCZs%jWPfXAW9^Kv>eYZN+A3T659pv`TfIYe z33{8fK*48m!`qLd@`|3AB7lBxrItgH@cic}<2gcyqw6bg@w*d0ezqHOM|@6Sx10@= zRcjMfd<%F+rxAxVHA7LUBgY9!(bcTg@#Gqny|~x^s_>E<{ZF@>Ce2LhLrf>1E$JFM z^CZmZ{@%>%PsEScnJk#eEj+hr+Cgg7a7A!P%sE%OU4k<3b1&j9te}Y8%TGwE5}pq_ zdb0mk3(Gjd$%eKcn~#;SIP<}`XMRE`&7slEH*}NNU3bxDs8o10J+;%hiQ!&@6U&x1=C%ms_L6NOz@C2!27IfvbXwAwI!!>*fAp^ zFOtOvBjT5QO%>|u-}1Gzgv78A;XaAb3>=Ju5Dv4O0Ekoa@ZC2FAEwvoQB7>)j&F2N zfA^Q)m46)A@_nClF>2Ml!a~yy9XRaEp;a?krz%$neE!(fZNQrbV`(>fss_8lenhA% z(_a{!7CkKuU6nq2d-XmteRmX_-z_c@zNP-rMxgR#Pe*M>7L3WK>}L0AP4Ll>?5>Df ztM@*aR45g$SIZl5C@DY|I$S_Lo=K>j^lvd6%e!V!ZOtzcL?2)trul@#<#DclYsxcZ zjE;OLv;mbQOwl)M5{uUQ&i^75scovnXSZ1}?D#MKT#Nn%e>-O*Tfp`t=Z78_0raYK zthOME>4xWzt;UH+_Qt6L++DMq;d%U75N?|P*}>h%YL@yB4$#n}>g2%@NaV9?;FzEE z61gD0xe8%;Fy7Pe$|G~XCep>{<$!B%?fX=vBq_`)ts(CaKccMvX{b#KU990R@<|rm z@PP7{>>u=n2hve%p;Q18L4Ysf)`maiFM$tqv_ok}t5uW?-WV!CcmMGO=uj;Uy3$Kb zZlpmNq$cr`*3y^Cjl(;x?|omJ_UJ8*LXQHYXnwK*Z5Dk2_F4nArjA#VsbvAHiph2= z!16cujJ=y!!gy*1#x0C-9>7`VX?F(AA>=XG#**ImIISGPh6VpW6ps8dLP3A`lb{Yr z&8`LSr)_(j>tbFO{Fe$j+6+7RRJ&hX*Js13RCMCwc%|!5LIe-XmOnO|?&N=%+W$$x zoI6M&wkc*{Esp%Un*0+~O@V~SJe9GAr*0Kp7D54U-iG2Y4wwn|x`a zwrJLR8)BW$;ZwSG91t$Xw)0m68y{wenUYTh5Mt>3Wch<)0Y!!1YY?}0BGn`KxP#ti zS>}R|eP$%s{O&w5n>;{wmDd2MnilLVJ`PoC5|6KwVPK8>TNzBA?kX3eEXbt$Qm;KXM z-O1(E#M%$+rJ2g#gU*VhWJB)iR%>>w$@HwKm8_-e7>2Usi9+c+p0cD+uPHJrxrMWN zSI=Xc#|O*jQ<>)B6XwCD&qwFhp;rydVfUfmrUY9|TKs~s)s>$tR5B^q@AZk$i4R8h z`%Wwuk~teN?@Rzw*ILU?!a|J-JHGc?_eyi=;6uz0ZFY?v*OhF2l}Hsf4a9k$Z^Zp_ zo2>5lIoU_khPUp_^mYMY{Lz!oK1=~A*lmr(lNhT{@=R@0IYUxx&r?#r0n73zZKH#d z?tSbnYYp1zdyAS;WV=OF>MGRISzBS2yLJ`r;WS;2@jwxz+(~Fh5IphxbD2Z?(^$x1 zzNoDU$zBxbX+y?esWp|xjWB7xv#%HanD45@{;z9WJHI32iy-y793tNDL}|x9TM4(x zJ&V%(iLDYlp*EKb4qu$xD*_L~sRwiS)6LRMUI&^YfzH%Dq;Yl*~=rEY1MK#i6$ea`+-y4*wV00aGtQb4pd%2r|k#M+&!Jp-u z7f5xxDdf})k#+J@^JdTW%M9};x*ux%j1yL6vmfI{r03hob+{9TSnz76H;uKV>z+v? zWdQg=nS+F05qj)GiDvSIv1%8nl?bh|7%f|~g;SbzF4;SlPOLic)!GG4uZ!UQ@&sI@ z3;WYEJwv&YYuFlRcKJ(b1=kjssbPF%f(X-ws zS-V~KGIpRKGy>MZ=tEy){NV11)eBL4C}toJA#pt6cVuw!r^r&w!2!g)x*DNHB1nXR zLdS%d_gXN(*?FLLIbwZ1cDcNv+ZmSK*c$S^cipVbD*9TPftfj#IzU`mDz)~(FT3o`ofdD9Lbhi=iln;2B`nn?g!ltZxH9;JDmfI{y;7ecO@&e=6dAATQmCayG()DH z(xMb5GkQnPdk~h(dbPGcdQY9BzFSC9CE&Pfd7eFFuUZ%wm88|8Of92f2FT>s+~~LBt8$kjYI2HPrb|(5=3<(hfL-9yc`ZdCUt6B`!&N9 z8y*dqS_SF)Mh1I&P1%jB0BH%d%gPfIKMPAJHPVmc)I6GMgFi1xl+|U|Q$+BUc4DM! zDcI5>O`a-zl~wuds8Vf(H3!6RIVjs;oZsd1-N0IGSAgv>zg>^N%+kT^bhF6xSPmmEM}@&(l~Gk16VjQMYGR!0$L{#V!CfUnJu8zlOzDbz znWDRY%E3i!nUJ@UV?{=n_)a&F!BM-Htc~V%$db)RZ51hZE2h&NSfKlGlrb$JyQ+Dq zlNSSojeshdWc~!t<9A%t$Q?z{CsuYr!X4^#v4%_ps9hksJ7Kv%iu=;j z+!q!sT_#TXa)c8m!PZz#&#ci`Bxv9&ld(5T zw%R#rZ!6T7^;gT0Vwa;n>uD(Q=lr-Y*755$B^)OuF>4f}m`^*1@KZBKWikte0kY-3 zz?Vo{T2i9kE7B@MqurBs{Vh-Erqq%&H8>a(C34fMOvp;1HN9X~NGoRWzTK0Zk0nQ_ z?s8?XsGd%a5sO}gJ$ZpB=q?;F%}yjAYx1k4WZ<$XQxw`w{!OpNt5HL^@dHj+i9Lsg zd2m$CMK4v+lG`FVH>{GFC^c5=OFyTfLU0=oQ;9LU-GAbPsq#mWVQxNARS8W zB&Tq*;@NhM3Nm;V=TAmDk)E2}pD~~`=$ZfX~%-ja`5+g~br&5c&jTrVL z{6BH82Ij9HMxK)(29YA`R)yG1Yin70c?nUVWl=9EWi~RCPYN1ScHlNSsj9K`Kp<^t z|F_bA)0jDFBE_H4x}vp=2BKg^tA}<$vPQ~doU8-1a{9(ff9ZvEVS$VJzJVyQf}+j7 z)eCjkdV){=t~+qW5Qy$whzg+$l=njELd_4wkMZ(?G- zi)$yv{EsAiu{)Wt&>&v7W8J_Bj2P4;J5PA)_WDia{@`%fd0^i$+gg&Qm2^qujoCC$m)t!Htw2UN1T)Lds7`AjqmHpM=WE>qNVEi+7M%< z>LW1uP}<-UC6C#VyDXIge8q{JlQr{|(u^&mS20s+x#Ca+y5oK)k1&j>5PyFJjHO)a zE5M#AD|Hyhp{5hDq6es=5tqG^JZT(PL4EKXx0EA(%{({6xjKn@~v($YhGY*CKN@CF8levF@Ignc=R zlO|>RNPYBiE;4}Y7d^o-%pr&T-tA*F+9bG+U`D;n0Z;p~U?z?*j}JnjsyX)Ue9>lu zcsz}sd1XoD`Gm$FkCeO_`07EvT9NHcK{I=7O>TGI=Krz)IxQ#iVoB}>v#;#Y>1OMp z;dk4hD?;*ciHP7sV;3~<&uC$y^umsz8=2mwlssMTg{d5yMU*l-;h62#u9Ai9Io1|T ze6*3BySd=dU^(M@imqxEjD-ajBnb(PN)krO6zyU+?2WPN12_^>51V@v3 z8d+0WbWiL`{8ca!H5+Jur#E6A+qfMYUXjpX!U_ez>i1YE0~)gI|R`RCE!GH+ha`6nG|`4{J_a z#;k_R{VIup|H=>+V8JB#LJvcjU|@=Zrw8ADK)b({I;oG3+xTxV8NV2tDnJYNvRMn{ z*P=eHj-Q;<9E5+b?-|&OxR%VgVV2~)IJeJ1Os$dXy#mkcK>d;|Em1ly`wo~H<<44x zh4I%4kCJRDK{*Gk&-J8=lOt${3Oulb9n8&BNrhdze1yQUYz77x8vHodT;Q|zJ$1gF zXH(GiG5n}O=9Ly${8yxMe0j(Knp1DEyI0~-V!N1ly}z~V_58Tk@*cTBzo`4&ua?d4 z1^pWV--r#nNqK6zh!b{mIR*lqv|g10!r@E~BC2;r@mhnEs&3Djsm^pK26H4PRuN-= zCqUy;=x78pq)w>`Zgct5em;Aof4J&#cedvP97T9}ip;0}nqUy~ZGw-p)4k+KPQ^e* zh=(dLpJyee2eUJg*F*D4oa>#I65OHKr6F&mE7PNWR_6HboTDZju>$mFz;(s{Es(6J6mp*(9gni>bGF!at~O3%D2W*MO+qK9|4)aXEwu6if zr8<0Hdy{PCNMScE*TUG2N`xpU41&LW9!0fnQaAk0M7N~%1N^5pVPlHxB&uWbJpgSORsN$Z%7jWTThBcInmn@wPodsAjai%H;28cHrvEdLW(Q^lBCx#7^gH1s zf7h_mdHCFBcTI*|88%1O>4fi({|x#(r~94D0b5NHA0Gq?nWgaDp#$Q*TA03Q@I1Tf zo4EiOu7R;5nur>q+?v&kwR5X26H|BAhz6cxpM;=rv<(slTmC6un!Di@ zz;?m0AIOSrj`^?#xLuv%10m?~!EXPVsJ6lU&B2_Vof+-0y@qb)&7dN-g6wzBU9rU4 zh}pp`r%J!}l+*yxZwdd2Jqpp@gV83st{aJj^=2e!Q}3IeoMCfoSgk`hUhuSHZTn!3 zm(e{AkA)PR4N7J*TlGG!%kH%*Q_K4JhvSweztZr)Tzpp->+A-M?SqMECN~v;*)tat zb;GM5v#-+YIq0bn_w>O(lgB^bW{>`zu7Lt_x2=w@wKD5uAA#R(Ipv{;vk-Qe#$mz) z2`rlwuBEgq_Pt#&YIhmsy0$xNdB$BnGe^=Wz0#xh&lujq5e8noMqaetHAz9VH9Z3k zgKy;iah|Y5JtgR+A8Jn?#~&GbdcfIL%uxSjp$Ba!z9qGwt%mNDg21Ah2JY}*;5g>z z9qBS$S2z41*@C-JCundV5+2&(MSZg1sgm}U0&2=UQR}BADd_-lalb@L#KsRTC+g}9_{N&_=o~LIBD?hi&MS~d!T-qZ5%C8UZ#>#@ zw34QX{&Y?Xh{$E{W0kt0(~yyC3~E3KJZ508%;x}3)%XCM2)C45+2qOiVlRhxDy9L@ z>bv`F-e3l9j6KJBMUFeAOx(}-cm&@sTY%LE{``$m^H<27%>olfJ8y34l6PHNy^76y zj2K_XA4AKX;?ynfGs{@lV$Otx6tevuFEme2M7iP6b#z_b6qJ7YrlWkDjkmX&MBUT4&Z#UoEGC4d z+S<@QHcf5qr3Qz^mh8uktjpsFcRv35boOv9g!`H;l8MD_GMp&2d$@A$6e@P)?HSd_ zD<#P-WuXor^bQR}B)h^?)G1~yNf$OXGT=cCbW{IM0(E{L#7Cnj=^VyHzTx%i5QfcJ z(q4a3?REj@Zd0sn_VYtxt6W0Fg^qb;aR#2FOIw7dogyA$hf1BzMHzRt!>O+B;RGEW8G}K5uct1glNE2WGi2N<&d!>Cakl!P z;Xx|3eY+7&=;XZH$2rPkC@d<<@pfm$Ukd>nLnv(d`4a>&y?yiq%b0b>zVo&2{_@h0 z{dgY-FPx0Pe+8%`6!0ZfV8lGNw9*6lGC{Mm7U<>p4v1TM&f%;wYb)(>M7*4cMY&gy z^oOMpc)~rhn_@4_e!;QpCo`K&ADGFe6nMl_;UAQUl}CKN0)``FxKMQ^{@|BS(xESP zGO@Gg){QzZ<%a+lHSuXKVr(*lw{apwOrm#Cw_jEwta-2Qlamse*UYWJSf-+!{I>MUkxQrt`1tDJ4v@!*(sm|vS{*Dm~^=CUvJooTkkj>H05oMtMbiicebI;K- zguvlfg46+7pD~sBN#OE-#ps{&(G>s9E3~u0i|OHJzs`kh`#2IK2u4@D~P=@G^cguK7K2Udz*TzCj_+`)E`JwtH_ z>V~qPgi0J*pA?QK^U$=piU;$JA`(;hCK?X?6)qS`Dh+VyK$PoICY>cjLosP8n zF=h3aM@ybxl9SBW^6KLi4V607esZ$iPzL#e<5e}FA8Z^0X8dR-OHJZXto&?YGk_#Fc5@(Z&C{k0nh@@MuFT6#xs}g7~YhhgD1r`bb{9ozsN+LwZ8|q=h2eyP)j=JJ^6;lDxJwmeZ{H zWmWPZ{GYK@GG8w*2I5>So8J#V{W!p_=er2w)zpRixk1+xoqSGLAc4ba+;@?1;t9KL z$Bs&l{eg0-AxHxM(7INt2m(BR71wRy|1CeQ&CpLmOmyHh=GDFOY+_q}w7Bh2#3w-J zVp$eQj>W_Rq4;TiAE@cX0#RuNArS;8q&q`AZ2X`LxdK-%Xp5R(qF{jfxHzWNA`UG| zViFM}Ou^{wY~ClVcTh*8Ljp$I?`-&HHRgUXrn%BQ^!5X!S>(b6s|8o zRZkU&9#JZV?Q+-ak;F8Xf!tQmDytM^8SNwD5{peDm7B?OG^^-E2VJ31CSD|qJH4rM zo)Ie+M_g>OO*vW-;ua_x3mIUfkJ{f9)11>a9I}iTL z1mrE``Yw;dd>B}L#1ck~UK)JOFW;OG2czT$;}T4Rh>_axS+K|_UPQ}?|^WYZPf}cKdMHzAO2Rz%0{I`I#ZCD?eyDS?rv;s8E!^s{)i+UEWd=^ zU4Eei*Vhr<6b-MscF*?k^B69<_ws(DG2x;E&;)tHHg|ugU~4KD@QJKJ5S+&6n@M+T ztfg{m6Tl1jB#@GIJJEsB(Z^(Z6UT7wDU>f z?)icIK5S>!Zgb>VnHbcMrad4!8;+{*PmH7quEEKL-9FvTfxLP8Al#+B2ae5^IU2pq zVfxgX+FF0KAm;hG!T)}2gY5F>jN?0Dj*)+25Pdl6lUHpY=PZ@(dmEG*shBaUy!|D) z4zi#5-%j}7#kt@~Z*RGPG1QQ=I6ya`a0K{ zAK3Dw>~Z=;IZ^BQMHYrB+w&0t58gQcD>jB&|AQgjE`#DEV(9nw? zjV>}dtuvhA6tg%C$<~tOjNk3tFpTQX7hD;;WNx;IMdP^w|et5Czf zlyLA^^r_cnSgx^4aLKHIukGp<2foHuSYMCSjD5pRSvABZN5YE1I-|YFqSRdqpCt}w zT|2XW>)hq3E3vPMHgkTJ?xs{m#~xD7cTEM z@#V~z`HDCC&rV}8K6Wfb)@mbR2mDm!bP_MO1K5S$8b#m*X18Fl}JT$@vQdfw&9RHR?c zoaLbV3c;fZIod6(XbaYUWih9C3p3_P7Z$xpJv|p3 zetzi!$?R@6s7lh%61%*oHeu&Z*W9;wy}tjis%wm{Y)RWmI_lWAosMnWHaeYjY}>YN z+qP}nNyqkg?wy%$=Kk7i|2gZds@hfW`>3?zrGIwJDT*>MDaof7d9^_$9=0`F;tQnO zDxV1ng~p&+S8MI<(Fknn*PQ2wOEuRq)F9hEXbfyNpIS5nIxIn`^Ur^AD-_ZaXxR`pDSHkWhas=6m_ih(Bx3A9ml{{E^d6RerFn_ zC|_Yiw_R&7oawA$#VNotZ_*)cRIHf(sRa3O@0!!FTZRI-0rV;38;-N~;yF@jWNXqF zJeLOA#H5W&u?7I7kf&Qj%NJnQEiG0( z?F>fRm~TxH)bn!EjE4IK=T(k(tieaGwwtxClHZ}?aL{qxmch^Q9j8uPyi@Ul#YP0^ zs=I)Y*N}Qbhg9cRK)WwJP03k~fyR~x3|~!@owi^|H^% z1QN@TYhUp_Mq&LjLb?Ll%b3PAJT`O@b=}#(LjT1I8B;+}8#7g1BniI{hIVRH;-!*} zQ9{Q3XiwAmYAC|i^1OwyYHwU*S?B!76V4JXq;qsOB)t*JaZ9Z}!T7_zDhusc>QS(k zrqWWBjLdh4w?Qw(o;bb>M`|yR!QoSvYQ)fGb7i5h)s>$R`nyO9H8G%_Py0BpLAhDE zW@KY@?U|_O0EPxW&W=s8n1*N$4j_!v_58F){3>WXb=wFgcn^txqc)>%vvnbga;3&Z zXm~-!;ZX^H!#}-holV#5gXejhtwKwP!lx6Pm%4$pWGhTxBc#jt7bx{FKwdT{{`<)| z8-eMHy;T8sV0F43;yi=ko*S0dt3mW{;LJ#0bj6V@Ple)86bk@eOM z*pQQzdf9w6s@s$0+SPdou#Dt*?CsT2;i*FZ?-u*dHDv>$6UUzpE3Ldi2OWufqvkCxa~l}N04|NmgGJ&^=CB9909+~`eUYAQ-Pmn4gBGR!M! zkF1a9Ac!GZA>I!v15PeIvh)sYO9u1nU*W{CzAo?G-q8|>l^eQM54dcL*9GZlh3(Bo z>rup}1cLb{U4E(g{S|Zf09foEhz!3oU|B3cz1lf9|9=6!*HxRv<=mEnHM$8WetGu1 z{61~aFDuL9dkWfTawy3&gbi`F;<5p3!YyMl}In{E*V>wE45kh`^ic3iqz;q zb$LST%E*F~-g`mh?{A!+j2eUz;dmB}%lt^H7#GIX1WhZwAru3F?U>+VMw z#La61q{68Oqhu$lhM=d)igOslGq2{F3}Om2Y{U+8MH+#UW%F9|G&!!aPaOFA(+w(YJKm5goF~ckq62fT|v5AbGp@u ziR<$C<}u1d&dIs9CFG08sh4+d`~CYhtiI#^_1p$KC>R7W!6ohj=6EcU%odR?y}@E| z`H%Fqhlj}iIQVXoy8xj%y}JtVw%lh;u!`D#Et6h__HZ~jdia_K>;0MlhpMg znEA&XydGmDbo@F00xjEZQ7X2KV?G0yB{iHPzNe>uNi?tv07!y5-KV6)#|ssQAVx0V zM@I@n;D}6*2Nx8bXuwFtn4XZ{In;x7R0QB#5#S5*EaC8p6EAtKFWb_c)+|7AD+ zE`?fZLBqDw1KDb@(5rQZ7p0182+%0F)(J3`#ZmtYxdnBkm8%{a3*F2Oq1RsB)jwa4 zSI2fD}2J-~dKZntO1R~*NcylJg^)~>>o!?~0zv1Cf7*At#Em<#PsPiVfk zSa+Q9><<+EwPlTe;&BTJ7QHuM`=$60-=Q8pzMZ|1Q^%k`b5AX1^_^{dM4g7)4SJo@ zCGL+TlZ)_7WpM@}4-T^16<}axF3KOsvUT_Th`@T2lKzxIxlSL&z{d8!**8KoY4qFe zD%Kq?jq^-Vf8^*|T(zp$4^4;J|GLJ6v&aHpOrO7*DIi{Px;FpwtPeJH4_{YfzStYx zbgQ-0v2+`^i7GQoz7oY80dHL?mZ-zDgzO5F^oyd_W23s3--HC z!_U`w4PwTs%LbghyOLb(&7J$+xt?2TI%pANV+xpWL-E*AmJlDNQ?7gnj(kYNLpga3Y}ZFpDF~>M^TzmQjF6D{ zRJ8tU3hChzAL^Uxf7;cew`xz>KZ_+Ulc`Ss4Uc914UeTX#~PnVz7>EfY0-?1f9 zQFNxgWnx5Zd|TyommZk&Mv&s=Vh>0WU3)(leo|Oj?D!@Jv_9xF2_53!1v2AtG>{l&M|-JU^j)C z7U$#qGs;4GXdxhJeAGA>F$AU)S_s3u%uqtt1{yY+|EWm6EG~d)S(V6-r!c}vd(YUc zHXi=|S#8LUqF%Cx`7EVC3)zg5Q2Z`8 z??(d=-`3W*&YyfaxA&CV7+=goTkARrOYfG1yl-bX?{4=)mWhe%Dhko1(*t%!@#nQW z9RHj~;T?b^r1qko-IP8X3fOFCm`Y(UO*^GqrQhj_C-+@HuvZv6-nrbY9kw zhM$FLO*l85`RC8ndz+~VmZ(uZ=Di-)5*C&*7>fPksJ$Ad|J^@Sh9 z;F_*hK3S`T#!b*gD^t!i44skBpD>+~-bndD_rr~3N85-#1syytmB$1%ml%-_w7)^! zW@|0$0uGlX$APOG`#XA11n55-Q4Q=ZoQ7+~Q6c)dtfapH*jhS6Q|wBTkf?_BEsD8< zo;^_ax~wQf*y%paDa*Zul0BF}CjP5l<1eseQrZkSe|*U0$kxbSP%<(D4DHz5S7tMFQdp1m~lXZ;1E5Xc)L z9aqGrDpz9#qvRB` z8$PZ?CqubCI^6j1KF;-i_;$2!*gg=~OB)&ak91Vzf;&b&g=`snz6MJ6Hc>veiRR}6 z9m?b}TnakEVqIOz>@VQv5@xjoDy&bMB0Mbb0<_?rW*_SMrWBgE&>4;^GIRC%J3~@? zR@R)brzNfN2LUSsy&!|VnsT%)nykgc#iRZ|%#mYS3PG?tS(r!N4A~pq4q~w8`%z2i zIU+h8x=PrvQy$4U_S7tdJ>1i6mA;B>i8D9GE-9*p>?ziu@3Z#6L8kWr)yUQN8lB^{ zuQnQw)J|3PW+}_x=XLTmR+TlmIdcxW)E0Wj>`wX%Kk>Dg8W9QiwxA9G@7ODcupLio)1#P>hg%vas(x>ksOWUr zEh&{YoYR(i8$+)Lb@Ugo&{NB;({5fANHvJtmM1D0Tt820S<&3SAZVHIOkJ!%T_UHf zyalL&Z=fWSBrEgZO$>eosaPv?KN}Mkx2PgGuzIRhp*sX2VWUy`E}E1Ys%W%t`z1o0afK7fH*$*Mu_4CZIJvwq`mm0mPtqOxCS0LgTe%xmuJ6v)K-A*h!ss7FfdsC&Kg zcwAZ?$b0*9$B7Tu-?&X)`;lXUcWh)oAB6&3(WebPS`r}-t~m~>q9@;;^Lyg zPLD6E+B4z*_J=yr{IareMKVST+%9JhAfh}k(<3MNmbTl{x{RBn`vn(X&yQzVQi$j^ z2pY@K2xi&yWlR9nW{cA+X4E)NOs@PlK!mu=s;FJazlJ***c`4KE~?ptzLJR%3s)&S zkerdlDdH^G=0L_K(S&Bc*JgB=fP_Lq$z8h7yj?<${sVo#jDFpRfAA`%qY{c5ncKC7 z!z^n^c78?p$pIfr@7U-Ujo!Df+;rQ9Rv-pesoji*CEw&Wb~ZVl2S4+dG)sR5K7e?(*HNK_o(K=eACE6X z)ar3~MN*XPsPm8Wx}|Q(K=?nq<@bv3&kWz75ObVe#l^5v%WBV7HCDvFipVF1{{#gymu~yA(#Cn=9F`XIr_@NPUW^eddcuf23@wi@9{|(32xSOZ7d=d_xY;7jRI3%tI!#_}WqF682u+Hh)ZxTS`eI z>Q3e!Vb2=^&@6Lp>{l?|n2kx<>iz;ibb2t6FzvZ*+hZFW(V=LE!?NLTLXR!(7({}& z++Yuj&w1BSc%IU>Lay!0smFF8&8)tx-j%E#_4wpi?nW;6Ko0F*m}m7U7ByNe{adh~ zEf>SqwZRe6C#*0~5XAG9kx}N;{{tETk=vLfLiYB5XW|n1sd0d#-OXF9w00EP6vb~U zOd_bIRydvj7pc6#ylMT@>JmaeY6Ov?DtzQGwcPS5_g~_0O}U)OATsaOix!*LA5-&E z(q4brcqrm?PdQ~3BZ~4L6jhtOx_jokBfz((ru^ilxy@8gE3QMBX z&KWS9Oj7t?PR`D}_ljV}lUKF$eI0UoMo+~6U7`_LvgETnvXajtAM zOD*H!!*;gZ2|jS8JtE6JLQDnE3WS&7v79SjjBYm*q&_WIBdiC}Fx&0kF;1%KX#g$V zV-B*hIAX5cLGZs@6JR84%8{@AJzP-og6`{FXS#bm^K`lt^E`L<_x%G{3LpC@t(&|7 z%_}GPd{J?}qIG)Z;1GE}Ly%K*k}mP!liHWI-|V(c4;22zw}dAaNm+?{D>>tmMxd_S2kth03}> zEYdoKEf_wSdef}xSehl`16D}SBxw(<3|lf^^8Zd*&vZJFYl!J6cCUt^R7ZnmWj#&1 zxo9UEU0MzGavO3!Mf?7G<8oi?C7v;p2}+lswCqeR>!frf?d{K$GzGu7LS${MGz{m? z_NaDDrnjwDPNp4~Qjjts(h;{K-Z#OzTy>RgpE9A;J;$SZV;L_DZfaDnau@_qU_XIK z;jxU5^4uk&3wB1`vVyf#Q@WLq#k3~1m)o{+tDb1%K zoYo_%XlY?jp>I%X6q>*HmXSlll}+`fPZzZ_WPcVBDsI)8u2-Mbo;Hs9#A(WduUHTi zimhV1BW72M_PU$Lu4@a6FxKc;8twSweD|&toJ~?ru-Xo7Lj(W8k)@sxav1%Ec}RQt z)MP$k4)`|s*T35cDXp*Gr2Vsei~@~FR7bji-flrjm=nsb1wb91o`|^3poM$i^6<3c z_jj-}eG(Q>p20y0*(rbkh(N$0W^FCX)kK&mKf)mxgwksA_0PuB)3^>+-MmNj51C-8 zS{_>8F)(5Z0<86NdLwtLMqKn@(`{3WoMKsG*V3AO_Bk^NIwleqNm0$M`mi(5kUD=5 zkJ!2+De*F?y8XS8bJ7QBX5A4nztW3U{G`15{^XKsTbJ{G85eW3Qvo+Jl4?P-{L)`m zj=zvLM$i_Qi1^}-f0*>5;InY1Mg7WO2>>6ss07uEg)qXB@r-h{Y!58o;zm=Z7g5;) z320)(r?jo`Lhw`n031SeyjSiFCbXJ&4!LYZ`KXZg8^5zA^ayhaPlRr@$S}!h-LT{P z3P}|sgY9A>nIqUTn`yS&sBcfyFb`3FqIg1V$b^C){?e5c`7dSoZ0rs<&QqY#% z)1p1=PMaHavT>S_ZUjKSd3j^tuJxUNK)8|@UL81nVY}zbjf^0>Zpdv#<$3^_dXNB zq~nQ=WXo=Y7s__~9-jZW8;OoIdu;;+=g|uLO^(FKP^4_lA%bX%`m3^M8>y^DYyUe$Cz6|af@6%;iDQg=x^y#kva zjhGJdx2)KT#1}3!#px#9sKrGKBM*Gj3?P26`8X5FpeXH$Zhjb=iH$w!oz%R*(L(E} zBrUct>mNq_z7LNYE}tH3a|pMpWE8a|bu#|?26l*!uwoABb+=8=KRb&E zqE()tcG$UpR7z=5aU0JeO2!;l-i5!0?k*p_xA_&!^P2-nFDtAD?nUpkl4-Q?xc}A>#j*q{{s{?|5izR0A4eVWV8=d8TSg4BqoMm&H%%iPFdCvy zb#fpR?U`MXbN)Z7C4!VHk1WNIp#pVbKuo}f6u?*Y0p!Mnt9mJ96{qp|L!ug9*5J@S zE?D$Wx7^OU&+dxrZ!na6p^Xz+T_HT<;0=k|MDgV1FRt%_#Kber(+I{M*C=_?bnHCf zal4d`z`CB5SpIJhA}1f1E399Dzy$6Ub>X1CA3mbN5k5_&9#3wJskEY#w;Tfzil#K5 zC2PSMJ2wDtmLd(#uGfUcdK=+zq*zSTclEXoqom2zGYb;AMh%8LUlFbwKg=piUs?95 z^=@GAmv?42Fb1iJ1P3+j8RtG~^=I{f7scZ4U| zVf)^`5T_k3aqrm|>g|eJ2$y%e4Z2WeJ73Zhqm|>$(yyygS3%bwQNI@(Ro(@13j@Oq zqH9_^N(3{QD~96(>1Kw2q=HVQ+N;y%^TaE|^7`3b79Eq7ZDXX9FAzk*sxF#&RnVHj z$8bk4$95uD&r|emcsJ*Q(QcR#Z|dBs*x+ElTgd6Nd1jMJoaa9D*S|L>8;}TopZ@;5 zhmBq6Xm0)ilB8n%kRteDkWJx?vd)0=<+Pe(853P!8Ey2}++(C40M*gJd6c){P*=#} z{`mDtdwR|8bTml!s^2MM6dxMLlHswahj-A{5MQW*&}+N`8Pdm_2r;EK{3GrMfag-X zX})apcr-4YeCMAlx4t5Mmw1~g?zO96 zoGihM;~beDX_>&sQAcl8ocdDxZY+)Y0#UuUgpp=0-kepF#&NPxja?9^TG4$u6j8^; zu3?2c?%U}z#!{{k|6Ivn- zge=zYL(+Zt2X?O$5?OEiwOh_o-l(f8hlO&p0?10um%jgyu)VSuAx#suWz-GzB) zWvf5Ono+WOme2e*yCaO+%(rMcsh-S9@*CSrg^Z4CAj7xNz)G<89mG5BTv$dz^Z0Zq z=&ccMy#u@sZFK}OMxU1VpOYG0C>^$C5GJ|AMSIh$HzTsmunoghuI1^-z(ZHpn60f< z05dy><)=d6D4Sw-XX?r7xjtM1W&C)i*Y0|<6Sw{F1yvWI!q^!4ZF~v1BX+5-FUfrI zQ0UsvkbbD(SV*0rSD{Ajc)RozUHi}tXDV~Pk7d0a+=cKz)Nsx?;x##aj_1mAv>}Yw z5gv|id)$=It0rSe3`D$wJ0jLChdI9OMIU~yB$`UGXHc!WzKn3~${H|Oh+rZU16>l6QcBS-`X3GrQ0UKiH(Zan zWj$WqZ|{p1ZNK?EWqY9+-KrXZv|1i|*C1TQ!*PMfq=xyKwl8hQ|FJn)Ty?oW&0KLh zQ|jOi4=@Y2bz3|(ZKJ{@mi6R@P=cfBX`O@~yx9HA`}CHLKm7BklZ4zV%?;xt2{)Vh;G+_A0b&x^$s^MraM8)s$F)$-|V!{vZ5` z7s%M#CfXGhX!Og=OS!dbKLiCWhMN(;+|GFzLlPP?(iJM(-V=>S)aj+V*Tna?^vU^&40@e|Cb=$qJ6s*%BIt>=x9 zxH!Ftof9HndvWMqRcB<7UUwiz zCE`-mCZTc`CBjnGI2&0zOSTK}YQ0PSs){K{H%$CeTy?Ip4lOA+?a zFHo?~ZUbE628T!#aFCxiuogu8sHjy8n<%74Hsgp(>g)sJ-26qjxn@dL3{xuV&9z2yBaa@ZUu*QJ@hE%zepjH{Qihe>18a9}*A>7u5!PgxV9 z5->|I7Dv0KS^*utOKF6vyDZ5maBY}xMLwJbp)i{=^=h6lBc%)~(`Mis-mvA`1vfY* zV!aBg*&5uKtZF$N;KpxGt`r|*nLIAdL2nD4WU2oY7@DiindXzKOBkS)`7zmmyI@JJX3j*a!D|1CZckEGV4vrjVF_q=v}7w*Kc=&~SAGeP zE7KR$|B5Wgyg%qi1`P6s1&C=m;KKHDbf-!kY70JBiRWD$%(SI7tTgGMLLQU;xY284 zj%KXpwuszPUO8qYO7u$fg$GzcPm$Odv}xXe!cZxHx8nOkG5oMU^^-FdXo{=ByAw2w zqNf3`9;f|W@e$^e;F%YY8+M>gia7X;^_Y<48$B zh7Rdoa7*rIiRm8+^llgj!9-3uZnczGT8y*643g7vUZ(DVThge~mpH<)PK(#RY>AH? z30VV`Z!$+%0eOFnYpv%71j&_W0>m>SC{zT$+3J6&{+*maCY6M3)u>mA9w!6NEb^{R zXsJ*ZBaPh84MDAri0MbM11zJaLo(kP-ywq~g=QAq zBKS@=Y0zPf{<*z-0ERuERV)6@zuWc+JV&k*BWz2{PrDq7-KZy~iB;!?kf45toD@w&zGVk*5;t}_}?ElO#LjsZ4M zEds|TJ_8tkMgU)B`0(TLqN!VSN3^5kGx=$D{X3X&5C)|SaqF?*ERoH@qcNq8v8fAa z8(W}asQGoEaxrRb5zTb)w$23{?gN@AIvkM{Q|rrolvnKtPyy62bz?y7`5x^!Qan>$Zj^5~UgS-LFa`nHbP>+5S8I;%udaauCAX9pY~Ov}$GO^1ohn-)uBs zG|3*PUZrw3F-M^cPZoF60>&rYj*Z+RQEEUvUN~ z0^Gh$cG+Wona!-N36p|c;*qsBAhdDW6AdtW;I3Lbp|Fak!3c8o{b+Go&b=;?Xp)zM zBPpgN^lN^JN0k?yR)Op*bT4(4zdE2;iN{~>7Mix*n=Tq}Til+wTyAef_J)2N6{1E~ zTIAvmu8${f@>ONQSyQP&C3L%h&pBC;vrE>H%e@&7G!-&qdow_Mp`IRm1$r8I4FO{WcNvC9`VAd?9kDZ+FQL}5L@ui68kNj`a$Vy?ETMhPgN z5*uWoSZR{^ZJ*nh*cCSmyrBzO(bEYWX+&q^87W`lM8%yEbD2N;^gt3Xu77c@<~!n# zwIvvS?b?b@3D(~hj;`O@<{emjWuL5gCcvb9NqNpp=&trQQIxMV!%Y`OZ~8xPf1(|X z3_`p`FI>b}B?Y-ZD#gtX8;8_sJKFIxrUFZGBswKwQUoUngMx|@(tCsV_={9+I6cf&DDJHlA|IIR^!wIXF&J+9|F$n5 zE|6ZtS(jHeXCYovVETEQLN!ng59v||8IU0Q=M9gwJCYK0h-`MtJg^#4yS(C%;i zE49GNzi>j!pxKVY6=m>~8w%~1v*cpxSBN+-7#uDSAdj z-*>9Q6qkjO%k+Y2T#IVzWQh9`*W-YQWyOPtu`0>; zgTrDTOFFU_n+aRzBl_m%#&|`X!snenn@kwS zzM~k~C|pT2+e8B+X%Jk#+Hd=O1YP?S1%XI_3mv0J{9vHShw&!|lE8n5zVnI&>QB}7 z5YD6LQK!EYq{#24Ink#C!(CAHWJC`IrjYu}<3AL66NGvhUV8xASaO8Li}3&;Gv4LZ zbOS2QxB8bc0>p1a=4yO0{K<&Yxr+i&QDWwQA-u}-Pa!c76lZ(RNI_WbP11Jt6Y=89 zVJ(K3sO$o~vudK3o&<;Cz71e+9A{xx+&v05#x%rBcd(DKF9rPA4ghL3VwSK?qJplY zPT-~4IFJi8{r07L}fX1z2(2-avSEa;Go z=naa-urTB&lKcR9-F2+ezQmc}a0Tzu_Ay+)e8DbmDP8h4$lIOG5kwkEKauCNK@8K! zBm_P;PE6)m)PkLS-zIJ?{TNwM$_p?Q46{(8Ljk8~yx*gQv<3_@rA?E=sjt z+2XyDnaGR_62O%6@Eq`&Cml%-RPf+dKYOG9g$j*kq%p&b3=NN{#8ccG^;O%L^}D zG_*ld#o%d{D_celUXi(qFW8QV+m?l;$E(S!^OI^5!bV}e58i!CkW`z91mjhb_a@jQ zHXfPJpwZf13Wqea@c+GgY~X-!aB!rsM(+7s1HAtj4{mArEuqx&Kbb8{#nqNNJKIjp zwBI?+reU|~=ao^U24wm{^^~n|>-4g^uDk`fU?b>(#I7Hw{nKZc_)$qQ?ikX^X z@(nLlV7BKtKUxkiiuIVNXt2$m{{C3x?_md|k@;rh{v!_HU95?fVOHOKZGEL0y5KpP z2l4ByJOtK}MZz>5sO%u{a){Hy?akY^fDj@2>*$z21-lJ*N&J(!gEE{u48yq<&nu$+W`Y0w2-blRZx%J z>_OP#_@(EHDK;K`kYjm%c&mL^Tu0Ocn2WiYl}l|Ko^@c3M9Ih_UP%A55_>R#Uu|vv z=EBZ)Ao%(2+uR|+L9>R#?guF<2<4vO=F^ zE41Pf^+?|S>+oNgH~f&ahOg1DC!@81+z^SkxiTzE>3vzYT7r)r zj`WA{zvBYh*!E^%)ryk;pRVh_c|23DGH%$s9@oWqalx|X@zaPFGjh=Ea!kjEZ*%Q$ zeBZ~s&Tb4Px%o>tvW0YVUud6&a_S~^%xyMt_g^#X&at=;eP;Vj{uC?8Y`nE!#-nzz zr}9i$38*M7ZFsVh4%#C>G@o6kRi>CA2a-py0g>wwjl*6l@!3$)W^>!-lI;e72Z_DfUnFSQt=-l6*hV zPz;ekiN&;>0)rvuQZm>Sd--TB=1|~4JYQCFfi?ByB~lsU8004~uzQN8FfvivFmau| zOCNri76c4pWPbg#h##ZpPg_5ze?W)lZH;4Y*i8iXPV`Tt|03z;z{PEZ0ngY3Gs=v;Lyrsppr+*R*$*w8l-KLvRQa~vIggk5_ zR-EK078j)xLFD-7?yim9?)ex3Dy4sVFod>owqP!;U`7EnNgV}=wZxEg-1z~CP+!tU z(JWM&drib5VhkW4k4LKCvFXMxv#)kPZq90rc5RCy_rO>(UuU67WppK7Zi>d=fi^6P zL}>2-1b*(~XfL3}v9(XKd#2gb4I~ad2-?z#c>NJY1-h|3d`f?~D3hIEOl)4MhR+Dz zso+W=YYyYqXp*(^7A9$MYPbo9fZPpl4~-0A9rR#}b!mDXX>oW)Iou3iB*rpdTvkc|#bGsLh z6oc(Z+48=^ImwZ$*H`n41HUg>&Z9Qud_^&Q${n z%TKoT9YE$qfP)~KDbT5uI^2ftsZ4)3(od?z?uKY8vmLT+ex8Cb_E&N>mEPu5-_?@=4-WiiH%KBcJfSK+;gQYt0Fq>%iAaW`N`V8>w+6wPC=Mz3Lq+6N(R5&eu^1BdGpa_rB6 zOZsKlfv(4b!SRjx1hoSYlpGtQ5dRCNEY-xJ#d#g3K@+eqq_l79%e@21-2h3v`-N`8*vZ21e3**jefn@U0# z4^U`>5p1C;^S_)Hn)X{bpJMgB6v@EJgN$YmCe=4;w4Gram6TrLJ$*??_bh6mh`&{O zN;Jd^k_92U3;?{{v&u>V{o6-~LGBpBQDh%n!Eepe`pe!`-(503xbeP=Aul-FQu2V` z?HR==REQ3I)7soe><&wL`R~RGFeeiGe$r15bagV8SZxbyM1m(r4H9!+QbC<96Zd4b zt6^CUiTz;SAa9;f>M&RvN*s6|A=olQ4k?yF6Ll&ibdynH>kSn$%81Y)NpQ{y5RDkx z@x7Ffg%}=WLC_E@?%}dYsnsrj#L6ix2qT)`6>}Q~vi3*g^OQ@U**3aI;9FR}wWX&E z;YbUF&&CAp;?ShcgvJ3L?-dF{D{<%tJ_qAe&PA07d7Xjm)+(ut#$_-?i7_v z+0Np%5@_!%b{$I_60aq5Oens-^dj&-68uePmOx5DQSPf%eT=ZPj#0RvEii7+Ou|g4 z?1!oj>AGnLnj-9Cj&FG8hC zlOhc2hFGNU;W55vxt^2|jqxFv$QpFK4}trLnNfR~pqU-`6Ie7jMj*{VOmB9ovRqcx z)4$PtTUMh2gZLU0VdrbXYF^AGd*8(!+vfCHgZ~*~3spx3lzY(`bSo-`-_;ABBIPMo ze5z}|MpqXsn~uk}Gwu>6CI2+`gw2HHKZjrsB)2XoRMYg(fYNMBt2wa8sX@p6h@}O$ z4W{$U38}M}-8Ph_RR{K%`3O^fl}{X*i`5KgKKvxIQtopsRBK+|>~^eo^4J`w>3jbh z>>;j?2L#@T*vb7*_J6eR@&eyTWh^4ruv>bUDLZ`6x;}Co9|Bf7 z@dYU~$-64>(nY)ByxlNVQ8I_J9I9J$To3NRsINd3iOMj z+$6MmFF3LBM)QD~RQVl0HVyGpEz0mME&lo9*H;g_8&=KGV(JFt;-U)3-Fq1$MOij# z-sr1KsAIh4{K2_oVHz0)IRpU8)X@z3ovphdw@LWeFgTfRyqqgpqZgSz_WM3>bz5i9 zkewTy{j@2G`Q3PDP4c?_cWI(=ejWYk4RiPzC1+itofZ~rac{Q~gfALlKB4BIc;oVH zL0d>kR(=hzqVdtBNOYZ1$QwKK)rDphL6$liifs83Zn51q1y(=^cUM$pL8m7Sb=)msCa&+SR~37+ z5%q0|txvRWvuD%lLjI=&#oT)TqN+mDG@u^ph?dBoH7;5FUB!~!zFgn(a1L)ry8X-k zob8vbb9$^&TwowI&Va*BxBg-vXI;Nmx^dTKn8YW`0 zIRd@cUd^hSGJ%+CI$5?1wnl-pm6C4BDOy;jW=qkI+O9>fI+J#rbB!s>$XKk0U=ce5 z0ZyIMz~4wZ!=CY`4O%tyG)dzv>QlDALIIaFm# zHyCIM*#>Fw;9~Esx{PZlH#env)bUtQYsidZu_>)Te2A?VsBT8jcXps;Oml6^rM73SK6CX5eaNMHlK4#KoU;1-XqhS#pY? zBNb}TjG_Ih?@wAnt?f&^;)5W zsD^$%qcJYRHh>e}fG=Ysa3g!zaE=JJb|1CJw}kRyh)@f>%k@ViR*U_N z94*6-g8IXJD01yi3~3e*K}cuDC#~vn!HmWz^uLv+_?^VFw!X zu|jM4V5EL0#)no<+g}i@yWT7* z0!HAxa1h9rTNPyW-k9Q^9Cw9N%Rni&MKsRvCYTN1FJ3|^05la;=optA`}w#UBAqj; z9ExuwdY;NdO6$;gkFv!*%uJ&~D$ zA!!Do&2SCA_yb|AhU1sgh1`3})f?a{mG;~Z4ZU{#G3L7xvU%5Z7%;AfD5k8NJXA>v z9bT<~wUQqpS~qzmN^G&1!~g1*{%)Fj;>CTAps^S@@XU~Pb`6d^ literal 0 HcmV?d00001 diff --git a/resources/language-metavariables/tree-sitter-kotlin/pyproject.toml b/resources/language-metavariables/tree-sitter-kotlin/pyproject.toml new file mode 100644 index 000000000..e186709c9 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-kotlin" +description = "Kotlin grammar for tree-sitter" +version = "0.0.1" +keywords = ["incremental", "parsing", "tree-sitter", "kotlin"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed" +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-kotlin" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/resources/language-metavariables/tree-sitter-kotlin/queries/highlights.scm b/resources/language-metavariables/tree-sitter-kotlin/queries/highlights.scm new file mode 100644 index 000000000..6f1c9687c --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/queries/highlights.scm @@ -0,0 +1,380 @@ +;; Based on the nvim-treesitter highlighting, which is under the Apache license. +;; See https://github.com/nvim-treesitter/nvim-treesitter/blob/f8ab59861eed4a1c168505e3433462ed800f2bae/queries/kotlin/highlights.scm +;; +;; The only difference in this file is that queries using #lua-match? +;; have been removed. + +;;; Identifiers + +(simple_identifier) @variable + +; `it` keyword inside lambdas +; FIXME: This will highlight the keyword outside of lambdas since tree-sitter +; does not allow us to check for arbitrary nestation +((simple_identifier) @variable.builtin +(#eq? @variable.builtin "it")) + +; `field` keyword inside property getter/setter +; FIXME: This will highlight the keyword outside of getters and setters +; since tree-sitter does not allow us to check for arbitrary nestation +((simple_identifier) @variable.builtin +(#eq? @variable.builtin "field")) + +; `this` this keyword inside classes +(this_expression) @variable.builtin + +; `super` keyword inside classes +(super_expression) @variable.builtin + +(class_parameter + (simple_identifier) @property) + +(class_body + (property_declaration + (variable_declaration + (simple_identifier) @property))) + +; id_1.id_2.id_3: `id_2` and `id_3` are assumed as object properties +(_ + (navigation_suffix + (simple_identifier) @property)) + +(enum_entry + (simple_identifier) @constant) + +(type_identifier) @type + +((type_identifier) @type.builtin + (#any-of? @type.builtin + "Byte" + "Short" + "Int" + "Long" + "UByte" + "UShort" + "UInt" + "ULong" + "Float" + "Double" + "Boolean" + "Char" + "String" + "Array" + "ByteArray" + "ShortArray" + "IntArray" + "LongArray" + "UByteArray" + "UShortArray" + "UIntArray" + "ULongArray" + "FloatArray" + "DoubleArray" + "BooleanArray" + "CharArray" + "Map" + "Set" + "List" + "EmptyMap" + "EmptySet" + "EmptyList" + "MutableMap" + "MutableSet" + "MutableList" +)) + +(package_header + . (identifier)) @namespace + +(import_header + "import" @include) + + +; TODO: Seperate labeled returns/breaks/continue/super/this +; Must be implemented in the parser first +(label) @label + +;;; Function definitions + +(function_declaration + . (simple_identifier) @function) + +(getter + ("get") @function.builtin) +(setter + ("set") @function.builtin) + +(primary_constructor) @constructor +(secondary_constructor + ("constructor") @constructor) + +(constructor_invocation + (user_type + (type_identifier) @constructor)) + +(anonymous_initializer + ("init") @constructor) + +(parameter + (simple_identifier) @parameter) + +(parameter_with_optional_type + (simple_identifier) @parameter) + +; lambda parameters +(lambda_literal + (lambda_parameters + (variable_declaration + (simple_identifier) @parameter))) + +;;; Function calls + +; function() +(call_expression + . (simple_identifier) @function) + +; object.function() or object.property.function() +(call_expression + (navigation_expression + (navigation_suffix + (simple_identifier) @function) . )) + +(call_expression + . (simple_identifier) @function.builtin + (#any-of? @function.builtin + "arrayOf" + "arrayOfNulls" + "byteArrayOf" + "shortArrayOf" + "intArrayOf" + "longArrayOf" + "ubyteArrayOf" + "ushortArrayOf" + "uintArrayOf" + "ulongArrayOf" + "floatArrayOf" + "doubleArrayOf" + "booleanArrayOf" + "charArrayOf" + "emptyArray" + "mapOf" + "setOf" + "listOf" + "emptyMap" + "emptySet" + "emptyList" + "mutableMapOf" + "mutableSetOf" + "mutableListOf" + "print" + "println" + "error" + "TODO" + "run" + "runCatching" + "repeat" + "lazy" + "lazyOf" + "enumValues" + "enumValueOf" + "assert" + "check" + "checkNotNull" + "require" + "requireNotNull" + "with" + "suspend" + "synchronized" +)) + +;;; Literals + +[ + (line_comment) + (multiline_comment) + (shebang_line) +] @comment + +(real_literal) @float +[ + (integer_literal) + (long_literal) + (hex_literal) + (bin_literal) + (unsigned_literal) +] @number + +[ + (null_literal) ; should be highlighted the same as booleans + (boolean_literal) +] @boolean + +(character_literal) @character + +(string_literal) @string + +(character_escape_seq) @string.escape + +; There are 3 ways to define a regex +; - "[abc]?".toRegex() +(call_expression + (navigation_expression + ((string_literal) @string.regex) + (navigation_suffix + ((simple_identifier) @_function + (#eq? @_function "toRegex"))))) + +; - Regex("[abc]?") +(call_expression + ((simple_identifier) @_function + (#eq? @_function "Regex")) + (call_suffix + (value_arguments + (value_argument + (string_literal) @string.regex)))) + +; - Regex.fromLiteral("[abc]?") +(call_expression + (navigation_expression + ((simple_identifier) @_class + (#eq? @_class "Regex")) + (navigation_suffix + ((simple_identifier) @_function + (#eq? @_function "fromLiteral")))) + (call_suffix + (value_arguments + (value_argument + (string_literal) @string.regex)))) + +;;; Keywords + +(type_alias "typealias" @keyword) +[ + (class_modifier) + (member_modifier) + (function_modifier) + (property_modifier) + (platform_modifier) + (variance_modifier) + (parameter_modifier) + (visibility_modifier) + (reification_modifier) + (inheritance_modifier) +]@keyword + +[ + "val" + "var" + "enum" + "class" + "object" + "interface" +; "typeof" ; NOTE: It is reserved for future use +] @keyword + +("fun") @keyword.function + +(jump_expression) @keyword.return + +[ + "if" + "else" + "when" +] @conditional + +[ + "for" + "do" + "while" +] @repeat + +[ + "try" + "catch" + "throw" + "finally" +] @exception + + +(annotation + "@" @attribute (use_site_target)? @attribute) +(annotation + (user_type + (type_identifier) @attribute)) +(annotation + (constructor_invocation + (user_type + (type_identifier) @attribute))) + +(file_annotation + "@" @attribute "file" @attribute ":" @attribute) +(file_annotation + (user_type + (type_identifier) @attribute)) +(file_annotation + (constructor_invocation + (user_type + (type_identifier) @attribute))) + +;;; Operators & Punctuation + +[ + "!" + "!=" + "!==" + "=" + "==" + "===" + ">" + ">=" + "<" + "<=" + "||" + "&&" + "+" + "++" + "+=" + "-" + "--" + "-=" + "*" + "*=" + "/" + "/=" + "%" + "%=" + "?." + "?:" + "!!" + "is" + "!is" + "in" + "!in" + "as" + "as?" + ".." + "->" +] @operator + +[ + "(" ")" + "[" "]" + "{" "}" +] @punctuation.bracket + +[ + "." + "," + ";" + ":" + "::" +] @punctuation.delimiter + +; NOTE: `interpolated_identifier`s can be highlighted in any way +(string_literal + "$" @punctuation.special + (interpolated_identifier) @none) +(string_literal + "${" @punctuation.special + (interpolated_expression) @none + "}" @punctuation.special) diff --git a/resources/language-metavariables/tree-sitter-kotlin/setup.py b/resources/language-metavariables/tree-sitter-kotlin/setup.py new file mode 100644 index 000000000..a49933995 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/setup.py @@ -0,0 +1,60 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_kotlin", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_kotlin": ["*.pyi", "py.typed"], + "tree_sitter_kotlin.queries": ["*.scm"], + }, + ext_package="tree_sitter_kotlin", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_kotlin/binding.c", + "src/parser.c", + "src/scanner.c", + ], + extra_compile_args=[ + "-std=c11", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", + ], + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/grammar.json b/resources/language-metavariables/tree-sitter-kotlin/src/grammar.json new file mode 100644 index 000000000..c5cc67332 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/grammar.json @@ -0,0 +1,6392 @@ +{ + "name": "kotlin", + "word": "_alpha_identifier", + "rules": { + "source_file": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "shebang_line" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "file_annotation" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "package_header" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "import_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "SYMBOL", + "name": "_semi" + } + ] + } + } + ] + }, + "shebang_line": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#!" + }, + { + "type": "PATTERN", + "value": "[^\\r\\n]*" + } + ] + }, + "file_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "file" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_unescaped_annotation" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SYMBOL", + "name": "_unescaped_annotation" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semi" + } + ] + }, + "package_header": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "package" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_semi" + } + ] + }, + "import_list": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "import_header" + } + }, + { + "type": "SYMBOL", + "name": "_import_list_delimiter" + } + ] + }, + "import_header": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_import_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "wildcard_import" + } + ] + }, + { + "type": "SYMBOL", + "name": "import_alias" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semi" + } + ] + }, + "wildcard_import": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "*" + } + }, + "import_alias": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + } + ] + }, + "top_level_object": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semi" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "type_alias": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "typealias" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + "_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_declaration" + }, + { + "type": "SYMBOL", + "name": "object_declaration" + }, + { + "type": "SYMBOL", + "name": "function_declaration" + }, + { + "type": "SYMBOL", + "name": "property_declaration" + }, + { + "type": "SYMBOL", + "name": "getter" + }, + { + "type": "SYMBOL", + "name": "setter" + }, + { + "type": "SYMBOL", + "name": "type_alias" + } + ] + }, + "class_declaration": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "interface" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_constructor" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_delegation_specifiers" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_constraints" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_body" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "enum" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_constructor" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_delegation_specifiers" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_constraints" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enum_class_body" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + "primary_constructor": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "constructor" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_class_parameters" + } + ] + }, + "class_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_class_member_declarations" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_class_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "class_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "class_parameter" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "binding_pattern_kind": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "val" + }, + { + "type": "STRING", + "value": "var" + } + ] + }, + "class_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "binding_pattern_kind" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_delegation_specifiers": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "delegation_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "delegation_specifier" + } + ] + } + } + ] + } + }, + "delegation_specifier": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "constructor_invocation" + }, + { + "type": "SYMBOL", + "name": "explicit_delegation" + }, + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "SYMBOL", + "name": "function_type" + } + ] + } + }, + "constructor_invocation": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "SYMBOL", + "name": "value_arguments" + } + ] + }, + "_annotated_delegation_specifier": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "annotation" + } + }, + { + "type": "SYMBOL", + "name": "delegation_specifier" + } + ] + }, + "explicit_delegation": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "SYMBOL", + "name": "function_type" + } + ] + }, + { + "type": "STRING", + "value": "by" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "type_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_parameter" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "type_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameter_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "type_constraints": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "where" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_constraint" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_constraint" + } + ] + } + } + ] + } + ] + } + }, + "type_constraint": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "annotation" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + "_class_member_declarations": { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_class_member_declaration" + }, + { + "type": "SYMBOL", + "name": "_semi" + } + ] + } + }, + "_class_member_declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration" + }, + { + "type": "SYMBOL", + "name": "companion_object" + }, + { + "type": "SYMBOL", + "name": "anonymous_initializer" + }, + { + "type": "SYMBOL", + "name": "secondary_constructor" + } + ] + }, + "anonymous_initializer": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "init" + }, + { + "type": "SYMBOL", + "name": "_block" + } + ] + }, + "companion_object": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "companion" + }, + { + "type": "STRING", + "value": "object" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_delegation_specifiers" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_body" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "function_value_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_function_value_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_function_value_parameter" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_function_value_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_receiver_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_reference" + }, + { + "type": "SYMBOL", + "name": "parenthesized_type" + }, + { + "type": "SYMBOL", + "name": "nullable_type" + } + ] + } + ] + }, + "function_declaration": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "fun" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_receiver_type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "SYMBOL", + "name": "function_value_parameters" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_constraints" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_body" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "function_body": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + }, + "variable_declaration": { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "property_declaration": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "binding_pattern_kind" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_receiver_type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "multi_variable_declaration" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_constraints" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "property_delegate" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "getter" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "setter" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + "property_delegate": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "by" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "getter": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "get" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function_body" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "setter": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "parameter_with_optional_type" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function_body" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "parameters_with_optional_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_with_optional_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "parameter_with_optional_type" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter_with_optional_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "parameter": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + "object_declaration": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "object" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_delegation_specifiers" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_body" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "secondary_constructor": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "constructor" + }, + { + "type": "SYMBOL", + "name": "function_value_parameters" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "constructor_delegation_call" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "constructor_delegation_call": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "this" + }, + { + "type": "STRING", + "value": "super" + } + ] + }, + { + "type": "SYMBOL", + "name": "value_arguments" + } + ] + }, + "enum_class_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_enum_entries" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_class_member_declarations" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_enum_entries": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enum_entry" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "enum_entry" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "enum_entry": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "value_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_body" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parenthesized_type" + }, + { + "type": "SYMBOL", + "name": "nullable_type" + }, + { + "type": "SYMBOL", + "name": "_type_reference" + }, + { + "type": "SYMBOL", + "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "not_nullable_type" + } + ] + } + ] + }, + "_type_reference": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "STRING", + "value": "dynamic" + } + ] + } + }, + "not_nullable_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "SYMBOL", + "name": "parenthesized_user_type" + } + ] + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "SYMBOL", + "name": "parenthesized_user_type" + } + ] + } + ] + }, + "nullable_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_reference" + }, + { + "type": "SYMBOL", + "name": "parenthesized_type" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_quest" + } + } + ] + }, + "_quest": { + "type": "STRING", + "value": "?" + }, + "user_type": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_user_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_simple_user_type" + } + ] + } + } + ] + }, + "_simple_user_type": { + "type": "PREC_RIGHT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "type_projection": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_projection_modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + "type_projection_modifiers": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_type_projection_modifier" + } + }, + "_type_projection_modifier": { + "type": "SYMBOL", + "name": "variance_modifier" + }, + "function_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_user_type" + }, + { + "type": "STRING", + "value": "." + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function_type_parameters" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + "function_type_parameters": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "parenthesized_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parenthesized_user_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "user_type" + }, + { + "type": "SYMBOL", + "name": "parenthesized_user_type" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "statements": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_semi" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semi" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration" + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "label" + }, + { + "type": "SYMBOL", + "name": "annotation" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assignment" + }, + { + "type": "SYMBOL", + "name": "_loop_statement" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + ] + }, + "label": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[a-zA-Z_][a-zA-Z_0-9]*" + }, + { + "type": "STRING", + "value": "@" + } + ] + } + }, + "control_structure_body": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, + "_block": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "statements" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "_loop_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "do_while_statement" + } + ] + }, + "for_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "annotation" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "multi_variable_declaration" + } + ] + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "control_structure_body" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "control_structure_body" + } + ] + } + ] + }, + "do_while_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "control_structure_body" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "_semi": { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + "assignment": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "directly_assignable_expression" + }, + { + "type": "SYMBOL", + "name": "_assignment_and_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "directly_assignable_expression" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_unary_expression" + }, + { + "type": "SYMBOL", + "name": "_binary_expression" + }, + { + "type": "SYMBOL", + "name": "_primary_expression" + } + ] + }, + "_unary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "postfix_expression" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "indexing_expression" + }, + { + "type": "SYMBOL", + "name": "navigation_expression" + }, + { + "type": "SYMBOL", + "name": "prefix_expression" + }, + { + "type": "SYMBOL", + "name": "as_expression" + }, + { + "type": "SYMBOL", + "name": "spread_expression" + } + ] + }, + "postfix_expression": { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_postfix_unary_operator" + } + ] + } + }, + "call_expression": { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "call_suffix" + } + ] + } + }, + "indexing_expression": { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "indexing_suffix" + } + ] + } + }, + "navigation_expression": { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "navigation_suffix" + } + ] + } + }, + "prefix_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "annotation" + }, + { + "type": "SYMBOL", + "name": "label" + }, + { + "type": "SYMBOL", + "name": "_prefix_unary_operator" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "as_expression": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_as_operator" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + }, + "spread_expression": { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "_binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "multiplicative_expression" + }, + { + "type": "SYMBOL", + "name": "additive_expression" + }, + { + "type": "SYMBOL", + "name": "range_expression" + }, + { + "type": "SYMBOL", + "name": "infix_expression" + }, + { + "type": "SYMBOL", + "name": "elvis_expression" + }, + { + "type": "SYMBOL", + "name": "check_expression" + }, + { + "type": "SYMBOL", + "name": "comparison_expression" + }, + { + "type": "SYMBOL", + "name": "equality_expression" + }, + { + "type": "SYMBOL", + "name": "comparison_expression" + }, + { + "type": "SYMBOL", + "name": "equality_expression" + }, + { + "type": "SYMBOL", + "name": "conjunction_expression" + }, + { + "type": "SYMBOL", + "name": "disjunction_expression" + } + ] + }, + "multiplicative_expression": { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_multiplicative_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "additive_expression": { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_additive_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "range_expression": { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "infix_expression": { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "elvis_expression": { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "?:" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "check_expression": { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_in_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_is_operator" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + ] + } + ] + } + }, + "comparison_expression": { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_comparison_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "equality_expression": { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "_equality_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "conjunction_expression": { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "disjunction_expression": { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "indexing_suffix": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "navigation_suffix": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_member_access_operator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "STRING", + "value": "class" + } + ] + } + ] + }, + "call_suffix": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "value_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "annotated_lambda" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "value_arguments" + } + ] + } + ] + } + }, + "annotated_lambda": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "annotation" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "label" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "lambda_literal" + } + ] + }, + "type_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_projection" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_projection" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "value_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "value_argument" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "value_argument" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "value_argument": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "annotation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "STRING", + "value": "=" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "_primary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "SYMBOL", + "name": "_literal_constant" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "callable_reference" + }, + { + "type": "SYMBOL", + "name": "_function_literal" + }, + { + "type": "SYMBOL", + "name": "object_literal" + }, + { + "type": "SYMBOL", + "name": "collection_literal" + }, + { + "type": "SYMBOL", + "name": "this_expression" + }, + { + "type": "SYMBOL", + "name": "super_expression" + }, + { + "type": "SYMBOL", + "name": "if_expression" + }, + { + "type": "SYMBOL", + "name": "when_expression" + }, + { + "type": "SYMBOL", + "name": "try_expression" + }, + { + "type": "SYMBOL", + "name": "jump_expression" + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "collection_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_literal_constant": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "boolean_literal" + }, + { + "type": "SYMBOL", + "name": "integer_literal" + }, + { + "type": "SYMBOL", + "name": "hex_literal" + }, + { + "type": "SYMBOL", + "name": "bin_literal" + }, + { + "type": "SYMBOL", + "name": "character_literal" + }, + { + "type": "SYMBOL", + "name": "real_literal" + }, + { + "type": "SYMBOL", + "name": "null_literal" + }, + { + "type": "SYMBOL", + "name": "long_literal" + }, + { + "type": "SYMBOL", + "name": "unsigned_literal" + } + ] + }, + "string_literal": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_string_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_content" + }, + { + "type": "SYMBOL", + "name": "_interpolation" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_string_end" + } + ] + }, + "line_string_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "${" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_interpolation": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "${" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expression" + }, + "named": true, + "value": "interpolated_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "interpolated_identifier" + } + ] + } + ] + }, + "lambda_literal": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "->" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "statements" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "multi_variable_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declaration" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "lambda_parameters": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_lambda_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_lambda_parameter" + } + ] + } + } + ] + }, + "_lambda_parameter": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "multi_variable_declaration" + } + ] + }, + "anonymous_function": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "fun" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_user_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_simple_user_type" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "." + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function_value_parameters" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_body" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_function_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_literal" + }, + { + "type": "SYMBOL", + "name": "anonymous_function" + } + ] + }, + "object_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "object" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_delegation_specifiers" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "class_body" + } + ] + }, + "this_expression": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "this" + }, + { + "type": "SYMBOL", + "name": "_this_at" + } + ] + }, + "super_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "super" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + { + "type": "SYMBOL", + "name": "_super_at" + } + ] + } + }, + "if_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "control_structure_body" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "control_structure_body" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "control_structure_body" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + } + }, + "when_subject": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "annotation" + } + }, + { + "type": "STRING", + "value": "val" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + }, + { + "type": "STRING", + "value": "=" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "when_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "when" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "when_subject" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "when_entry" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "when_entry": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "when_condition" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "when_condition" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "else" + } + ] + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "control_structure_body" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semi" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "when_condition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "range_test" + }, + { + "type": "SYMBOL", + "name": "type_test" + } + ] + }, + "range_test": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_in_operator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "type_test": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_is_operator" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + }, + "try_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "SYMBOL", + "name": "_block" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "catch_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "finally_block" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "finally_block" + } + ] + } + ] + }, + "catch_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "annotation" + } + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "_block" + } + ] + }, + "finally_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "finally" + }, + { + "type": "SYMBOL", + "name": "_block" + } + ] + }, + "jump_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "SYMBOL", + "name": "_return_at" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "SYMBOL", + "name": "_continue_at" + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "SYMBOL", + "name": "_break_at" + } + ] + }, + "callable_reference": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "simple_identifier" + }, + "named": true, + "value": "type_identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "STRING", + "value": "class" + } + ] + } + ] + }, + "_assignment_and_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + } + ] + }, + "_equality_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "!==" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "===" + } + ] + }, + "_comparison_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + } + ] + }, + "_in_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "!in" + } + ] + }, + "_is_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "is" + }, + { + "type": "STRING", + "value": "!is" + } + ] + }, + "_additive_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + "_multiplicative_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + } + ] + }, + "_as_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "as?" + } + ] + }, + "_prefix_unary_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "!" + } + ] + }, + "_postfix_unary_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "!!" + } + ] + }, + "_member_access_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "safe_nav" + }, + "named": false, + "value": "?." + } + ] + }, + "_indexing_suffix": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_postfix_unary_suffix": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_postfix_unary_operator" + }, + { + "type": "SYMBOL", + "name": "navigation_suffix" + }, + { + "type": "SYMBOL", + "name": "indexing_suffix" + } + ] + }, + "_postfix_unary_expression": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_primary_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_postfix_unary_suffix" + } + } + ] + }, + "directly_assignable_expression": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_postfix_unary_expression" + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + } + ] + } + }, + "modifiers": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "annotation" + }, + { + "type": "SYMBOL", + "name": "_modifier" + } + ] + } + } + }, + "parameter_modifiers": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "annotation" + }, + { + "type": "SYMBOL", + "name": "parameter_modifier" + } + ] + } + }, + "_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_modifier" + }, + { + "type": "SYMBOL", + "name": "member_modifier" + }, + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "SYMBOL", + "name": "function_modifier" + }, + { + "type": "SYMBOL", + "name": "property_modifier" + }, + { + "type": "SYMBOL", + "name": "inheritance_modifier" + }, + { + "type": "SYMBOL", + "name": "parameter_modifier" + }, + { + "type": "SYMBOL", + "name": "platform_modifier" + } + ] + }, + "type_modifiers": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_type_modifier" + } + }, + "_type_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "annotation" + }, + { + "type": "STRING", + "value": "suspend" + } + ] + }, + "class_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "sealed" + }, + { + "type": "STRING", + "value": "annotation" + }, + { + "type": "STRING", + "value": "data" + }, + { + "type": "STRING", + "value": "inner" + }, + { + "type": "STRING", + "value": "value" + } + ] + }, + "member_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "override" + }, + { + "type": "STRING", + "value": "lateinit" + } + ] + }, + "visibility_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "internal" + }, + { + "type": "STRING", + "value": "protected" + } + ] + }, + "variance_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "out" + } + ] + }, + "type_parameter_modifiers": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_type_parameter_modifier" + } + }, + "_type_parameter_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "reification_modifier" + }, + { + "type": "SYMBOL", + "name": "variance_modifier" + }, + { + "type": "SYMBOL", + "name": "annotation" + } + ] + }, + "function_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "tailrec" + }, + { + "type": "STRING", + "value": "operator" + }, + { + "type": "STRING", + "value": "infix" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "external" + }, + { + "type": "STRING", + "value": "suspend" + } + ] + }, + "property_modifier": { + "type": "STRING", + "value": "const" + }, + "inheritance_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "STRING", + "value": "final" + }, + { + "type": "STRING", + "value": "open" + } + ] + }, + "parameter_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "vararg" + }, + { + "type": "STRING", + "value": "noinline" + }, + { + "type": "STRING", + "value": "crossinline" + } + ] + }, + "reification_modifier": { + "type": "STRING", + "value": "reified" + }, + "platform_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "expect" + }, + { + "type": "STRING", + "value": "actual" + } + ] + }, + "annotation": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_single_annotation" + }, + { + "type": "SYMBOL", + "name": "_multi_annotation" + } + ] + }, + "_single_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "use_site_target" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_unescaped_annotation" + } + ] + }, + "_multi_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "use_site_target" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_unescaped_annotation" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "use_site_target": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "field" + }, + { + "type": "STRING", + "value": "property" + }, + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "receiver" + }, + { + "type": "STRING", + "value": "param" + }, + { + "type": "STRING", + "value": "setparam" + }, + { + "type": "STRING", + "value": "delegate" + } + ] + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + "_unescaped_annotation": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "constructor_invocation" + }, + { + "type": "SYMBOL", + "name": "user_type" + } + ] + }, + "simple_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + { + "type": "STRING", + "value": "expect" + }, + { + "type": "STRING", + "value": "data" + }, + { + "type": "STRING", + "value": "inner" + }, + { + "type": "STRING", + "value": "value" + }, + { + "type": "STRING", + "value": "actual" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "get" + } + ] + }, + "identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + } + ] + } + } + ] + }, + "_import_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_import_identifier" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + } + ] + } + ] + }, + "line_comment": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + } + }, + "_return_at": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return@" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "label" + } + ] + }, + "_continue_at": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue@" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "label" + } + ] + }, + "_break_at": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break@" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "label" + } + ] + }, + "_this_at": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "this@" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "type_identifier" + } + ] + }, + "_super_at": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "super@" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "type_identifier" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lexical_identifier" + }, + "named": true, + "value": "type_identifier" + } + ] + } + ] + }, + "real_literal": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + } + ] + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[fF]" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + }, + { + "type": "PATTERN", + "value": "[fF]" + } + ] + } + ] + } + }, + "integer_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + } + } + ] + } + }, + "hex_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "PATTERN", + "value": "[xX]" + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + } + ] + } + } + ] + } + } + ] + } + }, + "bin_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "PATTERN", + "value": "[bB]" + }, + { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[01]" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "_+" + }, + { + "type": "PATTERN", + "value": "[01]" + } + ] + } + } + ] + } + } + ] + } + }, + "unsigned_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer_literal" + }, + { + "type": "SYMBOL", + "name": "hex_literal" + }, + { + "type": "SYMBOL", + "name": "bin_literal" + } + ] + }, + { + "type": "PATTERN", + "value": "[uU]L?" + } + ] + }, + "long_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer_literal" + }, + { + "type": "SYMBOL", + "name": "hex_literal" + }, + { + "type": "SYMBOL", + "name": "bin_literal" + } + ] + }, + { + "type": "STRING", + "value": "L" + } + ] + }, + "boolean_literal": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + } + ] + }, + "character_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "character_escape_seq" + }, + { + "type": "PATTERN", + "value": "[^\\n\\r'\\\\]" + } + ] + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "character_escape_seq": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_uni_character_literal" + }, + { + "type": "SYMBOL", + "name": "_escaped_identifier" + } + ] + }, + "null_literal": { + "type": "STRING", + "value": "null" + }, + "_lexical_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alpha_identifier" + }, + { + "type": "SYMBOL", + "name": "_backtick_identifier" + } + ] + }, + "_alpha_identifier": { + "type": "PATTERN", + "value": "[\\p{L}_][\\p{L}_\\p{Nd}]*" + }, + "_backtick_identifier": { + "type": "PATTERN", + "value": "`[^\\r\\n`]+`" + }, + "_uni_character_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\u" + }, + { + "type": "PATTERN", + "value": "[0-9a-fA-F]{4}" + } + ] + }, + "_escaped_identifier": { + "type": "PATTERN", + "value": "\\\\[tbrn'\"\\\\$]" + } + }, + "extras": [ + { + "type": "SYMBOL", + "name": "line_comment" + }, + { + "type": "SYMBOL", + "name": "multiline_comment" + }, + { + "type": "PATTERN", + "value": "\\s+" + } + ], + "conflicts": [ + [ + "_primary_expression", + "callable_reference" + ], + [ + "constructor_invocation", + "_unescaped_annotation" + ], + [ + "platform_modifier", + "simple_identifier" + ], + [ + "class_modifier", + "simple_identifier" + ], + [ + "_postfix_unary_expression", + "_expression" + ], + [ + "call_expression", + "range_expression", + "comparison_expression" + ], + [ + "call_expression", + "elvis_expression", + "comparison_expression" + ], + [ + "call_expression", + "check_expression", + "comparison_expression" + ], + [ + "call_expression", + "additive_expression", + "comparison_expression" + ], + [ + "call_expression", + "infix_expression", + "comparison_expression" + ], + [ + "call_expression", + "multiplicative_expression", + "comparison_expression" + ], + [ + "type_arguments", + "_comparison_operator" + ], + [ + "_statement", + "prefix_expression" + ], + [ + "_statement", + "prefix_expression", + "modifiers" + ], + [ + "prefix_expression", + "when_subject" + ], + [ + "prefix_expression", + "value_argument" + ], + [ + "user_type" + ], + [ + "user_type", + "anonymous_function" + ], + [ + "user_type", + "function_type" + ], + [ + "annotated_lambda", + "modifiers" + ], + [ + "setter", + "simple_identifier" + ], + [ + "getter", + "simple_identifier" + ], + [ + "parameter_modifiers", + "_type_modifier" + ], + [ + "type_modifiers" + ], + [ + "not_nullable_type" + ] + ], + "precedences": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "_import_list_delimiter" + }, + { + "type": "SYMBOL", + "name": "safe_nav" + }, + { + "type": "SYMBOL", + "name": "multiline_comment" + }, + { + "type": "SYMBOL", + "name": "_string_start" + }, + { + "type": "SYMBOL", + "name": "_string_end" + }, + { + "type": "SYMBOL", + "name": "string_content" + } + ], + "inline": [], + "supertypes": [] +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/node-types.json b/resources/language-metavariables/tree-sitter-kotlin/src/node-types.json new file mode 100644 index 000000000..cd64b61e1 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/node-types.json @@ -0,0 +1,9813 @@ +[ + { + "type": "additive_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "annotated_lambda", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "lambda_literal", + "named": true + } + ] + } + }, + { + "type": "annotation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "constructor_invocation", + "named": true + }, + { + "type": "use_site_target", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "anonymous_function", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_body", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "function_value_parameters", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_arguments", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "anonymous_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statements", + "named": true + } + ] + } + }, + { + "type": "as_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "user_type", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "assignment", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "directly_assignable_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "binding_pattern_kind", + "named": true, + "fields": {} + }, + { + "type": "boolean_literal", + "named": true, + "fields": {} + }, + { + "type": "call_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "call_suffix", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "call_suffix", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotated_lambda", + "named": true + }, + { + "type": "type_arguments", + "named": true + }, + { + "type": "value_arguments", + "named": true + } + ] + } + }, + { + "type": "callable_reference", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "simple_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "catch_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "statements", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "character_escape_seq", + "named": true, + "fields": {} + }, + { + "type": "character_literal", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "character_escape_seq", + "named": true + } + ] + } + }, + { + "type": "check_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "user_type", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "class_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "anonymous_initializer", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "companion_object", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "getter", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "secondary_constructor", + "named": true + }, + { + "type": "setter", + "named": true + }, + { + "type": "type_alias", + "named": true + } + ] + } + }, + { + "type": "class_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + }, + { + "type": "delegation_specifier", + "named": true + }, + { + "type": "enum_class_body", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "primary_constructor", + "named": true + }, + { + "type": "type_constraints", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_parameters", + "named": true + } + ] + } + }, + { + "type": "class_modifier", + "named": true, + "fields": {} + }, + { + "type": "class_parameter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "binding_pattern_kind", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "user_type", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "collection_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "companion_object", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_body", + "named": true + }, + { + "type": "delegation_specifier", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "comparison_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "conjunction_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "constructor_delegation_call", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "value_arguments", + "named": true + } + ] + } + }, + { + "type": "constructor_invocation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "user_type", + "named": true + }, + { + "type": "value_arguments", + "named": true + } + ] + } + }, + { + "type": "control_structure_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "assignment", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "getter", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "setter", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "statements", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_alias", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "delegation_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "constructor_invocation", + "named": true + }, + { + "type": "explicit_delegation", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "directly_assignable_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_suffix", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "navigation_suffix", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "disjunction_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "do_while_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "control_structure_body", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "elvis_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "enum_class_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "anonymous_initializer", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "companion_object", + "named": true + }, + { + "type": "enum_entry", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "getter", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "secondary_constructor", + "named": true + }, + { + "type": "setter", + "named": true + }, + { + "type": "type_alias", + "named": true + } + ] + } + }, + { + "type": "enum_entry", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "value_arguments", + "named": true + } + ] + } + }, + { + "type": "equality_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "explicit_delegation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "user_type", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "file_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "constructor_invocation", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "finally_block", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statements", + "named": true + } + ] + } + }, + { + "type": "for_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "control_structure_body", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multi_variable_declaration", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable_declaration", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "function_body", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "statements", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "function_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_body", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "function_value_parameters", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "type_constraints", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "type_parameters", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "function_modifier", + "named": true, + "fields": {} + }, + { + "type": "function_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "function_type_parameters", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_arguments", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "function_type_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parameter", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "function_value_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parameter", + "named": true + }, + { + "type": "parameter_modifiers", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "getter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_body", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "identifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "simple_identifier", + "named": true + } + ] + } + }, + { + "type": "if_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "control_structure_body", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": false, + "types": [ + { + "type": "control_structure_body", + "named": true + } + ] + } + } + }, + { + "type": "import_alias", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "import_header", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "import_alias", + "named": true + }, + { + "type": "wildcard_import", + "named": true + } + ] + } + }, + { + "type": "import_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "import_header", + "named": true + } + ] + } + }, + { + "type": "indexing_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "indexing_suffix", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "indexing_suffix", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "infix_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "inheritance_modifier", + "named": true, + "fields": {} + }, + { + "type": "interpolated_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "interpolated_identifier", + "named": true, + "fields": {} + }, + { + "type": "jump_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "label", + "named": true, + "fields": {} + }, + { + "type": "lambda_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "lambda_parameters", + "named": true + }, + { + "type": "statements", + "named": true + } + ] + } + }, + { + "type": "lambda_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "multi_variable_declaration", + "named": true + }, + { + "type": "variable_declaration", + "named": true + } + ] + } + }, + { + "type": "long_literal", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "bin_literal", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "integer_literal", + "named": true + } + ] + } + }, + { + "type": "member_modifier", + "named": true, + "fields": {} + }, + { + "type": "modifiers", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "class_modifier", + "named": true + }, + { + "type": "function_modifier", + "named": true + }, + { + "type": "inheritance_modifier", + "named": true + }, + { + "type": "member_modifier", + "named": true + }, + { + "type": "parameter_modifier", + "named": true + }, + { + "type": "platform_modifier", + "named": true + }, + { + "type": "property_modifier", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "multi_variable_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variable_declaration", + "named": true + } + ] + } + }, + { + "type": "multiplicative_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "navigation_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "navigation_suffix", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "navigation_suffix", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "simple_identifier", + "named": true + } + ] + } + }, + { + "type": "not_nullable_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "parenthesized_user_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "nullable_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "object_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + }, + { + "type": "delegation_specifier", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "object_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + }, + { + "type": "delegation_specifier", + "named": true + } + ] + } + }, + { + "type": "package_header", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "parameter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "parameter_modifier", + "named": true, + "fields": {} + }, + { + "type": "parameter_modifiers", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "parameter_modifier", + "named": true + } + ] + } + }, + { + "type": "parameter_with_optional_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parameter_modifiers", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "parenthesized_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "parenthesized_user_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_user_type", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "platform_modifier", + "named": true, + "fields": {} + }, + { + "type": "postfix_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "prefix_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "primary_constructor", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_parameter", + "named": true + }, + { + "type": "modifiers", + "named": true + } + ] + } + }, + { + "type": "property_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "binding_pattern_kind", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "getter", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "multi_variable_declaration", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "property_delegate", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "setter", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_constraints", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "type_parameters", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "user_type", + "named": true + }, + { + "type": "variable_declaration", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "property_delegate", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "range_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "range_test", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "secondary_constructor", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "constructor_delegation_call", + "named": true + }, + { + "type": "function_value_parameters", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "statements", + "named": true + } + ] + } + }, + { + "type": "setter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_body", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parameter_with_optional_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "shebang_line", + "named": true, + "fields": {} + }, + { + "type": "simple_identifier", + "named": true, + "fields": {} + }, + { + "type": "source_file", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "assignment", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "file_annotation", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "getter", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "import_list", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "package_header", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "setter", + "named": true + }, + { + "type": "shebang_line", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_alias", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "spread_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "statements", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "assignment", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "getter", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "label", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_declaration", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "setter", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_alias", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "string_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "interpolated_expression", + "named": true + }, + { + "type": "interpolated_identifier", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "super_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "this_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "try_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "catch_block", + "named": true + }, + { + "type": "finally_block", + "named": true + }, + { + "type": "statements", + "named": true + } + ] + } + }, + { + "type": "type_alias", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "modifiers", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "type_parameters", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "type_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_projection", + "named": true + } + ] + } + }, + { + "type": "type_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "type_constraints", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_constraint", + "named": true + } + ] + } + }, + { + "type": "type_identifier", + "named": true, + "fields": {} + }, + { + "type": "type_modifiers", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "annotation", + "named": true + } + ] + } + }, + { + "type": "type_parameter", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "type_parameter_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "type_parameter_modifiers", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "reification_modifier", + "named": true + }, + { + "type": "variance_modifier", + "named": true + } + ] + } + }, + { + "type": "type_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_parameter", + "named": true + } + ] + } + }, + { + "type": "type_projection", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "type_projection_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "type_projection_modifiers", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variance_modifier", + "named": true + } + ] + } + }, + { + "type": "type_test", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "unsigned_literal", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "bin_literal", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "integer_literal", + "named": true + } + ] + } + }, + { + "type": "use_site_target", + "named": true, + "fields": {} + }, + { + "type": "user_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "value_argument", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "value_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "value_argument", + "named": true + } + ] + } + }, + { + "type": "variable_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "not_nullable_type", + "named": true + }, + { + "type": "nullable_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "type_modifiers", + "named": true + }, + { + "type": "user_type", + "named": true + } + ] + } + }, + { + "type": "variance_modifier", + "named": true, + "fields": {} + }, + { + "type": "visibility_modifier", + "named": true, + "fields": {} + }, + { + "type": "when_condition", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "range_test", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "type_test", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "when_entry", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "control_structure_body", + "named": true + }, + { + "type": "when_condition", + "named": true + } + ] + } + }, + { + "type": "when_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "when_entry", + "named": true + }, + { + "type": "when_subject", + "named": true + } + ] + } + }, + { + "type": "when_subject", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "variable_declaration", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "while_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "additive_expression", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "as_expression", + "named": true + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "callable_reference", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "check_expression", + "named": true + }, + { + "type": "collection_literal", + "named": true + }, + { + "type": "comparison_expression", + "named": true + }, + { + "type": "conjunction_expression", + "named": true + }, + { + "type": "control_structure_body", + "named": true + }, + { + "type": "disjunction_expression", + "named": true + }, + { + "type": "elvis_expression", + "named": true + }, + { + "type": "equality_expression", + "named": true + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "indexing_expression", + "named": true + }, + { + "type": "infix_expression", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "jump_expression", + "named": true + }, + { + "type": "lambda_literal", + "named": true + }, + { + "type": "long_literal", + "named": true + }, + { + "type": "multiplicative_expression", + "named": true + }, + { + "type": "navigation_expression", + "named": true + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "postfix_expression", + "named": true + }, + { + "type": "prefix_expression", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "simple_identifier", + "named": true + }, + { + "type": "spread_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "super_expression", + "named": true + }, + { + "type": "this_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "unsigned_literal", + "named": true + }, + { + "type": "when_expression", + "named": true + } + ] + } + }, + { + "type": "!", + "named": false + }, + { + "type": "!!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "!in", + "named": false + }, + { + "type": "!is", + "named": false + }, + { + "type": "#!", + "named": false + }, + { + "type": "$", + "named": false + }, + { + "type": "${", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": "?.", + "named": false + }, + { + "type": "?:", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "L", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "\\u", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "abstract", + "named": false + }, + { + "type": "actual", + "named": false + }, + { + "type": "annotation", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "as?", + "named": false + }, + { + "type": "bin_literal", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "break@", + "named": false + }, + { + "type": "by", + "named": false + }, + { + "type": "catch", + "named": false + }, + { + "type": "class", + "named": false + }, + { + "type": "companion", + "named": false + }, + { + "type": "constructor", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "continue@", + "named": false + }, + { + "type": "crossinline", + "named": false + }, + { + "type": "data", + "named": false + }, + { + "type": "delegate", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "dynamic", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "expect", + "named": false + }, + { + "type": "external", + "named": false + }, + { + "type": "false", + "named": false + }, + { + "type": "field", + "named": false + }, + { + "type": "file", + "named": false + }, + { + "type": "final", + "named": false + }, + { + "type": "finally", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "fun", + "named": false + }, + { + "type": "get", + "named": false + }, + { + "type": "hex_literal", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "import", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "infix", + "named": false + }, + { + "type": "init", + "named": false + }, + { + "type": "inline", + "named": false + }, + { + "type": "inner", + "named": false + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "interface", + "named": false + }, + { + "type": "internal", + "named": false + }, + { + "type": "is", + "named": false + }, + { + "type": "lateinit", + "named": false + }, + { + "type": "line_comment", + "named": true + }, + { + "type": "multiline_comment", + "named": true + }, + { + "type": "noinline", + "named": false + }, + { + "type": "null_literal", + "named": true + }, + { + "type": "object", + "named": false + }, + { + "type": "open", + "named": false + }, + { + "type": "operator", + "named": false + }, + { + "type": "out", + "named": false + }, + { + "type": "override", + "named": false + }, + { + "type": "package", + "named": false + }, + { + "type": "param", + "named": false + }, + { + "type": "private", + "named": false + }, + { + "type": "property", + "named": false + }, + { + "type": "property_modifier", + "named": true + }, + { + "type": "protected", + "named": false + }, + { + "type": "public", + "named": false + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "receiver", + "named": false + }, + { + "type": "reification_modifier", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "return@", + "named": false + }, + { + "type": "sealed", + "named": false + }, + { + "type": "set", + "named": false + }, + { + "type": "setparam", + "named": false + }, + { + "type": "string_content", + "named": true + }, + { + "type": "super", + "named": false + }, + { + "type": "super@", + "named": false + }, + { + "type": "suspend", + "named": false + }, + { + "type": "tailrec", + "named": false + }, + { + "type": "this", + "named": false + }, + { + "type": "this@", + "named": false + }, + { + "type": "throw", + "named": false + }, + { + "type": "true", + "named": false + }, + { + "type": "try", + "named": false + }, + { + "type": "typealias", + "named": false + }, + { + "type": "val", + "named": false + }, + { + "type": "value", + "named": false + }, + { + "type": "var", + "named": false + }, + { + "type": "vararg", + "named": false + }, + { + "type": "when", + "named": false + }, + { + "type": "where", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "wildcard_import", + "named": true + }, + { + "type": "{", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "}", + "named": false + } +] \ No newline at end of file diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/parser.c b/resources/language-metavariables/tree-sitter-kotlin/src/parser.c new file mode 100644 index 000000000..b34e4847a --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/parser.c @@ -0,0 +1,684856 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 10209 +#define LARGE_STATE_COUNT 4573 +#define SYMBOL_COUNT 357 +#define ALIAS_COUNT 3 +#define TOKEN_COUNT 153 +#define EXTERNAL_TOKEN_COUNT 7 +#define FIELD_COUNT 3 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 +#define PRODUCTION_ID_COUNT 16 + +enum ts_symbol_identifiers { + sym__alpha_identifier = 1, + anon_sym_POUND_BANG = 2, + aux_sym_shebang_line_token1 = 3, + anon_sym_AT = 4, + anon_sym_file = 5, + anon_sym_COLON = 6, + anon_sym_LBRACK = 7, + anon_sym_RBRACK = 8, + anon_sym_package = 9, + anon_sym_import = 10, + anon_sym_DOT = 11, + sym_wildcard_import = 12, + anon_sym_as = 13, + anon_sym_typealias = 14, + anon_sym_EQ = 15, + anon_sym_class = 16, + anon_sym_interface = 17, + anon_sym_enum = 18, + anon_sym_constructor = 19, + anon_sym_LBRACE = 20, + anon_sym_RBRACE = 21, + anon_sym_LPAREN = 22, + anon_sym_COMMA = 23, + anon_sym_RPAREN = 24, + anon_sym_val = 25, + anon_sym_var = 26, + anon_sym_by = 27, + anon_sym_LT = 28, + anon_sym_GT = 29, + anon_sym_where = 30, + anon_sym_init = 31, + anon_sym_companion = 32, + anon_sym_object = 33, + anon_sym_fun = 34, + anon_sym_SEMI = 35, + anon_sym_get = 36, + anon_sym_set = 37, + anon_sym_this = 38, + anon_sym_super = 39, + anon_sym_dynamic = 40, + anon_sym_AMP = 41, + sym__quest = 42, + anon_sym_STAR = 43, + anon_sym_DASH_GT = 44, + sym_label = 45, + anon_sym_for = 46, + anon_sym_in = 47, + anon_sym_while = 48, + anon_sym_do = 49, + anon_sym_DOT_DOT = 50, + anon_sym_QMARK_COLON = 51, + anon_sym_AMP_AMP = 52, + anon_sym_PIPE_PIPE = 53, + anon_sym_DOLLAR_LBRACE = 54, + anon_sym_DOLLAR = 55, + anon_sym_if = 56, + anon_sym_else = 57, + anon_sym_when = 58, + anon_sym_try = 59, + anon_sym_catch = 60, + anon_sym_finally = 61, + anon_sym_throw = 62, + anon_sym_return = 63, + anon_sym_continue = 64, + anon_sym_break = 65, + anon_sym_COLON_COLON = 66, + anon_sym_PLUS_EQ = 67, + anon_sym_DASH_EQ = 68, + anon_sym_STAR_EQ = 69, + anon_sym_SLASH_EQ = 70, + anon_sym_PERCENT_EQ = 71, + anon_sym_BANG_EQ = 72, + anon_sym_BANG_EQ_EQ = 73, + anon_sym_EQ_EQ = 74, + anon_sym_EQ_EQ_EQ = 75, + anon_sym_LT_EQ = 76, + anon_sym_GT_EQ = 77, + anon_sym_BANGin = 78, + anon_sym_is = 79, + anon_sym_BANGis = 80, + anon_sym_PLUS = 81, + anon_sym_DASH = 82, + anon_sym_SLASH = 83, + anon_sym_PERCENT = 84, + anon_sym_as_QMARK = 85, + anon_sym_PLUS_PLUS = 86, + anon_sym_DASH_DASH = 87, + anon_sym_BANG = 88, + anon_sym_BANG_BANG = 89, + anon_sym_suspend = 90, + anon_sym_sealed = 91, + anon_sym_annotation = 92, + anon_sym_data = 93, + anon_sym_inner = 94, + anon_sym_value = 95, + anon_sym_override = 96, + anon_sym_lateinit = 97, + anon_sym_public = 98, + anon_sym_private = 99, + anon_sym_internal = 100, + anon_sym_protected = 101, + anon_sym_out = 102, + anon_sym_tailrec = 103, + anon_sym_operator = 104, + anon_sym_infix = 105, + anon_sym_inline = 106, + anon_sym_external = 107, + sym_property_modifier = 108, + anon_sym_abstract = 109, + anon_sym_final = 110, + anon_sym_open = 111, + anon_sym_vararg = 112, + anon_sym_noinline = 113, + anon_sym_crossinline = 114, + sym_reification_modifier = 115, + anon_sym_expect = 116, + anon_sym_actual = 117, + anon_sym_field = 118, + anon_sym_property = 119, + anon_sym_receiver = 120, + anon_sym_param = 121, + anon_sym_setparam = 122, + anon_sym_delegate = 123, + sym_line_comment = 124, + anon_sym_return_AT = 125, + anon_sym_continue_AT = 126, + anon_sym_break_AT = 127, + anon_sym_this_AT = 128, + anon_sym_super_AT = 129, + anon_sym_AT2 = 130, + sym_real_literal = 131, + sym_integer_literal = 132, + sym_hex_literal = 133, + sym_bin_literal = 134, + aux_sym_unsigned_literal_token1 = 135, + anon_sym_L = 136, + anon_sym_true = 137, + anon_sym_false = 138, + anon_sym_SQUOTE = 139, + aux_sym_character_literal_token1 = 140, + sym_null_literal = 141, + sym__backtick_identifier = 142, + anon_sym_BSLASHu = 143, + aux_sym__uni_character_literal_token1 = 144, + sym__escaped_identifier = 145, + sym__automatic_semicolon = 146, + sym__import_list_delimiter = 147, + sym_safe_nav = 148, + sym_multiline_comment = 149, + sym__string_start = 150, + sym__string_end = 151, + sym_string_content = 152, + sym_source_file = 153, + sym_shebang_line = 154, + sym_file_annotation = 155, + sym_package_header = 156, + sym_import_list = 157, + sym_import_header = 158, + sym_import_alias = 159, + sym_type_alias = 160, + sym__declaration = 161, + sym_class_declaration = 162, + sym_primary_constructor = 163, + sym_class_body = 164, + sym__class_parameters = 165, + sym_binding_pattern_kind = 166, + sym_class_parameter = 167, + sym__delegation_specifiers = 168, + sym_delegation_specifier = 169, + sym_constructor_invocation = 170, + sym_explicit_delegation = 171, + sym_type_parameters = 172, + sym_type_parameter = 173, + sym_type_constraints = 174, + sym_type_constraint = 175, + aux_sym__class_member_declarations = 176, + sym__class_member_declaration = 177, + sym_anonymous_initializer = 178, + sym_companion_object = 179, + sym_function_value_parameters = 180, + sym__function_value_parameter = 181, + sym__receiver_type = 182, + sym_function_declaration = 183, + sym_function_body = 184, + sym_variable_declaration = 185, + sym_property_declaration = 186, + sym_property_delegate = 187, + sym_getter = 188, + sym_setter = 189, + sym_parameter_with_optional_type = 190, + sym_parameter = 191, + sym_object_declaration = 192, + sym_secondary_constructor = 193, + sym_constructor_delegation_call = 194, + sym_enum_class_body = 195, + sym__enum_entries = 196, + sym_enum_entry = 197, + sym__type = 198, + sym__type_reference = 199, + sym_not_nullable_type = 200, + sym_nullable_type = 201, + sym_user_type = 202, + sym__simple_user_type = 203, + sym_type_projection = 204, + sym_type_projection_modifiers = 205, + sym__type_projection_modifier = 206, + sym_function_type = 207, + sym_function_type_parameters = 208, + sym_parenthesized_type = 209, + sym_parenthesized_user_type = 210, + sym_statements = 211, + sym__statement = 212, + sym_control_structure_body = 213, + sym__block = 214, + sym__loop_statement = 215, + sym_for_statement = 216, + sym_while_statement = 217, + sym_do_while_statement = 218, + sym__semi = 219, + sym_assignment = 220, + sym__expression = 221, + sym__unary_expression = 222, + sym_postfix_expression = 223, + sym_call_expression = 224, + sym_indexing_expression = 225, + sym_navigation_expression = 226, + sym_prefix_expression = 227, + sym_as_expression = 228, + sym_spread_expression = 229, + sym__binary_expression = 230, + sym_multiplicative_expression = 231, + sym_additive_expression = 232, + sym_range_expression = 233, + sym_infix_expression = 234, + sym_elvis_expression = 235, + sym_check_expression = 236, + sym_comparison_expression = 237, + sym_equality_expression = 238, + sym_conjunction_expression = 239, + sym_disjunction_expression = 240, + sym_indexing_suffix = 241, + sym_navigation_suffix = 242, + sym_call_suffix = 243, + sym_annotated_lambda = 244, + sym_type_arguments = 245, + sym_value_arguments = 246, + sym_value_argument = 247, + sym__primary_expression = 248, + sym_parenthesized_expression = 249, + sym_collection_literal = 250, + sym__literal_constant = 251, + sym_string_literal = 252, + sym__interpolation = 253, + sym_lambda_literal = 254, + sym_multi_variable_declaration = 255, + sym_lambda_parameters = 256, + sym__lambda_parameter = 257, + sym_anonymous_function = 258, + sym__function_literal = 259, + sym_object_literal = 260, + sym_this_expression = 261, + sym_super_expression = 262, + sym_if_expression = 263, + sym_when_subject = 264, + sym_when_expression = 265, + sym_when_entry = 266, + sym_when_condition = 267, + sym_range_test = 268, + sym_type_test = 269, + sym_try_expression = 270, + sym_catch_block = 271, + sym_finally_block = 272, + sym_jump_expression = 273, + sym_callable_reference = 274, + sym__assignment_and_operator = 275, + sym__equality_operator = 276, + sym__comparison_operator = 277, + sym__in_operator = 278, + sym__is_operator = 279, + sym__additive_operator = 280, + sym__multiplicative_operator = 281, + sym__as_operator = 282, + sym__prefix_unary_operator = 283, + sym__postfix_unary_operator = 284, + sym__member_access_operator = 285, + sym__postfix_unary_suffix = 286, + sym__postfix_unary_expression = 287, + sym_directly_assignable_expression = 288, + sym_modifiers = 289, + sym_parameter_modifiers = 290, + sym__modifier = 291, + sym_type_modifiers = 292, + sym__type_modifier = 293, + sym_class_modifier = 294, + sym_member_modifier = 295, + sym_visibility_modifier = 296, + sym_variance_modifier = 297, + sym_type_parameter_modifiers = 298, + sym__type_parameter_modifier = 299, + sym_function_modifier = 300, + sym_inheritance_modifier = 301, + sym_parameter_modifier = 302, + sym_platform_modifier = 303, + sym_annotation = 304, + sym__single_annotation = 305, + sym__multi_annotation = 306, + sym_use_site_target = 307, + sym__unescaped_annotation = 308, + sym_simple_identifier = 309, + sym_identifier = 310, + sym__import_identifier = 311, + sym__return_at = 312, + sym__continue_at = 313, + sym__break_at = 314, + sym__this_at = 315, + sym__super_at = 316, + sym_unsigned_literal = 317, + sym_long_literal = 318, + sym_boolean_literal = 319, + sym_character_literal = 320, + sym_character_escape_seq = 321, + sym__lexical_identifier = 322, + sym__uni_character_literal = 323, + aux_sym_source_file_repeat1 = 324, + aux_sym_source_file_repeat2 = 325, + aux_sym_source_file_repeat3 = 326, + aux_sym_file_annotation_repeat1 = 327, + aux_sym_import_list_repeat1 = 328, + aux_sym__class_parameters_repeat1 = 329, + aux_sym__delegation_specifiers_repeat1 = 330, + aux_sym__annotated_delegation_specifier_repeat1 = 331, + aux_sym_type_parameters_repeat1 = 332, + aux_sym_type_constraints_repeat1 = 333, + aux_sym_function_value_parameters_repeat1 = 334, + aux_sym__enum_entries_repeat1 = 335, + aux_sym_nullable_type_repeat1 = 336, + aux_sym_user_type_repeat1 = 337, + aux_sym_type_projection_modifiers_repeat1 = 338, + aux_sym_function_type_parameters_repeat1 = 339, + aux_sym_statements_repeat1 = 340, + aux_sym__statement_repeat1 = 341, + aux_sym_indexing_suffix_repeat1 = 342, + aux_sym_type_arguments_repeat1 = 343, + aux_sym_value_arguments_repeat1 = 344, + aux_sym_string_literal_repeat1 = 345, + aux_sym_multi_variable_declaration_repeat1 = 346, + aux_sym_lambda_parameters_repeat1 = 347, + aux_sym_when_expression_repeat1 = 348, + aux_sym_when_entry_repeat1 = 349, + aux_sym_try_expression_repeat1 = 350, + aux_sym__postfix_unary_expression_repeat1 = 351, + aux_sym_modifiers_repeat1 = 352, + aux_sym_parameter_modifiers_repeat1 = 353, + aux_sym_type_modifiers_repeat1 = 354, + aux_sym_type_parameter_modifiers_repeat1 = 355, + aux_sym_identifier_repeat1 = 356, + alias_sym_interpolated_expression = 357, + alias_sym_interpolated_identifier = 358, + alias_sym_type_identifier = 359, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym__alpha_identifier] = "_alpha_identifier", + [anon_sym_POUND_BANG] = "#!", + [aux_sym_shebang_line_token1] = "shebang_line_token1", + [anon_sym_AT] = "@", + [anon_sym_file] = "file", + [anon_sym_COLON] = ":", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_package] = "package", + [anon_sym_import] = "import", + [anon_sym_DOT] = ".", + [sym_wildcard_import] = "wildcard_import", + [anon_sym_as] = "as", + [anon_sym_typealias] = "typealias", + [anon_sym_EQ] = "=", + [anon_sym_class] = "class", + [anon_sym_interface] = "interface", + [anon_sym_enum] = "enum", + [anon_sym_constructor] = "constructor", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_LPAREN] = "(", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", + [anon_sym_val] = "val", + [anon_sym_var] = "var", + [anon_sym_by] = "by", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [anon_sym_where] = "where", + [anon_sym_init] = "init", + [anon_sym_companion] = "companion", + [anon_sym_object] = "object", + [anon_sym_fun] = "fun", + [anon_sym_SEMI] = ";", + [anon_sym_get] = "get", + [anon_sym_set] = "set", + [anon_sym_this] = "this", + [anon_sym_super] = "super", + [anon_sym_dynamic] = "dynamic", + [anon_sym_AMP] = "&", + [sym__quest] = "_quest", + [anon_sym_STAR] = "*", + [anon_sym_DASH_GT] = "->", + [sym_label] = "label", + [anon_sym_for] = "for", + [anon_sym_in] = "in", + [anon_sym_while] = "while", + [anon_sym_do] = "do", + [anon_sym_DOT_DOT] = "..", + [anon_sym_QMARK_COLON] = "\?:", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_DOLLAR_LBRACE] = "${", + [anon_sym_DOLLAR] = "$", + [anon_sym_if] = "if", + [anon_sym_else] = "else", + [anon_sym_when] = "when", + [anon_sym_try] = "try", + [anon_sym_catch] = "catch", + [anon_sym_finally] = "finally", + [anon_sym_throw] = "throw", + [anon_sym_return] = "return", + [anon_sym_continue] = "continue", + [anon_sym_break] = "break", + [anon_sym_COLON_COLON] = "::", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_BANG_EQ_EQ] = "!==", + [anon_sym_EQ_EQ] = "==", + [anon_sym_EQ_EQ_EQ] = "===", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_BANGin] = "!in", + [anon_sym_is] = "is", + [anon_sym_BANGis] = "!is", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_as_QMARK] = "as\?", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [anon_sym_BANG] = "!", + [anon_sym_BANG_BANG] = "!!", + [anon_sym_suspend] = "suspend", + [anon_sym_sealed] = "sealed", + [anon_sym_annotation] = "annotation", + [anon_sym_data] = "data", + [anon_sym_inner] = "inner", + [anon_sym_value] = "value", + [anon_sym_override] = "override", + [anon_sym_lateinit] = "lateinit", + [anon_sym_public] = "public", + [anon_sym_private] = "private", + [anon_sym_internal] = "internal", + [anon_sym_protected] = "protected", + [anon_sym_out] = "out", + [anon_sym_tailrec] = "tailrec", + [anon_sym_operator] = "operator", + [anon_sym_infix] = "infix", + [anon_sym_inline] = "inline", + [anon_sym_external] = "external", + [sym_property_modifier] = "property_modifier", + [anon_sym_abstract] = "abstract", + [anon_sym_final] = "final", + [anon_sym_open] = "open", + [anon_sym_vararg] = "vararg", + [anon_sym_noinline] = "noinline", + [anon_sym_crossinline] = "crossinline", + [sym_reification_modifier] = "reification_modifier", + [anon_sym_expect] = "expect", + [anon_sym_actual] = "actual", + [anon_sym_field] = "field", + [anon_sym_property] = "property", + [anon_sym_receiver] = "receiver", + [anon_sym_param] = "param", + [anon_sym_setparam] = "setparam", + [anon_sym_delegate] = "delegate", + [sym_line_comment] = "line_comment", + [anon_sym_return_AT] = "return@", + [anon_sym_continue_AT] = "continue@", + [anon_sym_break_AT] = "break@", + [anon_sym_this_AT] = "this@", + [anon_sym_super_AT] = "super@", + [anon_sym_AT2] = "@", + [sym_real_literal] = "real_literal", + [sym_integer_literal] = "integer_literal", + [sym_hex_literal] = "hex_literal", + [sym_bin_literal] = "bin_literal", + [aux_sym_unsigned_literal_token1] = "unsigned_literal_token1", + [anon_sym_L] = "L", + [anon_sym_true] = "true", + [anon_sym_false] = "false", + [anon_sym_SQUOTE] = "'", + [aux_sym_character_literal_token1] = "character_literal_token1", + [sym_null_literal] = "null_literal", + [sym__backtick_identifier] = "_backtick_identifier", + [anon_sym_BSLASHu] = "\\u", + [aux_sym__uni_character_literal_token1] = "_uni_character_literal_token1", + [sym__escaped_identifier] = "_escaped_identifier", + [sym__automatic_semicolon] = "_automatic_semicolon", + [sym__import_list_delimiter] = "_import_list_delimiter", + [sym_safe_nav] = "\?.", + [sym_multiline_comment] = "multiline_comment", + [sym__string_start] = "_string_start", + [sym__string_end] = "_string_end", + [sym_string_content] = "string_content", + [sym_source_file] = "source_file", + [sym_shebang_line] = "shebang_line", + [sym_file_annotation] = "file_annotation", + [sym_package_header] = "package_header", + [sym_import_list] = "import_list", + [sym_import_header] = "import_header", + [sym_import_alias] = "import_alias", + [sym_type_alias] = "type_alias", + [sym__declaration] = "_declaration", + [sym_class_declaration] = "class_declaration", + [sym_primary_constructor] = "primary_constructor", + [sym_class_body] = "class_body", + [sym__class_parameters] = "_class_parameters", + [sym_binding_pattern_kind] = "binding_pattern_kind", + [sym_class_parameter] = "class_parameter", + [sym__delegation_specifiers] = "_delegation_specifiers", + [sym_delegation_specifier] = "delegation_specifier", + [sym_constructor_invocation] = "constructor_invocation", + [sym_explicit_delegation] = "explicit_delegation", + [sym_type_parameters] = "type_parameters", + [sym_type_parameter] = "type_parameter", + [sym_type_constraints] = "type_constraints", + [sym_type_constraint] = "type_constraint", + [aux_sym__class_member_declarations] = "_class_member_declarations", + [sym__class_member_declaration] = "_class_member_declaration", + [sym_anonymous_initializer] = "anonymous_initializer", + [sym_companion_object] = "companion_object", + [sym_function_value_parameters] = "function_value_parameters", + [sym__function_value_parameter] = "_function_value_parameter", + [sym__receiver_type] = "_receiver_type", + [sym_function_declaration] = "function_declaration", + [sym_function_body] = "function_body", + [sym_variable_declaration] = "variable_declaration", + [sym_property_declaration] = "property_declaration", + [sym_property_delegate] = "property_delegate", + [sym_getter] = "getter", + [sym_setter] = "setter", + [sym_parameter_with_optional_type] = "parameter_with_optional_type", + [sym_parameter] = "parameter", + [sym_object_declaration] = "object_declaration", + [sym_secondary_constructor] = "secondary_constructor", + [sym_constructor_delegation_call] = "constructor_delegation_call", + [sym_enum_class_body] = "enum_class_body", + [sym__enum_entries] = "_enum_entries", + [sym_enum_entry] = "enum_entry", + [sym__type] = "_type", + [sym__type_reference] = "_type_reference", + [sym_not_nullable_type] = "not_nullable_type", + [sym_nullable_type] = "nullable_type", + [sym_user_type] = "user_type", + [sym__simple_user_type] = "_simple_user_type", + [sym_type_projection] = "type_projection", + [sym_type_projection_modifiers] = "type_projection_modifiers", + [sym__type_projection_modifier] = "_type_projection_modifier", + [sym_function_type] = "function_type", + [sym_function_type_parameters] = "function_type_parameters", + [sym_parenthesized_type] = "parenthesized_type", + [sym_parenthesized_user_type] = "parenthesized_user_type", + [sym_statements] = "statements", + [sym__statement] = "_statement", + [sym_control_structure_body] = "control_structure_body", + [sym__block] = "_block", + [sym__loop_statement] = "_loop_statement", + [sym_for_statement] = "for_statement", + [sym_while_statement] = "while_statement", + [sym_do_while_statement] = "do_while_statement", + [sym__semi] = "_semi", + [sym_assignment] = "assignment", + [sym__expression] = "_expression", + [sym__unary_expression] = "_unary_expression", + [sym_postfix_expression] = "postfix_expression", + [sym_call_expression] = "call_expression", + [sym_indexing_expression] = "indexing_expression", + [sym_navigation_expression] = "navigation_expression", + [sym_prefix_expression] = "prefix_expression", + [sym_as_expression] = "as_expression", + [sym_spread_expression] = "spread_expression", + [sym__binary_expression] = "_binary_expression", + [sym_multiplicative_expression] = "multiplicative_expression", + [sym_additive_expression] = "additive_expression", + [sym_range_expression] = "range_expression", + [sym_infix_expression] = "infix_expression", + [sym_elvis_expression] = "elvis_expression", + [sym_check_expression] = "check_expression", + [sym_comparison_expression] = "comparison_expression", + [sym_equality_expression] = "equality_expression", + [sym_conjunction_expression] = "conjunction_expression", + [sym_disjunction_expression] = "disjunction_expression", + [sym_indexing_suffix] = "indexing_suffix", + [sym_navigation_suffix] = "navigation_suffix", + [sym_call_suffix] = "call_suffix", + [sym_annotated_lambda] = "annotated_lambda", + [sym_type_arguments] = "type_arguments", + [sym_value_arguments] = "value_arguments", + [sym_value_argument] = "value_argument", + [sym__primary_expression] = "_primary_expression", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_collection_literal] = "collection_literal", + [sym__literal_constant] = "_literal_constant", + [sym_string_literal] = "string_literal", + [sym__interpolation] = "_interpolation", + [sym_lambda_literal] = "lambda_literal", + [sym_multi_variable_declaration] = "multi_variable_declaration", + [sym_lambda_parameters] = "lambda_parameters", + [sym__lambda_parameter] = "_lambda_parameter", + [sym_anonymous_function] = "anonymous_function", + [sym__function_literal] = "_function_literal", + [sym_object_literal] = "object_literal", + [sym_this_expression] = "this_expression", + [sym_super_expression] = "super_expression", + [sym_if_expression] = "if_expression", + [sym_when_subject] = "when_subject", + [sym_when_expression] = "when_expression", + [sym_when_entry] = "when_entry", + [sym_when_condition] = "when_condition", + [sym_range_test] = "range_test", + [sym_type_test] = "type_test", + [sym_try_expression] = "try_expression", + [sym_catch_block] = "catch_block", + [sym_finally_block] = "finally_block", + [sym_jump_expression] = "jump_expression", + [sym_callable_reference] = "callable_reference", + [sym__assignment_and_operator] = "_assignment_and_operator", + [sym__equality_operator] = "_equality_operator", + [sym__comparison_operator] = "_comparison_operator", + [sym__in_operator] = "_in_operator", + [sym__is_operator] = "_is_operator", + [sym__additive_operator] = "_additive_operator", + [sym__multiplicative_operator] = "_multiplicative_operator", + [sym__as_operator] = "_as_operator", + [sym__prefix_unary_operator] = "_prefix_unary_operator", + [sym__postfix_unary_operator] = "_postfix_unary_operator", + [sym__member_access_operator] = "_member_access_operator", + [sym__postfix_unary_suffix] = "_postfix_unary_suffix", + [sym__postfix_unary_expression] = "_postfix_unary_expression", + [sym_directly_assignable_expression] = "directly_assignable_expression", + [sym_modifiers] = "modifiers", + [sym_parameter_modifiers] = "parameter_modifiers", + [sym__modifier] = "_modifier", + [sym_type_modifiers] = "type_modifiers", + [sym__type_modifier] = "_type_modifier", + [sym_class_modifier] = "class_modifier", + [sym_member_modifier] = "member_modifier", + [sym_visibility_modifier] = "visibility_modifier", + [sym_variance_modifier] = "variance_modifier", + [sym_type_parameter_modifiers] = "type_parameter_modifiers", + [sym__type_parameter_modifier] = "_type_parameter_modifier", + [sym_function_modifier] = "function_modifier", + [sym_inheritance_modifier] = "inheritance_modifier", + [sym_parameter_modifier] = "parameter_modifier", + [sym_platform_modifier] = "platform_modifier", + [sym_annotation] = "annotation", + [sym__single_annotation] = "_single_annotation", + [sym__multi_annotation] = "_multi_annotation", + [sym_use_site_target] = "use_site_target", + [sym__unescaped_annotation] = "_unescaped_annotation", + [sym_simple_identifier] = "simple_identifier", + [sym_identifier] = "identifier", + [sym__import_identifier] = "_import_identifier", + [sym__return_at] = "_return_at", + [sym__continue_at] = "_continue_at", + [sym__break_at] = "_break_at", + [sym__this_at] = "_this_at", + [sym__super_at] = "_super_at", + [sym_unsigned_literal] = "unsigned_literal", + [sym_long_literal] = "long_literal", + [sym_boolean_literal] = "boolean_literal", + [sym_character_literal] = "character_literal", + [sym_character_escape_seq] = "character_escape_seq", + [sym__lexical_identifier] = "_lexical_identifier", + [sym__uni_character_literal] = "_uni_character_literal", + [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_source_file_repeat2] = "source_file_repeat2", + [aux_sym_source_file_repeat3] = "source_file_repeat3", + [aux_sym_file_annotation_repeat1] = "file_annotation_repeat1", + [aux_sym_import_list_repeat1] = "import_list_repeat1", + [aux_sym__class_parameters_repeat1] = "_class_parameters_repeat1", + [aux_sym__delegation_specifiers_repeat1] = "_delegation_specifiers_repeat1", + [aux_sym__annotated_delegation_specifier_repeat1] = "_annotated_delegation_specifier_repeat1", + [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", + [aux_sym_type_constraints_repeat1] = "type_constraints_repeat1", + [aux_sym_function_value_parameters_repeat1] = "function_value_parameters_repeat1", + [aux_sym__enum_entries_repeat1] = "_enum_entries_repeat1", + [aux_sym_nullable_type_repeat1] = "nullable_type_repeat1", + [aux_sym_user_type_repeat1] = "user_type_repeat1", + [aux_sym_type_projection_modifiers_repeat1] = "type_projection_modifiers_repeat1", + [aux_sym_function_type_parameters_repeat1] = "function_type_parameters_repeat1", + [aux_sym_statements_repeat1] = "statements_repeat1", + [aux_sym__statement_repeat1] = "_statement_repeat1", + [aux_sym_indexing_suffix_repeat1] = "indexing_suffix_repeat1", + [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", + [aux_sym_value_arguments_repeat1] = "value_arguments_repeat1", + [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym_multi_variable_declaration_repeat1] = "multi_variable_declaration_repeat1", + [aux_sym_lambda_parameters_repeat1] = "lambda_parameters_repeat1", + [aux_sym_when_expression_repeat1] = "when_expression_repeat1", + [aux_sym_when_entry_repeat1] = "when_entry_repeat1", + [aux_sym_try_expression_repeat1] = "try_expression_repeat1", + [aux_sym__postfix_unary_expression_repeat1] = "_postfix_unary_expression_repeat1", + [aux_sym_modifiers_repeat1] = "modifiers_repeat1", + [aux_sym_parameter_modifiers_repeat1] = "parameter_modifiers_repeat1", + [aux_sym_type_modifiers_repeat1] = "type_modifiers_repeat1", + [aux_sym_type_parameter_modifiers_repeat1] = "type_parameter_modifiers_repeat1", + [aux_sym_identifier_repeat1] = "identifier_repeat1", + [alias_sym_interpolated_expression] = "interpolated_expression", + [alias_sym_interpolated_identifier] = "interpolated_identifier", + [alias_sym_type_identifier] = "type_identifier", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym__alpha_identifier] = sym__alpha_identifier, + [anon_sym_POUND_BANG] = anon_sym_POUND_BANG, + [aux_sym_shebang_line_token1] = aux_sym_shebang_line_token1, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_file] = anon_sym_file, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_package] = anon_sym_package, + [anon_sym_import] = anon_sym_import, + [anon_sym_DOT] = anon_sym_DOT, + [sym_wildcard_import] = sym_wildcard_import, + [anon_sym_as] = anon_sym_as, + [anon_sym_typealias] = anon_sym_typealias, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_class] = anon_sym_class, + [anon_sym_interface] = anon_sym_interface, + [anon_sym_enum] = anon_sym_enum, + [anon_sym_constructor] = anon_sym_constructor, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_val] = anon_sym_val, + [anon_sym_var] = anon_sym_var, + [anon_sym_by] = anon_sym_by, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_where] = anon_sym_where, + [anon_sym_init] = anon_sym_init, + [anon_sym_companion] = anon_sym_companion, + [anon_sym_object] = anon_sym_object, + [anon_sym_fun] = anon_sym_fun, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_get] = anon_sym_get, + [anon_sym_set] = anon_sym_set, + [anon_sym_this] = anon_sym_this, + [anon_sym_super] = anon_sym_super, + [anon_sym_dynamic] = anon_sym_dynamic, + [anon_sym_AMP] = anon_sym_AMP, + [sym__quest] = sym__quest, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [sym_label] = sym_label, + [anon_sym_for] = anon_sym_for, + [anon_sym_in] = anon_sym_in, + [anon_sym_while] = anon_sym_while, + [anon_sym_do] = anon_sym_do, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_QMARK_COLON] = anon_sym_QMARK_COLON, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_if] = anon_sym_if, + [anon_sym_else] = anon_sym_else, + [anon_sym_when] = anon_sym_when, + [anon_sym_try] = anon_sym_try, + [anon_sym_catch] = anon_sym_catch, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_throw] = anon_sym_throw, + [anon_sym_return] = anon_sym_return, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_break] = anon_sym_break, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_BANGin] = anon_sym_BANGin, + [anon_sym_is] = anon_sym_is, + [anon_sym_BANGis] = anon_sym_BANGis, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_as_QMARK] = anon_sym_as_QMARK, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_BANG_BANG] = anon_sym_BANG_BANG, + [anon_sym_suspend] = anon_sym_suspend, + [anon_sym_sealed] = anon_sym_sealed, + [anon_sym_annotation] = anon_sym_annotation, + [anon_sym_data] = anon_sym_data, + [anon_sym_inner] = anon_sym_inner, + [anon_sym_value] = anon_sym_value, + [anon_sym_override] = anon_sym_override, + [anon_sym_lateinit] = anon_sym_lateinit, + [anon_sym_public] = anon_sym_public, + [anon_sym_private] = anon_sym_private, + [anon_sym_internal] = anon_sym_internal, + [anon_sym_protected] = anon_sym_protected, + [anon_sym_out] = anon_sym_out, + [anon_sym_tailrec] = anon_sym_tailrec, + [anon_sym_operator] = anon_sym_operator, + [anon_sym_infix] = anon_sym_infix, + [anon_sym_inline] = anon_sym_inline, + [anon_sym_external] = anon_sym_external, + [sym_property_modifier] = sym_property_modifier, + [anon_sym_abstract] = anon_sym_abstract, + [anon_sym_final] = anon_sym_final, + [anon_sym_open] = anon_sym_open, + [anon_sym_vararg] = anon_sym_vararg, + [anon_sym_noinline] = anon_sym_noinline, + [anon_sym_crossinline] = anon_sym_crossinline, + [sym_reification_modifier] = sym_reification_modifier, + [anon_sym_expect] = anon_sym_expect, + [anon_sym_actual] = anon_sym_actual, + [anon_sym_field] = anon_sym_field, + [anon_sym_property] = anon_sym_property, + [anon_sym_receiver] = anon_sym_receiver, + [anon_sym_param] = anon_sym_param, + [anon_sym_setparam] = anon_sym_setparam, + [anon_sym_delegate] = anon_sym_delegate, + [sym_line_comment] = sym_line_comment, + [anon_sym_return_AT] = anon_sym_return_AT, + [anon_sym_continue_AT] = anon_sym_continue_AT, + [anon_sym_break_AT] = anon_sym_break_AT, + [anon_sym_this_AT] = anon_sym_this_AT, + [anon_sym_super_AT] = anon_sym_super_AT, + [anon_sym_AT2] = anon_sym_AT, + [sym_real_literal] = sym_real_literal, + [sym_integer_literal] = sym_integer_literal, + [sym_hex_literal] = sym_hex_literal, + [sym_bin_literal] = sym_bin_literal, + [aux_sym_unsigned_literal_token1] = aux_sym_unsigned_literal_token1, + [anon_sym_L] = anon_sym_L, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_character_literal_token1] = aux_sym_character_literal_token1, + [sym_null_literal] = sym_null_literal, + [sym__backtick_identifier] = sym__backtick_identifier, + [anon_sym_BSLASHu] = anon_sym_BSLASHu, + [aux_sym__uni_character_literal_token1] = aux_sym__uni_character_literal_token1, + [sym__escaped_identifier] = sym__escaped_identifier, + [sym__automatic_semicolon] = sym__automatic_semicolon, + [sym__import_list_delimiter] = sym__import_list_delimiter, + [sym_safe_nav] = sym_safe_nav, + [sym_multiline_comment] = sym_multiline_comment, + [sym__string_start] = sym__string_start, + [sym__string_end] = sym__string_end, + [sym_string_content] = sym_string_content, + [sym_source_file] = sym_source_file, + [sym_shebang_line] = sym_shebang_line, + [sym_file_annotation] = sym_file_annotation, + [sym_package_header] = sym_package_header, + [sym_import_list] = sym_import_list, + [sym_import_header] = sym_import_header, + [sym_import_alias] = sym_import_alias, + [sym_type_alias] = sym_type_alias, + [sym__declaration] = sym__declaration, + [sym_class_declaration] = sym_class_declaration, + [sym_primary_constructor] = sym_primary_constructor, + [sym_class_body] = sym_class_body, + [sym__class_parameters] = sym__class_parameters, + [sym_binding_pattern_kind] = sym_binding_pattern_kind, + [sym_class_parameter] = sym_class_parameter, + [sym__delegation_specifiers] = sym__delegation_specifiers, + [sym_delegation_specifier] = sym_delegation_specifier, + [sym_constructor_invocation] = sym_constructor_invocation, + [sym_explicit_delegation] = sym_explicit_delegation, + [sym_type_parameters] = sym_type_parameters, + [sym_type_parameter] = sym_type_parameter, + [sym_type_constraints] = sym_type_constraints, + [sym_type_constraint] = sym_type_constraint, + [aux_sym__class_member_declarations] = aux_sym__class_member_declarations, + [sym__class_member_declaration] = sym__class_member_declaration, + [sym_anonymous_initializer] = sym_anonymous_initializer, + [sym_companion_object] = sym_companion_object, + [sym_function_value_parameters] = sym_function_value_parameters, + [sym__function_value_parameter] = sym__function_value_parameter, + [sym__receiver_type] = sym__receiver_type, + [sym_function_declaration] = sym_function_declaration, + [sym_function_body] = sym_function_body, + [sym_variable_declaration] = sym_variable_declaration, + [sym_property_declaration] = sym_property_declaration, + [sym_property_delegate] = sym_property_delegate, + [sym_getter] = sym_getter, + [sym_setter] = sym_setter, + [sym_parameter_with_optional_type] = sym_parameter_with_optional_type, + [sym_parameter] = sym_parameter, + [sym_object_declaration] = sym_object_declaration, + [sym_secondary_constructor] = sym_secondary_constructor, + [sym_constructor_delegation_call] = sym_constructor_delegation_call, + [sym_enum_class_body] = sym_enum_class_body, + [sym__enum_entries] = sym__enum_entries, + [sym_enum_entry] = sym_enum_entry, + [sym__type] = sym__type, + [sym__type_reference] = sym__type_reference, + [sym_not_nullable_type] = sym_not_nullable_type, + [sym_nullable_type] = sym_nullable_type, + [sym_user_type] = sym_user_type, + [sym__simple_user_type] = sym__simple_user_type, + [sym_type_projection] = sym_type_projection, + [sym_type_projection_modifiers] = sym_type_projection_modifiers, + [sym__type_projection_modifier] = sym__type_projection_modifier, + [sym_function_type] = sym_function_type, + [sym_function_type_parameters] = sym_function_type_parameters, + [sym_parenthesized_type] = sym_parenthesized_type, + [sym_parenthesized_user_type] = sym_parenthesized_user_type, + [sym_statements] = sym_statements, + [sym__statement] = sym__statement, + [sym_control_structure_body] = sym_control_structure_body, + [sym__block] = sym__block, + [sym__loop_statement] = sym__loop_statement, + [sym_for_statement] = sym_for_statement, + [sym_while_statement] = sym_while_statement, + [sym_do_while_statement] = sym_do_while_statement, + [sym__semi] = sym__semi, + [sym_assignment] = sym_assignment, + [sym__expression] = sym__expression, + [sym__unary_expression] = sym__unary_expression, + [sym_postfix_expression] = sym_postfix_expression, + [sym_call_expression] = sym_call_expression, + [sym_indexing_expression] = sym_indexing_expression, + [sym_navigation_expression] = sym_navigation_expression, + [sym_prefix_expression] = sym_prefix_expression, + [sym_as_expression] = sym_as_expression, + [sym_spread_expression] = sym_spread_expression, + [sym__binary_expression] = sym__binary_expression, + [sym_multiplicative_expression] = sym_multiplicative_expression, + [sym_additive_expression] = sym_additive_expression, + [sym_range_expression] = sym_range_expression, + [sym_infix_expression] = sym_infix_expression, + [sym_elvis_expression] = sym_elvis_expression, + [sym_check_expression] = sym_check_expression, + [sym_comparison_expression] = sym_comparison_expression, + [sym_equality_expression] = sym_equality_expression, + [sym_conjunction_expression] = sym_conjunction_expression, + [sym_disjunction_expression] = sym_disjunction_expression, + [sym_indexing_suffix] = sym_indexing_suffix, + [sym_navigation_suffix] = sym_navigation_suffix, + [sym_call_suffix] = sym_call_suffix, + [sym_annotated_lambda] = sym_annotated_lambda, + [sym_type_arguments] = sym_type_arguments, + [sym_value_arguments] = sym_value_arguments, + [sym_value_argument] = sym_value_argument, + [sym__primary_expression] = sym__primary_expression, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_collection_literal] = sym_collection_literal, + [sym__literal_constant] = sym__literal_constant, + [sym_string_literal] = sym_string_literal, + [sym__interpolation] = sym__interpolation, + [sym_lambda_literal] = sym_lambda_literal, + [sym_multi_variable_declaration] = sym_multi_variable_declaration, + [sym_lambda_parameters] = sym_lambda_parameters, + [sym__lambda_parameter] = sym__lambda_parameter, + [sym_anonymous_function] = sym_anonymous_function, + [sym__function_literal] = sym__function_literal, + [sym_object_literal] = sym_object_literal, + [sym_this_expression] = sym_this_expression, + [sym_super_expression] = sym_super_expression, + [sym_if_expression] = sym_if_expression, + [sym_when_subject] = sym_when_subject, + [sym_when_expression] = sym_when_expression, + [sym_when_entry] = sym_when_entry, + [sym_when_condition] = sym_when_condition, + [sym_range_test] = sym_range_test, + [sym_type_test] = sym_type_test, + [sym_try_expression] = sym_try_expression, + [sym_catch_block] = sym_catch_block, + [sym_finally_block] = sym_finally_block, + [sym_jump_expression] = sym_jump_expression, + [sym_callable_reference] = sym_callable_reference, + [sym__assignment_and_operator] = sym__assignment_and_operator, + [sym__equality_operator] = sym__equality_operator, + [sym__comparison_operator] = sym__comparison_operator, + [sym__in_operator] = sym__in_operator, + [sym__is_operator] = sym__is_operator, + [sym__additive_operator] = sym__additive_operator, + [sym__multiplicative_operator] = sym__multiplicative_operator, + [sym__as_operator] = sym__as_operator, + [sym__prefix_unary_operator] = sym__prefix_unary_operator, + [sym__postfix_unary_operator] = sym__postfix_unary_operator, + [sym__member_access_operator] = sym__member_access_operator, + [sym__postfix_unary_suffix] = sym__postfix_unary_suffix, + [sym__postfix_unary_expression] = sym__postfix_unary_expression, + [sym_directly_assignable_expression] = sym_directly_assignable_expression, + [sym_modifiers] = sym_modifiers, + [sym_parameter_modifiers] = sym_parameter_modifiers, + [sym__modifier] = sym__modifier, + [sym_type_modifiers] = sym_type_modifiers, + [sym__type_modifier] = sym__type_modifier, + [sym_class_modifier] = sym_class_modifier, + [sym_member_modifier] = sym_member_modifier, + [sym_visibility_modifier] = sym_visibility_modifier, + [sym_variance_modifier] = sym_variance_modifier, + [sym_type_parameter_modifiers] = sym_type_parameter_modifiers, + [sym__type_parameter_modifier] = sym__type_parameter_modifier, + [sym_function_modifier] = sym_function_modifier, + [sym_inheritance_modifier] = sym_inheritance_modifier, + [sym_parameter_modifier] = sym_parameter_modifier, + [sym_platform_modifier] = sym_platform_modifier, + [sym_annotation] = sym_annotation, + [sym__single_annotation] = sym__single_annotation, + [sym__multi_annotation] = sym__multi_annotation, + [sym_use_site_target] = sym_use_site_target, + [sym__unescaped_annotation] = sym__unescaped_annotation, + [sym_simple_identifier] = sym_simple_identifier, + [sym_identifier] = sym_identifier, + [sym__import_identifier] = sym__import_identifier, + [sym__return_at] = sym__return_at, + [sym__continue_at] = sym__continue_at, + [sym__break_at] = sym__break_at, + [sym__this_at] = sym__this_at, + [sym__super_at] = sym__super_at, + [sym_unsigned_literal] = sym_unsigned_literal, + [sym_long_literal] = sym_long_literal, + [sym_boolean_literal] = sym_boolean_literal, + [sym_character_literal] = sym_character_literal, + [sym_character_escape_seq] = sym_character_escape_seq, + [sym__lexical_identifier] = sym__lexical_identifier, + [sym__uni_character_literal] = sym__uni_character_literal, + [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_source_file_repeat2] = aux_sym_source_file_repeat2, + [aux_sym_source_file_repeat3] = aux_sym_source_file_repeat3, + [aux_sym_file_annotation_repeat1] = aux_sym_file_annotation_repeat1, + [aux_sym_import_list_repeat1] = aux_sym_import_list_repeat1, + [aux_sym__class_parameters_repeat1] = aux_sym__class_parameters_repeat1, + [aux_sym__delegation_specifiers_repeat1] = aux_sym__delegation_specifiers_repeat1, + [aux_sym__annotated_delegation_specifier_repeat1] = aux_sym__annotated_delegation_specifier_repeat1, + [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, + [aux_sym_type_constraints_repeat1] = aux_sym_type_constraints_repeat1, + [aux_sym_function_value_parameters_repeat1] = aux_sym_function_value_parameters_repeat1, + [aux_sym__enum_entries_repeat1] = aux_sym__enum_entries_repeat1, + [aux_sym_nullable_type_repeat1] = aux_sym_nullable_type_repeat1, + [aux_sym_user_type_repeat1] = aux_sym_user_type_repeat1, + [aux_sym_type_projection_modifiers_repeat1] = aux_sym_type_projection_modifiers_repeat1, + [aux_sym_function_type_parameters_repeat1] = aux_sym_function_type_parameters_repeat1, + [aux_sym_statements_repeat1] = aux_sym_statements_repeat1, + [aux_sym__statement_repeat1] = aux_sym__statement_repeat1, + [aux_sym_indexing_suffix_repeat1] = aux_sym_indexing_suffix_repeat1, + [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, + [aux_sym_value_arguments_repeat1] = aux_sym_value_arguments_repeat1, + [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym_multi_variable_declaration_repeat1] = aux_sym_multi_variable_declaration_repeat1, + [aux_sym_lambda_parameters_repeat1] = aux_sym_lambda_parameters_repeat1, + [aux_sym_when_expression_repeat1] = aux_sym_when_expression_repeat1, + [aux_sym_when_entry_repeat1] = aux_sym_when_entry_repeat1, + [aux_sym_try_expression_repeat1] = aux_sym_try_expression_repeat1, + [aux_sym__postfix_unary_expression_repeat1] = aux_sym__postfix_unary_expression_repeat1, + [aux_sym_modifiers_repeat1] = aux_sym_modifiers_repeat1, + [aux_sym_parameter_modifiers_repeat1] = aux_sym_parameter_modifiers_repeat1, + [aux_sym_type_modifiers_repeat1] = aux_sym_type_modifiers_repeat1, + [aux_sym_type_parameter_modifiers_repeat1] = aux_sym_type_parameter_modifiers_repeat1, + [aux_sym_identifier_repeat1] = aux_sym_identifier_repeat1, + [alias_sym_interpolated_expression] = alias_sym_interpolated_expression, + [alias_sym_interpolated_identifier] = alias_sym_interpolated_identifier, + [alias_sym_type_identifier] = alias_sym_type_identifier, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym__alpha_identifier] = { + .visible = false, + .named = true, + }, + [anon_sym_POUND_BANG] = { + .visible = true, + .named = false, + }, + [aux_sym_shebang_line_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_file] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_package] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [sym_wildcard_import] = { + .visible = true, + .named = true, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_typealias] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_interface] = { + .visible = true, + .named = false, + }, + [anon_sym_enum] = { + .visible = true, + .named = false, + }, + [anon_sym_constructor] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_val] = { + .visible = true, + .named = false, + }, + [anon_sym_var] = { + .visible = true, + .named = false, + }, + [anon_sym_by] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_where] = { + .visible = true, + .named = false, + }, + [anon_sym_init] = { + .visible = true, + .named = false, + }, + [anon_sym_companion] = { + .visible = true, + .named = false, + }, + [anon_sym_object] = { + .visible = true, + .named = false, + }, + [anon_sym_fun] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_get] = { + .visible = true, + .named = false, + }, + [anon_sym_set] = { + .visible = true, + .named = false, + }, + [anon_sym_this] = { + .visible = true, + .named = false, + }, + [anon_sym_super] = { + .visible = true, + .named = false, + }, + [anon_sym_dynamic] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [sym__quest] = { + .visible = false, + .named = true, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [sym_label] = { + .visible = true, + .named = true, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_when] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_throw] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANGin] = { + .visible = true, + .named = false, + }, + [anon_sym_is] = { + .visible = true, + .named = false, + }, + [anon_sym_BANGis] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_as_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_suspend] = { + .visible = true, + .named = false, + }, + [anon_sym_sealed] = { + .visible = true, + .named = false, + }, + [anon_sym_annotation] = { + .visible = true, + .named = false, + }, + [anon_sym_data] = { + .visible = true, + .named = false, + }, + [anon_sym_inner] = { + .visible = true, + .named = false, + }, + [anon_sym_value] = { + .visible = true, + .named = false, + }, + [anon_sym_override] = { + .visible = true, + .named = false, + }, + [anon_sym_lateinit] = { + .visible = true, + .named = false, + }, + [anon_sym_public] = { + .visible = true, + .named = false, + }, + [anon_sym_private] = { + .visible = true, + .named = false, + }, + [anon_sym_internal] = { + .visible = true, + .named = false, + }, + [anon_sym_protected] = { + .visible = true, + .named = false, + }, + [anon_sym_out] = { + .visible = true, + .named = false, + }, + [anon_sym_tailrec] = { + .visible = true, + .named = false, + }, + [anon_sym_operator] = { + .visible = true, + .named = false, + }, + [anon_sym_infix] = { + .visible = true, + .named = false, + }, + [anon_sym_inline] = { + .visible = true, + .named = false, + }, + [anon_sym_external] = { + .visible = true, + .named = false, + }, + [sym_property_modifier] = { + .visible = true, + .named = true, + }, + [anon_sym_abstract] = { + .visible = true, + .named = false, + }, + [anon_sym_final] = { + .visible = true, + .named = false, + }, + [anon_sym_open] = { + .visible = true, + .named = false, + }, + [anon_sym_vararg] = { + .visible = true, + .named = false, + }, + [anon_sym_noinline] = { + .visible = true, + .named = false, + }, + [anon_sym_crossinline] = { + .visible = true, + .named = false, + }, + [sym_reification_modifier] = { + .visible = true, + .named = true, + }, + [anon_sym_expect] = { + .visible = true, + .named = false, + }, + [anon_sym_actual] = { + .visible = true, + .named = false, + }, + [anon_sym_field] = { + .visible = true, + .named = false, + }, + [anon_sym_property] = { + .visible = true, + .named = false, + }, + [anon_sym_receiver] = { + .visible = true, + .named = false, + }, + [anon_sym_param] = { + .visible = true, + .named = false, + }, + [anon_sym_setparam] = { + .visible = true, + .named = false, + }, + [anon_sym_delegate] = { + .visible = true, + .named = false, + }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, + [anon_sym_return_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_continue_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_break_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_this_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_super_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_AT2] = { + .visible = true, + .named = false, + }, + [sym_real_literal] = { + .visible = true, + .named = true, + }, + [sym_integer_literal] = { + .visible = true, + .named = true, + }, + [sym_hex_literal] = { + .visible = true, + .named = true, + }, + [sym_bin_literal] = { + .visible = true, + .named = true, + }, + [aux_sym_unsigned_literal_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_L] = { + .visible = true, + .named = false, + }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_character_literal_token1] = { + .visible = false, + .named = false, + }, + [sym_null_literal] = { + .visible = true, + .named = true, + }, + [sym__backtick_identifier] = { + .visible = false, + .named = true, + }, + [anon_sym_BSLASHu] = { + .visible = true, + .named = false, + }, + [aux_sym__uni_character_literal_token1] = { + .visible = false, + .named = false, + }, + [sym__escaped_identifier] = { + .visible = false, + .named = true, + }, + [sym__automatic_semicolon] = { + .visible = false, + .named = true, + }, + [sym__import_list_delimiter] = { + .visible = false, + .named = true, + }, + [sym_safe_nav] = { + .visible = true, + .named = false, + }, + [sym_multiline_comment] = { + .visible = true, + .named = true, + }, + [sym__string_start] = { + .visible = false, + .named = true, + }, + [sym__string_end] = { + .visible = false, + .named = true, + }, + [sym_string_content] = { + .visible = true, + .named = true, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym_shebang_line] = { + .visible = true, + .named = true, + }, + [sym_file_annotation] = { + .visible = true, + .named = true, + }, + [sym_package_header] = { + .visible = true, + .named = true, + }, + [sym_import_list] = { + .visible = true, + .named = true, + }, + [sym_import_header] = { + .visible = true, + .named = true, + }, + [sym_import_alias] = { + .visible = true, + .named = true, + }, + [sym_type_alias] = { + .visible = true, + .named = true, + }, + [sym__declaration] = { + .visible = false, + .named = true, + }, + [sym_class_declaration] = { + .visible = true, + .named = true, + }, + [sym_primary_constructor] = { + .visible = true, + .named = true, + }, + [sym_class_body] = { + .visible = true, + .named = true, + }, + [sym__class_parameters] = { + .visible = false, + .named = true, + }, + [sym_binding_pattern_kind] = { + .visible = true, + .named = true, + }, + [sym_class_parameter] = { + .visible = true, + .named = true, + }, + [sym__delegation_specifiers] = { + .visible = false, + .named = true, + }, + [sym_delegation_specifier] = { + .visible = true, + .named = true, + }, + [sym_constructor_invocation] = { + .visible = true, + .named = true, + }, + [sym_explicit_delegation] = { + .visible = true, + .named = true, + }, + [sym_type_parameters] = { + .visible = true, + .named = true, + }, + [sym_type_parameter] = { + .visible = true, + .named = true, + }, + [sym_type_constraints] = { + .visible = true, + .named = true, + }, + [sym_type_constraint] = { + .visible = true, + .named = true, + }, + [aux_sym__class_member_declarations] = { + .visible = false, + .named = false, + }, + [sym__class_member_declaration] = { + .visible = false, + .named = true, + }, + [sym_anonymous_initializer] = { + .visible = true, + .named = true, + }, + [sym_companion_object] = { + .visible = true, + .named = true, + }, + [sym_function_value_parameters] = { + .visible = true, + .named = true, + }, + [sym__function_value_parameter] = { + .visible = false, + .named = true, + }, + [sym__receiver_type] = { + .visible = false, + .named = true, + }, + [sym_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_function_body] = { + .visible = true, + .named = true, + }, + [sym_variable_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_delegate] = { + .visible = true, + .named = true, + }, + [sym_getter] = { + .visible = true, + .named = true, + }, + [sym_setter] = { + .visible = true, + .named = true, + }, + [sym_parameter_with_optional_type] = { + .visible = true, + .named = true, + }, + [sym_parameter] = { + .visible = true, + .named = true, + }, + [sym_object_declaration] = { + .visible = true, + .named = true, + }, + [sym_secondary_constructor] = { + .visible = true, + .named = true, + }, + [sym_constructor_delegation_call] = { + .visible = true, + .named = true, + }, + [sym_enum_class_body] = { + .visible = true, + .named = true, + }, + [sym__enum_entries] = { + .visible = false, + .named = true, + }, + [sym_enum_entry] = { + .visible = true, + .named = true, + }, + [sym__type] = { + .visible = false, + .named = true, + }, + [sym__type_reference] = { + .visible = false, + .named = true, + }, + [sym_not_nullable_type] = { + .visible = true, + .named = true, + }, + [sym_nullable_type] = { + .visible = true, + .named = true, + }, + [sym_user_type] = { + .visible = true, + .named = true, + }, + [sym__simple_user_type] = { + .visible = false, + .named = true, + }, + [sym_type_projection] = { + .visible = true, + .named = true, + }, + [sym_type_projection_modifiers] = { + .visible = true, + .named = true, + }, + [sym__type_projection_modifier] = { + .visible = false, + .named = true, + }, + [sym_function_type] = { + .visible = true, + .named = true, + }, + [sym_function_type_parameters] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_type] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_user_type] = { + .visible = true, + .named = true, + }, + [sym_statements] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym_control_structure_body] = { + .visible = true, + .named = true, + }, + [sym__block] = { + .visible = false, + .named = true, + }, + [sym__loop_statement] = { + .visible = false, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_while_statement] = { + .visible = true, + .named = true, + }, + [sym__semi] = { + .visible = false, + .named = true, + }, + [sym_assignment] = { + .visible = true, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + }, + [sym__unary_expression] = { + .visible = false, + .named = true, + }, + [sym_postfix_expression] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_indexing_expression] = { + .visible = true, + .named = true, + }, + [sym_navigation_expression] = { + .visible = true, + .named = true, + }, + [sym_prefix_expression] = { + .visible = true, + .named = true, + }, + [sym_as_expression] = { + .visible = true, + .named = true, + }, + [sym_spread_expression] = { + .visible = true, + .named = true, + }, + [sym__binary_expression] = { + .visible = false, + .named = true, + }, + [sym_multiplicative_expression] = { + .visible = true, + .named = true, + }, + [sym_additive_expression] = { + .visible = true, + .named = true, + }, + [sym_range_expression] = { + .visible = true, + .named = true, + }, + [sym_infix_expression] = { + .visible = true, + .named = true, + }, + [sym_elvis_expression] = { + .visible = true, + .named = true, + }, + [sym_check_expression] = { + .visible = true, + .named = true, + }, + [sym_comparison_expression] = { + .visible = true, + .named = true, + }, + [sym_equality_expression] = { + .visible = true, + .named = true, + }, + [sym_conjunction_expression] = { + .visible = true, + .named = true, + }, + [sym_disjunction_expression] = { + .visible = true, + .named = true, + }, + [sym_indexing_suffix] = { + .visible = true, + .named = true, + }, + [sym_navigation_suffix] = { + .visible = true, + .named = true, + }, + [sym_call_suffix] = { + .visible = true, + .named = true, + }, + [sym_annotated_lambda] = { + .visible = true, + .named = true, + }, + [sym_type_arguments] = { + .visible = true, + .named = true, + }, + [sym_value_arguments] = { + .visible = true, + .named = true, + }, + [sym_value_argument] = { + .visible = true, + .named = true, + }, + [sym__primary_expression] = { + .visible = false, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_collection_literal] = { + .visible = true, + .named = true, + }, + [sym__literal_constant] = { + .visible = false, + .named = true, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym__interpolation] = { + .visible = false, + .named = true, + }, + [sym_lambda_literal] = { + .visible = true, + .named = true, + }, + [sym_multi_variable_declaration] = { + .visible = true, + .named = true, + }, + [sym_lambda_parameters] = { + .visible = true, + .named = true, + }, + [sym__lambda_parameter] = { + .visible = false, + .named = true, + }, + [sym_anonymous_function] = { + .visible = true, + .named = true, + }, + [sym__function_literal] = { + .visible = false, + .named = true, + }, + [sym_object_literal] = { + .visible = true, + .named = true, + }, + [sym_this_expression] = { + .visible = true, + .named = true, + }, + [sym_super_expression] = { + .visible = true, + .named = true, + }, + [sym_if_expression] = { + .visible = true, + .named = true, + }, + [sym_when_subject] = { + .visible = true, + .named = true, + }, + [sym_when_expression] = { + .visible = true, + .named = true, + }, + [sym_when_entry] = { + .visible = true, + .named = true, + }, + [sym_when_condition] = { + .visible = true, + .named = true, + }, + [sym_range_test] = { + .visible = true, + .named = true, + }, + [sym_type_test] = { + .visible = true, + .named = true, + }, + [sym_try_expression] = { + .visible = true, + .named = true, + }, + [sym_catch_block] = { + .visible = true, + .named = true, + }, + [sym_finally_block] = { + .visible = true, + .named = true, + }, + [sym_jump_expression] = { + .visible = true, + .named = true, + }, + [sym_callable_reference] = { + .visible = true, + .named = true, + }, + [sym__assignment_and_operator] = { + .visible = false, + .named = true, + }, + [sym__equality_operator] = { + .visible = false, + .named = true, + }, + [sym__comparison_operator] = { + .visible = false, + .named = true, + }, + [sym__in_operator] = { + .visible = false, + .named = true, + }, + [sym__is_operator] = { + .visible = false, + .named = true, + }, + [sym__additive_operator] = { + .visible = false, + .named = true, + }, + [sym__multiplicative_operator] = { + .visible = false, + .named = true, + }, + [sym__as_operator] = { + .visible = false, + .named = true, + }, + [sym__prefix_unary_operator] = { + .visible = false, + .named = true, + }, + [sym__postfix_unary_operator] = { + .visible = false, + .named = true, + }, + [sym__member_access_operator] = { + .visible = false, + .named = true, + }, + [sym__postfix_unary_suffix] = { + .visible = false, + .named = true, + }, + [sym__postfix_unary_expression] = { + .visible = false, + .named = true, + }, + [sym_directly_assignable_expression] = { + .visible = true, + .named = true, + }, + [sym_modifiers] = { + .visible = true, + .named = true, + }, + [sym_parameter_modifiers] = { + .visible = true, + .named = true, + }, + [sym__modifier] = { + .visible = false, + .named = true, + }, + [sym_type_modifiers] = { + .visible = true, + .named = true, + }, + [sym__type_modifier] = { + .visible = false, + .named = true, + }, + [sym_class_modifier] = { + .visible = true, + .named = true, + }, + [sym_member_modifier] = { + .visible = true, + .named = true, + }, + [sym_visibility_modifier] = { + .visible = true, + .named = true, + }, + [sym_variance_modifier] = { + .visible = true, + .named = true, + }, + [sym_type_parameter_modifiers] = { + .visible = true, + .named = true, + }, + [sym__type_parameter_modifier] = { + .visible = false, + .named = true, + }, + [sym_function_modifier] = { + .visible = true, + .named = true, + }, + [sym_inheritance_modifier] = { + .visible = true, + .named = true, + }, + [sym_parameter_modifier] = { + .visible = true, + .named = true, + }, + [sym_platform_modifier] = { + .visible = true, + .named = true, + }, + [sym_annotation] = { + .visible = true, + .named = true, + }, + [sym__single_annotation] = { + .visible = false, + .named = true, + }, + [sym__multi_annotation] = { + .visible = false, + .named = true, + }, + [sym_use_site_target] = { + .visible = true, + .named = true, + }, + [sym__unescaped_annotation] = { + .visible = false, + .named = true, + }, + [sym_simple_identifier] = { + .visible = true, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym__import_identifier] = { + .visible = false, + .named = true, + }, + [sym__return_at] = { + .visible = false, + .named = true, + }, + [sym__continue_at] = { + .visible = false, + .named = true, + }, + [sym__break_at] = { + .visible = false, + .named = true, + }, + [sym__this_at] = { + .visible = false, + .named = true, + }, + [sym__super_at] = { + .visible = false, + .named = true, + }, + [sym_unsigned_literal] = { + .visible = true, + .named = true, + }, + [sym_long_literal] = { + .visible = true, + .named = true, + }, + [sym_boolean_literal] = { + .visible = true, + .named = true, + }, + [sym_character_literal] = { + .visible = true, + .named = true, + }, + [sym_character_escape_seq] = { + .visible = true, + .named = true, + }, + [sym__lexical_identifier] = { + .visible = false, + .named = true, + }, + [sym__uni_character_literal] = { + .visible = false, + .named = true, + }, + [aux_sym_source_file_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_source_file_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_source_file_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym_file_annotation_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_import_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__class_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__delegation_specifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__annotated_delegation_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_constraints_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_value_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__enum_entries_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_nullable_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_user_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_projection_modifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_type_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_statements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_indexing_suffix_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_value_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_multi_variable_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_lambda_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_when_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_when_entry_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_try_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__postfix_unary_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_modifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_modifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_modifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_parameter_modifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_identifier_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_interpolated_expression] = { + .visible = true, + .named = true, + }, + [alias_sym_interpolated_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_type_identifier] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_alternative = 1, + field_condition = 2, + field_consequence = 3, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alternative] = "alternative", + [field_condition] = "condition", + [field_consequence] = "consequence", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [9] = {.index = 0, .length = 1}, + [10] = {.index = 1, .length = 2}, + [12] = {.index = 3, .length = 2}, + [13] = {.index = 5, .length = 2}, + [14] = {.index = 7, .length = 3}, + [15] = {.index = 10, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_condition, 2}, + [1] = + {field_condition, 2}, + {field_consequence, 4}, + [3] = + {field_alternative, 5}, + {field_condition, 2}, + [5] = + {field_alternative, 6}, + {field_condition, 2}, + [7] = + {field_alternative, 6}, + {field_condition, 2}, + {field_consequence, 4}, + [10] = + {field_alternative, 7}, + {field_condition, 2}, + {field_consequence, 4}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = alias_sym_type_identifier, + }, + [2] = { + [1] = alias_sym_type_identifier, + }, + [3] = { + [1] = sym_label, + }, + [4] = { + [1] = alias_sym_interpolated_identifier, + }, + [5] = { + [1] = sym_identifier, + }, + [6] = { + [2] = alias_sym_type_identifier, + }, + [7] = { + [1] = alias_sym_interpolated_expression, + }, + [8] = { + [3] = alias_sym_type_identifier, + }, + [11] = { + [5] = alias_sym_type_identifier, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__expression, 2, + sym__expression, + alias_sym_interpolated_expression, + sym_simple_identifier, 3, + sym_simple_identifier, + alias_sym_interpolated_identifier, + alias_sym_type_identifier, + sym__import_identifier, 2, + sym__import_identifier, + sym_identifier, + sym__lexical_identifier, 3, + sym__lexical_identifier, + alias_sym_type_identifier, + sym_label, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 2, + [5] = 3, + [6] = 6, + [7] = 3, + [8] = 2, + [9] = 3, + [10] = 3, + [11] = 2, + [12] = 6, + [13] = 2, + [14] = 2, + [15] = 3, + [16] = 2, + [17] = 3, + [18] = 2, + [19] = 3, + [20] = 3, + [21] = 3, + [22] = 2, + [23] = 3, + [24] = 2, + [25] = 2, + [26] = 2, + [27] = 3, + [28] = 3, + [29] = 3, + [30] = 2, + [31] = 2, + [32] = 2, + [33] = 3, + [34] = 2, + [35] = 2, + [36] = 3, + [37] = 3, + [38] = 3, + [39] = 2, + [40] = 2, + [41] = 3, + [42] = 3, + [43] = 2, + [44] = 2, + [45] = 3, + [46] = 2, + [47] = 3, + [48] = 3, + [49] = 2, + [50] = 2, + [51] = 3, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 6, + [56] = 2, + [57] = 3, + [58] = 58, + [59] = 59, + [60] = 58, + [61] = 61, + [62] = 58, + [63] = 59, + [64] = 59, + [65] = 65, + [66] = 59, + [67] = 67, + [68] = 58, + [69] = 58, + [70] = 70, + [71] = 58, + [72] = 58, + [73] = 73, + [74] = 59, + [75] = 58, + [76] = 58, + [77] = 77, + [78] = 58, + [79] = 58, + [80] = 58, + [81] = 59, + [82] = 82, + [83] = 58, + [84] = 58, + [85] = 58, + [86] = 6, + [87] = 87, + [88] = 87, + [89] = 87, + [90] = 87, + [91] = 87, + [92] = 87, + [93] = 87, + [94] = 87, + [95] = 87, + [96] = 2, + [97] = 87, + [98] = 87, + [99] = 87, + [100] = 87, + [101] = 87, + [102] = 87, + [103] = 87, + [104] = 87, + [105] = 3, + [106] = 87, + [107] = 87, + [108] = 87, + [109] = 87, + [110] = 87, + [111] = 87, + [112] = 87, + [113] = 113, + [114] = 114, + [115] = 114, + [116] = 114, + [117] = 114, + [118] = 113, + [119] = 119, + [120] = 120, + [121] = 114, + [122] = 122, + [123] = 122, + [124] = 113, + [125] = 119, + [126] = 119, + [127] = 114, + [128] = 120, + [129] = 119, + [130] = 120, + [131] = 113, + [132] = 122, + [133] = 119, + [134] = 122, + [135] = 114, + [136] = 119, + [137] = 119, + [138] = 113, + [139] = 113, + [140] = 113, + [141] = 120, + [142] = 122, + [143] = 113, + [144] = 122, + [145] = 119, + [146] = 120, + [147] = 120, + [148] = 120, + [149] = 122, + [150] = 122, + [151] = 120, + [152] = 114, + [153] = 120, + [154] = 113, + [155] = 119, + [156] = 119, + [157] = 119, + [158] = 122, + [159] = 120, + [160] = 114, + [161] = 113, + [162] = 113, + [163] = 114, + [164] = 114, + [165] = 114, + [166] = 119, + [167] = 113, + [168] = 122, + [169] = 113, + [170] = 122, + [171] = 120, + [172] = 119, + [173] = 120, + [174] = 120, + [175] = 122, + [176] = 122, + [177] = 113, + [178] = 114, + [179] = 120, + [180] = 114, + [181] = 119, + [182] = 122, + [183] = 6, + [184] = 120, + [185] = 120, + [186] = 119, + [187] = 119, + [188] = 114, + [189] = 119, + [190] = 113, + [191] = 122, + [192] = 120, + [193] = 113, + [194] = 122, + [195] = 119, + [196] = 119, + [197] = 114, + [198] = 119, + [199] = 114, + [200] = 119, + [201] = 113, + [202] = 122, + [203] = 119, + [204] = 114, + [205] = 120, + [206] = 114, + [207] = 120, + [208] = 114, + [209] = 114, + [210] = 114, + [211] = 113, + [212] = 122, + [213] = 113, + [214] = 113, + [215] = 120, + [216] = 120, + [217] = 120, + [218] = 122, + [219] = 113, + [220] = 113, + [221] = 122, + [222] = 120, + [223] = 122, + [224] = 122, + [225] = 119, + [226] = 114, + [227] = 122, + [228] = 113, + [229] = 120, + [230] = 119, + [231] = 119, + [232] = 113, + [233] = 119, + [234] = 122, + [235] = 114, + [236] = 119, + [237] = 237, + [238] = 238, + [239] = 238, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 3, + [244] = 238, + [245] = 245, + [246] = 238, + [247] = 238, + [248] = 248, + [249] = 249, + [250] = 237, + [251] = 251, + [252] = 242, + [253] = 238, + [254] = 237, + [255] = 237, + [256] = 245, + [257] = 238, + [258] = 242, + [259] = 238, + [260] = 237, + [261] = 237, + [262] = 237, + [263] = 263, + [264] = 245, + [265] = 2, + [266] = 238, + [267] = 245, + [268] = 242, + [269] = 245, + [270] = 242, + [271] = 245, + [272] = 238, + [273] = 238, + [274] = 242, + [275] = 275, + [276] = 276, + [277] = 238, + [278] = 237, + [279] = 237, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 280, + [285] = 280, + [286] = 280, + [287] = 280, + [288] = 280, + [289] = 280, + [290] = 280, + [291] = 280, + [292] = 280, + [293] = 280, + [294] = 280, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 295, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 299, + [303] = 301, + [304] = 300, + [305] = 296, + [306] = 297, + [307] = 280, + [308] = 300, + [309] = 299, + [310] = 300, + [311] = 295, + [312] = 296, + [313] = 296, + [314] = 295, + [315] = 301, + [316] = 297, + [317] = 299, + [318] = 297, + [319] = 301, + [320] = 280, + [321] = 280, + [322] = 280, + [323] = 295, + [324] = 301, + [325] = 280, + [326] = 296, + [327] = 299, + [328] = 296, + [329] = 280, + [330] = 295, + [331] = 299, + [332] = 300, + [333] = 300, + [334] = 301, + [335] = 297, + [336] = 297, + [337] = 280, + [338] = 299, + [339] = 300, + [340] = 301, + [341] = 299, + [342] = 300, + [343] = 295, + [344] = 297, + [345] = 296, + [346] = 297, + [347] = 295, + [348] = 300, + [349] = 295, + [350] = 301, + [351] = 301, + [352] = 297, + [353] = 299, + [354] = 296, + [355] = 296, + [356] = 356, + [357] = 356, + [358] = 356, + [359] = 356, + [360] = 356, + [361] = 356, + [362] = 356, + [363] = 356, + [364] = 356, + [365] = 356, + [366] = 356, + [367] = 356, + [368] = 356, + [369] = 356, + [370] = 356, + [371] = 356, + [372] = 356, + [373] = 356, + [374] = 356, + [375] = 356, + [376] = 356, + [377] = 356, + [378] = 356, + [379] = 356, + [380] = 280, + [381] = 280, + [382] = 280, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 280, + [399] = 399, + [400] = 400, + [401] = 280, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 387, + [406] = 406, + [407] = 384, + [408] = 388, + [409] = 409, + [410] = 389, + [411] = 393, + [412] = 397, + [413] = 404, + [414] = 414, + [415] = 414, + [416] = 409, + [417] = 399, + [418] = 400, + [419] = 402, + [420] = 394, + [421] = 392, + [422] = 385, + [423] = 395, + [424] = 386, + [425] = 406, + [426] = 383, + [427] = 396, + [428] = 390, + [429] = 403, + [430] = 430, + [431] = 406, + [432] = 432, + [433] = 409, + [434] = 434, + [435] = 414, + [436] = 406, + [437] = 437, + [438] = 414, + [439] = 437, + [440] = 434, + [441] = 430, + [442] = 404, + [443] = 404, + [444] = 432, + [445] = 409, + [446] = 446, + [447] = 437, + [448] = 437, + [449] = 449, + [450] = 430, + [451] = 432, + [452] = 430, + [453] = 434, + [454] = 449, + [455] = 455, + [456] = 446, + [457] = 457, + [458] = 458, + [459] = 434, + [460] = 432, + [461] = 458, + [462] = 455, + [463] = 457, + [464] = 464, + [465] = 457, + [466] = 457, + [467] = 467, + [468] = 468, + [469] = 468, + [470] = 458, + [471] = 471, + [472] = 455, + [473] = 471, + [474] = 467, + [475] = 446, + [476] = 455, + [477] = 477, + [478] = 458, + [479] = 477, + [480] = 449, + [481] = 449, + [482] = 464, + [483] = 446, + [484] = 395, + [485] = 394, + [486] = 390, + [487] = 396, + [488] = 383, + [489] = 391, + [490] = 387, + [491] = 392, + [492] = 402, + [493] = 399, + [494] = 384, + [495] = 388, + [496] = 386, + [497] = 400, + [498] = 385, + [499] = 403, + [500] = 389, + [501] = 393, + [502] = 397, + [503] = 503, + [504] = 504, + [505] = 464, + [506] = 506, + [507] = 477, + [508] = 477, + [509] = 509, + [510] = 510, + [511] = 503, + [512] = 512, + [513] = 513, + [514] = 471, + [515] = 515, + [516] = 516, + [517] = 467, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 522, + [524] = 519, + [525] = 518, + [526] = 515, + [527] = 521, + [528] = 520, + [529] = 516, + [530] = 513, + [531] = 512, + [532] = 504, + [533] = 506, + [534] = 509, + [535] = 468, + [536] = 510, + [537] = 468, + [538] = 467, + [539] = 471, + [540] = 464, + [541] = 397, + [542] = 414, + [543] = 395, + [544] = 385, + [545] = 392, + [546] = 394, + [547] = 409, + [548] = 406, + [549] = 386, + [550] = 414, + [551] = 404, + [552] = 387, + [553] = 402, + [554] = 400, + [555] = 399, + [556] = 393, + [557] = 389, + [558] = 388, + [559] = 390, + [560] = 396, + [561] = 383, + [562] = 406, + [563] = 384, + [564] = 403, + [565] = 404, + [566] = 409, + [567] = 518, + [568] = 520, + [569] = 449, + [570] = 522, + [571] = 519, + [572] = 458, + [573] = 521, + [574] = 520, + [575] = 506, + [576] = 457, + [577] = 437, + [578] = 516, + [579] = 437, + [580] = 515, + [581] = 515, + [582] = 513, + [583] = 434, + [584] = 512, + [585] = 457, + [586] = 430, + [587] = 406, + [588] = 414, + [589] = 432, + [590] = 504, + [591] = 506, + [592] = 509, + [593] = 414, + [594] = 510, + [595] = 503, + [596] = 446, + [597] = 522, + [598] = 518, + [599] = 404, + [600] = 521, + [601] = 434, + [602] = 430, + [603] = 455, + [604] = 409, + [605] = 409, + [606] = 513, + [607] = 446, + [608] = 512, + [609] = 449, + [610] = 406, + [611] = 404, + [612] = 503, + [613] = 432, + [614] = 455, + [615] = 504, + [616] = 509, + [617] = 510, + [618] = 519, + [619] = 458, + [620] = 516, + [621] = 446, + [622] = 477, + [623] = 432, + [624] = 430, + [625] = 464, + [626] = 449, + [627] = 458, + [628] = 449, + [629] = 471, + [630] = 455, + [631] = 457, + [632] = 430, + [633] = 468, + [634] = 477, + [635] = 455, + [636] = 467, + [637] = 432, + [638] = 467, + [639] = 471, + [640] = 434, + [641] = 468, + [642] = 464, + [643] = 434, + [644] = 437, + [645] = 437, + [646] = 457, + [647] = 446, + [648] = 458, + [649] = 300, + [650] = 300, + [651] = 301, + [652] = 295, + [653] = 301, + [654] = 296, + [655] = 297, + [656] = 299, + [657] = 297, + [658] = 296, + [659] = 299, + [660] = 295, + [661] = 467, + [662] = 464, + [663] = 464, + [664] = 468, + [665] = 477, + [666] = 471, + [667] = 467, + [668] = 468, + [669] = 471, + [670] = 477, + [671] = 515, + [672] = 503, + [673] = 521, + [674] = 510, + [675] = 503, + [676] = 522, + [677] = 515, + [678] = 504, + [679] = 506, + [680] = 509, + [681] = 518, + [682] = 509, + [683] = 519, + [684] = 506, + [685] = 519, + [686] = 522, + [687] = 521, + [688] = 512, + [689] = 520, + [690] = 504, + [691] = 513, + [692] = 512, + [693] = 518, + [694] = 520, + [695] = 510, + [696] = 513, + [697] = 516, + [698] = 516, + [699] = 699, + [700] = 700, + [701] = 299, + [702] = 702, + [703] = 703, + [704] = 700, + [705] = 297, + [706] = 699, + [707] = 301, + [708] = 300, + [709] = 299, + [710] = 699, + [711] = 295, + [712] = 296, + [713] = 703, + [714] = 714, + [715] = 300, + [716] = 297, + [717] = 702, + [718] = 700, + [719] = 703, + [720] = 700, + [721] = 699, + [722] = 700, + [723] = 699, + [724] = 699, + [725] = 702, + [726] = 703, + [727] = 700, + [728] = 702, + [729] = 703, + [730] = 295, + [731] = 702, + [732] = 301, + [733] = 703, + [734] = 296, + [735] = 702, + [736] = 515, + [737] = 522, + [738] = 509, + [739] = 295, + [740] = 506, + [741] = 300, + [742] = 301, + [743] = 522, + [744] = 297, + [745] = 299, + [746] = 521, + [747] = 520, + [748] = 503, + [749] = 519, + [750] = 510, + [751] = 518, + [752] = 515, + [753] = 503, + [754] = 510, + [755] = 296, + [756] = 512, + [757] = 295, + [758] = 300, + [759] = 301, + [760] = 504, + [761] = 297, + [762] = 299, + [763] = 509, + [764] = 512, + [765] = 296, + [766] = 521, + [767] = 520, + [768] = 513, + [769] = 516, + [770] = 504, + [771] = 506, + [772] = 513, + [773] = 516, + [774] = 518, + [775] = 519, + [776] = 299, + [777] = 777, + [778] = 777, + [779] = 777, + [780] = 777, + [781] = 777, + [782] = 777, + [783] = 296, + [784] = 784, + [785] = 785, + [786] = 777, + [787] = 300, + [788] = 777, + [789] = 777, + [790] = 777, + [791] = 791, + [792] = 777, + [793] = 777, + [794] = 777, + [795] = 777, + [796] = 777, + [797] = 297, + [798] = 798, + [799] = 301, + [800] = 777, + [801] = 801, + [802] = 777, + [803] = 777, + [804] = 296, + [805] = 777, + [806] = 297, + [807] = 295, + [808] = 785, + [809] = 798, + [810] = 784, + [811] = 777, + [812] = 777, + [813] = 777, + [814] = 301, + [815] = 299, + [816] = 777, + [817] = 777, + [818] = 300, + [819] = 777, + [820] = 777, + [821] = 295, + [822] = 777, + [823] = 295, + [824] = 296, + [825] = 299, + [826] = 297, + [827] = 295, + [828] = 301, + [829] = 300, + [830] = 300, + [831] = 301, + [832] = 832, + [833] = 297, + [834] = 296, + [835] = 299, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 836, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 849, + [876] = 848, + [877] = 877, + [878] = 878, + [879] = 845, + [880] = 837, + [881] = 846, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 866, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 299, + [894] = 894, + [895] = 297, + [896] = 301, + [897] = 300, + [898] = 295, + [899] = 296, + [900] = 900, + [901] = 862, + [902] = 850, + [903] = 903, + [904] = 904, + [905] = 863, + [906] = 906, + [907] = 865, + [908] = 908, + [909] = 868, + [910] = 871, + [911] = 872, + [912] = 873, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 849, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 840, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 299, + [936] = 936, + [937] = 937, + [938] = 297, + [939] = 301, + [940] = 300, + [941] = 295, + [942] = 870, + [943] = 867, + [944] = 869, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 864, + [949] = 296, + [950] = 400, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 388, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 386, + [965] = 965, + [966] = 966, + [967] = 960, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 395, + [982] = 385, + [983] = 392, + [984] = 394, + [985] = 402, + [986] = 399, + [987] = 397, + [988] = 393, + [989] = 389, + [990] = 384, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 296, + [997] = 295, + [998] = 300, + [999] = 301, + [1000] = 297, + [1001] = 299, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 383, + [1007] = 1007, + [1008] = 1008, + [1009] = 852, + [1010] = 396, + [1011] = 853, + [1012] = 1012, + [1013] = 390, + [1014] = 1014, + [1015] = 882, + [1016] = 1016, + [1017] = 296, + [1018] = 300, + [1019] = 1019, + [1020] = 295, + [1021] = 1021, + [1022] = 387, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 301, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 297, + [1034] = 299, + [1035] = 1035, + [1036] = 391, + [1037] = 856, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 936, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 300, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 921, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1085, + [1098] = 1098, + [1099] = 1099, + [1100] = 1078, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 296, + [1127] = 1127, + [1128] = 1128, + [1129] = 861, + [1130] = 1130, + [1131] = 925, + [1132] = 1132, + [1133] = 1133, + [1134] = 886, + [1135] = 1135, + [1136] = 1136, + [1137] = 854, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 296, + [1142] = 854, + [1143] = 919, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 856, + [1149] = 933, + [1150] = 856, + [1151] = 854, + [1152] = 1152, + [1153] = 1153, + [1154] = 926, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 295, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 927, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 854, + [1169] = 928, + [1170] = 856, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 929, + [1181] = 1181, + [1182] = 930, + [1183] = 1183, + [1184] = 1184, + [1185] = 917, + [1186] = 1186, + [1187] = 1187, + [1188] = 934, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 301, + [1201] = 1201, + [1202] = 1202, + [1203] = 299, + [1204] = 297, + [1205] = 297, + [1206] = 1206, + [1207] = 299, + [1208] = 301, + [1209] = 300, + [1210] = 295, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 932, + [1216] = 402, + [1217] = 390, + [1218] = 386, + [1219] = 399, + [1220] = 388, + [1221] = 383, + [1222] = 396, + [1223] = 388, + [1224] = 387, + [1225] = 296, + [1226] = 393, + [1227] = 383, + [1228] = 389, + [1229] = 400, + [1230] = 402, + [1231] = 301, + [1232] = 394, + [1233] = 392, + [1234] = 385, + [1235] = 295, + [1236] = 395, + [1237] = 386, + [1238] = 391, + [1239] = 384, + [1240] = 395, + [1241] = 399, + [1242] = 845, + [1243] = 384, + [1244] = 837, + [1245] = 848, + [1246] = 389, + [1247] = 393, + [1248] = 397, + [1249] = 854, + [1250] = 400, + [1251] = 396, + [1252] = 394, + [1253] = 392, + [1254] = 385, + [1255] = 297, + [1256] = 856, + [1257] = 846, + [1258] = 403, + [1259] = 387, + [1260] = 836, + [1261] = 299, + [1262] = 300, + [1263] = 397, + [1264] = 390, + [1265] = 1265, + [1266] = 882, + [1267] = 856, + [1268] = 1265, + [1269] = 870, + [1270] = 854, + [1271] = 1265, + [1272] = 1039, + [1273] = 869, + [1274] = 1265, + [1275] = 846, + [1276] = 867, + [1277] = 848, + [1278] = 866, + [1279] = 1265, + [1280] = 864, + [1281] = 1265, + [1282] = 856, + [1283] = 1265, + [1284] = 854, + [1285] = 1265, + [1286] = 1265, + [1287] = 1265, + [1288] = 845, + [1289] = 837, + [1290] = 1265, + [1291] = 854, + [1292] = 856, + [1293] = 1053, + [1294] = 296, + [1295] = 295, + [1296] = 300, + [1297] = 854, + [1298] = 856, + [1299] = 1265, + [1300] = 1265, + [1301] = 1057, + [1302] = 1265, + [1303] = 1041, + [1304] = 1265, + [1305] = 1265, + [1306] = 836, + [1307] = 1265, + [1308] = 1042, + [1309] = 1265, + [1310] = 1265, + [1311] = 853, + [1312] = 1265, + [1313] = 1265, + [1314] = 299, + [1315] = 297, + [1316] = 852, + [1317] = 301, + [1318] = 1265, + [1319] = 1265, + [1320] = 1043, + [1321] = 1265, + [1322] = 1322, + [1323] = 1322, + [1324] = 1322, + [1325] = 1325, + [1326] = 929, + [1327] = 854, + [1328] = 856, + [1329] = 1322, + [1330] = 930, + [1331] = 414, + [1332] = 1322, + [1333] = 409, + [1334] = 406, + [1335] = 1325, + [1336] = 927, + [1337] = 404, + [1338] = 926, + [1339] = 870, + [1340] = 1322, + [1341] = 1341, + [1342] = 886, + [1343] = 925, + [1344] = 404, + [1345] = 1341, + [1346] = 869, + [1347] = 1325, + [1348] = 406, + [1349] = 1325, + [1350] = 867, + [1351] = 409, + [1352] = 1322, + [1353] = 1341, + [1354] = 414, + [1355] = 928, + [1356] = 1341, + [1357] = 866, + [1358] = 862, + [1359] = 850, + [1360] = 863, + [1361] = 865, + [1362] = 868, + [1363] = 871, + [1364] = 1341, + [1365] = 872, + [1366] = 1325, + [1367] = 919, + [1368] = 873, + [1369] = 1341, + [1370] = 1325, + [1371] = 864, + [1372] = 1322, + [1373] = 1341, + [1374] = 1325, + [1375] = 1322, + [1376] = 1341, + [1377] = 1325, + [1378] = 1325, + [1379] = 1322, + [1380] = 1380, + [1381] = 1341, + [1382] = 1341, + [1383] = 921, + [1384] = 1341, + [1385] = 1325, + [1386] = 1325, + [1387] = 1322, + [1388] = 1325, + [1389] = 1341, + [1390] = 1322, + [1391] = 1325, + [1392] = 1325, + [1393] = 1322, + [1394] = 1325, + [1395] = 1341, + [1396] = 1322, + [1397] = 1325, + [1398] = 1341, + [1399] = 1322, + [1400] = 1325, + [1401] = 1341, + [1402] = 1341, + [1403] = 1322, + [1404] = 1325, + [1405] = 1341, + [1406] = 917, + [1407] = 1322, + [1408] = 1322, + [1409] = 1325, + [1410] = 1341, + [1411] = 1322, + [1412] = 391, + [1413] = 395, + [1414] = 392, + [1415] = 394, + [1416] = 873, + [1417] = 1417, + [1418] = 402, + [1419] = 400, + [1420] = 385, + [1421] = 882, + [1422] = 397, + [1423] = 393, + [1424] = 389, + [1425] = 945, + [1426] = 872, + [1427] = 384, + [1428] = 871, + [1429] = 868, + [1430] = 390, + [1431] = 396, + [1432] = 383, + [1433] = 1433, + [1434] = 403, + [1435] = 865, + [1436] = 863, + [1437] = 932, + [1438] = 934, + [1439] = 850, + [1440] = 387, + [1441] = 399, + [1442] = 862, + [1443] = 434, + [1444] = 437, + [1445] = 853, + [1446] = 388, + [1447] = 430, + [1448] = 432, + [1449] = 386, + [1450] = 852, + [1451] = 432, + [1452] = 430, + [1453] = 434, + [1454] = 437, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1458, + [1472] = 1459, + [1473] = 1460, + [1474] = 1461, + [1475] = 1456, + [1476] = 1476, + [1477] = 1463, + [1478] = 1456, + [1479] = 1479, + [1480] = 1466, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1479, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1470, + [1491] = 1458, + [1492] = 1457, + [1493] = 1482, + [1494] = 1456, + [1495] = 1495, + [1496] = 1462, + [1497] = 1497, + [1498] = 1470, + [1499] = 1479, + [1500] = 1487, + [1501] = 1476, + [1502] = 1502, + [1503] = 1484, + [1504] = 1485, + [1505] = 1457, + [1506] = 1506, + [1507] = 1495, + [1508] = 1497, + [1509] = 1509, + [1510] = 1509, + [1511] = 1488, + [1512] = 1459, + [1513] = 1489, + [1514] = 1460, + [1515] = 1502, + [1516] = 1457, + [1517] = 1517, + [1518] = 1509, + [1519] = 1495, + [1520] = 1497, + [1521] = 1489, + [1522] = 1502, + [1523] = 1523, + [1524] = 1517, + [1525] = 1497, + [1526] = 1489, + [1527] = 1502, + [1528] = 1497, + [1529] = 1488, + [1530] = 1489, + [1531] = 1502, + [1532] = 1487, + [1533] = 1482, + [1534] = 1497, + [1535] = 1466, + [1536] = 1461, + [1537] = 1463, + [1538] = 1487, + [1539] = 1464, + [1540] = 1540, + [1541] = 1489, + [1542] = 1467, + [1543] = 1458, + [1544] = 1459, + [1545] = 1476, + [1546] = 1546, + [1547] = 1502, + [1548] = 1506, + [1549] = 1460, + [1550] = 1502, + [1551] = 1461, + [1552] = 1540, + [1553] = 1489, + [1554] = 1479, + [1555] = 1464, + [1556] = 1463, + [1557] = 1465, + [1558] = 1456, + [1559] = 1479, + [1560] = 1502, + [1561] = 1497, + [1562] = 1489, + [1563] = 1517, + [1564] = 1484, + [1565] = 1465, + [1566] = 1502, + [1567] = 1497, + [1568] = 1485, + [1569] = 1464, + [1570] = 1489, + [1571] = 1457, + [1572] = 1517, + [1573] = 1573, + [1574] = 1484, + [1575] = 1489, + [1576] = 1497, + [1577] = 1517, + [1578] = 1506, + [1579] = 1497, + [1580] = 1476, + [1581] = 1495, + [1582] = 1509, + [1583] = 1517, + [1584] = 1488, + [1585] = 1485, + [1586] = 1479, + [1587] = 1487, + [1588] = 1464, + [1589] = 1476, + [1590] = 1509, + [1591] = 1495, + [1592] = 1592, + [1593] = 1462, + [1594] = 1482, + [1595] = 1466, + [1596] = 1464, + [1597] = 1467, + [1598] = 1458, + [1599] = 1459, + [1600] = 1463, + [1601] = 1460, + [1602] = 1461, + [1603] = 1465, + [1604] = 1463, + [1605] = 1457, + [1606] = 1502, + [1607] = 1468, + [1608] = 1523, + [1609] = 1485, + [1610] = 1461, + [1611] = 1484, + [1612] = 1460, + [1613] = 1540, + [1614] = 1459, + [1615] = 1479, + [1616] = 1495, + [1617] = 1463, + [1618] = 1461, + [1619] = 1460, + [1620] = 1459, + [1621] = 1458, + [1622] = 1464, + [1623] = 1458, + [1624] = 1467, + [1625] = 1466, + [1626] = 391, + [1627] = 1482, + [1628] = 1487, + [1629] = 1488, + [1630] = 1517, + [1631] = 1509, + [1632] = 1509, + [1633] = 1495, + [1634] = 1467, + [1635] = 1466, + [1636] = 1509, + [1637] = 1482, + [1638] = 1495, + [1639] = 1517, + [1640] = 388, + [1641] = 389, + [1642] = 393, + [1643] = 397, + [1644] = 1644, + [1645] = 399, + [1646] = 1540, + [1647] = 400, + [1648] = 1488, + [1649] = 1487, + [1650] = 1482, + [1651] = 1466, + [1652] = 1467, + [1653] = 402, + [1654] = 1458, + [1655] = 1470, + [1656] = 394, + [1657] = 392, + [1658] = 385, + [1659] = 395, + [1660] = 1479, + [1661] = 386, + [1662] = 1463, + [1663] = 1461, + [1664] = 1476, + [1665] = 1460, + [1666] = 1459, + [1667] = 1458, + [1668] = 1467, + [1669] = 1466, + [1670] = 1482, + [1671] = 1487, + [1672] = 1488, + [1673] = 1517, + [1674] = 387, + [1675] = 1459, + [1676] = 1509, + [1677] = 1495, + [1678] = 1470, + [1679] = 1460, + [1680] = 1461, + [1681] = 1488, + [1682] = 384, + [1683] = 1517, + [1684] = 1463, + [1685] = 389, + [1686] = 393, + [1687] = 397, + [1688] = 399, + [1689] = 400, + [1690] = 402, + [1691] = 394, + [1692] = 392, + [1693] = 1464, + [1694] = 385, + [1695] = 395, + [1696] = 1485, + [1697] = 1484, + [1698] = 1479, + [1699] = 1470, + [1700] = 1479, + [1701] = 1523, + [1702] = 1476, + [1703] = 1489, + [1704] = 1540, + [1705] = 1495, + [1706] = 1488, + [1707] = 1509, + [1708] = 1464, + [1709] = 1463, + [1710] = 1461, + [1711] = 1460, + [1712] = 1459, + [1713] = 1458, + [1714] = 1467, + [1715] = 1466, + [1716] = 1482, + [1717] = 1487, + [1718] = 1488, + [1719] = 1487, + [1720] = 1470, + [1721] = 1517, + [1722] = 1482, + [1723] = 1495, + [1724] = 1509, + [1725] = 1462, + [1726] = 1495, + [1727] = 1466, + [1728] = 1540, + [1729] = 1470, + [1730] = 1509, + [1731] = 1465, + [1732] = 1456, + [1733] = 1517, + [1734] = 1467, + [1735] = 1458, + [1736] = 1462, + [1737] = 1488, + [1738] = 1487, + [1739] = 1482, + [1740] = 1502, + [1741] = 1466, + [1742] = 1467, + [1743] = 1458, + [1744] = 1456, + [1745] = 1459, + [1746] = 977, + [1747] = 1457, + [1748] = 1460, + [1749] = 1461, + [1750] = 1479, + [1751] = 1464, + [1752] = 1463, + [1753] = 1461, + [1754] = 1460, + [1755] = 1459, + [1756] = 1463, + [1757] = 1458, + [1758] = 1467, + [1759] = 1466, + [1760] = 1482, + [1761] = 1487, + [1762] = 1488, + [1763] = 1464, + [1764] = 1517, + [1765] = 1479, + [1766] = 1459, + [1767] = 1460, + [1768] = 1461, + [1769] = 1457, + [1770] = 1509, + [1771] = 1463, + [1772] = 1546, + [1773] = 1495, + [1774] = 1468, + [1775] = 1502, + [1776] = 1462, + [1777] = 1488, + [1778] = 1487, + [1779] = 1502, + [1780] = 1489, + [1781] = 1482, + [1782] = 1467, + [1783] = 1506, + [1784] = 1497, + [1785] = 1466, + [1786] = 1546, + [1787] = 1457, + [1788] = 1467, + [1789] = 1479, + [1790] = 1458, + [1791] = 1464, + [1792] = 1463, + [1793] = 1461, + [1794] = 1459, + [1795] = 1460, + [1796] = 1459, + [1797] = 1460, + [1798] = 1546, + [1799] = 1483, + [1800] = 1461, + [1801] = 1495, + [1802] = 1463, + [1803] = 1509, + [1804] = 1464, + [1805] = 1466, + [1806] = 1485, + [1807] = 1458, + [1808] = 1808, + [1809] = 1476, + [1810] = 1497, + [1811] = 1467, + [1812] = 1812, + [1813] = 1456, + [1814] = 1482, + [1815] = 1517, + [1816] = 1457, + [1817] = 1466, + [1818] = 1497, + [1819] = 1506, + [1820] = 1482, + [1821] = 1487, + [1822] = 1488, + [1823] = 1487, + [1824] = 1488, + [1825] = 1506, + [1826] = 1517, + [1827] = 1497, + [1828] = 1462, + [1829] = 1456, + [1830] = 1489, + [1831] = 1457, + [1832] = 1509, + [1833] = 457, + [1834] = 1489, + [1835] = 1506, + [1836] = 1495, + [1837] = 1489, + [1838] = 1470, + [1839] = 1523, + [1840] = 1517, + [1841] = 1468, + [1842] = 1842, + [1843] = 1540, + [1844] = 925, + [1845] = 1476, + [1846] = 1509, + [1847] = 1495, + [1848] = 1488, + [1849] = 1487, + [1850] = 1482, + [1851] = 1466, + [1852] = 1509, + [1853] = 1540, + [1854] = 458, + [1855] = 1456, + [1856] = 1502, + [1857] = 1517, + [1858] = 1467, + [1859] = 1458, + [1860] = 1459, + [1861] = 1460, + [1862] = 1461, + [1863] = 1484, + [1864] = 1463, + [1865] = 1464, + [1866] = 1465, + [1867] = 1479, + [1868] = 1456, + [1869] = 1457, + [1870] = 449, + [1871] = 1509, + [1872] = 1484, + [1873] = 1485, + [1874] = 1484, + [1875] = 1485, + [1876] = 1476, + [1877] = 1470, + [1878] = 1462, + [1879] = 1488, + [1880] = 1456, + [1881] = 1487, + [1882] = 1482, + [1883] = 1457, + [1884] = 1466, + [1885] = 1457, + [1886] = 1467, + [1887] = 1489, + [1888] = 1479, + [1889] = 1497, + [1890] = 1546, + [1891] = 1502, + [1892] = 1485, + [1893] = 1484, + [1894] = 1476, + [1895] = 1470, + [1896] = 1462, + [1897] = 1479, + [1898] = 1465, + [1899] = 1456, + [1900] = 1479, + [1901] = 1485, + [1902] = 1484, + [1903] = 1476, + [1904] = 1489, + [1905] = 446, + [1906] = 1470, + [1907] = 1497, + [1908] = 1458, + [1909] = 1459, + [1910] = 1460, + [1911] = 1911, + [1912] = 1461, + [1913] = 1463, + [1914] = 1462, + [1915] = 1456, + [1916] = 1464, + [1917] = 1464, + [1918] = 1483, + [1919] = 1458, + [1920] = 1502, + [1921] = 1479, + [1922] = 1464, + [1923] = 1457, + [1924] = 1479, + [1925] = 1463, + [1926] = 1461, + [1927] = 1460, + [1928] = 1459, + [1929] = 1458, + [1930] = 1502, + [1931] = 1470, + [1932] = 1502, + [1933] = 1502, + [1934] = 1517, + [1935] = 1485, + [1936] = 1468, + [1937] = 1484, + [1938] = 1476, + [1939] = 1470, + [1940] = 1495, + [1941] = 1462, + [1942] = 1462, + [1943] = 455, + [1944] = 1485, + [1945] = 1456, + [1946] = 1484, + [1947] = 1476, + [1948] = 1470, + [1949] = 1462, + [1950] = 1509, + [1951] = 1540, + [1952] = 1456, + [1953] = 1489, + [1954] = 1497, + [1955] = 1502, + [1956] = 1488, + [1957] = 1465, + [1958] = 1485, + [1959] = 1484, + [1960] = 1476, + [1961] = 1470, + [1962] = 1462, + [1963] = 1540, + [1964] = 1456, + [1965] = 1487, + [1966] = 1464, + [1967] = 1456, + [1968] = 930, + [1969] = 1462, + [1970] = 1470, + [1971] = 1476, + [1972] = 1484, + [1973] = 1464, + [1974] = 1485, + [1975] = 1482, + [1976] = 1456, + [1977] = 1466, + [1978] = 1462, + [1979] = 1470, + [1980] = 1476, + [1981] = 1484, + [1982] = 960, + [1983] = 1523, + [1984] = 1467, + [1985] = 1467, + [1986] = 1458, + [1987] = 1489, + [1988] = 1485, + [1989] = 1517, + [1990] = 1462, + [1991] = 457, + [1992] = 1488, + [1993] = 1470, + [1994] = 1476, + [1995] = 1487, + [1996] = 1484, + [1997] = 1497, + [1998] = 1464, + [1999] = 1463, + [2000] = 1485, + [2001] = 1456, + [2002] = 1462, + [2003] = 1461, + [2004] = 1460, + [2005] = 1470, + [2006] = 1482, + [2007] = 1546, + [2008] = 1497, + [2009] = 1465, + [2010] = 1467, + [2011] = 1459, + [2012] = 1476, + [2013] = 1460, + [2014] = 1484, + [2015] = 1485, + [2016] = 1456, + [2017] = 1466, + [2018] = 1462, + [2019] = 1470, + [2020] = 1461, + [2021] = 1466, + [2022] = 1463, + [2023] = 1464, + [2024] = 1479, + [2025] = 1482, + [2026] = 1467, + [2027] = 1466, + [2028] = 1458, + [2029] = 1502, + [2030] = 1459, + [2031] = 1464, + [2032] = 1460, + [2033] = 1489, + [2034] = 1487, + [2035] = 1488, + [2036] = 1476, + [2037] = 1484, + [2038] = 1482, + [2039] = 1495, + [2040] = 1497, + [2041] = 1461, + [2042] = 1463, + [2043] = 1485, + [2044] = 458, + [2045] = 1456, + [2046] = 1462, + [2047] = 1470, + [2048] = 1476, + [2049] = 1484, + [2050] = 1479, + [2051] = 1485, + [2052] = 929, + [2053] = 1495, + [2054] = 1509, + [2055] = 1517, + [2056] = 1488, + [2057] = 1487, + [2058] = 1482, + [2059] = 1540, + [2060] = 917, + [2061] = 1502, + [2062] = 449, + [2063] = 1465, + [2064] = 1466, + [2065] = 1467, + [2066] = 1458, + [2067] = 1459, + [2068] = 1460, + [2069] = 1461, + [2070] = 1517, + [2071] = 1463, + [2072] = 1464, + [2073] = 1479, + [2074] = 1462, + [2075] = 1484, + [2076] = 1487, + [2077] = 1489, + [2078] = 1476, + [2079] = 1457, + [2080] = 403, + [2081] = 446, + [2082] = 455, + [2083] = 1483, + [2084] = 1509, + [2085] = 1495, + [2086] = 1462, + [2087] = 1470, + [2088] = 387, + [2089] = 1476, + [2090] = 1489, + [2091] = 2091, + [2092] = 1484, + [2093] = 1485, + [2094] = 1495, + [2095] = 1456, + [2096] = 1456, + [2097] = 1476, + [2098] = 1465, + [2099] = 2099, + [2100] = 386, + [2101] = 2101, + [2102] = 1468, + [2103] = 1523, + [2104] = 1497, + [2105] = 1485, + [2106] = 1457, + [2107] = 1467, + [2108] = 973, + [2109] = 1459, + [2110] = 886, + [2111] = 1502, + [2112] = 1462, + [2113] = 388, + [2114] = 1517, + [2115] = 1509, + [2116] = 1489, + [2117] = 2117, + [2118] = 1464, + [2119] = 1489, + [2120] = 1506, + [2121] = 2121, + [2122] = 1484, + [2123] = 928, + [2124] = 1485, + [2125] = 1470, + [2126] = 1476, + [2127] = 1484, + [2128] = 1485, + [2129] = 1456, + [2130] = 1495, + [2131] = 1462, + [2132] = 1470, + [2133] = 1476, + [2134] = 1484, + [2135] = 1485, + [2136] = 1456, + [2137] = 1462, + [2138] = 1457, + [2139] = 1479, + [2140] = 1457, + [2141] = 2141, + [2142] = 2142, + [2143] = 384, + [2144] = 968, + [2145] = 1540, + [2146] = 1495, + [2147] = 1509, + [2148] = 921, + [2149] = 1465, + [2150] = 1502, + [2151] = 960, + [2152] = 1497, + [2153] = 1517, + [2154] = 1457, + [2155] = 1488, + [2156] = 1497, + [2157] = 1457, + [2158] = 1487, + [2159] = 926, + [2160] = 1482, + [2161] = 1466, + [2162] = 1467, + [2163] = 2163, + [2164] = 1458, + [2165] = 1470, + [2166] = 1497, + [2167] = 1483, + [2168] = 1459, + [2169] = 1460, + [2170] = 1489, + [2171] = 1461, + [2172] = 1463, + [2173] = 1485, + [2174] = 1479, + [2175] = 1463, + [2176] = 1502, + [2177] = 1461, + [2178] = 1460, + [2179] = 919, + [2180] = 1457, + [2181] = 1495, + [2182] = 1509, + [2183] = 1459, + [2184] = 1488, + [2185] = 1484, + [2186] = 1485, + [2187] = 1502, + [2188] = 1458, + [2189] = 1456, + [2190] = 1467, + [2191] = 1457, + [2192] = 1462, + [2193] = 1517, + [2194] = 1497, + [2195] = 1484, + [2196] = 1489, + [2197] = 1462, + [2198] = 1466, + [2199] = 1470, + [2200] = 1497, + [2201] = 1482, + [2202] = 1487, + [2203] = 1488, + [2204] = 1506, + [2205] = 1497, + [2206] = 927, + [2207] = 390, + [2208] = 1457, + [2209] = 1476, + [2210] = 383, + [2211] = 396, + [2212] = 390, + [2213] = 396, + [2214] = 383, + [2215] = 1489, + [2216] = 1502, + [2217] = 414, + [2218] = 400, + [2219] = 399, + [2220] = 397, + [2221] = 406, + [2222] = 393, + [2223] = 409, + [2224] = 389, + [2225] = 468, + [2226] = 384, + [2227] = 414, + [2228] = 467, + [2229] = 471, + [2230] = 934, + [2231] = 387, + [2232] = 464, + [2233] = 402, + [2234] = 409, + [2235] = 404, + [2236] = 394, + [2237] = 406, + [2238] = 392, + [2239] = 409, + [2240] = 477, + [2241] = 406, + [2242] = 385, + [2243] = 414, + [2244] = 395, + [2245] = 404, + [2246] = 932, + [2247] = 409, + [2248] = 386, + [2249] = 414, + [2250] = 1053, + [2251] = 1057, + [2252] = 388, + [2253] = 406, + [2254] = 468, + [2255] = 404, + [2256] = 467, + [2257] = 414, + [2258] = 404, + [2259] = 406, + [2260] = 1042, + [2261] = 1043, + [2262] = 383, + [2263] = 856, + [2264] = 390, + [2265] = 854, + [2266] = 409, + [2267] = 404, + [2268] = 464, + [2269] = 856, + [2270] = 477, + [2271] = 854, + [2272] = 471, + [2273] = 403, + [2274] = 396, + [2275] = 1039, + [2276] = 1041, + [2277] = 414, + [2278] = 387, + [2279] = 383, + [2280] = 388, + [2281] = 455, + [2282] = 406, + [2283] = 437, + [2284] = 430, + [2285] = 390, + [2286] = 432, + [2287] = 386, + [2288] = 432, + [2289] = 434, + [2290] = 390, + [2291] = 432, + [2292] = 396, + [2293] = 430, + [2294] = 434, + [2295] = 387, + [2296] = 457, + [2297] = 384, + [2298] = 383, + [2299] = 395, + [2300] = 385, + [2301] = 392, + [2302] = 394, + [2303] = 409, + [2304] = 402, + [2305] = 400, + [2306] = 399, + [2307] = 437, + [2308] = 397, + [2309] = 393, + [2310] = 391, + [2311] = 446, + [2312] = 389, + [2313] = 430, + [2314] = 856, + [2315] = 388, + [2316] = 854, + [2317] = 403, + [2318] = 434, + [2319] = 395, + [2320] = 385, + [2321] = 404, + [2322] = 392, + [2323] = 394, + [2324] = 386, + [2325] = 402, + [2326] = 400, + [2327] = 399, + [2328] = 458, + [2329] = 397, + [2330] = 393, + [2331] = 437, + [2332] = 389, + [2333] = 396, + [2334] = 434, + [2335] = 430, + [2336] = 437, + [2337] = 432, + [2338] = 404, + [2339] = 384, + [2340] = 414, + [2341] = 409, + [2342] = 449, + [2343] = 406, + [2344] = 446, + [2345] = 434, + [2346] = 446, + [2347] = 430, + [2348] = 516, + [2349] = 520, + [2350] = 521, + [2351] = 856, + [2352] = 515, + [2353] = 434, + [2354] = 519, + [2355] = 446, + [2356] = 518, + [2357] = 518, + [2358] = 515, + [2359] = 449, + [2360] = 854, + [2361] = 434, + [2362] = 455, + [2363] = 457, + [2364] = 856, + [2365] = 519, + [2366] = 437, + [2367] = 522, + [2368] = 1039, + [2369] = 458, + [2370] = 432, + [2371] = 430, + [2372] = 1057, + [2373] = 521, + [2374] = 1053, + [2375] = 513, + [2376] = 520, + [2377] = 512, + [2378] = 516, + [2379] = 504, + [2380] = 430, + [2381] = 506, + [2382] = 432, + [2383] = 513, + [2384] = 457, + [2385] = 509, + [2386] = 512, + [2387] = 449, + [2388] = 522, + [2389] = 449, + [2390] = 510, + [2391] = 458, + [2392] = 503, + [2393] = 504, + [2394] = 506, + [2395] = 455, + [2396] = 458, + [2397] = 854, + [2398] = 1042, + [2399] = 457, + [2400] = 1041, + [2401] = 1043, + [2402] = 509, + [2403] = 437, + [2404] = 457, + [2405] = 432, + [2406] = 510, + [2407] = 449, + [2408] = 458, + [2409] = 455, + [2410] = 437, + [2411] = 446, + [2412] = 455, + [2413] = 503, + [2414] = 468, + [2415] = 471, + [2416] = 464, + [2417] = 471, + [2418] = 449, + [2419] = 477, + [2420] = 477, + [2421] = 468, + [2422] = 406, + [2423] = 406, + [2424] = 467, + [2425] = 457, + [2426] = 467, + [2427] = 458, + [2428] = 468, + [2429] = 467, + [2430] = 404, + [2431] = 455, + [2432] = 449, + [2433] = 446, + [2434] = 414, + [2435] = 471, + [2436] = 404, + [2437] = 457, + [2438] = 458, + [2439] = 455, + [2440] = 464, + [2441] = 414, + [2442] = 477, + [2443] = 409, + [2444] = 446, + [2445] = 464, + [2446] = 409, + [2447] = 396, + [2448] = 430, + [2449] = 477, + [2450] = 430, + [2451] = 449, + [2452] = 464, + [2453] = 434, + [2454] = 471, + [2455] = 458, + [2456] = 467, + [2457] = 468, + [2458] = 437, + [2459] = 432, + [2460] = 446, + [2461] = 437, + [2462] = 458, + [2463] = 432, + [2464] = 477, + [2465] = 464, + [2466] = 471, + [2467] = 467, + [2468] = 468, + [2469] = 395, + [2470] = 457, + [2471] = 385, + [2472] = 392, + [2473] = 446, + [2474] = 390, + [2475] = 383, + [2476] = 403, + [2477] = 434, + [2478] = 394, + [2479] = 402, + [2480] = 400, + [2481] = 391, + [2482] = 455, + [2483] = 399, + [2484] = 397, + [2485] = 393, + [2486] = 455, + [2487] = 389, + [2488] = 384, + [2489] = 449, + [2490] = 388, + [2491] = 386, + [2492] = 457, + [2493] = 387, + [2494] = 516, + [2495] = 522, + [2496] = 385, + [2497] = 392, + [2498] = 394, + [2499] = 522, + [2500] = 467, + [2501] = 519, + [2502] = 520, + [2503] = 518, + [2504] = 468, + [2505] = 396, + [2506] = 400, + [2507] = 515, + [2508] = 399, + [2509] = 513, + [2510] = 397, + [2511] = 393, + [2512] = 471, + [2513] = 512, + [2514] = 402, + [2515] = 504, + [2516] = 389, + [2517] = 506, + [2518] = 509, + [2519] = 468, + [2520] = 510, + [2521] = 503, + [2522] = 403, + [2523] = 464, + [2524] = 395, + [2525] = 384, + [2526] = 521, + [2527] = 467, + [2528] = 471, + [2529] = 521, + [2530] = 520, + [2531] = 464, + [2532] = 388, + [2533] = 390, + [2534] = 513, + [2535] = 477, + [2536] = 512, + [2537] = 504, + [2538] = 468, + [2539] = 506, + [2540] = 519, + [2541] = 468, + [2542] = 518, + [2543] = 477, + [2544] = 509, + [2545] = 467, + [2546] = 515, + [2547] = 471, + [2548] = 471, + [2549] = 510, + [2550] = 464, + [2551] = 386, + [2552] = 467, + [2553] = 477, + [2554] = 503, + [2555] = 516, + [2556] = 387, + [2557] = 383, + [2558] = 464, + [2559] = 477, + [2560] = 512, + [2561] = 515, + [2562] = 388, + [2563] = 509, + [2564] = 510, + [2565] = 503, + [2566] = 510, + [2567] = 386, + [2568] = 506, + [2569] = 414, + [2570] = 504, + [2571] = 512, + [2572] = 513, + [2573] = 516, + [2574] = 383, + [2575] = 512, + [2576] = 404, + [2577] = 396, + [2578] = 390, + [2579] = 520, + [2580] = 409, + [2581] = 521, + [2582] = 406, + [2583] = 522, + [2584] = 395, + [2585] = 385, + [2586] = 519, + [2587] = 392, + [2588] = 518, + [2589] = 387, + [2590] = 403, + [2591] = 394, + [2592] = 515, + [2593] = 519, + [2594] = 503, + [2595] = 406, + [2596] = 506, + [2597] = 402, + [2598] = 400, + [2599] = 404, + [2600] = 399, + [2601] = 510, + [2602] = 509, + [2603] = 414, + [2604] = 506, + [2605] = 397, + [2606] = 393, + [2607] = 516, + [2608] = 389, + [2609] = 409, + [2610] = 504, + [2611] = 406, + [2612] = 521, + [2613] = 409, + [2614] = 404, + [2615] = 513, + [2616] = 516, + [2617] = 520, + [2618] = 414, + [2619] = 521, + [2620] = 406, + [2621] = 518, + [2622] = 519, + [2623] = 414, + [2624] = 384, + [2625] = 409, + [2626] = 522, + [2627] = 404, + [2628] = 404, + [2629] = 409, + [2630] = 446, + [2631] = 509, + [2632] = 449, + [2633] = 455, + [2634] = 446, + [2635] = 457, + [2636] = 434, + [2637] = 503, + [2638] = 458, + [2639] = 414, + [2640] = 406, + [2641] = 437, + [2642] = 458, + [2643] = 455, + [2644] = 515, + [2645] = 458, + [2646] = 430, + [2647] = 504, + [2648] = 455, + [2649] = 515, + [2650] = 432, + [2651] = 455, + [2652] = 430, + [2653] = 449, + [2654] = 520, + [2655] = 503, + [2656] = 432, + [2657] = 434, + [2658] = 518, + [2659] = 519, + [2660] = 510, + [2661] = 404, + [2662] = 522, + [2663] = 437, + [2664] = 521, + [2665] = 520, + [2666] = 518, + [2667] = 449, + [2668] = 509, + [2669] = 513, + [2670] = 512, + [2671] = 504, + [2672] = 406, + [2673] = 506, + [2674] = 506, + [2675] = 516, + [2676] = 509, + [2677] = 510, + [2678] = 449, + [2679] = 446, + [2680] = 434, + [2681] = 409, + [2682] = 522, + [2683] = 503, + [2684] = 446, + [2685] = 504, + [2686] = 430, + [2687] = 512, + [2688] = 515, + [2689] = 513, + [2690] = 437, + [2691] = 516, + [2692] = 414, + [2693] = 457, + [2694] = 518, + [2695] = 519, + [2696] = 520, + [2697] = 432, + [2698] = 458, + [2699] = 521, + [2700] = 437, + [2701] = 432, + [2702] = 457, + [2703] = 522, + [2704] = 513, + [2705] = 434, + [2706] = 457, + [2707] = 430, + [2708] = 513, + [2709] = 512, + [2710] = 510, + [2711] = 506, + [2712] = 515, + [2713] = 516, + [2714] = 468, + [2715] = 519, + [2716] = 477, + [2717] = 467, + [2718] = 449, + [2719] = 518, + [2720] = 457, + [2721] = 449, + [2722] = 515, + [2723] = 467, + [2724] = 432, + [2725] = 458, + [2726] = 522, + [2727] = 446, + [2728] = 510, + [2729] = 503, + [2730] = 471, + [2731] = 432, + [2732] = 430, + [2733] = 503, + [2734] = 455, + [2735] = 434, + [2736] = 512, + [2737] = 513, + [2738] = 468, + [2739] = 437, + [2740] = 477, + [2741] = 518, + [2742] = 471, + [2743] = 521, + [2744] = 458, + [2745] = 522, + [2746] = 509, + [2747] = 506, + [2748] = 455, + [2749] = 457, + [2750] = 509, + [2751] = 519, + [2752] = 434, + [2753] = 516, + [2754] = 504, + [2755] = 520, + [2756] = 521, + [2757] = 504, + [2758] = 520, + [2759] = 430, + [2760] = 464, + [2761] = 464, + [2762] = 437, + [2763] = 446, + [2764] = 477, + [2765] = 801, + [2766] = 791, + [2767] = 467, + [2768] = 798, + [2769] = 477, + [2770] = 785, + [2771] = 468, + [2772] = 784, + [2773] = 471, + [2774] = 784, + [2775] = 464, + [2776] = 467, + [2777] = 464, + [2778] = 471, + [2779] = 785, + [2780] = 798, + [2781] = 468, + [2782] = 784, + [2783] = 464, + [2784] = 468, + [2785] = 467, + [2786] = 464, + [2787] = 832, + [2788] = 477, + [2789] = 468, + [2790] = 477, + [2791] = 471, + [2792] = 467, + [2793] = 471, + [2794] = 785, + [2795] = 837, + [2796] = 520, + [2797] = 849, + [2798] = 801, + [2799] = 847, + [2800] = 798, + [2801] = 840, + [2802] = 839, + [2803] = 843, + [2804] = 791, + [2805] = 503, + [2806] = 845, + [2807] = 510, + [2808] = 509, + [2809] = 844, + [2810] = 515, + [2811] = 798, + [2812] = 518, + [2813] = 515, + [2814] = 518, + [2815] = 519, + [2816] = 522, + [2817] = 519, + [2818] = 521, + [2819] = 522, + [2820] = 516, + [2821] = 521, + [2822] = 848, + [2823] = 513, + [2824] = 520, + [2825] = 841, + [2826] = 506, + [2827] = 836, + [2828] = 504, + [2829] = 512, + [2830] = 504, + [2831] = 846, + [2832] = 516, + [2833] = 512, + [2834] = 503, + [2835] = 513, + [2836] = 510, + [2837] = 509, + [2838] = 506, + [2839] = 503, + [2840] = 864, + [2841] = 513, + [2842] = 866, + [2843] = 510, + [2844] = 867, + [2845] = 509, + [2846] = 869, + [2847] = 884, + [2848] = 516, + [2849] = 861, + [2850] = 512, + [2851] = 504, + [2852] = 503, + [2853] = 877, + [2854] = 878, + [2855] = 883, + [2856] = 870, + [2857] = 857, + [2858] = 885, + [2859] = 506, + [2860] = 860, + [2861] = 847, + [2862] = 855, + [2863] = 849, + [2864] = 858, + [2865] = 509, + [2866] = 882, + [2867] = 856, + [2868] = 520, + [2869] = 521, + [2870] = 504, + [2871] = 512, + [2872] = 854, + [2873] = 874, + [2874] = 513, + [2875] = 516, + [2876] = 520, + [2877] = 522, + [2878] = 519, + [2879] = 518, + [2880] = 515, + [2881] = 849, + [2882] = 521, + [2883] = 522, + [2884] = 519, + [2885] = 518, + [2886] = 832, + [2887] = 862, + [2888] = 863, + [2889] = 865, + [2890] = 868, + [2891] = 871, + [2892] = 872, + [2893] = 845, + [2894] = 873, + [2895] = 510, + [2896] = 850, + [2897] = 515, + [2898] = 506, + [2899] = 853, + [2900] = 852, + [2901] = 837, + [2902] = 848, + [2903] = 846, + [2904] = 836, + [2905] = 859, + [2906] = 784, + [2907] = 785, + [2908] = 840, + [2909] = 839, + [2910] = 936, + [2911] = 519, + [2912] = 513, + [2913] = 510, + [2914] = 516, + [2915] = 503, + [2916] = 506, + [2917] = 504, + [2918] = 509, + [2919] = 522, + [2920] = 515, + [2921] = 512, + [2922] = 840, + [2923] = 870, + [2924] = 918, + [2925] = 518, + [2926] = 869, + [2927] = 888, + [2928] = 516, + [2929] = 916, + [2930] = 915, + [2931] = 867, + [2932] = 913, + [2933] = 862, + [2934] = 906, + [2935] = 904, + [2936] = 866, + [2937] = 838, + [2938] = 900, + [2939] = 891, + [2940] = 850, + [2941] = 863, + [2942] = 890, + [2943] = 520, + [2944] = 521, + [2945] = 521, + [2946] = 864, + [2947] = 520, + [2948] = 889, + [2949] = 522, + [2950] = 865, + [2951] = 922, + [2952] = 892, + [2953] = 868, + [2954] = 917, + [2955] = 933, + [2956] = 843, + [2957] = 871, + [2958] = 519, + [2959] = 872, + [2960] = 903, + [2961] = 919, + [2962] = 932, + [2963] = 503, + [2964] = 510, + [2965] = 513, + [2966] = 518, + [2967] = 515, + [2968] = 934, + [2969] = 921, + [2970] = 945, + [2971] = 873, + [2972] = 845, + [2973] = 837, + [2974] = 848, + [2975] = 846, + [2976] = 930, + [2977] = 843, + [2978] = 841, + [2979] = 849, + [2980] = 836, + [2981] = 847, + [2982] = 509, + [2983] = 946, + [2984] = 506, + [2985] = 844, + [2986] = 925, + [2987] = 886, + [2988] = 926, + [2989] = 927, + [2990] = 841, + [2991] = 929, + [2992] = 844, + [2993] = 920, + [2994] = 928, + [2995] = 512, + [2996] = 838, + [2997] = 504, + [2998] = 972, + [2999] = 1032, + [3000] = 859, + [3001] = 798, + [3002] = 858, + [3003] = 865, + [3004] = 1027, + [3005] = 1007, + [3006] = 1003, + [3007] = 852, + [3008] = 1002, + [3009] = 853, + [3010] = 857, + [3011] = 994, + [3012] = 993, + [3013] = 992, + [3014] = 991, + [3015] = 980, + [3016] = 978, + [3017] = 971, + [3018] = 960, + [3019] = 882, + [3020] = 798, + [3021] = 882, + [3022] = 958, + [3023] = 908, + [3024] = 957, + [3025] = 956, + [3026] = 955, + [3027] = 953, + [3028] = 952, + [3029] = 1008, + [3030] = 791, + [3031] = 973, + [3032] = 959, + [3033] = 894, + [3034] = 1025, + [3035] = 1019, + [3036] = 1021, + [3037] = 1016, + [3038] = 963, + [3039] = 965, + [3040] = 1031, + [3041] = 873, + [3042] = 878, + [3043] = 872, + [3044] = 877, + [3045] = 871, + [3046] = 962, + [3047] = 868, + [3048] = 970, + [3049] = 951, + [3050] = 1028, + [3051] = 1026, + [3052] = 885, + [3053] = 884, + [3054] = 863, + [3055] = 850, + [3056] = 862, + [3057] = 960, + [3058] = 874, + [3059] = 853, + [3060] = 801, + [3061] = 977, + [3062] = 1005, + [3063] = 1004, + [3064] = 1014, + [3065] = 852, + [3066] = 864, + [3067] = 968, + [3068] = 855, + [3069] = 966, + [3070] = 976, + [3071] = 979, + [3072] = 866, + [3073] = 859, + [3074] = 867, + [3075] = 3075, + [3076] = 869, + [3077] = 969, + [3078] = 937, + [3079] = 1012, + [3080] = 1030, + [3081] = 961, + [3082] = 857, + [3083] = 860, + [3084] = 860, + [3085] = 870, + [3086] = 858, + [3087] = 1116, + [3088] = 1127, + [3089] = 1055, + [3090] = 3090, + [3091] = 1056, + [3092] = 1191, + [3093] = 1058, + [3094] = 1057, + [3095] = 1053, + [3096] = 1119, + [3097] = 904, + [3098] = 906, + [3099] = 1077, + [3100] = 1059, + [3101] = 1060, + [3102] = 1061, + [3103] = 930, + [3104] = 1063, + [3105] = 1197, + [3106] = 1076, + [3107] = 1064, + [3108] = 1062, + [3109] = 913, + [3110] = 929, + [3111] = 928, + [3112] = 1090, + [3113] = 1111, + [3114] = 1088, + [3115] = 1089, + [3116] = 856, + [3117] = 915, + [3118] = 930, + [3119] = 916, + [3120] = 1091, + [3121] = 856, + [3122] = 1092, + [3123] = 854, + [3124] = 1093, + [3125] = 1095, + [3126] = 1096, + [3127] = 884, + [3128] = 861, + [3129] = 885, + [3130] = 883, + [3131] = 1072, + [3132] = 1145, + [3133] = 920, + [3134] = 854, + [3135] = 918, + [3136] = 927, + [3137] = 877, + [3138] = 1040, + [3139] = 1206, + [3140] = 1110, + [3141] = 926, + [3142] = 1123, + [3143] = 1106, + [3144] = 929, + [3145] = 1132, + [3146] = 1136, + [3147] = 1147, + [3148] = 1043, + [3149] = 1165, + [3150] = 1166, + [3151] = 900, + [3152] = 886, + [3153] = 1128, + [3154] = 925, + [3155] = 1171, + [3156] = 917, + [3157] = 1172, + [3158] = 1108, + [3159] = 1189, + [3160] = 928, + [3161] = 917, + [3162] = 1173, + [3163] = 1174, + [3164] = 1042, + [3165] = 1041, + [3166] = 932, + [3167] = 1049, + [3168] = 1175, + [3169] = 1054, + [3170] = 1139, + [3171] = 1144, + [3172] = 1176, + [3173] = 1177, + [3174] = 1152, + [3175] = 1120, + [3176] = 1178, + [3177] = 1183, + [3178] = 891, + [3179] = 1153, + [3180] = 1070, + [3181] = 1068, + [3182] = 1161, + [3183] = 924, + [3184] = 1164, + [3185] = 1039, + [3186] = 1035, + [3187] = 1159, + [3188] = 919, + [3189] = 1181, + [3190] = 1187, + [3191] = 883, + [3192] = 903, + [3193] = 1192, + [3194] = 840, + [3195] = 1160, + [3196] = 1121, + [3197] = 1193, + [3198] = 1186, + [3199] = 936, + [3200] = 874, + [3201] = 1202, + [3202] = 1125, + [3203] = 1195, + [3204] = 1190, + [3205] = 934, + [3206] = 927, + [3207] = 921, + [3208] = 1157, + [3209] = 1124, + [3210] = 888, + [3211] = 854, + [3212] = 1198, + [3213] = 937, + [3214] = 1071, + [3215] = 947, + [3216] = 1078, + [3217] = 933, + [3218] = 1199, + [3219] = 1112, + [3220] = 1201, + [3221] = 890, + [3222] = 889, + [3223] = 1045, + [3224] = 1073, + [3225] = 1052, + [3226] = 1155, + [3227] = 1211, + [3228] = 1051, + [3229] = 1050, + [3230] = 925, + [3231] = 1079, + [3232] = 1067, + [3233] = 934, + [3234] = 1212, + [3235] = 1214, + [3236] = 1048, + [3237] = 1085, + [3238] = 919, + [3239] = 1213, + [3240] = 1114, + [3241] = 920, + [3242] = 1085, + [3243] = 1105, + [3244] = 1047, + [3245] = 946, + [3246] = 932, + [3247] = 1196, + [3248] = 1167, + [3249] = 855, + [3250] = 1115, + [3251] = 894, + [3252] = 914, + [3253] = 1146, + [3254] = 832, + [3255] = 1066, + [3256] = 849, + [3257] = 1107, + [3258] = 1140, + [3259] = 1109, + [3260] = 1046, + [3261] = 1156, + [3262] = 1122, + [3263] = 1184, + [3264] = 1179, + [3265] = 945, + [3266] = 1038, + [3267] = 921, + [3268] = 886, + [3269] = 1130, + [3270] = 1138, + [3271] = 1194, + [3272] = 1044, + [3273] = 1118, + [3274] = 1113, + [3275] = 1103, + [3276] = 856, + [3277] = 1065, + [3278] = 1102, + [3279] = 1101, + [3280] = 1069, + [3281] = 1082, + [3282] = 1083, + [3283] = 1162, + [3284] = 975, + [3285] = 1094, + [3286] = 1080, + [3287] = 1099, + [3288] = 1084, + [3289] = 1087, + [3290] = 854, + [3291] = 1135, + [3292] = 908, + [3293] = 878, + [3294] = 1104, + [3295] = 922, + [3296] = 1133, + [3297] = 1098, + [3298] = 1117, + [3299] = 974, + [3300] = 892, + [3301] = 856, + [3302] = 926, + [3303] = 1074, + [3304] = 1078, + [3305] = 958, + [3306] = 848, + [3307] = 975, + [3308] = 974, + [3309] = 1021, + [3310] = 856, + [3311] = 963, + [3312] = 960, + [3313] = 965, + [3314] = 389, + [3315] = 391, + [3316] = 838, + [3317] = 1030, + [3318] = 836, + [3319] = 1005, + [3320] = 846, + [3321] = 848, + [3322] = 1032, + [3323] = 837, + [3324] = 845, + [3325] = 847, + [3326] = 1012, + [3327] = 1035, + [3328] = 977, + [3329] = 1031, + [3330] = 952, + [3331] = 972, + [3332] = 1008, + [3333] = 1004, + [3334] = 953, + [3335] = 848, + [3336] = 1019, + [3337] = 955, + [3338] = 973, + [3339] = 849, + [3340] = 956, + [3341] = 846, + [3342] = 1025, + [3343] = 836, + [3344] = 995, + [3345] = 1026, + [3346] = 841, + [3347] = 957, + [3348] = 1028, + [3349] = 390, + [3350] = 396, + [3351] = 1016, + [3352] = 845, + [3353] = 837, + [3354] = 845, + [3355] = 837, + [3356] = 846, + [3357] = 966, + [3358] = 383, + [3359] = 836, + [3360] = 840, + [3361] = 839, + [3362] = 844, + [3363] = 951, + [3364] = 976, + [3365] = 1023, + [3366] = 979, + [3367] = 387, + [3368] = 961, + [3369] = 393, + [3370] = 970, + [3371] = 1027, + [3372] = 969, + [3373] = 959, + [3374] = 1007, + [3375] = 1003, + [3376] = 1024, + [3377] = 386, + [3378] = 1002, + [3379] = 1014, + [3380] = 388, + [3381] = 994, + [3382] = 993, + [3383] = 962, + [3384] = 992, + [3385] = 991, + [3386] = 980, + [3387] = 978, + [3388] = 971, + [3389] = 843, + [3390] = 854, + [3391] = 384, + [3392] = 395, + [3393] = 385, + [3394] = 392, + [3395] = 394, + [3396] = 402, + [3397] = 400, + [3398] = 399, + [3399] = 397, + [3400] = 1123, + [3401] = 1064, + [3402] = 1172, + [3403] = 1197, + [3404] = 1043, + [3405] = 1042, + [3406] = 1041, + [3407] = 1039, + [3408] = 1062, + [3409] = 1090, + [3410] = 1093, + [3411] = 1095, + [3412] = 1096, + [3413] = 1174, + [3414] = 1145, + [3415] = 1110, + [3416] = 1132, + [3417] = 1147, + [3418] = 1166, + [3419] = 1171, + [3420] = 1199, + [3421] = 1173, + [3422] = 1160, + [3423] = 1175, + [3424] = 1176, + [3425] = 1078, + [3426] = 1177, + [3427] = 1183, + [3428] = 1157, + [3429] = 1068, + [3430] = 1192, + [3431] = 1193, + [3432] = 1186, + [3433] = 1155, + [3434] = 1195, + [3435] = 1198, + [3436] = 1071, + [3437] = 1201, + [3438] = 1211, + [3439] = 1212, + [3440] = 1214, + [3441] = 1146, + [3442] = 1140, + [3443] = 1138, + [3444] = 1135, + [3445] = 1105, + [3446] = 1133, + [3447] = 1104, + [3448] = 1116, + [3449] = 1098, + [3450] = 1087, + [3451] = 1084, + [3452] = 1080, + [3453] = 1069, + [3454] = 1065, + [3455] = 969, + [3456] = 1044, + [3457] = 1194, + [3458] = 1099, + [3459] = 1130, + [3460] = 1094, + [3461] = 1122, + [3462] = 1083, + [3463] = 1085, + [3464] = 1109, + [3465] = 1107, + [3466] = 1066, + [3467] = 1167, + [3468] = 1196, + [3469] = 1127, + [3470] = 1114, + [3471] = 1067, + [3472] = 1079, + [3473] = 878, + [3474] = 862, + [3475] = 877, + [3476] = 1112, + [3477] = 850, + [3478] = 1124, + [3479] = 1125, + [3480] = 863, + [3481] = 874, + [3482] = 1159, + [3483] = 3483, + [3484] = 865, + [3485] = 1070, + [3486] = 1178, + [3487] = 1139, + [3488] = 1049, + [3489] = 3489, + [3490] = 959, + [3491] = 1082, + [3492] = 1053, + [3493] = 1025, + [3494] = 1057, + [3495] = 972, + [3496] = 1040, + [3497] = 847, + [3498] = 868, + [3499] = 1045, + [3500] = 871, + [3501] = 872, + [3502] = 1046, + [3503] = 1047, + [3504] = 1048, + [3505] = 873, + [3506] = 1050, + [3507] = 1051, + [3508] = 1052, + [3509] = 1073, + [3510] = 1054, + [3511] = 1055, + [3512] = 1056, + [3513] = 1058, + [3514] = 1059, + [3515] = 1060, + [3516] = 1115, + [3517] = 1061, + [3518] = 1063, + [3519] = 864, + [3520] = 1088, + [3521] = 1089, + [3522] = 1091, + [3523] = 1092, + [3524] = 1106, + [3525] = 1108, + [3526] = 1144, + [3527] = 1152, + [3528] = 854, + [3529] = 856, + [3530] = 1120, + [3531] = 976, + [3532] = 979, + [3533] = 857, + [3534] = 1119, + [3535] = 1043, + [3536] = 1042, + [3537] = 858, + [3538] = 1041, + [3539] = 1118, + [3540] = 1153, + [3541] = 1039, + [3542] = 1161, + [3543] = 882, + [3544] = 1164, + [3545] = 859, + [3546] = 1117, + [3547] = 860, + [3548] = 936, + [3549] = 1181, + [3550] = 882, + [3551] = 1187, + [3552] = 1206, + [3553] = 3553, + [3554] = 1136, + [3555] = 1190, + [3556] = 1085, + [3557] = 1189, + [3558] = 1184, + [3559] = 1078, + [3560] = 1179, + [3561] = 908, + [3562] = 1128, + [3563] = 1012, + [3564] = 1030, + [3565] = 836, + [3566] = 856, + [3567] = 854, + [3568] = 846, + [3569] = 848, + [3570] = 837, + [3571] = 852, + [3572] = 845, + [3573] = 853, + [3574] = 1121, + [3575] = 854, + [3576] = 856, + [3577] = 1038, + [3578] = 864, + [3579] = 866, + [3580] = 867, + [3581] = 869, + [3582] = 1113, + [3583] = 1103, + [3584] = 1102, + [3585] = 854, + [3586] = 1032, + [3587] = 856, + [3588] = 1101, + [3589] = 894, + [3590] = 870, + [3591] = 836, + [3592] = 850, + [3593] = 863, + [3594] = 865, + [3595] = 864, + [3596] = 1165, + [3597] = 868, + [3598] = 871, + [3599] = 872, + [3600] = 1077, + [3601] = 873, + [3602] = 1076, + [3603] = 1111, + [3604] = 1074, + [3605] = 846, + [3606] = 866, + [3607] = 854, + [3608] = 937, + [3609] = 848, + [3610] = 837, + [3611] = 1191, + [3612] = 856, + [3613] = 1072, + [3614] = 854, + [3615] = 856, + [3616] = 862, + [3617] = 933, + [3618] = 914, + [3619] = 1213, + [3620] = 1156, + [3621] = 867, + [3622] = 1162, + [3623] = 869, + [3624] = 885, + [3625] = 884, + [3626] = 870, + [3627] = 845, + [3628] = 852, + [3629] = 3629, + [3630] = 855, + [3631] = 1202, + [3632] = 853, + [3633] = 883, + [3634] = 870, + [3635] = 866, + [3636] = 1057, + [3637] = 1053, + [3638] = 869, + [3639] = 867, + [3640] = 840, + [3641] = 836, + [3642] = 929, + [3643] = 928, + [3644] = 927, + [3645] = 960, + [3646] = 926, + [3647] = 968, + [3648] = 920, + [3649] = 862, + [3650] = 886, + [3651] = 936, + [3652] = 850, + [3653] = 918, + [3654] = 863, + [3655] = 865, + [3656] = 1078, + [3657] = 925, + [3658] = 868, + [3659] = 871, + [3660] = 872, + [3661] = 873, + [3662] = 916, + [3663] = 1024, + [3664] = 915, + [3665] = 1023, + [3666] = 924, + [3667] = 1085, + [3668] = 921, + [3669] = 919, + [3670] = 930, + [3671] = 3671, + [3672] = 920, + [3673] = 849, + [3674] = 917, + [3675] = 841, + [3676] = 946, + [3677] = 3677, + [3678] = 840, + [3679] = 930, + [3680] = 1035, + [3681] = 906, + [3682] = 904, + [3683] = 914, + [3684] = 929, + [3685] = 928, + [3686] = 894, + [3687] = 937, + [3688] = 882, + [3689] = 947, + [3690] = 945, + [3691] = 844, + [3692] = 849, + [3693] = 903, + [3694] = 927, + [3695] = 854, + [3696] = 856, + [3697] = 864, + [3698] = 900, + [3699] = 926, + [3700] = 866, + [3701] = 908, + [3702] = 932, + [3703] = 995, + [3704] = 934, + [3705] = 867, + [3706] = 891, + [3707] = 869, + [3708] = 886, + [3709] = 925, + [3710] = 870, + [3711] = 975, + [3712] = 845, + [3713] = 837, + [3714] = 974, + [3715] = 848, + [3716] = 870, + [3717] = 854, + [3718] = 846, + [3719] = 856, + [3720] = 862, + [3721] = 850, + [3722] = 863, + [3723] = 865, + [3724] = 892, + [3725] = 869, + [3726] = 922, + [3727] = 849, + [3728] = 840, + [3729] = 868, + [3730] = 871, + [3731] = 872, + [3732] = 867, + [3733] = 873, + [3734] = 888, + [3735] = 889, + [3736] = 913, + [3737] = 866, + [3738] = 864, + [3739] = 852, + [3740] = 853, + [3741] = 917, + [3742] = 890, + [3743] = 919, + [3744] = 921, + [3745] = 933, + [3746] = 1023, + [3747] = 859, + [3748] = 925, + [3749] = 867, + [3750] = 869, + [3751] = 1024, + [3752] = 1014, + [3753] = 995, + [3754] = 400, + [3755] = 399, + [3756] = 1032, + [3757] = 886, + [3758] = 870, + [3759] = 397, + [3760] = 393, + [3761] = 394, + [3762] = 926, + [3763] = 952, + [3764] = 921, + [3765] = 953, + [3766] = 919, + [3767] = 1035, + [3768] = 392, + [3769] = 927, + [3770] = 866, + [3771] = 389, + [3772] = 917, + [3773] = 955, + [3774] = 388, + [3775] = 385, + [3776] = 395, + [3777] = 928, + [3778] = 932, + [3779] = 387, + [3780] = 934, + [3781] = 386, + [3782] = 1016, + [3783] = 963, + [3784] = 864, + [3785] = 956, + [3786] = 929, + [3787] = 965, + [3788] = 957, + [3789] = 930, + [3790] = 1031, + [3791] = 975, + [3792] = 958, + [3793] = 962, + [3794] = 974, + [3795] = 383, + [3796] = 396, + [3797] = 970, + [3798] = 951, + [3799] = 1028, + [3800] = 1026, + [3801] = 945, + [3802] = 977, + [3803] = 1005, + [3804] = 1008, + [3805] = 402, + [3806] = 1004, + [3807] = 971, + [3808] = 882, + [3809] = 853, + [3810] = 978, + [3811] = 3811, + [3812] = 980, + [3813] = 1012, + [3814] = 991, + [3815] = 992, + [3816] = 862, + [3817] = 852, + [3818] = 860, + [3819] = 882, + [3820] = 969, + [3821] = 882, + [3822] = 924, + [3823] = 853, + [3824] = 993, + [3825] = 852, + [3826] = 857, + [3827] = 959, + [3828] = 994, + [3829] = 960, + [3830] = 1021, + [3831] = 390, + [3832] = 384, + [3833] = 1025, + [3834] = 1019, + [3835] = 972, + [3836] = 1002, + [3837] = 947, + [3838] = 858, + [3839] = 853, + [3840] = 973, + [3841] = 1003, + [3842] = 852, + [3843] = 1007, + [3844] = 966, + [3845] = 976, + [3846] = 979, + [3847] = 932, + [3848] = 968, + [3849] = 1027, + [3850] = 934, + [3851] = 960, + [3852] = 961, + [3853] = 3853, + [3854] = 873, + [3855] = 1030, + [3856] = 872, + [3857] = 871, + [3858] = 391, + [3859] = 868, + [3860] = 865, + [3861] = 863, + [3862] = 850, + [3863] = 1114, + [3864] = 1135, + [3865] = 960, + [3866] = 968, + [3867] = 1191, + [3868] = 1213, + [3869] = 973, + [3870] = 3870, + [3871] = 1198, + [3872] = 1053, + [3873] = 872, + [3874] = 930, + [3875] = 929, + [3876] = 928, + [3877] = 395, + [3878] = 385, + [3879] = 392, + [3880] = 394, + [3881] = 1120, + [3882] = 402, + [3883] = 400, + [3884] = 399, + [3885] = 397, + [3886] = 1057, + [3887] = 1062, + [3888] = 393, + [3889] = 389, + [3890] = 384, + [3891] = 1074, + [3892] = 1076, + [3893] = 1077, + [3894] = 1101, + [3895] = 1102, + [3896] = 1103, + [3897] = 1113, + [3898] = 1038, + [3899] = 3899, + [3900] = 1090, + [3901] = 1179, + [3902] = 1184, + [3903] = 1189, + [3904] = 927, + [3905] = 1119, + [3906] = 1093, + [3907] = 926, + [3908] = 1118, + [3909] = 960, + [3910] = 886, + [3911] = 1117, + [3912] = 1121, + [3913] = 1190, + [3914] = 925, + [3915] = 1187, + [3916] = 1095, + [3917] = 873, + [3918] = 930, + [3919] = 1096, + [3920] = 1181, + [3921] = 929, + [3922] = 1145, + [3923] = 1164, + [3924] = 1161, + [3925] = 1165, + [3926] = 1110, + [3927] = 1153, + [3928] = 1152, + [3929] = 1144, + [3930] = 917, + [3931] = 1123, + [3932] = 1132, + [3933] = 1147, + [3934] = 1166, + [3935] = 1171, + [3936] = 1172, + [3937] = 1104, + [3938] = 1108, + [3939] = 871, + [3940] = 1106, + [3941] = 928, + [3942] = 1173, + [3943] = 868, + [3944] = 1085, + [3945] = 927, + [3946] = 865, + [3947] = 1175, + [3948] = 863, + [3949] = 1092, + [3950] = 850, + [3951] = 926, + [3952] = 1091, + [3953] = 1078, + [3954] = 862, + [3955] = 1072, + [3956] = 1089, + [3957] = 1088, + [3958] = 1064, + [3959] = 1063, + [3960] = 886, + [3961] = 925, + [3962] = 1061, + [3963] = 1060, + [3964] = 1059, + [3965] = 930, + [3966] = 929, + [3967] = 928, + [3968] = 927, + [3969] = 1058, + [3970] = 926, + [3971] = 886, + [3972] = 925, + [3973] = 1162, + [3974] = 921, + [3975] = 919, + [3976] = 1156, + [3977] = 933, + [3978] = 1056, + [3979] = 1055, + [3980] = 1054, + [3981] = 1073, + [3982] = 1052, + [3983] = 1051, + [3984] = 1050, + [3985] = 1048, + [3986] = 1047, + [3987] = 1046, + [3988] = 1045, + [3989] = 1040, + [3990] = 1082, + [3991] = 1083, + [3992] = 1094, + [3993] = 1099, + [3994] = 1128, + [3995] = 1105, + [3996] = 1155, + [3997] = 1157, + [3998] = 1160, + [3999] = 1174, + [4000] = 1197, + [4001] = 1202, + [4002] = 917, + [4003] = 1206, + [4004] = 1136, + [4005] = 1119, + [4006] = 1120, + [4007] = 1111, + [4008] = 1176, + [4009] = 1177, + [4010] = 936, + [4011] = 921, + [4012] = 919, + [4013] = 1117, + [4014] = 1159, + [4015] = 1118, + [4016] = 921, + [4017] = 919, + [4018] = 917, + [4019] = 934, + [4020] = 1183, + [4021] = 932, + [4022] = 1068, + [4023] = 1192, + [4024] = 1193, + [4025] = 1115, + [4026] = 1186, + [4027] = 4027, + [4028] = 1195, + [4029] = 1078, + [4030] = 1199, + [4031] = 1201, + [4032] = 1211, + [4033] = 1212, + [4034] = 1214, + [4035] = 1042, + [4036] = 1041, + [4037] = 1039, + [4038] = 1140, + [4039] = 4039, + [4040] = 1138, + [4041] = 1043, + [4042] = 1115, + [4043] = 1133, + [4044] = 390, + [4045] = 396, + [4046] = 383, + [4047] = 387, + [4048] = 1116, + [4049] = 386, + [4050] = 388, + [4051] = 4051, + [4052] = 1098, + [4053] = 1049, + [4054] = 1087, + [4055] = 1084, + [4056] = 1178, + [4057] = 1070, + [4058] = 1080, + [4059] = 1069, + [4060] = 977, + [4061] = 1146, + [4062] = 1065, + [4063] = 856, + [4064] = 854, + [4065] = 1125, + [4066] = 1044, + [4067] = 1194, + [4068] = 1130, + [4069] = 856, + [4070] = 854, + [4071] = 1122, + [4072] = 1124, + [4073] = 1071, + [4074] = 1112, + [4075] = 1109, + [4076] = 1079, + [4077] = 1067, + [4078] = 1139, + [4079] = 1085, + [4080] = 1127, + [4081] = 1196, + [4082] = 1107, + [4083] = 1066, + [4084] = 1167, + [4085] = 400, + [4086] = 932, + [4087] = 836, + [4088] = 846, + [4089] = 848, + [4090] = 934, + [4091] = 837, + [4092] = 397, + [4093] = 399, + [4094] = 845, + [4095] = 945, + [4096] = 1053, + [4097] = 856, + [4098] = 386, + [4099] = 395, + [4100] = 1053, + [4101] = 385, + [4102] = 392, + [4103] = 396, + [4104] = 383, + [4105] = 854, + [4106] = 387, + [4107] = 1057, + [4108] = 384, + [4109] = 1039, + [4110] = 1041, + [4111] = 1042, + [4112] = 1043, + [4113] = 1039, + [4114] = 1041, + [4115] = 1042, + [4116] = 1043, + [4117] = 932, + [4118] = 934, + [4119] = 394, + [4120] = 856, + [4121] = 854, + [4122] = 856, + [4123] = 854, + [4124] = 845, + [4125] = 837, + [4126] = 848, + [4127] = 846, + [4128] = 836, + [4129] = 854, + [4130] = 856, + [4131] = 390, + [4132] = 388, + [4133] = 389, + [4134] = 402, + [4135] = 393, + [4136] = 1057, + [4137] = 856, + [4138] = 867, + [4139] = 389, + [4140] = 393, + [4141] = 836, + [4142] = 397, + [4143] = 384, + [4144] = 386, + [4145] = 388, + [4146] = 399, + [4147] = 400, + [4148] = 853, + [4149] = 870, + [4150] = 402, + [4151] = 867, + [4152] = 866, + [4153] = 394, + [4154] = 869, + [4155] = 392, + [4156] = 385, + [4157] = 395, + [4158] = 390, + [4159] = 396, + [4160] = 391, + [4161] = 882, + [4162] = 864, + [4163] = 854, + [4164] = 846, + [4165] = 387, + [4166] = 1039, + [4167] = 1041, + [4168] = 1042, + [4169] = 977, + [4170] = 1043, + [4171] = 845, + [4172] = 852, + [4173] = 856, + [4174] = 973, + [4175] = 854, + [4176] = 1057, + [4177] = 848, + [4178] = 864, + [4179] = 383, + [4180] = 866, + [4181] = 960, + [4182] = 1053, + [4183] = 837, + [4184] = 869, + [4185] = 870, + [4186] = 854, + [4187] = 856, + [4188] = 928, + [4189] = 870, + [4190] = 886, + [4191] = 926, + [4192] = 853, + [4193] = 927, + [4194] = 929, + [4195] = 862, + [4196] = 930, + [4197] = 864, + [4198] = 850, + [4199] = 866, + [4200] = 863, + [4201] = 867, + [4202] = 865, + [4203] = 852, + [4204] = 868, + [4205] = 869, + [4206] = 854, + [4207] = 856, + [4208] = 873, + [4209] = 854, + [4210] = 1057, + [4211] = 1039, + [4212] = 882, + [4213] = 1053, + [4214] = 1041, + [4215] = 1042, + [4216] = 1043, + [4217] = 1039, + [4218] = 1041, + [4219] = 856, + [4220] = 1042, + [4221] = 1043, + [4222] = 921, + [4223] = 919, + [4224] = 862, + [4225] = 1053, + [4226] = 1057, + [4227] = 850, + [4228] = 863, + [4229] = 925, + [4230] = 865, + [4231] = 872, + [4232] = 871, + [4233] = 4233, + [4234] = 873, + [4235] = 868, + [4236] = 872, + [4237] = 871, + [4238] = 917, + [4239] = 928, + [4240] = 862, + [4241] = 932, + [4242] = 960, + [4243] = 945, + [4244] = 873, + [4245] = 872, + [4246] = 871, + [4247] = 852, + [4248] = 882, + [4249] = 968, + [4250] = 925, + [4251] = 930, + [4252] = 929, + [4253] = 927, + [4254] = 868, + [4255] = 926, + [4256] = 919, + [4257] = 865, + [4258] = 863, + [4259] = 917, + [4260] = 853, + [4261] = 886, + [4262] = 850, + [4263] = 921, + [4264] = 934, + [4265] = 886, + [4266] = 397, + [4267] = 927, + [4268] = 394, + [4269] = 402, + [4270] = 400, + [4271] = 926, + [4272] = 384, + [4273] = 387, + [4274] = 385, + [4275] = 973, + [4276] = 390, + [4277] = 395, + [4278] = 928, + [4279] = 386, + [4280] = 399, + [4281] = 919, + [4282] = 392, + [4283] = 932, + [4284] = 925, + [4285] = 921, + [4286] = 393, + [4287] = 968, + [4288] = 391, + [4289] = 929, + [4290] = 389, + [4291] = 917, + [4292] = 934, + [4293] = 388, + [4294] = 960, + [4295] = 960, + [4296] = 396, + [4297] = 383, + [4298] = 977, + [4299] = 930, + [4300] = 1042, + [4301] = 395, + [4302] = 390, + [4303] = 396, + [4304] = 1043, + [4305] = 383, + [4306] = 1041, + [4307] = 1039, + [4308] = 387, + [4309] = 394, + [4310] = 392, + [4311] = 385, + [4312] = 384, + [4313] = 932, + [4314] = 393, + [4315] = 397, + [4316] = 399, + [4317] = 400, + [4318] = 389, + [4319] = 386, + [4320] = 402, + [4321] = 934, + [4322] = 1053, + [4323] = 1057, + [4324] = 388, + [4325] = 390, + [4326] = 402, + [4327] = 396, + [4328] = 1057, + [4329] = 394, + [4330] = 392, + [4331] = 385, + [4332] = 395, + [4333] = 400, + [4334] = 383, + [4335] = 386, + [4336] = 1043, + [4337] = 384, + [4338] = 399, + [4339] = 1042, + [4340] = 397, + [4341] = 393, + [4342] = 1041, + [4343] = 389, + [4344] = 388, + [4345] = 1039, + [4346] = 387, + [4347] = 1053, + [4348] = 4348, + [4349] = 4349, + [4350] = 4350, + [4351] = 1057, + [4352] = 4348, + [4353] = 4349, + [4354] = 4348, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4357, + [4359] = 4355, + [4360] = 4350, + [4361] = 4361, + [4362] = 4355, + [4363] = 4357, + [4364] = 4364, + [4365] = 4350, + [4366] = 4356, + [4367] = 4349, + [4368] = 4348, + [4369] = 4364, + [4370] = 4349, + [4371] = 4350, + [4372] = 4349, + [4373] = 4357, + [4374] = 4355, + [4375] = 4356, + [4376] = 4348, + [4377] = 4356, + [4378] = 4355, + [4379] = 4350, + [4380] = 4357, + [4381] = 4357, + [4382] = 4382, + [4383] = 4356, + [4384] = 4355, + [4385] = 1053, + [4386] = 4364, + [4387] = 4364, + [4388] = 4356, + [4389] = 4364, + [4390] = 4364, + [4391] = 4382, + [4392] = 4382, + [4393] = 4356, + [4394] = 4349, + [4395] = 4350, + [4396] = 1039, + [4397] = 4364, + [4398] = 4355, + [4399] = 4349, + [4400] = 1043, + [4401] = 4350, + [4402] = 4350, + [4403] = 4382, + [4404] = 4364, + [4405] = 4356, + [4406] = 4355, + [4407] = 1041, + [4408] = 4357, + [4409] = 4348, + [4410] = 4349, + [4411] = 4382, + [4412] = 1042, + [4413] = 4382, + [4414] = 4350, + [4415] = 4357, + [4416] = 4356, + [4417] = 4357, + [4418] = 4355, + [4419] = 4364, + [4420] = 4349, + [4421] = 4421, + [4422] = 4422, + [4423] = 4423, + [4424] = 785, + [4425] = 784, + [4426] = 4426, + [4427] = 4427, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, + [4431] = 4431, + [4432] = 4432, + [4433] = 4433, + [4434] = 4434, + [4435] = 4435, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 4439, + [4440] = 4440, + [4441] = 4441, + [4442] = 4440, + [4443] = 4443, + [4444] = 4444, + [4445] = 4444, + [4446] = 4443, + [4447] = 4447, + [4448] = 4443, + [4449] = 4444, + [4450] = 4441, + [4451] = 4447, + [4452] = 4443, + [4453] = 4443, + [4454] = 4441, + [4455] = 4447, + [4456] = 4443, + [4457] = 4444, + [4458] = 4443, + [4459] = 4444, + [4460] = 4443, + [4461] = 4461, + [4462] = 4461, + [4463] = 4444, + [4464] = 4441, + [4465] = 4440, + [4466] = 4440, + [4467] = 4441, + [4468] = 4444, + [4469] = 4447, + [4470] = 4443, + [4471] = 4447, + [4472] = 4441, + [4473] = 4447, + [4474] = 4441, + [4475] = 4447, + [4476] = 4443, + [4477] = 4477, + [4478] = 4441, + [4479] = 4441, + [4480] = 4440, + [4481] = 4441, + [4482] = 4482, + [4483] = 4444, + [4484] = 4441, + [4485] = 4447, + [4486] = 4444, + [4487] = 4443, + [4488] = 4444, + [4489] = 4477, + [4490] = 4447, + [4491] = 4441, + [4492] = 4477, + [4493] = 4447, + [4494] = 4444, + [4495] = 4443, + [4496] = 4440, + [4497] = 4447, + [4498] = 4443, + [4499] = 4447, + [4500] = 4500, + [4501] = 4461, + [4502] = 4443, + [4503] = 4441, + [4504] = 4440, + [4505] = 4444, + [4506] = 4441, + [4507] = 4441, + [4508] = 4447, + [4509] = 4461, + [4510] = 4461, + [4511] = 4444, + [4512] = 4441, + [4513] = 4447, + [4514] = 4444, + [4515] = 4444, + [4516] = 4447, + [4517] = 4441, + [4518] = 4477, + [4519] = 4447, + [4520] = 4443, + [4521] = 4447, + [4522] = 4444, + [4523] = 4441, + [4524] = 4444, + [4525] = 4443, + [4526] = 4443, + [4527] = 4447, + [4528] = 4440, + [4529] = 4441, + [4530] = 4444, + [4531] = 4444, + [4532] = 4441, + [4533] = 4443, + [4534] = 4440, + [4535] = 4443, + [4536] = 4441, + [4537] = 4441, + [4538] = 4444, + [4539] = 4447, + [4540] = 4447, + [4541] = 4447, + [4542] = 4443, + [4543] = 4443, + [4544] = 4461, + [4545] = 4444, + [4546] = 4447, + [4547] = 4443, + [4548] = 4548, + [4549] = 4447, + [4550] = 4441, + [4551] = 4444, + [4552] = 4447, + [4553] = 4444, + [4554] = 4444, + [4555] = 4443, + [4556] = 4441, + [4557] = 4447, + [4558] = 4444, + [4559] = 4443, + [4560] = 4441, + [4561] = 4477, + [4562] = 4447, + [4563] = 4444, + [4564] = 4441, + [4565] = 4447, + [4566] = 4444, + [4567] = 4441, + [4568] = 801, + [4569] = 791, + [4570] = 798, + [4571] = 798, + [4572] = 832, + [4573] = 847, + [4574] = 841, + [4575] = 847, + [4576] = 843, + [4577] = 845, + [4578] = 849, + [4579] = 839, + [4580] = 846, + [4581] = 840, + [4582] = 849, + [4583] = 837, + [4584] = 836, + [4585] = 844, + [4586] = 840, + [4587] = 848, + [4588] = 878, + [4589] = 885, + [4590] = 860, + [4591] = 853, + [4592] = 852, + [4593] = 858, + [4594] = 855, + [4595] = 873, + [4596] = 801, + [4597] = 882, + [4598] = 872, + [4599] = 877, + [4600] = 871, + [4601] = 874, + [4602] = 868, + [4603] = 844, + [4604] = 884, + [4605] = 850, + [4606] = 862, + [4607] = 864, + [4608] = 843, + [4609] = 841, + [4610] = 791, + [4611] = 859, + [4612] = 865, + [4613] = 867, + [4614] = 866, + [4615] = 857, + [4616] = 798, + [4617] = 869, + [4618] = 863, + [4619] = 870, + [4620] = 798, + [4621] = 859, + [4622] = 890, + [4623] = 860, + [4624] = 929, + [4625] = 930, + [4626] = 920, + [4627] = 928, + [4628] = 849, + [4629] = 891, + [4630] = 883, + [4631] = 922, + [4632] = 900, + [4633] = 927, + [4634] = 892, + [4635] = 888, + [4636] = 889, + [4637] = 904, + [4638] = 906, + [4639] = 858, + [4640] = 933, + [4641] = 913, + [4642] = 915, + [4643] = 916, + [4644] = 857, + [4645] = 918, + [4646] = 832, + [4647] = 945, + [4648] = 903, + [4649] = 934, + [4650] = 925, + [4651] = 886, + [4652] = 917, + [4653] = 936, + [4654] = 919, + [4655] = 921, + [4656] = 932, + [4657] = 840, + [4658] = 926, + [4659] = 946, + [4660] = 1016, + [4661] = 1003, + [4662] = 837, + [4663] = 848, + [4664] = 908, + [4665] = 836, + [4666] = 846, + [4667] = 846, + [4668] = 848, + [4669] = 837, + [4670] = 845, + [4671] = 966, + [4672] = 969, + [4673] = 836, + [4674] = 920, + [4675] = 885, + [4676] = 884, + [4677] = 1004, + [4678] = 1005, + [4679] = 845, + [4680] = 844, + [4681] = 1026, + [4682] = 1028, + [4683] = 855, + [4684] = 883, + [4685] = 951, + [4686] = 977, + [4687] = 970, + [4688] = 962, + [4689] = 1031, + [4690] = 960, + [4691] = 965, + [4692] = 847, + [4693] = 963, + [4694] = 839, + [4695] = 1019, + [4696] = 1021, + [4697] = 973, + [4698] = 959, + [4699] = 937, + [4700] = 1025, + [4701] = 972, + [4702] = 952, + [4703] = 894, + [4704] = 953, + [4705] = 1032, + [4706] = 955, + [4707] = 956, + [4708] = 836, + [4709] = 957, + [4710] = 958, + [4711] = 1030, + [4712] = 1027, + [4713] = 971, + [4714] = 1012, + [4715] = 846, + [4716] = 978, + [4717] = 1014, + [4718] = 878, + [4719] = 848, + [4720] = 1008, + [4721] = 841, + [4722] = 994, + [4723] = 874, + [4724] = 837, + [4725] = 980, + [4726] = 993, + [4727] = 877, + [4728] = 961, + [4729] = 1002, + [4730] = 991, + [4731] = 992, + [4732] = 843, + [4733] = 1007, + [4734] = 976, + [4735] = 845, + [4736] = 979, + [4737] = 1140, + [4738] = 1060, + [4739] = 1111, + [4740] = 1162, + [4741] = 1123, + [4742] = 1132, + [4743] = 1147, + [4744] = 1119, + [4745] = 877, + [4746] = 1056, + [4747] = 1166, + [4748] = 1171, + [4749] = 1172, + [4750] = 1173, + [4751] = 855, + [4752] = 1175, + [4753] = 1176, + [4754] = 1177, + [4755] = 1183, + [4756] = 1055, + [4757] = 1054, + [4758] = 1073, + [4759] = 1104, + [4760] = 1039, + [4761] = 846, + [4762] = 1041, + [4763] = 1042, + [4764] = 1043, + [4765] = 1052, + [4766] = 1051, + [4767] = 856, + [4768] = 1068, + [4769] = 1120, + [4770] = 1050, + [4771] = 878, + [4772] = 1192, + [4773] = 1193, + [4774] = 1048, + [4775] = 1047, + [4776] = 1186, + [4777] = 1195, + [4778] = 1117, + [4779] = 1198, + [4780] = 1199, + [4781] = 1046, + [4782] = 1045, + [4783] = 1201, + [4784] = 1211, + [4785] = 1212, + [4786] = 1040, + [4787] = 1082, + [4788] = 1214, + [4789] = 1083, + [4790] = 1096, + [4791] = 1110, + [4792] = 1190, + [4793] = 1144, + [4794] = 864, + [4795] = 1145, + [4796] = 866, + [4797] = 1094, + [4798] = 1146, + [4799] = 857, + [4800] = 1138, + [4801] = 1099, + [4802] = 845, + [4803] = 1135, + [4804] = 1105, + [4805] = 1133, + [4806] = 1155, + [4807] = 1152, + [4808] = 1116, + [4809] = 870, + [4810] = 1174, + [4811] = 882, + [4812] = 1115, + [4813] = 1153, + [4814] = 1165, + [4815] = 1108, + [4816] = 836, + [4817] = 867, + [4818] = 1191, + [4819] = 1095, + [4820] = 1085, + [4821] = 1087, + [4822] = 1084, + [4823] = 869, + [4824] = 1093, + [4825] = 1161, + [4826] = 1164, + [4827] = 1080, + [4828] = 884, + [4829] = 870, + [4830] = 848, + [4831] = 1197, + [4832] = 1057, + [4833] = 1069, + [4834] = 1065, + [4835] = 1044, + [4836] = 1194, + [4837] = 1053, + [4838] = 885, + [4839] = 1130, + [4840] = 1122, + [4841] = 1109, + [4842] = 1107, + [4843] = 1090, + [4844] = 1187, + [4845] = 1062, + [4846] = 1066, + [4847] = 1058, + [4848] = 856, + [4849] = 883, + [4850] = 854, + [4851] = 1098, + [4852] = 1167, + [4853] = 1196, + [4854] = 1181, + [4855] = 1156, + [4856] = 871, + [4857] = 1074, + [4858] = 1127, + [4859] = 874, + [4860] = 1114, + [4861] = 1085, + [4862] = 1067, + [4863] = 1076, + [4864] = 1079, + [4865] = 1059, + [4866] = 1112, + [4867] = 1077, + [4868] = 1179, + [4869] = 1160, + [4870] = 1101, + [4871] = 860, + [4872] = 862, + [4873] = 1061, + [4874] = 850, + [4875] = 863, + [4876] = 865, + [4877] = 1071, + [4878] = 868, + [4879] = 1063, + [4880] = 871, + [4881] = 872, + [4882] = 1118, + [4883] = 1102, + [4884] = 1124, + [4885] = 873, + [4886] = 1125, + [4887] = 1078, + [4888] = 859, + [4889] = 1159, + [4890] = 1070, + [4891] = 1103, + [4892] = 1064, + [4893] = 1113, + [4894] = 1088, + [4895] = 1178, + [4896] = 1139, + [4897] = 1049, + [4898] = 852, + [4899] = 1038, + [4900] = 1202, + [4901] = 853, + [4902] = 1089, + [4903] = 870, + [4904] = 1157, + [4905] = 1213, + [4906] = 1184, + [4907] = 869, + [4908] = 1072, + [4909] = 1189, + [4910] = 854, + [4911] = 1206, + [4912] = 867, + [4913] = 1136, + [4914] = 1128, + [4915] = 837, + [4916] = 1078, + [4917] = 1091, + [4918] = 858, + [4919] = 1121, + [4920] = 866, + [4921] = 864, + [4922] = 1035, + [4923] = 975, + [4924] = 872, + [4925] = 866, + [4926] = 867, + [4927] = 864, + [4928] = 873, + [4929] = 1092, + [4930] = 862, + [4931] = 850, + [4932] = 863, + [4933] = 865, + [4934] = 1106, + [4935] = 868, + [4936] = 869, + [4937] = 974, + [4938] = 846, + [4939] = 871, + [4940] = 946, + [4941] = 865, + [4942] = 913, + [4943] = 867, + [4944] = 920, + [4945] = 915, + [4946] = 916, + [4947] = 934, + [4948] = 1012, + [4949] = 1032, + [4950] = 932, + [4951] = 1030, + [4952] = 869, + [4953] = 853, + [4954] = 979, + [4955] = 863, + [4956] = 976, + [4957] = 852, + [4958] = 972, + [4959] = 918, + [4960] = 1025, + [4961] = 848, + [4962] = 959, + [4963] = 870, + [4964] = 873, + [4965] = 969, + [4966] = 837, + [4967] = 862, + [4968] = 906, + [4969] = 882, + [4970] = 904, + [4971] = 866, + [4972] = 945, + [4973] = 900, + [4974] = 891, + [4975] = 836, + [4976] = 960, + [4977] = 968, + [4978] = 845, + [4979] = 930, + [4980] = 929, + [4981] = 850, + [4982] = 863, + [4983] = 928, + [4984] = 927, + [4985] = 862, + [4986] = 926, + [4987] = 886, + [4988] = 889, + [4989] = 925, + [4990] = 888, + [4991] = 919, + [4992] = 917, + [4993] = 890, + [4994] = 933, + [4995] = 864, + [4996] = 872, + [4997] = 871, + [4998] = 865, + [4999] = 936, + [5000] = 850, + [5001] = 922, + [5002] = 868, + [5003] = 892, + [5004] = 921, + [5005] = 868, + [5006] = 945, + [5007] = 873, + [5008] = 872, + [5009] = 903, + [5010] = 904, + [5011] = 906, + [5012] = 915, + [5013] = 1012, + [5014] = 1030, + [5015] = 916, + [5016] = 1032, + [5017] = 1004, + [5018] = 1005, + [5019] = 968, + [5020] = 977, + [5021] = 928, + [5022] = 1026, + [5023] = 1028, + [5024] = 937, + [5025] = 951, + [5026] = 918, + [5027] = 970, + [5028] = 960, + [5029] = 929, + [5030] = 962, + [5031] = 882, + [5032] = 1031, + [5033] = 965, + [5034] = 925, + [5035] = 963, + [5036] = 894, + [5037] = 976, + [5038] = 930, + [5039] = 1016, + [5040] = 972, + [5041] = 1025, + [5042] = 1021, + [5043] = 960, + [5044] = 959, + [5045] = 973, + [5046] = 853, + [5047] = 927, + [5048] = 913, + [5049] = 929, + [5050] = 928, + [5051] = 927, + [5052] = 870, + [5053] = 903, + [5054] = 926, + [5055] = 886, + [5056] = 925, + [5057] = 852, + [5058] = 969, + [5059] = 930, + [5060] = 882, + [5061] = 979, + [5062] = 953, + [5063] = 955, + [5064] = 980, + [5065] = 869, + [5066] = 956, + [5067] = 908, + [5068] = 957, + [5069] = 892, + [5070] = 966, + [5071] = 932, + [5072] = 958, + [5073] = 960, + [5074] = 934, + [5075] = 937, + [5076] = 977, + [5077] = 853, + [5078] = 922, + [5079] = 971, + [5080] = 1019, + [5081] = 926, + [5082] = 968, + [5083] = 978, + [5084] = 900, + [5085] = 867, + [5086] = 1008, + [5087] = 1014, + [5088] = 1002, + [5089] = 894, + [5090] = 852, + [5091] = 1027, + [5092] = 891, + [5093] = 917, + [5094] = 864, + [5095] = 961, + [5096] = 1019, + [5097] = 966, + [5098] = 919, + [5099] = 921, + [5100] = 1007, + [5101] = 1003, + [5102] = 952, + [5103] = 890, + [5104] = 908, + [5105] = 961, + [5106] = 994, + [5107] = 1008, + [5108] = 993, + [5109] = 866, + [5110] = 886, + [5111] = 973, + [5112] = 992, + [5113] = 991, + [5114] = 921, + [5115] = 1053, + [5116] = 1128, + [5117] = 886, + [5118] = 868, + [5119] = 1136, + [5120] = 1206, + [5121] = 1109, + [5122] = 1202, + [5123] = 932, + [5124] = 1062, + [5125] = 925, + [5126] = 1166, + [5127] = 930, + [5128] = 1093, + [5129] = 863, + [5130] = 850, + [5131] = 1172, + [5132] = 928, + [5133] = 1173, + [5134] = 1197, + [5135] = 1080, + [5136] = 1175, + [5137] = 1176, + [5138] = 974, + [5139] = 1191, + [5140] = 1095, + [5141] = 975, + [5142] = 1177, + [5143] = 1174, + [5144] = 1160, + [5145] = 1183, + [5146] = 1096, + [5147] = 1068, + [5148] = 1155, + [5149] = 1171, + [5150] = 1120, + [5151] = 1105, + [5152] = 1145, + [5153] = 1192, + [5154] = 926, + [5155] = 1119, + [5156] = 1193, + [5157] = 1110, + [5158] = 1186, + [5159] = 1123, + [5160] = 1195, + [5161] = 927, + [5162] = 1118, + [5163] = 1104, + [5164] = 1099, + [5165] = 1094, + [5166] = 1117, + [5167] = 1043, + [5168] = 1042, + [5169] = 862, + [5170] = 1041, + [5171] = 1039, + [5172] = 854, + [5173] = 1035, + [5174] = 929, + [5175] = 865, + [5176] = 1198, + [5177] = 1199, + [5178] = 1132, + [5179] = 1201, + [5180] = 1035, + [5181] = 856, + [5182] = 927, + [5183] = 1211, + [5184] = 1083, + [5185] = 1212, + [5186] = 1040, + [5187] = 1214, + [5188] = 1004, + [5189] = 1045, + [5190] = 1070, + [5191] = 871, + [5192] = 1146, + [5193] = 1140, + [5194] = 1138, + [5195] = 1135, + [5196] = 1046, + [5197] = 1133, + [5198] = 926, + [5199] = 872, + [5200] = 1116, + [5201] = 1098, + [5202] = 1047, + [5203] = 1115, + [5204] = 1048, + [5205] = 873, + [5206] = 975, + [5207] = 1050, + [5208] = 974, + [5209] = 1051, + [5210] = 1052, + [5211] = 1087, + [5212] = 928, + [5213] = 1084, + [5214] = 1073, + [5215] = 1082, + [5216] = 1054, + [5217] = 1115, + [5218] = 1055, + [5219] = 1056, + [5220] = 1069, + [5221] = 1065, + [5222] = 929, + [5223] = 1044, + [5224] = 1194, + [5225] = 1162, + [5226] = 934, + [5227] = 1058, + [5228] = 1130, + [5229] = 1156, + [5230] = 1059, + [5231] = 886, + [5232] = 1026, + [5233] = 934, + [5234] = 1028, + [5235] = 1060, + [5236] = 930, + [5237] = 1061, + [5238] = 1122, + [5239] = 1117, + [5240] = 1109, + [5241] = 1063, + [5242] = 1107, + [5243] = 1064, + [5244] = 1066, + [5245] = 1088, + [5246] = 1072, + [5247] = 1091, + [5248] = 1092, + [5249] = 1089, + [5250] = 1106, + [5251] = 1167, + [5252] = 1196, + [5253] = 1078, + [5254] = 1127, + [5255] = 1108, + [5256] = 1111, + [5257] = 1114, + [5258] = 1085, + [5259] = 1067, + [5260] = 1079, + [5261] = 925, + [5262] = 1085, + [5263] = 956, + [5264] = 917, + [5265] = 1112, + [5266] = 1090, + [5267] = 1147, + [5268] = 1057, + [5269] = 1144, + [5270] = 1071, + [5271] = 1153, + [5272] = 1165, + [5273] = 1118, + [5274] = 1161, + [5275] = 1124, + [5276] = 1164, + [5277] = 1125, + [5278] = 1078, + [5279] = 1159, + [5280] = 1181, + [5281] = 1016, + [5282] = 1187, + [5283] = 1190, + [5284] = 1070, + [5285] = 1121, + [5286] = 1119, + [5287] = 919, + [5288] = 1213, + [5289] = 1189, + [5290] = 1178, + [5291] = 1184, + [5292] = 1139, + [5293] = 1179, + [5294] = 1049, + [5295] = 932, + [5296] = 1152, + [5297] = 1120, + [5298] = 854, + [5299] = 856, + [5300] = 921, + [5301] = 963, + [5302] = 1038, + [5303] = 919, + [5304] = 1113, + [5305] = 1103, + [5306] = 1102, + [5307] = 1101, + [5308] = 1077, + [5309] = 1076, + [5310] = 1074, + [5311] = 980, + [5312] = 917, + [5313] = 1157, + [5314] = 1007, + [5315] = 854, + [5316] = 992, + [5317] = 934, + [5318] = 845, + [5319] = 991, + [5320] = 5320, + [5321] = 5321, + [5322] = 837, + [5323] = 965, + [5324] = 848, + [5325] = 846, + [5326] = 1053, + [5327] = 1057, + [5328] = 978, + [5329] = 971, + [5330] = 836, + [5331] = 1031, + [5332] = 848, + [5333] = 1005, + [5334] = 845, + [5335] = 993, + [5336] = 856, + [5337] = 854, + [5338] = 994, + [5339] = 1021, + [5340] = 837, + [5341] = 846, + [5342] = 836, + [5343] = 945, + [5344] = 951, + [5345] = 932, + [5346] = 970, + [5347] = 962, + [5348] = 1027, + [5349] = 952, + [5350] = 953, + [5351] = 1002, + [5352] = 955, + [5353] = 958, + [5354] = 1042, + [5355] = 1039, + [5356] = 1041, + [5357] = 5357, + [5358] = 1043, + [5359] = 957, + [5360] = 1003, + [5361] = 856, + [5362] = 854, + [5363] = 856, + [5364] = 1110, + [5365] = 856, + [5366] = 854, + [5367] = 856, + [5368] = 1067, + [5369] = 1057, + [5370] = 1053, + [5371] = 1135, + [5372] = 1173, + [5373] = 1042, + [5374] = 1043, + [5375] = 882, + [5376] = 1133, + [5377] = 404, + [5378] = 1039, + [5379] = 1172, + [5380] = 1079, + [5381] = 1171, + [5382] = 1166, + [5383] = 1162, + [5384] = 1066, + [5385] = 1156, + [5386] = 933, + [5387] = 1147, + [5388] = 1132, + [5389] = 1111, + [5390] = 1116, + [5391] = 1098, + [5392] = 936, + [5393] = 1123, + [5394] = 1196, + [5395] = 1087, + [5396] = 1084, + [5397] = 1198, + [5398] = 1080, + [5399] = 1140, + [5400] = 1175, + [5401] = 1145, + [5402] = 1069, + [5403] = 1065, + [5404] = 1176, + [5405] = 1096, + [5406] = 1044, + [5407] = 1095, + [5408] = 1093, + [5409] = 1090, + [5410] = 406, + [5411] = 1062, + [5412] = 1177, + [5413] = 1112, + [5414] = 1041, + [5415] = 847, + [5416] = 854, + [5417] = 1071, + [5418] = 1124, + [5419] = 1138, + [5420] = 977, + [5421] = 1194, + [5422] = 870, + [5423] = 869, + [5424] = 1183, + [5425] = 867, + [5426] = 409, + [5427] = 866, + [5428] = 1107, + [5429] = 1146, + [5430] = 856, + [5431] = 5431, + [5432] = 854, + [5433] = 1130, + [5434] = 864, + [5435] = 1159, + [5436] = 1125, + [5437] = 1114, + [5438] = 1043, + [5439] = 1042, + [5440] = 1068, + [5441] = 1192, + [5442] = 960, + [5443] = 1193, + [5444] = 973, + [5445] = 870, + [5446] = 869, + [5447] = 1186, + [5448] = 1127, + [5449] = 1214, + [5450] = 867, + [5451] = 845, + [5452] = 866, + [5453] = 1212, + [5454] = 864, + [5455] = 1211, + [5456] = 1195, + [5457] = 1122, + [5458] = 837, + [5459] = 848, + [5460] = 1139, + [5461] = 1167, + [5462] = 1201, + [5463] = 414, + [5464] = 846, + [5465] = 1199, + [5466] = 836, + [5467] = 1178, + [5468] = 1049, + [5469] = 1039, + [5470] = 853, + [5471] = 852, + [5472] = 1041, + [5473] = 3489, + [5474] = 862, + [5475] = 871, + [5476] = 5476, + [5477] = 844, + [5478] = 852, + [5479] = 404, + [5480] = 871, + [5481] = 840, + [5482] = 5476, + [5483] = 1053, + [5484] = 873, + [5485] = 409, + [5486] = 868, + [5487] = 457, + [5488] = 865, + [5489] = 5476, + [5490] = 1057, + [5491] = 458, + [5492] = 863, + [5493] = 5476, + [5494] = 455, + [5495] = 850, + [5496] = 5476, + [5497] = 849, + [5498] = 862, + [5499] = 406, + [5500] = 850, + [5501] = 5476, + [5502] = 5502, + [5503] = 930, + [5504] = 5476, + [5505] = 929, + [5506] = 928, + [5507] = 927, + [5508] = 926, + [5509] = 886, + [5510] = 925, + [5511] = 5476, + [5512] = 449, + [5513] = 5476, + [5514] = 5514, + [5515] = 864, + [5516] = 1039, + [5517] = 873, + [5518] = 446, + [5519] = 882, + [5520] = 920, + [5521] = 921, + [5522] = 919, + [5523] = 917, + [5524] = 841, + [5525] = 865, + [5526] = 872, + [5527] = 1041, + [5528] = 414, + [5529] = 866, + [5530] = 867, + [5531] = 869, + [5532] = 870, + [5533] = 1043, + [5534] = 1042, + [5535] = 868, + [5536] = 872, + [5537] = 853, + [5538] = 863, + [5539] = 5539, + [5540] = 863, + [5541] = 934, + [5542] = 1078, + [5543] = 5539, + [5544] = 5544, + [5545] = 930, + [5546] = 882, + [5547] = 5547, + [5548] = 929, + [5549] = 928, + [5550] = 434, + [5551] = 927, + [5552] = 862, + [5553] = 5539, + [5554] = 446, + [5555] = 932, + [5556] = 926, + [5557] = 5547, + [5558] = 886, + [5559] = 945, + [5560] = 5560, + [5561] = 5539, + [5562] = 432, + [5563] = 5547, + [5564] = 5539, + [5565] = 925, + [5566] = 457, + [5567] = 5547, + [5568] = 921, + [5569] = 430, + [5570] = 5547, + [5571] = 853, + [5572] = 858, + [5573] = 5539, + [5574] = 960, + [5575] = 873, + [5576] = 868, + [5577] = 455, + [5578] = 919, + [5579] = 5539, + [5580] = 872, + [5581] = 437, + [5582] = 458, + [5583] = 5547, + [5584] = 3853, + [5585] = 860, + [5586] = 968, + [5587] = 5547, + [5588] = 5539, + [5589] = 857, + [5590] = 5539, + [5591] = 865, + [5592] = 852, + [5593] = 850, + [5594] = 449, + [5595] = 5547, + [5596] = 1085, + [5597] = 5547, + [5598] = 917, + [5599] = 859, + [5600] = 871, + [5601] = 5601, + [5602] = 464, + [5603] = 934, + [5604] = 1115, + [5605] = 919, + [5606] = 5601, + [5607] = 921, + [5608] = 968, + [5609] = 471, + [5610] = 1078, + [5611] = 5601, + [5612] = 917, + [5613] = 5601, + [5614] = 4051, + [5615] = 932, + [5616] = 430, + [5617] = 1118, + [5618] = 973, + [5619] = 434, + [5620] = 960, + [5621] = 432, + [5622] = 4039, + [5623] = 5601, + [5624] = 1085, + [5625] = 5601, + [5626] = 5626, + [5627] = 5601, + [5628] = 437, + [5629] = 856, + [5630] = 468, + [5631] = 977, + [5632] = 5601, + [5633] = 1120, + [5634] = 925, + [5635] = 854, + [5636] = 886, + [5637] = 1117, + [5638] = 1119, + [5639] = 930, + [5640] = 5601, + [5641] = 4027, + [5642] = 926, + [5643] = 960, + [5644] = 927, + [5645] = 929, + [5646] = 477, + [5647] = 3899, + [5648] = 3870, + [5649] = 928, + [5650] = 467, + [5651] = 847, + [5652] = 934, + [5653] = 1039, + [5654] = 1041, + [5655] = 1042, + [5656] = 1043, + [5657] = 1053, + [5658] = 1057, + [5659] = 840, + [5660] = 468, + [5661] = 471, + [5662] = 464, + [5663] = 932, + [5664] = 5664, + [5665] = 5665, + [5666] = 5560, + [5667] = 467, + [5668] = 5544, + [5669] = 477, + [5670] = 849, + [5671] = 841, + [5672] = 844, + [5673] = 856, + [5674] = 1043, + [5675] = 1057, + [5676] = 1053, + [5677] = 854, + [5678] = 1042, + [5679] = 1041, + [5680] = 1039, + [5681] = 5681, + [5682] = 516, + [5683] = 1041, + [5684] = 519, + [5685] = 860, + [5686] = 521, + [5687] = 1042, + [5688] = 512, + [5689] = 859, + [5690] = 854, + [5691] = 858, + [5692] = 506, + [5693] = 856, + [5694] = 1043, + [5695] = 510, + [5696] = 857, + [5697] = 1053, + [5698] = 1057, + [5699] = 1039, + [5700] = 512, + [5701] = 509, + [5702] = 504, + [5703] = 516, + [5704] = 849, + [5705] = 513, + [5706] = 521, + [5707] = 518, + [5708] = 5708, + [5709] = 840, + [5710] = 503, + [5711] = 5711, + [5712] = 5712, + [5713] = 522, + [5714] = 520, + [5715] = 506, + [5716] = 519, + [5717] = 920, + [5718] = 515, + [5719] = 510, + [5720] = 518, + [5721] = 5544, + [5722] = 509, + [5723] = 515, + [5724] = 522, + [5725] = 513, + [5726] = 5560, + [5727] = 503, + [5728] = 504, + [5729] = 520, + [5730] = 847, + [5731] = 849, + [5732] = 3489, + [5733] = 847, + [5734] = 838, + [5735] = 840, + [5736] = 838, + [5737] = 840, + [5738] = 841, + [5739] = 849, + [5740] = 840, + [5741] = 920, + [5742] = 844, + [5743] = 849, + [5744] = 860, + [5745] = 5745, + [5746] = 858, + [5747] = 857, + [5748] = 840, + [5749] = 5745, + [5750] = 857, + [5751] = 857, + [5752] = 858, + [5753] = 5745, + [5754] = 859, + [5755] = 858, + [5756] = 5745, + [5757] = 5745, + [5758] = 3853, + [5759] = 860, + [5760] = 5760, + [5761] = 3489, + [5762] = 5745, + [5763] = 849, + [5764] = 859, + [5765] = 841, + [5766] = 844, + [5767] = 843, + [5768] = 5768, + [5769] = 5768, + [5770] = 5770, + [5771] = 4027, + [5772] = 1118, + [5773] = 1117, + [5774] = 3899, + [5775] = 885, + [5776] = 883, + [5777] = 1115, + [5778] = 874, + [5779] = 5768, + [5780] = 843, + [5781] = 878, + [5782] = 5782, + [5783] = 3870, + [5784] = 1119, + [5785] = 5768, + [5786] = 5786, + [5787] = 5787, + [5788] = 5768, + [5789] = 784, + [5790] = 4039, + [5791] = 5768, + [5792] = 5768, + [5793] = 877, + [5794] = 4051, + [5795] = 5768, + [5796] = 5768, + [5797] = 5797, + [5798] = 5798, + [5799] = 5799, + [5800] = 1120, + [5801] = 5768, + [5802] = 5768, + [5803] = 5768, + [5804] = 5768, + [5805] = 5768, + [5806] = 3853, + [5807] = 5768, + [5808] = 5768, + [5809] = 5768, + [5810] = 5768, + [5811] = 5768, + [5812] = 785, + [5813] = 5813, + [5814] = 5768, + [5815] = 920, + [5816] = 884, + [5817] = 855, + [5818] = 877, + [5819] = 3870, + [5820] = 5782, + [5821] = 855, + [5822] = 969, + [5823] = 4027, + [5824] = 972, + [5825] = 1025, + [5826] = 5770, + [5827] = 1115, + [5828] = 5787, + [5829] = 5797, + [5830] = 1117, + [5831] = 883, + [5832] = 3899, + [5833] = 1118, + [5834] = 5813, + [5835] = 884, + [5836] = 847, + [5837] = 1119, + [5838] = 1032, + [5839] = 1030, + [5840] = 1012, + [5841] = 3489, + [5842] = 1120, + [5843] = 878, + [5844] = 5799, + [5845] = 4039, + [5846] = 874, + [5847] = 4051, + [5848] = 979, + [5849] = 5786, + [5850] = 959, + [5851] = 976, + [5852] = 885, + [5853] = 1035, + [5854] = 975, + [5855] = 920, + [5856] = 841, + [5857] = 974, + [5858] = 937, + [5859] = 844, + [5860] = 914, + [5861] = 894, + [5862] = 908, + [5863] = 1032, + [5864] = 1030, + [5865] = 972, + [5866] = 908, + [5867] = 894, + [5868] = 937, + [5869] = 857, + [5870] = 858, + [5871] = 847, + [5872] = 859, + [5873] = 860, + [5874] = 1024, + [5875] = 1023, + [5876] = 995, + [5877] = 3853, + [5878] = 914, + [5879] = 1012, + [5880] = 1035, + [5881] = 979, + [5882] = 975, + [5883] = 976, + [5884] = 974, + [5885] = 1025, + [5886] = 3489, + [5887] = 959, + [5888] = 969, + [5889] = 924, + [5890] = 947, + [5891] = 844, + [5892] = 840, + [5893] = 841, + [5894] = 995, + [5895] = 849, + [5896] = 920, + [5897] = 1024, + [5898] = 1023, + [5899] = 860, + [5900] = 5797, + [5901] = 5901, + [5902] = 5770, + [5903] = 5901, + [5904] = 1119, + [5905] = 1120, + [5906] = 1118, + [5907] = 947, + [5908] = 5901, + [5909] = 5901, + [5910] = 5901, + [5911] = 5901, + [5912] = 5901, + [5913] = 4027, + [5914] = 5782, + [5915] = 3853, + [5916] = 5787, + [5917] = 5901, + [5918] = 3899, + [5919] = 4051, + [5920] = 5786, + [5921] = 5799, + [5922] = 4039, + [5923] = 5813, + [5924] = 924, + [5925] = 5901, + [5926] = 5901, + [5927] = 1115, + [5928] = 5928, + [5929] = 5901, + [5930] = 3870, + [5931] = 1117, + [5932] = 859, + [5933] = 5933, + [5934] = 5933, + [5935] = 5933, + [5936] = 5933, + [5937] = 5933, + [5938] = 5938, + [5939] = 5933, + [5940] = 5940, + [5941] = 1119, + [5942] = 5942, + [5943] = 5943, + [5944] = 5944, + [5945] = 5945, + [5946] = 1115, + [5947] = 5947, + [5948] = 5948, + [5949] = 5949, + [5950] = 5950, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5954, + [5955] = 5955, + [5956] = 5956, + [5957] = 5943, + [5958] = 5955, + [5959] = 5959, + [5960] = 5947, + [5961] = 5947, + [5962] = 5962, + [5963] = 5948, + [5964] = 5964, + [5965] = 5965, + [5966] = 5951, + [5967] = 5951, + [5968] = 5968, + [5969] = 5964, + [5970] = 5953, + [5971] = 5971, + [5972] = 5959, + [5973] = 5951, + [5974] = 5974, + [5975] = 5943, + [5976] = 5976, + [5977] = 5974, + [5978] = 5956, + [5979] = 5962, + [5980] = 5942, + [5981] = 5976, + [5982] = 5982, + [5983] = 5940, + [5984] = 5956, + [5985] = 5985, + [5986] = 5952, + [5987] = 5971, + [5988] = 5955, + [5989] = 5989, + [5990] = 5956, + [5991] = 5947, + [5992] = 5982, + [5993] = 5940, + [5994] = 5950, + [5995] = 5959, + [5996] = 5996, + [5997] = 5996, + [5998] = 5996, + [5999] = 5964, + [6000] = 5959, + [6001] = 5996, + [6002] = 5965, + [6003] = 5968, + [6004] = 6004, + [6005] = 5948, + [6006] = 5968, + [6007] = 6004, + [6008] = 6008, + [6009] = 6004, + [6010] = 5985, + [6011] = 5954, + [6012] = 5951, + [6013] = 6013, + [6014] = 5964, + [6015] = 5953, + [6016] = 5951, + [6017] = 6013, + [6018] = 5948, + [6019] = 5951, + [6020] = 5942, + [6021] = 5943, + [6022] = 5942, + [6023] = 5976, + [6024] = 5943, + [6025] = 5940, + [6026] = 6004, + [6027] = 6013, + [6028] = 5971, + [6029] = 5965, + [6030] = 5953, + [6031] = 5955, + [6032] = 5954, + [6033] = 5955, + [6034] = 5953, + [6035] = 6035, + [6036] = 5951, + [6037] = 5953, + [6038] = 5962, + [6039] = 5947, + [6040] = 5982, + [6041] = 5956, + [6042] = 5948, + [6043] = 5940, + [6044] = 5943, + [6045] = 5964, + [6046] = 5948, + [6047] = 5951, + [6048] = 5965, + [6049] = 5955, + [6050] = 5942, + [6051] = 5953, + [6052] = 5985, + [6053] = 5965, + [6054] = 5949, + [6055] = 5968, + [6056] = 5948, + [6057] = 5955, + [6058] = 5943, + [6059] = 5996, + [6060] = 5949, + [6061] = 5974, + [6062] = 5976, + [6063] = 5942, + [6064] = 5948, + [6065] = 5940, + [6066] = 5942, + [6067] = 5982, + [6068] = 5951, + [6069] = 5943, + [6070] = 5965, + [6071] = 5942, + [6072] = 5947, + [6073] = 5942, + [6074] = 5940, + [6075] = 5951, + [6076] = 5951, + [6077] = 5943, + [6078] = 840, + [6079] = 5976, + [6080] = 5976, + [6081] = 5953, + [6082] = 5953, + [6083] = 5996, + [6084] = 5954, + [6085] = 5951, + [6086] = 5976, + [6087] = 5962, + [6088] = 5953, + [6089] = 849, + [6090] = 5982, + [6091] = 5953, + [6092] = 5951, + [6093] = 5971, + [6094] = 5974, + [6095] = 5971, + [6096] = 5976, + [6097] = 5965, + [6098] = 5954, + [6099] = 5953, + [6100] = 5953, + [6101] = 5971, + [6102] = 5959, + [6103] = 5940, + [6104] = 6013, + [6105] = 6013, + [6106] = 5959, + [6107] = 5982, + [6108] = 5996, + [6109] = 5954, + [6110] = 5940, + [6111] = 5964, + [6112] = 5965, + [6113] = 5964, + [6114] = 5962, + [6115] = 5948, + [6116] = 5965, + [6117] = 6004, + [6118] = 5971, + [6119] = 5955, + [6120] = 5955, + [6121] = 5959, + [6122] = 5955, + [6123] = 5948, + [6124] = 5942, + [6125] = 5943, + [6126] = 5952, + [6127] = 5950, + [6128] = 5943, + [6129] = 5942, + [6130] = 5949, + [6131] = 5940, + [6132] = 5948, + [6133] = 5943, + [6134] = 6004, + [6135] = 5955, + [6136] = 5942, + [6137] = 6137, + [6138] = 5948, + [6139] = 5982, + [6140] = 5940, + [6141] = 5965, + [6142] = 5951, + [6143] = 5971, + [6144] = 5976, + [6145] = 5996, + [6146] = 5940, + [6147] = 5953, + [6148] = 5971, + [6149] = 5959, + [6150] = 5947, + [6151] = 3870, + [6152] = 5959, + [6153] = 3899, + [6154] = 5940, + [6155] = 5985, + [6156] = 5940, + [6157] = 5985, + [6158] = 5964, + [6159] = 5940, + [6160] = 5948, + [6161] = 5965, + [6162] = 5940, + [6163] = 5955, + [6164] = 5948, + [6165] = 5943, + [6166] = 5942, + [6167] = 5964, + [6168] = 5968, + [6169] = 5947, + [6170] = 5953, + [6171] = 5965, + [6172] = 5959, + [6173] = 5996, + [6174] = 5940, + [6175] = 5965, + [6176] = 5996, + [6177] = 5996, + [6178] = 5982, + [6179] = 5955, + [6180] = 6004, + [6181] = 5947, + [6182] = 5964, + [6183] = 5982, + [6184] = 5964, + [6185] = 5947, + [6186] = 5955, + [6187] = 5954, + [6188] = 5965, + [6189] = 5948, + [6190] = 5951, + [6191] = 5951, + [6192] = 5996, + [6193] = 5942, + [6194] = 5976, + [6195] = 5948, + [6196] = 5955, + [6197] = 5947, + [6198] = 6198, + [6199] = 5962, + [6200] = 5953, + [6201] = 5949, + [6202] = 4051, + [6203] = 5947, + [6204] = 5971, + [6205] = 5949, + [6206] = 5943, + [6207] = 5964, + [6208] = 5959, + [6209] = 5965, + [6210] = 5947, + [6211] = 5940, + [6212] = 5996, + [6213] = 5945, + [6214] = 6214, + [6215] = 5956, + [6216] = 5964, + [6217] = 5955, + [6218] = 1120, + [6219] = 5956, + [6220] = 5965, + [6221] = 5985, + [6222] = 5955, + [6223] = 5951, + [6224] = 5974, + [6225] = 5955, + [6226] = 5955, + [6227] = 5965, + [6228] = 5947, + [6229] = 5985, + [6230] = 5964, + [6231] = 5942, + [6232] = 5996, + [6233] = 5996, + [6234] = 5948, + [6235] = 6013, + [6236] = 5951, + [6237] = 5976, + [6238] = 5976, + [6239] = 5943, + [6240] = 5953, + [6241] = 5971, + [6242] = 5942, + [6243] = 5942, + [6244] = 5959, + [6245] = 5940, + [6246] = 5985, + [6247] = 5943, + [6248] = 5943, + [6249] = 5985, + [6250] = 5964, + [6251] = 5965, + [6252] = 5955, + [6253] = 5985, + [6254] = 5947, + [6255] = 5968, + [6256] = 5953, + [6257] = 5940, + [6258] = 5948, + [6259] = 5976, + [6260] = 5942, + [6261] = 5971, + [6262] = 5950, + [6263] = 5940, + [6264] = 5971, + [6265] = 5959, + [6266] = 5943, + [6267] = 5964, + [6268] = 5942, + [6269] = 1118, + [6270] = 5956, + [6271] = 5948, + [6272] = 5954, + [6273] = 5996, + [6274] = 5959, + [6275] = 5940, + [6276] = 6013, + [6277] = 5982, + [6278] = 5947, + [6279] = 5971, + [6280] = 5953, + [6281] = 5964, + [6282] = 5976, + [6283] = 1117, + [6284] = 5952, + [6285] = 5959, + [6286] = 5951, + [6287] = 5971, + [6288] = 5947, + [6289] = 5976, + [6290] = 5971, + [6291] = 5959, + [6292] = 5959, + [6293] = 5964, + [6294] = 5974, + [6295] = 5964, + [6296] = 5940, + [6297] = 5965, + [6298] = 5953, + [6299] = 5996, + [6300] = 5959, + [6301] = 5955, + [6302] = 6013, + [6303] = 5964, + [6304] = 5996, + [6305] = 5959, + [6306] = 5982, + [6307] = 5971, + [6308] = 5976, + [6309] = 5954, + [6310] = 6214, + [6311] = 5976, + [6312] = 5951, + [6313] = 5971, + [6314] = 6314, + [6315] = 6315, + [6316] = 5959, + [6317] = 5953, + [6318] = 5976, + [6319] = 5955, + [6320] = 5949, + [6321] = 5996, + [6322] = 5962, + [6323] = 5965, + [6324] = 5964, + [6325] = 5996, + [6326] = 5974, + [6327] = 5940, + [6328] = 5959, + [6329] = 5947, + [6330] = 6004, + [6331] = 5974, + [6332] = 5971, + [6333] = 5953, + [6334] = 6334, + [6335] = 5953, + [6336] = 5965, + [6337] = 5976, + [6338] = 5951, + [6339] = 5971, + [6340] = 5982, + [6341] = 5948, + [6342] = 5947, + [6343] = 5943, + [6344] = 5996, + [6345] = 4027, + [6346] = 4039, + [6347] = 5951, + [6348] = 5955, + [6349] = 5959, + [6350] = 5940, + [6351] = 5965, + [6352] = 5964, + [6353] = 5976, + [6354] = 6354, + [6355] = 5940, + [6356] = 5953, + [6357] = 5942, + [6358] = 5947, + [6359] = 5964, + [6360] = 5959, + [6361] = 5976, + [6362] = 5976, + [6363] = 5971, + [6364] = 5953, + [6365] = 5971, + [6366] = 5985, + [6367] = 5971, + [6368] = 5959, + [6369] = 5953, + [6370] = 5954, + [6371] = 6371, + [6372] = 5964, + [6373] = 5965, + [6374] = 5954, + [6375] = 5974, + [6376] = 6004, + [6377] = 5951, + [6378] = 5985, + [6379] = 5976, + [6380] = 5971, + [6381] = 5951, + [6382] = 5985, + [6383] = 5965, + [6384] = 5955, + [6385] = 6385, + [6386] = 5947, + [6387] = 5962, + [6388] = 5964, + [6389] = 5971, + [6390] = 5948, + [6391] = 5996, + [6392] = 5959, + [6393] = 5959, + [6394] = 5974, + [6395] = 5954, + [6396] = 5948, + [6397] = 5996, + [6398] = 5943, + [6399] = 5964, + [6400] = 5955, + [6401] = 5962, + [6402] = 5947, + [6403] = 5948, + [6404] = 5965, + [6405] = 5943, + [6406] = 5942, + [6407] = 5942, + [6408] = 5949, + [6409] = 5943, + [6410] = 5942, + [6411] = 5954, + [6412] = 5976, + [6413] = 5947, + [6414] = 5950, + [6415] = 5948, + [6416] = 5943, + [6417] = 5974, + [6418] = 5945, + [6419] = 6214, + [6420] = 6013, + [6421] = 5952, + [6422] = 5952, + [6423] = 5950, + [6424] = 5947, + [6425] = 5955, + [6426] = 5942, + [6427] = 5955, + [6428] = 5956, + [6429] = 5985, + [6430] = 5945, + [6431] = 6214, + [6432] = 5965, + [6433] = 5964, + [6434] = 5947, + [6435] = 5954, + [6436] = 5996, + [6437] = 5947, + [6438] = 5971, + [6439] = 5940, + [6440] = 5959, + [6441] = 5971, + [6442] = 5945, + [6443] = 6214, + [6444] = 5965, + [6445] = 5951, + [6446] = 5996, + [6447] = 5953, + [6448] = 5996, + [6449] = 5947, + [6450] = 5996, + [6451] = 5976, + [6452] = 5951, + [6453] = 5945, + [6454] = 6214, + [6455] = 5943, + [6456] = 5974, + [6457] = 5976, + [6458] = 5976, + [6459] = 6459, + [6460] = 6459, + [6461] = 6459, + [6462] = 6459, + [6463] = 6459, + [6464] = 6459, + [6465] = 6465, + [6466] = 6465, + [6467] = 6465, + [6468] = 6465, + [6469] = 6465, + [6470] = 6465, + [6471] = 6465, + [6472] = 6459, + [6473] = 6459, + [6474] = 6459, + [6475] = 6459, + [6476] = 6459, + [6477] = 6459, + [6478] = 6459, + [6479] = 6459, + [6480] = 6459, + [6481] = 6459, + [6482] = 6459, + [6483] = 6459, + [6484] = 6465, + [6485] = 6459, + [6486] = 6459, + [6487] = 6465, + [6488] = 6465, + [6489] = 6465, + [6490] = 6465, + [6491] = 6465, + [6492] = 6459, + [6493] = 6459, + [6494] = 6459, + [6495] = 6459, + [6496] = 6459, + [6497] = 6459, + [6498] = 6465, + [6499] = 6459, + [6500] = 6500, + [6501] = 6501, + [6502] = 6501, + [6503] = 6501, + [6504] = 6504, + [6505] = 6501, + [6506] = 6501, + [6507] = 6504, + [6508] = 6500, + [6509] = 6501, + [6510] = 6501, + [6511] = 6500, + [6512] = 6500, + [6513] = 6504, + [6514] = 6514, + [6515] = 6500, + [6516] = 6501, + [6517] = 6501, + [6518] = 6504, + [6519] = 6504, + [6520] = 6501, + [6521] = 6501, + [6522] = 6504, + [6523] = 6504, + [6524] = 6500, + [6525] = 6500, + [6526] = 6504, + [6527] = 6504, + [6528] = 6504, + [6529] = 6500, + [6530] = 6504, + [6531] = 6500, + [6532] = 6501, + [6533] = 6504, + [6534] = 6501, + [6535] = 6500, + [6536] = 6500, + [6537] = 6504, + [6538] = 6500, + [6539] = 6500, + [6540] = 6500, + [6541] = 6504, + [6542] = 6501, + [6543] = 6501, + [6544] = 6500, + [6545] = 6501, + [6546] = 6504, + [6547] = 6504, + [6548] = 6504, + [6549] = 6504, + [6550] = 6504, + [6551] = 6500, + [6552] = 6504, + [6553] = 6500, + [6554] = 6501, + [6555] = 6504, + [6556] = 6500, + [6557] = 6500, + [6558] = 6501, + [6559] = 6500, + [6560] = 6501, + [6561] = 6500, + [6562] = 6500, + [6563] = 6504, + [6564] = 6501, + [6565] = 6504, + [6566] = 6501, + [6567] = 6501, + [6568] = 6504, + [6569] = 6501, + [6570] = 6504, + [6571] = 6500, + [6572] = 6501, + [6573] = 6500, + [6574] = 6500, + [6575] = 6501, + [6576] = 6504, + [6577] = 6504, + [6578] = 6501, + [6579] = 6500, + [6580] = 6500, + [6581] = 6501, + [6582] = 6582, + [6583] = 6583, + [6584] = 6583, + [6585] = 6583, + [6586] = 6583, + [6587] = 6582, + [6588] = 6582, + [6589] = 6582, + [6590] = 6583, + [6591] = 6583, + [6592] = 6583, + [6593] = 6582, + [6594] = 6582, + [6595] = 6583, + [6596] = 6583, + [6597] = 6582, + [6598] = 6582, + [6599] = 6583, + [6600] = 6583, + [6601] = 6582, + [6602] = 6583, + [6603] = 6583, + [6604] = 6582, + [6605] = 6582, + [6606] = 860, + [6607] = 6583, + [6608] = 6582, + [6609] = 6583, + [6610] = 6582, + [6611] = 6582, + [6612] = 6582, + [6613] = 6582, + [6614] = 6583, + [6615] = 6583, + [6616] = 6582, + [6617] = 6582, + [6618] = 6582, + [6619] = 6583, + [6620] = 859, + [6621] = 6583, + [6622] = 6583, + [6623] = 6583, + [6624] = 6582, + [6625] = 6582, + [6626] = 6582, + [6627] = 6583, + [6628] = 6582, + [6629] = 6582, + [6630] = 6583, + [6631] = 6583, + [6632] = 6582, + [6633] = 6583, + [6634] = 6583, + [6635] = 6582, + [6636] = 6583, + [6637] = 6582, + [6638] = 847, + [6639] = 844, + [6640] = 6640, + [6641] = 6640, + [6642] = 6640, + [6643] = 6640, + [6644] = 6640, + [6645] = 6640, + [6646] = 6640, + [6647] = 841, + [6648] = 6640, + [6649] = 6640, + [6650] = 6650, + [6651] = 6650, + [6652] = 6652, + [6653] = 6652, + [6654] = 6650, + [6655] = 6652, + [6656] = 6656, + [6657] = 6652, + [6658] = 6652, + [6659] = 857, + [6660] = 6652, + [6661] = 6652, + [6662] = 6650, + [6663] = 6652, + [6664] = 6650, + [6665] = 6650, + [6666] = 6650, + [6667] = 6650, + [6668] = 6652, + [6669] = 6650, + [6670] = 858, + [6671] = 6671, + [6672] = 6672, + [6673] = 6673, + [6674] = 6673, + [6675] = 6671, + [6676] = 6676, + [6677] = 6671, + [6678] = 6678, + [6679] = 6672, + [6680] = 6678, + [6681] = 6681, + [6682] = 6678, + [6683] = 6671, + [6684] = 6672, + [6685] = 6672, + [6686] = 6678, + [6687] = 6672, + [6688] = 6676, + [6689] = 6673, + [6690] = 6672, + [6691] = 6672, + [6692] = 6676, + [6693] = 6678, + [6694] = 6678, + [6695] = 6671, + [6696] = 6672, + [6697] = 6676, + [6698] = 6676, + [6699] = 6676, + [6700] = 6676, + [6701] = 6671, + [6702] = 6671, + [6703] = 6673, + [6704] = 6672, + [6705] = 6673, + [6706] = 6676, + [6707] = 6672, + [6708] = 6678, + [6709] = 6671, + [6710] = 6676, + [6711] = 6672, + [6712] = 920, + [6713] = 6673, + [6714] = 6678, + [6715] = 6671, + [6716] = 6678, + [6717] = 6717, + [6718] = 6673, + [6719] = 6671, + [6720] = 6671, + [6721] = 6676, + [6722] = 6676, + [6723] = 6671, + [6724] = 6676, + [6725] = 6672, + [6726] = 6672, + [6727] = 6678, + [6728] = 6671, + [6729] = 6678, + [6730] = 6678, + [6731] = 6676, + [6732] = 6676, + [6733] = 6671, + [6734] = 6672, + [6735] = 6735, + [6736] = 6736, + [6737] = 6736, + [6738] = 6735, + [6739] = 6735, + [6740] = 6736, + [6741] = 6736, + [6742] = 6736, + [6743] = 6736, + [6744] = 6736, + [6745] = 6735, + [6746] = 6735, + [6747] = 6736, + [6748] = 6735, + [6749] = 6735, + [6750] = 6736, + [6751] = 6736, + [6752] = 6735, + [6753] = 6735, + [6754] = 6736, + [6755] = 6735, + [6756] = 6735, + [6757] = 6736, + [6758] = 6735, + [6759] = 6736, + [6760] = 6735, + [6761] = 6735, + [6762] = 6736, + [6763] = 6736, + [6764] = 6735, + [6765] = 6735, + [6766] = 6736, + [6767] = 6736, + [6768] = 6735, + [6769] = 6735, + [6770] = 6736, + [6771] = 878, + [6772] = 6736, + [6773] = 6735, + [6774] = 6736, + [6775] = 6735, + [6776] = 6735, + [6777] = 6735, + [6778] = 6736, + [6779] = 6735, + [6780] = 6735, + [6781] = 6736, + [6782] = 6736, + [6783] = 874, + [6784] = 6736, + [6785] = 6736, + [6786] = 6735, + [6787] = 6736, + [6788] = 6735, + [6789] = 6736, + [6790] = 6735, + [6791] = 1117, + [6792] = 1120, + [6793] = 1118, + [6794] = 1119, + [6795] = 6795, + [6796] = 6796, + [6797] = 6797, + [6798] = 6798, + [6799] = 6796, + [6800] = 6797, + [6801] = 6801, + [6802] = 6802, + [6803] = 6803, + [6804] = 6804, + [6805] = 6803, + [6806] = 6797, + [6807] = 6807, + [6808] = 6795, + [6809] = 6809, + [6810] = 6810, + [6811] = 6811, + [6812] = 6802, + [6813] = 6796, + [6814] = 6814, + [6815] = 6815, + [6816] = 6814, + [6817] = 6809, + [6818] = 6815, + [6819] = 6809, + [6820] = 6809, + [6821] = 6809, + [6822] = 6822, + [6823] = 6804, + [6824] = 6810, + [6825] = 6814, + [6826] = 6796, + [6827] = 6822, + [6828] = 6814, + [6829] = 6796, + [6830] = 6796, + [6831] = 6798, + [6832] = 6804, + [6833] = 6810, + [6834] = 6809, + [6835] = 6822, + [6836] = 6836, + [6837] = 6803, + [6838] = 6802, + [6839] = 6795, + [6840] = 6815, + [6841] = 6814, + [6842] = 6822, + [6843] = 6796, + [6844] = 6815, + [6845] = 6814, + [6846] = 6804, + [6847] = 6822, + [6848] = 6797, + [6849] = 6811, + [6850] = 6822, + [6851] = 6810, + [6852] = 6822, + [6853] = 6811, + [6854] = 6801, + [6855] = 6801, + [6856] = 6811, + [6857] = 6798, + [6858] = 6795, + [6859] = 6803, + [6860] = 6822, + [6861] = 6804, + [6862] = 6801, + [6863] = 6810, + [6864] = 6815, + [6865] = 6811, + [6866] = 6811, + [6867] = 6803, + [6868] = 6795, + [6869] = 6801, + [6870] = 6796, + [6871] = 6798, + [6872] = 6809, + [6873] = 6822, + [6874] = 6803, + [6875] = 6815, + [6876] = 6798, + [6877] = 6802, + [6878] = 6801, + [6879] = 6811, + [6880] = 6797, + [6881] = 6811, + [6882] = 6804, + [6883] = 6809, + [6884] = 6811, + [6885] = 6796, + [6886] = 6798, + [6887] = 6809, + [6888] = 6796, + [6889] = 6795, + [6890] = 6890, + [6891] = 6803, + [6892] = 6803, + [6893] = 6798, + [6894] = 6804, + [6895] = 6815, + [6896] = 6810, + [6897] = 6836, + [6898] = 6798, + [6899] = 6809, + [6900] = 6795, + [6901] = 6822, + [6902] = 6795, + [6903] = 6798, + [6904] = 6801, + [6905] = 6811, + [6906] = 6810, + [6907] = 6801, + [6908] = 6803, + [6909] = 6811, + [6910] = 6822, + [6911] = 6795, + [6912] = 6814, + [6913] = 6797, + [6914] = 6814, + [6915] = 6809, + [6916] = 6801, + [6917] = 6815, + [6918] = 6836, + [6919] = 6801, + [6920] = 6798, + [6921] = 6796, + [6922] = 6803, + [6923] = 6801, + [6924] = 6815, + [6925] = 6810, + [6926] = 6810, + [6927] = 6802, + [6928] = 6796, + [6929] = 6797, + [6930] = 6803, + [6931] = 6815, + [6932] = 6814, + [6933] = 6802, + [6934] = 6802, + [6935] = 6795, + [6936] = 6811, + [6937] = 6937, + [6938] = 6815, + [6939] = 6809, + [6940] = 6795, + [6941] = 6801, + [6942] = 6804, + [6943] = 6797, + [6944] = 6802, + [6945] = 6814, + [6946] = 6836, + [6947] = 6802, + [6948] = 6822, + [6949] = 6814, + [6950] = 6797, + [6951] = 6810, + [6952] = 6796, + [6953] = 6804, + [6954] = 6814, + [6955] = 6795, + [6956] = 6802, + [6957] = 6797, + [6958] = 6797, + [6959] = 6810, + [6960] = 6815, + [6961] = 6795, + [6962] = 6804, + [6963] = 6803, + [6964] = 6811, + [6965] = 6801, + [6966] = 6797, + [6967] = 6798, + [6968] = 6802, + [6969] = 6810, + [6970] = 6815, + [6971] = 6803, + [6972] = 6795, + [6973] = 6802, + [6974] = 6795, + [6975] = 6809, + [6976] = 6797, + [6977] = 6814, + [6978] = 6822, + [6979] = 6802, + [6980] = 6822, + [6981] = 6798, + [6982] = 6809, + [6983] = 6804, + [6984] = 6815, + [6985] = 6796, + [6986] = 6796, + [6987] = 6804, + [6988] = 6801, + [6989] = 6798, + [6990] = 6811, + [6991] = 6822, + [6992] = 6803, + [6993] = 6814, + [6994] = 6814, + [6995] = 6814, + [6996] = 6802, + [6997] = 6796, + [6998] = 6815, + [6999] = 6809, + [7000] = 6796, + [7001] = 6804, + [7002] = 6798, + [7003] = 6811, + [7004] = 6822, + [7005] = 6796, + [7006] = 6798, + [7007] = 6810, + [7008] = 6795, + [7009] = 6801, + [7010] = 6804, + [7011] = 6815, + [7012] = 6836, + [7013] = 6801, + [7014] = 6822, + [7015] = 6798, + [7016] = 6804, + [7017] = 6804, + [7018] = 6803, + [7019] = 6811, + [7020] = 6801, + [7021] = 6796, + [7022] = 6795, + [7023] = 6804, + [7024] = 6797, + [7025] = 6815, + [7026] = 6795, + [7027] = 6809, + [7028] = 6795, + [7029] = 6803, + [7030] = 6811, + [7031] = 6809, + [7032] = 6802, + [7033] = 6811, + [7034] = 6801, + [7035] = 6809, + [7036] = 6815, + [7037] = 6809, + [7038] = 6801, + [7039] = 6810, + [7040] = 6810, + [7041] = 6802, + [7042] = 6822, + [7043] = 6803, + [7044] = 6811, + [7045] = 6836, + [7046] = 6798, + [7047] = 6802, + [7048] = 6797, + [7049] = 6802, + [7050] = 6797, + [7051] = 6798, + [7052] = 6815, + [7053] = 6798, + [7054] = 6796, + [7055] = 6797, + [7056] = 6798, + [7057] = 6801, + [7058] = 6810, + [7059] = 6814, + [7060] = 6804, + [7061] = 6810, + [7062] = 6804, + [7063] = 6810, + [7064] = 6796, + [7065] = 6811, + [7066] = 6814, + [7067] = 6803, + [7068] = 6815, + [7069] = 6804, + [7070] = 6801, + [7071] = 6804, + [7072] = 6797, + [7073] = 6803, + [7074] = 6795, + [7075] = 6798, + [7076] = 6802, + [7077] = 6822, + [7078] = 6797, + [7079] = 6815, + [7080] = 6796, + [7081] = 6810, + [7082] = 6822, + [7083] = 6814, + [7084] = 6795, + [7085] = 6797, + [7086] = 6797, + [7087] = 6802, + [7088] = 6796, + [7089] = 6804, + [7090] = 6822, + [7091] = 6802, + [7092] = 6803, + [7093] = 6811, + [7094] = 6801, + [7095] = 6801, + [7096] = 6802, + [7097] = 6797, + [7098] = 6822, + [7099] = 6810, + [7100] = 6815, + [7101] = 6814, + [7102] = 6803, + [7103] = 6811, + [7104] = 6811, + [7105] = 6801, + [7106] = 6814, + [7107] = 6798, + [7108] = 6802, + [7109] = 6802, + [7110] = 6803, + [7111] = 6795, + [7112] = 6798, + [7113] = 6822, + [7114] = 6797, + [7115] = 6809, + [7116] = 6810, + [7117] = 6797, + [7118] = 6803, + [7119] = 6795, + [7120] = 6804, + [7121] = 6797, + [7122] = 6815, + [7123] = 6810, + [7124] = 6815, + [7125] = 6809, + [7126] = 6802, + [7127] = 6809, + [7128] = 6814, + [7129] = 6810, + [7130] = 6804, + [7131] = 6811, + [7132] = 6810, + [7133] = 6822, + [7134] = 6814, + [7135] = 6803, + [7136] = 6822, + [7137] = 7137, + [7138] = 6810, + [7139] = 6796, + [7140] = 6795, + [7141] = 6796, + [7142] = 6804, + [7143] = 6809, + [7144] = 6809, + [7145] = 6811, + [7146] = 6796, + [7147] = 6809, + [7148] = 6814, + [7149] = 6802, + [7150] = 6797, + [7151] = 6814, + [7152] = 6804, + [7153] = 6810, + [7154] = 6815, + [7155] = 6803, + [7156] = 6815, + [7157] = 6814, + [7158] = 6810, + [7159] = 6811, + [7160] = 6801, + [7161] = 6795, + [7162] = 6798, + [7163] = 6797, + [7164] = 6802, + [7165] = 6803, + [7166] = 6795, + [7167] = 6803, + [7168] = 6798, + [7169] = 6795, + [7170] = 6801, + [7171] = 6809, + [7172] = 6809, + [7173] = 6798, + [7174] = 6804, + [7175] = 6801, + [7176] = 6822, + [7177] = 6811, + [7178] = 6796, + [7179] = 6798, + [7180] = 6815, + [7181] = 6814, + [7182] = 6822, + [7183] = 7183, + [7184] = 7184, + [7185] = 7185, + [7186] = 7184, + [7187] = 7187, + [7188] = 7183, + [7189] = 7189, + [7190] = 7184, + [7191] = 7183, + [7192] = 7184, + [7193] = 7183, + [7194] = 7184, + [7195] = 7183, + [7196] = 7183, + [7197] = 7185, + [7198] = 7184, + [7199] = 7183, + [7200] = 7185, + [7201] = 7184, + [7202] = 7183, + [7203] = 847, + [7204] = 7185, + [7205] = 7185, + [7206] = 7185, + [7207] = 7184, + [7208] = 3489, + [7209] = 7183, + [7210] = 7185, + [7211] = 7184, + [7212] = 7183, + [7213] = 7184, + [7214] = 7183, + [7215] = 7183, + [7216] = 7184, + [7217] = 7184, + [7218] = 7218, + [7219] = 7183, + [7220] = 7184, + [7221] = 7183, + [7222] = 7183, + [7223] = 7183, + [7224] = 7183, + [7225] = 7184, + [7226] = 7184, + [7227] = 7184, + [7228] = 7183, + [7229] = 7183, + [7230] = 7184, + [7231] = 7183, + [7232] = 7185, + [7233] = 7184, + [7234] = 7184, + [7235] = 7185, + [7236] = 1115, + [7237] = 7184, + [7238] = 7184, + [7239] = 7239, + [7240] = 7185, + [7241] = 7185, + [7242] = 7185, + [7243] = 7185, + [7244] = 7183, + [7245] = 7184, + [7246] = 7184, + [7247] = 7183, + [7248] = 7185, + [7249] = 7183, + [7250] = 7184, + [7251] = 7183, + [7252] = 7183, + [7253] = 7183, + [7254] = 7184, + [7255] = 7184, + [7256] = 7184, + [7257] = 7183, + [7258] = 7185, + [7259] = 7259, + [7260] = 7260, + [7261] = 7261, + [7262] = 7262, + [7263] = 841, + [7264] = 7264, + [7265] = 840, + [7266] = 7262, + [7267] = 7267, + [7268] = 7268, + [7269] = 920, + [7270] = 844, + [7271] = 849, + [7272] = 7272, + [7273] = 7273, + [7274] = 7274, + [7275] = 7275, + [7276] = 7274, + [7277] = 7277, + [7278] = 7277, + [7279] = 7273, + [7280] = 7277, + [7281] = 7273, + [7282] = 7272, + [7283] = 7277, + [7284] = 7272, + [7285] = 7273, + [7286] = 7274, + [7287] = 847, + [7288] = 7277, + [7289] = 7274, + [7290] = 857, + [7291] = 858, + [7292] = 7272, + [7293] = 7272, + [7294] = 7272, + [7295] = 7274, + [7296] = 7277, + [7297] = 7274, + [7298] = 7272, + [7299] = 7273, + [7300] = 7273, + [7301] = 7274, + [7302] = 7272, + [7303] = 3489, + [7304] = 7277, + [7305] = 7273, + [7306] = 7273, + [7307] = 7277, + [7308] = 7277, + [7309] = 859, + [7310] = 7310, + [7311] = 7274, + [7312] = 860, + [7313] = 3853, + [7314] = 3489, + [7315] = 7277, + [7316] = 7277, + [7317] = 7272, + [7318] = 7274, + [7319] = 7274, + [7320] = 7273, + [7321] = 7274, + [7322] = 7272, + [7323] = 7273, + [7324] = 7277, + [7325] = 7272, + [7326] = 7273, + [7327] = 7273, + [7328] = 7328, + [7329] = 847, + [7330] = 7330, + [7331] = 7331, + [7332] = 7332, + [7333] = 7330, + [7334] = 7328, + [7335] = 7331, + [7336] = 7330, + [7337] = 7330, + [7338] = 7338, + [7339] = 7330, + [7340] = 4051, + [7341] = 7328, + [7342] = 7330, + [7343] = 7331, + [7344] = 7344, + [7345] = 7332, + [7346] = 7328, + [7347] = 7344, + [7348] = 841, + [7349] = 7328, + [7350] = 844, + [7351] = 7338, + [7352] = 7331, + [7353] = 7330, + [7354] = 840, + [7355] = 4039, + [7356] = 849, + [7357] = 4027, + [7358] = 7331, + [7359] = 7359, + [7360] = 3489, + [7361] = 7328, + [7362] = 7362, + [7363] = 7331, + [7364] = 1120, + [7365] = 7332, + [7366] = 1119, + [7367] = 1115, + [7368] = 7328, + [7369] = 7338, + [7370] = 3899, + [7371] = 1118, + [7372] = 7330, + [7373] = 7344, + [7374] = 7332, + [7375] = 7375, + [7376] = 1117, + [7377] = 7330, + [7378] = 7344, + [7379] = 7328, + [7380] = 7331, + [7381] = 920, + [7382] = 7328, + [7383] = 7338, + [7384] = 7338, + [7385] = 7331, + [7386] = 7338, + [7387] = 7338, + [7388] = 7330, + [7389] = 7344, + [7390] = 7331, + [7391] = 7338, + [7392] = 7330, + [7393] = 7331, + [7394] = 7338, + [7395] = 7332, + [7396] = 7331, + [7397] = 3853, + [7398] = 7338, + [7399] = 7338, + [7400] = 3870, + [7401] = 7328, + [7402] = 7338, + [7403] = 7330, + [7404] = 7328, + [7405] = 7344, + [7406] = 7332, + [7407] = 7407, + [7408] = 7408, + [7409] = 7409, + [7410] = 7410, + [7411] = 7411, + [7412] = 7408, + [7413] = 7413, + [7414] = 7408, + [7415] = 7415, + [7416] = 7416, + [7417] = 7417, + [7418] = 7416, + [7419] = 7416, + [7420] = 7411, + [7421] = 7411, + [7422] = 7408, + [7423] = 7409, + [7424] = 7413, + [7425] = 7410, + [7426] = 7411, + [7427] = 7411, + [7428] = 7416, + [7429] = 7416, + [7430] = 7408, + [7431] = 7408, + [7432] = 7415, + [7433] = 7409, + [7434] = 7413, + [7435] = 7413, + [7436] = 7415, + [7437] = 7408, + [7438] = 7438, + [7439] = 7438, + [7440] = 7438, + [7441] = 7411, + [7442] = 7442, + [7443] = 7408, + [7444] = 7410, + [7445] = 7438, + [7446] = 7410, + [7447] = 7409, + [7448] = 7416, + [7449] = 7410, + [7450] = 7408, + [7451] = 7411, + [7452] = 7438, + [7453] = 7413, + [7454] = 7438, + [7455] = 7408, + [7456] = 7408, + [7457] = 7413, + [7458] = 7416, + [7459] = 7417, + [7460] = 7413, + [7461] = 7438, + [7462] = 7413, + [7463] = 7415, + [7464] = 7409, + [7465] = 7415, + [7466] = 7409, + [7467] = 7438, + [7468] = 7411, + [7469] = 7410, + [7470] = 7410, + [7471] = 7410, + [7472] = 7442, + [7473] = 7438, + [7474] = 7409, + [7475] = 7438, + [7476] = 7410, + [7477] = 7438, + [7478] = 7411, + [7479] = 7408, + [7480] = 7410, + [7481] = 7481, + [7482] = 7410, + [7483] = 7415, + [7484] = 7416, + [7485] = 844, + [7486] = 7413, + [7487] = 7410, + [7488] = 7411, + [7489] = 7410, + [7490] = 7408, + [7491] = 7417, + [7492] = 7409, + [7493] = 7417, + [7494] = 7409, + [7495] = 849, + [7496] = 7496, + [7497] = 7407, + [7498] = 7413, + [7499] = 7410, + [7500] = 7409, + [7501] = 7409, + [7502] = 7442, + [7503] = 7408, + [7504] = 7408, + [7505] = 7416, + [7506] = 7409, + [7507] = 7407, + [7508] = 7410, + [7509] = 7442, + [7510] = 7413, + [7511] = 7409, + [7512] = 7411, + [7513] = 7410, + [7514] = 7409, + [7515] = 7416, + [7516] = 7409, + [7517] = 7408, + [7518] = 7417, + [7519] = 7438, + [7520] = 7410, + [7521] = 7415, + [7522] = 7411, + [7523] = 7408, + [7524] = 7407, + [7525] = 7413, + [7526] = 7411, + [7527] = 7410, + [7528] = 7413, + [7529] = 7416, + [7530] = 7413, + [7531] = 7407, + [7532] = 7411, + [7533] = 7442, + [7534] = 7442, + [7535] = 7416, + [7536] = 7408, + [7537] = 7409, + [7538] = 7442, + [7539] = 7416, + [7540] = 860, + [7541] = 7411, + [7542] = 7407, + [7543] = 7407, + [7544] = 7417, + [7545] = 7411, + [7546] = 7442, + [7547] = 7415, + [7548] = 840, + [7549] = 859, + [7550] = 7416, + [7551] = 7407, + [7552] = 7410, + [7553] = 7407, + [7554] = 7413, + [7555] = 7417, + [7556] = 7409, + [7557] = 7409, + [7558] = 7408, + [7559] = 7410, + [7560] = 7409, + [7561] = 7416, + [7562] = 7410, + [7563] = 7411, + [7564] = 7408, + [7565] = 7411, + [7566] = 7413, + [7567] = 7413, + [7568] = 7413, + [7569] = 858, + [7570] = 7410, + [7571] = 857, + [7572] = 7410, + [7573] = 7409, + [7574] = 7410, + [7575] = 7411, + [7576] = 7408, + [7577] = 7413, + [7578] = 7408, + [7579] = 7416, + [7580] = 7411, + [7581] = 7410, + [7582] = 7417, + [7583] = 7407, + [7584] = 7411, + [7585] = 7416, + [7586] = 7415, + [7587] = 7407, + [7588] = 7411, + [7589] = 7442, + [7590] = 7408, + [7591] = 7438, + [7592] = 7413, + [7593] = 7408, + [7594] = 7416, + [7595] = 7408, + [7596] = 7442, + [7597] = 7413, + [7598] = 7415, + [7599] = 7408, + [7600] = 7413, + [7601] = 7442, + [7602] = 7415, + [7603] = 7417, + [7604] = 7409, + [7605] = 7416, + [7606] = 7407, + [7607] = 7416, + [7608] = 7417, + [7609] = 7407, + [7610] = 7416, + [7611] = 7415, + [7612] = 7409, + [7613] = 7413, + [7614] = 7416, + [7615] = 7413, + [7616] = 7409, + [7617] = 7438, + [7618] = 7413, + [7619] = 7416, + [7620] = 7620, + [7621] = 7442, + [7622] = 7410, + [7623] = 7411, + [7624] = 3853, + [7625] = 7415, + [7626] = 7410, + [7627] = 7416, + [7628] = 7407, + [7629] = 7417, + [7630] = 7411, + [7631] = 920, + [7632] = 7409, + [7633] = 7408, + [7634] = 7416, + [7635] = 7442, + [7636] = 7442, + [7637] = 7413, + [7638] = 7409, + [7639] = 7409, + [7640] = 7409, + [7641] = 841, + [7642] = 7642, + [7643] = 7411, + [7644] = 7413, + [7645] = 7416, + [7646] = 7415, + [7647] = 7416, + [7648] = 7648, + [7649] = 7411, + [7650] = 7411, + [7651] = 7651, + [7652] = 7652, + [7653] = 7653, + [7654] = 7654, + [7655] = 7655, + [7656] = 7656, + [7657] = 7656, + [7658] = 7652, + [7659] = 7659, + [7660] = 7656, + [7661] = 7651, + [7662] = 7656, + [7663] = 7652, + [7664] = 7654, + [7665] = 7665, + [7666] = 7666, + [7667] = 7656, + [7668] = 7655, + [7669] = 7651, + [7670] = 7652, + [7671] = 7653, + [7672] = 7656, + [7673] = 7652, + [7674] = 7653, + [7675] = 7651, + [7676] = 7656, + [7677] = 7666, + [7678] = 7654, + [7679] = 7655, + [7680] = 7653, + [7681] = 7652, + [7682] = 7652, + [7683] = 7656, + [7684] = 7651, + [7685] = 7652, + [7686] = 7654, + [7687] = 7652, + [7688] = 7656, + [7689] = 7666, + [7690] = 7655, + [7691] = 7656, + [7692] = 7655, + [7693] = 7654, + [7694] = 924, + [7695] = 7654, + [7696] = 7654, + [7697] = 7666, + [7698] = 7656, + [7699] = 7653, + [7700] = 7666, + [7701] = 7666, + [7702] = 7655, + [7703] = 7666, + [7704] = 7652, + [7705] = 7653, + [7706] = 7654, + [7707] = 7654, + [7708] = 7653, + [7709] = 7659, + [7710] = 7655, + [7711] = 7651, + [7712] = 7654, + [7713] = 7659, + [7714] = 7659, + [7715] = 7652, + [7716] = 7653, + [7717] = 7652, + [7718] = 7651, + [7719] = 7651, + [7720] = 7656, + [7721] = 7655, + [7722] = 7655, + [7723] = 7654, + [7724] = 7620, + [7725] = 7651, + [7726] = 7666, + [7727] = 7654, + [7728] = 7652, + [7729] = 7666, + [7730] = 7651, + [7731] = 7655, + [7732] = 7653, + [7733] = 7656, + [7734] = 7653, + [7735] = 7654, + [7736] = 7651, + [7737] = 7651, + [7738] = 7653, + [7739] = 7651, + [7740] = 7655, + [7741] = 7659, + [7742] = 7651, + [7743] = 7651, + [7744] = 7651, + [7745] = 7666, + [7746] = 7666, + [7747] = 7747, + [7748] = 7653, + [7749] = 7652, + [7750] = 7654, + [7751] = 7654, + [7752] = 7653, + [7753] = 7651, + [7754] = 7652, + [7755] = 7656, + [7756] = 7659, + [7757] = 7656, + [7758] = 7651, + [7759] = 7666, + [7760] = 858, + [7761] = 7655, + [7762] = 7654, + [7763] = 7666, + [7764] = 7651, + [7765] = 7653, + [7766] = 7652, + [7767] = 7655, + [7768] = 7653, + [7769] = 7656, + [7770] = 7655, + [7771] = 7666, + [7772] = 7656, + [7773] = 7652, + [7774] = 859, + [7775] = 7654, + [7776] = 7652, + [7777] = 7659, + [7778] = 7654, + [7779] = 7666, + [7780] = 7666, + [7781] = 7653, + [7782] = 7653, + [7783] = 7654, + [7784] = 7652, + [7785] = 7659, + [7786] = 7656, + [7787] = 7652, + [7788] = 7655, + [7789] = 7652, + [7790] = 7655, + [7791] = 7655, + [7792] = 7665, + [7793] = 7659, + [7794] = 7653, + [7795] = 7653, + [7796] = 7654, + [7797] = 7654, + [7798] = 7652, + [7799] = 7659, + [7800] = 7666, + [7801] = 7652, + [7802] = 7654, + [7803] = 7654, + [7804] = 7666, + [7805] = 857, + [7806] = 7651, + [7807] = 7652, + [7808] = 7655, + [7809] = 7652, + [7810] = 7659, + [7811] = 7651, + [7812] = 7666, + [7813] = 7654, + [7814] = 7656, + [7815] = 7656, + [7816] = 7651, + [7817] = 7666, + [7818] = 7655, + [7819] = 7653, + [7820] = 4051, + [7821] = 7654, + [7822] = 7666, + [7823] = 7655, + [7824] = 7653, + [7825] = 947, + [7826] = 4039, + [7827] = 4027, + [7828] = 3899, + [7829] = 7652, + [7830] = 7655, + [7831] = 3870, + [7832] = 7653, + [7833] = 7659, + [7834] = 7655, + [7835] = 7654, + [7836] = 7654, + [7837] = 7652, + [7838] = 7651, + [7839] = 7666, + [7840] = 7653, + [7841] = 7652, + [7842] = 7655, + [7843] = 7651, + [7844] = 7653, + [7845] = 7652, + [7846] = 7654, + [7847] = 3853, + [7848] = 7652, + [7849] = 7654, + [7850] = 7666, + [7851] = 7652, + [7852] = 7654, + [7853] = 7652, + [7854] = 7652, + [7855] = 7652, + [7856] = 7656, + [7857] = 7654, + [7858] = 7656, + [7859] = 7666, + [7860] = 7655, + [7861] = 7659, + [7862] = 7653, + [7863] = 7652, + [7864] = 7655, + [7865] = 7659, + [7866] = 7655, + [7867] = 7654, + [7868] = 7666, + [7869] = 7651, + [7870] = 7653, + [7871] = 7654, + [7872] = 7651, + [7873] = 7666, + [7874] = 7654, + [7875] = 7652, + [7876] = 7654, + [7877] = 7651, + [7878] = 7655, + [7879] = 7653, + [7880] = 7665, + [7881] = 7665, + [7882] = 7665, + [7883] = 7656, + [7884] = 860, + [7885] = 7885, + [7886] = 7656, + [7887] = 7665, + [7888] = 7666, + [7889] = 7654, + [7890] = 4027, + [7891] = 4039, + [7892] = 4051, + [7893] = 4027, + [7894] = 1120, + [7895] = 1119, + [7896] = 1118, + [7897] = 1118, + [7898] = 1117, + [7899] = 3899, + [7900] = 1115, + [7901] = 1117, + [7902] = 3870, + [7903] = 4051, + [7904] = 5770, + [7905] = 7905, + [7906] = 4039, + [7907] = 7642, + [7908] = 1115, + [7909] = 3899, + [7910] = 841, + [7911] = 3870, + [7912] = 920, + [7913] = 1119, + [7914] = 7914, + [7915] = 1120, + [7916] = 7916, + [7917] = 7917, + [7918] = 7917, + [7919] = 7919, + [7920] = 7917, + [7921] = 7921, + [7922] = 7919, + [7923] = 7923, + [7924] = 7917, + [7925] = 7919, + [7926] = 7923, + [7927] = 7917, + [7928] = 7928, + [7929] = 7929, + [7930] = 7930, + [7931] = 7931, + [7932] = 7919, + [7933] = 7933, + [7934] = 7923, + [7935] = 7935, + [7936] = 7917, + [7937] = 7937, + [7938] = 7923, + [7939] = 7923, + [7940] = 7919, + [7941] = 7919, + [7942] = 7931, + [7943] = 7919, + [7944] = 7917, + [7945] = 7929, + [7946] = 7923, + [7947] = 843, + [7948] = 7923, + [7949] = 7919, + [7950] = 7919, + [7951] = 7951, + [7952] = 7930, + [7953] = 7930, + [7954] = 7921, + [7955] = 7928, + [7956] = 7928, + [7957] = 7930, + [7958] = 7921, + [7959] = 7929, + [7960] = 7960, + [7961] = 7930, + [7962] = 7930, + [7963] = 847, + [7964] = 844, + [7965] = 7919, + [7966] = 7917, + [7967] = 7923, + [7968] = 7917, + [7969] = 7923, + [7970] = 7919, + [7971] = 7930, + [7972] = 7930, + [7973] = 7973, + [7974] = 7923, + [7975] = 7919, + [7976] = 841, + [7977] = 7917, + [7978] = 7919, + [7979] = 7923, + [7980] = 7917, + [7981] = 7935, + [7982] = 7919, + [7983] = 7917, + [7984] = 7917, + [7985] = 7917, + [7986] = 7919, + [7987] = 7931, + [7988] = 7923, + [7989] = 7923, + [7990] = 7935, + [7991] = 7917, + [7992] = 7923, + [7993] = 7919, + [7994] = 7929, + [7995] = 7923, + [7996] = 7917, + [7997] = 7919, + [7998] = 7931, + [7999] = 7921, + [8000] = 7923, + [8001] = 7929, + [8002] = 7923, + [8003] = 7935, + [8004] = 7917, + [8005] = 7930, + [8006] = 7919, + [8007] = 7930, + [8008] = 7923, + [8009] = 7917, + [8010] = 7919, + [8011] = 7931, + [8012] = 7923, + [8013] = 7923, + [8014] = 7935, + [8015] = 7917, + [8016] = 7919, + [8017] = 7919, + [8018] = 7928, + [8019] = 7931, + [8020] = 7917, + [8021] = 7923, + [8022] = 7919, + [8023] = 7923, + [8024] = 7935, + [8025] = 8025, + [8026] = 7917, + [8027] = 8027, + [8028] = 7919, + [8029] = 8029, + [8030] = 7921, + [8031] = 7917, + [8032] = 7921, + [8033] = 7923, + [8034] = 3853, + [8035] = 7919, + [8036] = 7917, + [8037] = 7919, + [8038] = 7917, + [8039] = 7923, + [8040] = 7930, + [8041] = 7930, + [8042] = 7919, + [8043] = 7931, + [8044] = 7917, + [8045] = 7923, + [8046] = 7923, + [8047] = 7935, + [8048] = 7935, + [8049] = 7923, + [8050] = 7931, + [8051] = 7931, + [8052] = 7919, + [8053] = 7930, + [8054] = 7931, + [8055] = 7935, + [8056] = 7917, + [8057] = 7935, + [8058] = 7931, + [8059] = 7921, + [8060] = 7935, + [8061] = 7930, + [8062] = 7930, + [8063] = 7930, + [8064] = 7930, + [8065] = 7930, + [8066] = 7931, + [8067] = 7930, + [8068] = 7917, + [8069] = 7928, + [8070] = 7929, + [8071] = 7930, + [8072] = 7930, + [8073] = 7928, + [8074] = 7935, + [8075] = 7930, + [8076] = 8076, + [8077] = 8077, + [8078] = 8078, + [8079] = 843, + [8080] = 8076, + [8081] = 8081, + [8082] = 8082, + [8083] = 8083, + [8084] = 8082, + [8085] = 8085, + [8086] = 8083, + [8087] = 8076, + [8088] = 8077, + [8089] = 885, + [8090] = 8076, + [8091] = 8091, + [8092] = 8092, + [8093] = 843, + [8094] = 8085, + [8095] = 8095, + [8096] = 8077, + [8097] = 8092, + [8098] = 8098, + [8099] = 8076, + [8100] = 8078, + [8101] = 8082, + [8102] = 8091, + [8103] = 8077, + [8104] = 8092, + [8105] = 8095, + [8106] = 8077, + [8107] = 8091, + [8108] = 8085, + [8109] = 8083, + [8110] = 8077, + [8111] = 8092, + [8112] = 8092, + [8113] = 8113, + [8114] = 8083, + [8115] = 8083, + [8116] = 8116, + [8117] = 8117, + [8118] = 8078, + [8119] = 8119, + [8120] = 8092, + [8121] = 8077, + [8122] = 8077, + [8123] = 8082, + [8124] = 8078, + [8125] = 8125, + [8126] = 8082, + [8127] = 8092, + [8128] = 8095, + [8129] = 8091, + [8130] = 8091, + [8131] = 8076, + [8132] = 8095, + [8133] = 8078, + [8134] = 8092, + [8135] = 8091, + [8136] = 8095, + [8137] = 8077, + [8138] = 8082, + [8139] = 8092, + [8140] = 8092, + [8141] = 8083, + [8142] = 8076, + [8143] = 8078, + [8144] = 8083, + [8145] = 8095, + [8146] = 8146, + [8147] = 8125, + [8148] = 8085, + [8149] = 8078, + [8150] = 8077, + [8151] = 8119, + [8152] = 8125, + [8153] = 8078, + [8154] = 8082, + [8155] = 8082, + [8156] = 8156, + [8157] = 8095, + [8158] = 8092, + [8159] = 8095, + [8160] = 844, + [8161] = 8085, + [8162] = 8117, + [8163] = 8117, + [8164] = 8078, + [8165] = 8085, + [8166] = 8078, + [8167] = 8076, + [8168] = 8091, + [8169] = 8095, + [8170] = 8117, + [8171] = 8082, + [8172] = 8092, + [8173] = 8077, + [8174] = 8085, + [8175] = 8076, + [8176] = 8078, + [8177] = 841, + [8178] = 8082, + [8179] = 8082, + [8180] = 8076, + [8181] = 8083, + [8182] = 8078, + [8183] = 8091, + [8184] = 8085, + [8185] = 8082, + [8186] = 8083, + [8187] = 8091, + [8188] = 8078, + [8189] = 8078, + [8190] = 8076, + [8191] = 8091, + [8192] = 8091, + [8193] = 8119, + [8194] = 8095, + [8195] = 8078, + [8196] = 8095, + [8197] = 8083, + [8198] = 8091, + [8199] = 8082, + [8200] = 8078, + [8201] = 8076, + [8202] = 8092, + [8203] = 8078, + [8204] = 8091, + [8205] = 8076, + [8206] = 8125, + [8207] = 8085, + [8208] = 8077, + [8209] = 8078, + [8210] = 8077, + [8211] = 8077, + [8212] = 8092, + [8213] = 8083, + [8214] = 8214, + [8215] = 8078, + [8216] = 8091, + [8217] = 8082, + [8218] = 8076, + [8219] = 8092, + [8220] = 8085, + [8221] = 8078, + [8222] = 8085, + [8223] = 8223, + [8224] = 8083, + [8225] = 8095, + [8226] = 8077, + [8227] = 8085, + [8228] = 8082, + [8229] = 8085, + [8230] = 8091, + [8231] = 8076, + [8232] = 8085, + [8233] = 8085, + [8234] = 8083, + [8235] = 8082, + [8236] = 8076, + [8237] = 8082, + [8238] = 8092, + [8239] = 8085, + [8240] = 8078, + [8241] = 8095, + [8242] = 8076, + [8243] = 8076, + [8244] = 8095, + [8245] = 8083, + [8246] = 8091, + [8247] = 8085, + [8248] = 8095, + [8249] = 8085, + [8250] = 8082, + [8251] = 8091, + [8252] = 8077, + [8253] = 8078, + [8254] = 8092, + [8255] = 8076, + [8256] = 8082, + [8257] = 8092, + [8258] = 8078, + [8259] = 8077, + [8260] = 8077, + [8261] = 8078, + [8262] = 8083, + [8263] = 8091, + [8264] = 8095, + [8265] = 8085, + [8266] = 8077, + [8267] = 8083, + [8268] = 8091, + [8269] = 8082, + [8270] = 8085, + [8271] = 8095, + [8272] = 8092, + [8273] = 8091, + [8274] = 8076, + [8275] = 8095, + [8276] = 8083, + [8277] = 8092, + [8278] = 8078, + [8279] = 8279, + [8280] = 8085, + [8281] = 8083, + [8282] = 8085, + [8283] = 8095, + [8284] = 8092, + [8285] = 8082, + [8286] = 8117, + [8287] = 8091, + [8288] = 8083, + [8289] = 8085, + [8290] = 8076, + [8291] = 8083, + [8292] = 8119, + [8293] = 8092, + [8294] = 8077, + [8295] = 8076, + [8296] = 8092, + [8297] = 8095, + [8298] = 8085, + [8299] = 8077, + [8300] = 8095, + [8301] = 8091, + [8302] = 8091, + [8303] = 8095, + [8304] = 8083, + [8305] = 8082, + [8306] = 8083, + [8307] = 8082, + [8308] = 8077, + [8309] = 8092, + [8310] = 8076, + [8311] = 8119, + [8312] = 8117, + [8313] = 8091, + [8314] = 1025, + [8315] = 8125, + [8316] = 8083, + [8317] = 8083, + [8318] = 8125, + [8319] = 8085, + [8320] = 8082, + [8321] = 8091, + [8322] = 8095, + [8323] = 8077, + [8324] = 8082, + [8325] = 8076, + [8326] = 8077, + [8327] = 8076, + [8328] = 8117, + [8329] = 8095, + [8330] = 8076, + [8331] = 8119, + [8332] = 8085, + [8333] = 8119, + [8334] = 8092, + [8335] = 8117, + [8336] = 8078, + [8337] = 8082, + [8338] = 8092, + [8339] = 8095, + [8340] = 8076, + [8341] = 8082, + [8342] = 8117, + [8343] = 883, + [8344] = 8119, + [8345] = 8091, + [8346] = 8078, + [8347] = 8083, + [8348] = 8085, + [8349] = 8091, + [8350] = 8119, + [8351] = 877, + [8352] = 8083, + [8353] = 8095, + [8354] = 8354, + [8355] = 8077, + [8356] = 8077, + [8357] = 8083, + [8358] = 8077, + [8359] = 8095, + [8360] = 8092, + [8361] = 920, + [8362] = 1030, + [8363] = 976, + [8364] = 979, + [8365] = 972, + [8366] = 8366, + [8367] = 1012, + [8368] = 920, + [8369] = 1032, + [8370] = 959, + [8371] = 969, + [8372] = 7747, + [8373] = 849, + [8374] = 846, + [8375] = 837, + [8376] = 836, + [8377] = 845, + [8378] = 847, + [8379] = 884, + [8380] = 855, + [8381] = 848, + [8382] = 840, + [8383] = 855, + [8384] = 884, + [8385] = 8385, + [8386] = 841, + [8387] = 870, + [8388] = 855, + [8389] = 8385, + [8390] = 869, + [8391] = 844, + [8392] = 838, + [8393] = 836, + [8394] = 8394, + [8395] = 8385, + [8396] = 864, + [8397] = 845, + [8398] = 945, + [8399] = 848, + [8400] = 8385, + [8401] = 8385, + [8402] = 867, + [8403] = 837, + [8404] = 884, + [8405] = 846, + [8406] = 8385, + [8407] = 866, + [8408] = 862, + [8409] = 858, + [8410] = 8410, + [8411] = 945, + [8412] = 869, + [8413] = 7620, + [8414] = 8414, + [8415] = 868, + [8416] = 865, + [8417] = 8414, + [8418] = 8414, + [8419] = 872, + [8420] = 867, + [8421] = 8414, + [8422] = 8414, + [8423] = 8414, + [8424] = 8414, + [8425] = 8414, + [8426] = 8414, + [8427] = 8414, + [8428] = 8414, + [8429] = 8414, + [8430] = 8414, + [8431] = 866, + [8432] = 8432, + [8433] = 873, + [8434] = 8414, + [8435] = 860, + [8436] = 8414, + [8437] = 8414, + [8438] = 8414, + [8439] = 870, + [8440] = 864, + [8441] = 8414, + [8442] = 863, + [8443] = 850, + [8444] = 8414, + [8445] = 8414, + [8446] = 859, + [8447] = 871, + [8448] = 8414, + [8449] = 8414, + [8450] = 857, + [8451] = 8414, + [8452] = 8414, + [8453] = 927, + [8454] = 8454, + [8455] = 3489, + [8456] = 8456, + [8457] = 886, + [8458] = 1008, + [8459] = 928, + [8460] = 8456, + [8461] = 904, + [8462] = 8456, + [8463] = 863, + [8464] = 873, + [8465] = 850, + [8466] = 937, + [8467] = 925, + [8468] = 8468, + [8469] = 922, + [8470] = 890, + [8471] = 8471, + [8472] = 8456, + [8473] = 908, + [8474] = 892, + [8475] = 891, + [8476] = 1019, + [8477] = 894, + [8478] = 8471, + [8479] = 903, + [8480] = 8471, + [8481] = 8456, + [8482] = 906, + [8483] = 900, + [8484] = 973, + [8485] = 930, + [8486] = 916, + [8487] = 920, + [8488] = 7620, + [8489] = 8471, + [8490] = 862, + [8491] = 918, + [8492] = 865, + [8493] = 915, + [8494] = 8471, + [8495] = 8471, + [8496] = 968, + [8497] = 977, + [8498] = 913, + [8499] = 966, + [8500] = 929, + [8501] = 926, + [8502] = 8502, + [8503] = 868, + [8504] = 960, + [8505] = 8456, + [8506] = 961, + [8507] = 871, + [8508] = 872, + [8509] = 8509, + [8510] = 8509, + [8511] = 8511, + [8512] = 1008, + [8513] = 8513, + [8514] = 963, + [8515] = 977, + [8516] = 1026, + [8517] = 8513, + [8518] = 8509, + [8519] = 968, + [8520] = 8520, + [8521] = 8513, + [8522] = 1070, + [8523] = 8523, + [8524] = 8524, + [8525] = 8509, + [8526] = 8524, + [8527] = 1004, + [8528] = 8513, + [8529] = 928, + [8530] = 1028, + [8531] = 8509, + [8532] = 8523, + [8533] = 8524, + [8534] = 8511, + [8535] = 8511, + [8536] = 8511, + [8537] = 8524, + [8538] = 1118, + [8539] = 8523, + [8540] = 8509, + [8541] = 934, + [8542] = 8509, + [8543] = 8509, + [8544] = 8523, + [8545] = 8523, + [8546] = 8511, + [8547] = 8523, + [8548] = 1120, + [8549] = 8524, + [8550] = 8511, + [8551] = 8524, + [8552] = 8552, + [8553] = 1119, + [8554] = 8509, + [8555] = 8513, + [8556] = 8511, + [8557] = 8511, + [8558] = 8520, + [8559] = 8509, + [8560] = 8560, + [8561] = 8509, + [8562] = 8524, + [8563] = 8523, + [8564] = 8524, + [8565] = 8511, + [8566] = 922, + [8567] = 8523, + [8568] = 8509, + [8569] = 8523, + [8570] = 8524, + [8571] = 8511, + [8572] = 8511, + [8573] = 8511, + [8574] = 980, + [8575] = 973, + [8576] = 8509, + [8577] = 918, + [8578] = 8524, + [8579] = 903, + [8580] = 937, + [8581] = 8511, + [8582] = 843, + [8583] = 966, + [8584] = 8511, + [8585] = 8520, + [8586] = 8509, + [8587] = 925, + [8588] = 8509, + [8589] = 8524, + [8590] = 8523, + [8591] = 8523, + [8592] = 8523, + [8593] = 8509, + [8594] = 8524, + [8595] = 8509, + [8596] = 8520, + [8597] = 8511, + [8598] = 8524, + [8599] = 8524, + [8600] = 8523, + [8601] = 8523, + [8602] = 894, + [8603] = 932, + [8604] = 892, + [8605] = 929, + [8606] = 8511, + [8607] = 8523, + [8608] = 1109, + [8609] = 8511, + [8610] = 8610, + [8611] = 1016, + [8612] = 8509, + [8613] = 8524, + [8614] = 8523, + [8615] = 8523, + [8616] = 8509, + [8617] = 886, + [8618] = 8513, + [8619] = 1117, + [8620] = 1019, + [8621] = 8520, + [8622] = 8511, + [8623] = 8509, + [8624] = 956, + [8625] = 8511, + [8626] = 8524, + [8627] = 8524, + [8628] = 8523, + [8629] = 8509, + [8630] = 8509, + [8631] = 8509, + [8632] = 8520, + [8633] = 8523, + [8634] = 8524, + [8635] = 8511, + [8636] = 890, + [8637] = 1115, + [8638] = 916, + [8639] = 8509, + [8640] = 8511, + [8641] = 8523, + [8642] = 908, + [8643] = 915, + [8644] = 891, + [8645] = 8511, + [8646] = 914, + [8647] = 900, + [8648] = 8524, + [8649] = 8509, + [8650] = 926, + [8651] = 8523, + [8652] = 8524, + [8653] = 8511, + [8654] = 1023, + [8655] = 8524, + [8656] = 8511, + [8657] = 8523, + [8658] = 8524, + [8659] = 8523, + [8660] = 8509, + [8661] = 904, + [8662] = 960, + [8663] = 906, + [8664] = 8524, + [8665] = 913, + [8666] = 961, + [8667] = 927, + [8668] = 8511, + [8669] = 8509, + [8670] = 8523, + [8671] = 8524, + [8672] = 8524, + [8673] = 8511, + [8674] = 8523, + [8675] = 8524, + [8676] = 8523, + [8677] = 8511, + [8678] = 930, + [8679] = 8523, + [8680] = 8524, + [8681] = 840, + [8682] = 8682, + [8683] = 849, + [8684] = 1021, + [8685] = 1111, + [8686] = 8686, + [8687] = 8687, + [8688] = 8682, + [8689] = 8682, + [8690] = 8682, + [8691] = 8691, + [8692] = 980, + [8693] = 8682, + [8694] = 8687, + [8695] = 8687, + [8696] = 8687, + [8697] = 8686, + [8698] = 8698, + [8699] = 8682, + [8700] = 8687, + [8701] = 8686, + [8702] = 8686, + [8703] = 8686, + [8704] = 8686, + [8705] = 956, + [8706] = 952, + [8707] = 8698, + [8708] = 8698, + [8709] = 8698, + [8710] = 953, + [8711] = 955, + [8712] = 8687, + [8713] = 8713, + [8714] = 8686, + [8715] = 8682, + [8716] = 8687, + [8717] = 932, + [8718] = 8687, + [8719] = 8686, + [8720] = 8682, + [8721] = 8698, + [8722] = 8682, + [8723] = 8687, + [8724] = 8686, + [8725] = 8725, + [8726] = 8687, + [8727] = 8686, + [8728] = 8698, + [8729] = 8698, + [8730] = 957, + [8731] = 8682, + [8732] = 958, + [8733] = 970, + [8734] = 8682, + [8735] = 8735, + [8736] = 8698, + [8737] = 8698, + [8738] = 8698, + [8739] = 8682, + [8740] = 8740, + [8741] = 8687, + [8742] = 8687, + [8743] = 8686, + [8744] = 1016, + [8745] = 8698, + [8746] = 8686, + [8747] = 8698, + [8748] = 963, + [8749] = 8698, + [8750] = 8682, + [8751] = 8687, + [8752] = 8686, + [8753] = 8686, + [8754] = 8698, + [8755] = 951, + [8756] = 8698, + [8757] = 8757, + [8758] = 8686, + [8759] = 1031, + [8760] = 8686, + [8761] = 8687, + [8762] = 8686, + [8763] = 8698, + [8764] = 8687, + [8765] = 8698, + [8766] = 8698, + [8767] = 8682, + [8768] = 1028, + [8769] = 1026, + [8770] = 971, + [8771] = 8682, + [8772] = 934, + [8773] = 978, + [8774] = 8682, + [8775] = 962, + [8776] = 1109, + [8777] = 8687, + [8778] = 8698, + [8779] = 8779, + [8780] = 8686, + [8781] = 8687, + [8782] = 8682, + [8783] = 8682, + [8784] = 8698, + [8785] = 8785, + [8786] = 991, + [8787] = 3853, + [8788] = 1005, + [8789] = 8698, + [8790] = 8687, + [8791] = 8686, + [8792] = 8687, + [8793] = 1027, + [8794] = 8794, + [8795] = 8698, + [8796] = 8682, + [8797] = 8687, + [8798] = 8686, + [8799] = 8799, + [8800] = 8800, + [8801] = 8801, + [8802] = 8687, + [8803] = 992, + [8804] = 8698, + [8805] = 8682, + [8806] = 8682, + [8807] = 8686, + [8808] = 8686, + [8809] = 8809, + [8810] = 1070, + [8811] = 8811, + [8812] = 8686, + [8813] = 8686, + [8814] = 8682, + [8815] = 8687, + [8816] = 8698, + [8817] = 8686, + [8818] = 8687, + [8819] = 8687, + [8820] = 8682, + [8821] = 1004, + [8822] = 8682, + [8823] = 994, + [8824] = 8687, + [8825] = 1007, + [8826] = 1002, + [8827] = 8682, + [8828] = 1003, + [8829] = 993, + [8830] = 8682, + [8831] = 8686, + [8832] = 1162, + [8833] = 965, + [8834] = 8698, + [8835] = 8835, + [8836] = 8698, + [8837] = 8682, + [8838] = 8687, + [8839] = 8687, + [8840] = 8698, + [8841] = 8686, + [8842] = 8842, + [8843] = 965, + [8844] = 8844, + [8845] = 8845, + [8846] = 8846, + [8847] = 8847, + [8848] = 8848, + [8849] = 8847, + [8850] = 8850, + [8851] = 8851, + [8852] = 8852, + [8853] = 8851, + [8854] = 8852, + [8855] = 8855, + [8856] = 8852, + [8857] = 8851, + [8858] = 8846, + [8859] = 8859, + [8860] = 8860, + [8861] = 8861, + [8862] = 8862, + [8863] = 8863, + [8864] = 8864, + [8865] = 8844, + [8866] = 8850, + [8867] = 8845, + [8868] = 8868, + [8869] = 8869, + [8870] = 8870, + [8871] = 8868, + [8872] = 8872, + [8873] = 8873, + [8874] = 8852, + [8875] = 8855, + [8876] = 8850, + [8877] = 8877, + [8878] = 8863, + [8879] = 8879, + [8880] = 8880, + [8881] = 8869, + [8882] = 933, + [8883] = 8883, + [8884] = 8884, + [8885] = 8885, + [8886] = 8860, + [8887] = 8887, + [8888] = 8855, + [8889] = 1002, + [8890] = 8890, + [8891] = 8891, + [8892] = 8868, + [8893] = 8863, + [8894] = 8855, + [8895] = 8895, + [8896] = 8879, + [8897] = 1005, + [8898] = 8873, + [8899] = 8852, + [8900] = 8883, + [8901] = 8887, + [8902] = 8851, + [8903] = 8903, + [8904] = 8847, + [8905] = 878, + [8906] = 877, + [8907] = 8855, + [8908] = 8850, + [8909] = 8861, + [8910] = 8910, + [8911] = 8911, + [8912] = 8910, + [8913] = 8861, + [8914] = 8860, + [8915] = 8860, + [8916] = 8851, + [8917] = 8917, + [8918] = 8918, + [8919] = 8919, + [8920] = 8850, + [8921] = 8868, + [8922] = 8922, + [8923] = 8847, + [8924] = 8873, + [8925] = 1043, + [8926] = 8926, + [8927] = 1042, + [8928] = 8922, + [8929] = 8929, + [8930] = 8930, + [8931] = 8845, + [8932] = 8932, + [8933] = 8863, + [8934] = 8873, + [8935] = 8873, + [8936] = 8936, + [8937] = 8937, + [8938] = 874, + [8939] = 8939, + [8940] = 8910, + [8941] = 8868, + [8942] = 8847, + [8943] = 8891, + [8944] = 8852, + [8945] = 8922, + [8946] = 8946, + [8947] = 8891, + [8948] = 8919, + [8949] = 8903, + [8950] = 1041, + [8951] = 8869, + [8952] = 8932, + [8953] = 8887, + [8954] = 8852, + [8955] = 8848, + [8956] = 8910, + [8957] = 8957, + [8958] = 8958, + [8959] = 8932, + [8960] = 1039, + [8961] = 8855, + [8962] = 8962, + [8963] = 8860, + [8964] = 8861, + [8965] = 8883, + [8966] = 8966, + [8967] = 8879, + [8968] = 951, + [8969] = 8863, + [8970] = 8844, + [8971] = 8845, + [8972] = 970, + [8973] = 8846, + [8974] = 8863, + [8975] = 8932, + [8976] = 1007, + [8977] = 8903, + [8978] = 8932, + [8979] = 962, + [8980] = 8851, + [8981] = 8869, + [8982] = 8855, + [8983] = 8903, + [8984] = 8984, + [8985] = 8919, + [8986] = 1003, + [8987] = 8855, + [8988] = 8855, + [8989] = 8852, + [8990] = 8850, + [8991] = 8847, + [8992] = 855, + [8993] = 8852, + [8994] = 8860, + [8995] = 8995, + [8996] = 8860, + [8997] = 8997, + [8998] = 8847, + [8999] = 8919, + [9000] = 8861, + [9001] = 8873, + [9002] = 8868, + [9003] = 8868, + [9004] = 1021, + [9005] = 8966, + [9006] = 8850, + [9007] = 8903, + [9008] = 8863, + [9009] = 8869, + [9010] = 8919, + [9011] = 884, + [9012] = 9012, + [9013] = 8869, + [9014] = 8855, + [9015] = 9015, + [9016] = 9016, + [9017] = 8910, + [9018] = 8852, + [9019] = 9019, + [9020] = 9020, + [9021] = 8861, + [9022] = 8932, + [9023] = 8873, + [9024] = 8847, + [9025] = 9025, + [9026] = 8910, + [9027] = 8850, + [9028] = 8860, + [9029] = 8922, + [9030] = 8868, + [9031] = 8851, + [9032] = 8922, + [9033] = 8863, + [9034] = 8922, + [9035] = 8868, + [9036] = 8932, + [9037] = 8891, + [9038] = 8848, + [9039] = 8845, + [9040] = 9040, + [9041] = 8868, + [9042] = 8851, + [9043] = 9043, + [9044] = 8848, + [9045] = 9045, + [9046] = 8860, + [9047] = 8852, + [9048] = 8919, + [9049] = 8860, + [9050] = 8861, + [9051] = 8861, + [9052] = 8852, + [9053] = 8873, + [9054] = 1024, + [9055] = 8966, + [9056] = 9056, + [9057] = 8869, + [9058] = 8861, + [9059] = 8879, + [9060] = 8850, + [9061] = 8861, + [9062] = 8868, + [9063] = 8903, + [9064] = 8855, + [9065] = 936, + [9066] = 9066, + [9067] = 8860, + [9068] = 8883, + [9069] = 8852, + [9070] = 8855, + [9071] = 952, + [9072] = 8860, + [9073] = 8852, + [9074] = 8887, + [9075] = 8861, + [9076] = 953, + [9077] = 8852, + [9078] = 9078, + [9079] = 955, + [9080] = 8891, + [9081] = 8855, + [9082] = 994, + [9083] = 8860, + [9084] = 8855, + [9085] = 8869, + [9086] = 8860, + [9087] = 8861, + [9088] = 957, + [9089] = 8852, + [9090] = 8855, + [9091] = 958, + [9092] = 993, + [9093] = 8922, + [9094] = 8860, + [9095] = 885, + [9096] = 8861, + [9097] = 8919, + [9098] = 8887, + [9099] = 8852, + [9100] = 8883, + [9101] = 1031, + [9102] = 1027, + [9103] = 8863, + [9104] = 8855, + [9105] = 8845, + [9106] = 971, + [9107] = 8879, + [9108] = 8861, + [9109] = 8861, + [9110] = 978, + [9111] = 8851, + [9112] = 8860, + [9113] = 8861, + [9114] = 8966, + [9115] = 8844, + [9116] = 8852, + [9117] = 8855, + [9118] = 8844, + [9119] = 8966, + [9120] = 8873, + [9121] = 991, + [9122] = 8966, + [9123] = 9123, + [9124] = 8861, + [9125] = 992, + [9126] = 8860, + [9127] = 8861, + [9128] = 8848, + [9129] = 8852, + [9130] = 8855, + [9131] = 8891, + [9132] = 8860, + [9133] = 8848, + [9134] = 8869, + [9135] = 8846, + [9136] = 8847, + [9137] = 8860, + [9138] = 8861, + [9139] = 8860, + [9140] = 8844, + [9141] = 8852, + [9142] = 8855, + [9143] = 995, + [9144] = 8903, + [9145] = 8887, + [9146] = 3853, + [9147] = 8879, + [9148] = 8883, + [9149] = 9149, + [9150] = 9150, + [9151] = 9150, + [9152] = 9152, + [9153] = 1080, + [9154] = 9154, + [9155] = 1069, + [9156] = 9156, + [9157] = 1084, + [9158] = 9158, + [9159] = 1087, + [9160] = 9160, + [9161] = 9161, + [9162] = 9162, + [9163] = 1098, + [9164] = 1116, + [9165] = 1117, + [9166] = 9166, + [9167] = 9167, + [9168] = 9168, + [9169] = 9156, + [9170] = 9162, + [9171] = 9156, + [9172] = 9162, + [9173] = 9173, + [9174] = 9174, + [9175] = 1133, + [9176] = 1135, + [9177] = 9162, + [9178] = 1138, + [9179] = 9150, + [9180] = 9156, + [9181] = 1120, + [9182] = 9173, + [9183] = 1140, + [9184] = 9149, + [9185] = 1119, + [9186] = 1146, + [9187] = 1214, + [9188] = 1212, + [9189] = 9152, + [9190] = 1211, + [9191] = 9173, + [9192] = 1201, + [9193] = 1199, + [9194] = 1132, + [9195] = 1198, + [9196] = 1118, + [9197] = 9197, + [9198] = 4051, + [9199] = 4039, + [9200] = 9173, + [9201] = 4027, + [9202] = 1195, + [9203] = 3899, + [9204] = 1186, + [9205] = 1193, + [9206] = 9206, + [9207] = 9167, + [9208] = 3870, + [9209] = 9162, + [9210] = 1192, + [9211] = 9149, + [9212] = 1068, + [9213] = 1115, + [9214] = 1177, + [9215] = 1176, + [9216] = 9173, + [9217] = 1175, + [9218] = 9167, + [9219] = 9167, + [9220] = 1183, + [9221] = 1173, + [9222] = 1172, + [9223] = 9162, + [9224] = 9224, + [9225] = 9156, + [9226] = 9226, + [9227] = 1171, + [9228] = 9167, + [9229] = 1166, + [9230] = 9152, + [9231] = 1147, + [9232] = 9162, + [9233] = 9156, + [9234] = 1123, + [9235] = 9206, + [9236] = 9224, + [9237] = 9237, + [9238] = 1110, + [9239] = 1145, + [9240] = 9237, + [9241] = 9241, + [9242] = 1096, + [9243] = 1095, + [9244] = 9173, + [9245] = 1093, + [9246] = 1090, + [9247] = 1062, + [9248] = 9156, + [9249] = 9167, + [9250] = 9162, + [9251] = 9156, + [9252] = 9173, + [9253] = 9156, + [9254] = 9173, + [9255] = 9173, + [9256] = 9173, + [9257] = 9162, + [9258] = 9162, + [9259] = 9152, + [9260] = 9149, + [9261] = 1049, + [9262] = 9206, + [9263] = 9150, + [9264] = 9161, + [9265] = 9154, + [9266] = 9266, + [9267] = 9173, + [9268] = 9268, + [9269] = 9237, + [9270] = 9173, + [9271] = 9156, + [9272] = 9162, + [9273] = 9156, + [9274] = 9152, + [9275] = 9156, + [9276] = 9162, + [9277] = 9152, + [9278] = 1139, + [9279] = 9162, + [9280] = 9224, + [9281] = 9162, + [9282] = 9156, + [9283] = 9149, + [9284] = 9173, + [9285] = 9150, + [9286] = 9154, + [9287] = 9152, + [9288] = 9149, + [9289] = 9289, + [9290] = 9290, + [9291] = 9291, + [9292] = 9150, + [9293] = 9293, + [9294] = 9266, + [9295] = 1178, + [9296] = 9152, + [9297] = 1065, + [9298] = 9154, + [9299] = 9173, + [9300] = 9152, + [9301] = 9149, + [9302] = 9302, + [9303] = 9303, + [9304] = 9150, + [9305] = 9305, + [9306] = 1159, + [9307] = 9307, + [9308] = 9173, + [9309] = 9154, + [9310] = 9154, + [9311] = 9173, + [9312] = 1044, + [9313] = 9152, + [9314] = 1041, + [9315] = 9315, + [9316] = 9149, + [9317] = 1194, + [9318] = 914, + [9319] = 9149, + [9320] = 9150, + [9321] = 9321, + [9322] = 9206, + [9323] = 9150, + [9324] = 1130, + [9325] = 9154, + [9326] = 9326, + [9327] = 9152, + [9328] = 9149, + [9329] = 9329, + [9330] = 9149, + [9331] = 9154, + [9332] = 9150, + [9333] = 9333, + [9334] = 9266, + [9335] = 9268, + [9336] = 9336, + [9337] = 9156, + [9338] = 9154, + [9339] = 9173, + [9340] = 9162, + [9341] = 9341, + [9342] = 9152, + [9343] = 9343, + [9344] = 9149, + [9345] = 9156, + [9346] = 9162, + [9347] = 1122, + [9348] = 9206, + [9349] = 1042, + [9350] = 1043, + [9351] = 9161, + [9352] = 1039, + [9353] = 9150, + [9354] = 9150, + [9355] = 9173, + [9356] = 9161, + [9357] = 9268, + [9358] = 9154, + [9359] = 9266, + [9360] = 9266, + [9361] = 9266, + [9362] = 9237, + [9363] = 9224, + [9364] = 9152, + [9365] = 9149, + [9366] = 9336, + [9367] = 9206, + [9368] = 9150, + [9369] = 9161, + [9370] = 9336, + [9371] = 9154, + [9372] = 9154, + [9373] = 9321, + [9374] = 9150, + [9375] = 9149, + [9376] = 9152, + [9377] = 9341, + [9378] = 936, + [9379] = 9154, + [9380] = 9154, + [9381] = 9150, + [9382] = 9336, + [9383] = 9341, + [9384] = 9321, + [9385] = 1125, + [9386] = 9173, + [9387] = 9161, + [9388] = 9152, + [9389] = 9154, + [9390] = 9390, + [9391] = 9150, + [9392] = 9149, + [9393] = 9266, + [9394] = 9152, + [9395] = 9154, + [9396] = 9149, + [9397] = 9150, + [9398] = 9173, + [9399] = 9149, + [9400] = 933, + [9401] = 9162, + [9402] = 9156, + [9403] = 9321, + [9404] = 9152, + [9405] = 9154, + [9406] = 9150, + [9407] = 9149, + [9408] = 9152, + [9409] = 9154, + [9410] = 9150, + [9411] = 9173, + [9412] = 9149, + [9413] = 9413, + [9414] = 9152, + [9415] = 9150, + [9416] = 9149, + [9417] = 9156, + [9418] = 9268, + [9419] = 9419, + [9420] = 9268, + [9421] = 9421, + [9422] = 1124, + [9423] = 9154, + [9424] = 9162, + [9425] = 9156, + [9426] = 9162, + [9427] = 9156, + [9428] = 9428, + [9429] = 9173, + [9430] = 1107, + [9431] = 9162, + [9432] = 1071, + [9433] = 9156, + [9434] = 9161, + [9435] = 1112, + [9436] = 9206, + [9437] = 9224, + [9438] = 9341, + [9439] = 1066, + [9440] = 9440, + [9441] = 9237, + [9442] = 9442, + [9443] = 9156, + [9444] = 9152, + [9445] = 9162, + [9446] = 9156, + [9447] = 9162, + [9448] = 9341, + [9449] = 9173, + [9450] = 9149, + [9451] = 9156, + [9452] = 9162, + [9453] = 9206, + [9454] = 9150, + [9455] = 9455, + [9456] = 9161, + [9457] = 9457, + [9458] = 9321, + [9459] = 9206, + [9460] = 9341, + [9461] = 9321, + [9462] = 1167, + [9463] = 9152, + [9464] = 9162, + [9465] = 9149, + [9466] = 9156, + [9467] = 9150, + [9468] = 1196, + [9469] = 9154, + [9470] = 9152, + [9471] = 9149, + [9472] = 9472, + [9473] = 9173, + [9474] = 9154, + [9475] = 9150, + [9476] = 9336, + [9477] = 9266, + [9478] = 9268, + [9479] = 9154, + [9480] = 1111, + [9481] = 9224, + [9482] = 9152, + [9483] = 1127, + [9484] = 9150, + [9485] = 9149, + [9486] = 9173, + [9487] = 9150, + [9488] = 9161, + [9489] = 1156, + [9490] = 9154, + [9491] = 9152, + [9492] = 1162, + [9493] = 9152, + [9494] = 1079, + [9495] = 9154, + [9496] = 1067, + [9497] = 9149, + [9498] = 9173, + [9499] = 9149, + [9500] = 9500, + [9501] = 9501, + [9502] = 9150, + [9503] = 9150, + [9504] = 9173, + [9505] = 9266, + [9506] = 9154, + [9507] = 9507, + [9508] = 9237, + [9509] = 9154, + [9510] = 9152, + [9511] = 9152, + [9512] = 9154, + [9513] = 9513, + [9514] = 1114, + [9515] = 9336, + [9516] = 9149, + [9517] = 9517, + [9518] = 9518, + [9519] = 1110, + [9520] = 9520, + [9521] = 1175, + [9522] = 1145, + [9523] = 9523, + [9524] = 9524, + [9525] = 9517, + [9526] = 9526, + [9527] = 1096, + [9528] = 9528, + [9529] = 9529, + [9530] = 1095, + [9531] = 1093, + [9532] = 9523, + [9533] = 9533, + [9534] = 9534, + [9535] = 9524, + [9536] = 9517, + [9537] = 9526, + [9538] = 9538, + [9539] = 1090, + [9540] = 9526, + [9541] = 9541, + [9542] = 9517, + [9543] = 1123, + [9544] = 9524, + [9545] = 9523, + [9546] = 9517, + [9547] = 9547, + [9548] = 1132, + [9549] = 9549, + [9550] = 9550, + [9551] = 1147, + [9552] = 9526, + [9553] = 9517, + [9554] = 9554, + [9555] = 9524, + [9556] = 9523, + [9557] = 1062, + [9558] = 9538, + [9559] = 1171, + [9560] = 9560, + [9561] = 9561, + [9562] = 9562, + [9563] = 9526, + [9564] = 9564, + [9565] = 9524, + [9566] = 1098, + [9567] = 9567, + [9568] = 9517, + [9569] = 9569, + [9570] = 9524, + [9571] = 9541, + [9572] = 9523, + [9573] = 9517, + [9574] = 9547, + [9575] = 9523, + [9576] = 9576, + [9577] = 9576, + [9578] = 9578, + [9579] = 9526, + [9580] = 9517, + [9581] = 9524, + [9582] = 9524, + [9583] = 9561, + [9584] = 9584, + [9585] = 9560, + [9586] = 9586, + [9587] = 9587, + [9588] = 9517, + [9589] = 9523, + [9590] = 9590, + [9591] = 9523, + [9592] = 9592, + [9593] = 1172, + [9594] = 9529, + [9595] = 1173, + [9596] = 1176, + [9597] = 9578, + [9598] = 9578, + [9599] = 9550, + [9600] = 1177, + [9601] = 9601, + [9602] = 9576, + [9603] = 9528, + [9604] = 9604, + [9605] = 9569, + [9606] = 1166, + [9607] = 9607, + [9608] = 9608, + [9609] = 9560, + [9610] = 9547, + [9611] = 9608, + [9612] = 1183, + [9613] = 9613, + [9614] = 9607, + [9615] = 9615, + [9616] = 9526, + [9617] = 9617, + [9618] = 1068, + [9619] = 9619, + [9620] = 1192, + [9621] = 9523, + [9622] = 1193, + [9623] = 9617, + [9624] = 1186, + [9625] = 9625, + [9626] = 9619, + [9627] = 9627, + [9628] = 1195, + [9629] = 1198, + [9630] = 9562, + [9631] = 9569, + [9632] = 9561, + [9633] = 1199, + [9634] = 1201, + [9635] = 9564, + [9636] = 1211, + [9637] = 1212, + [9638] = 9638, + [9639] = 1214, + [9640] = 9523, + [9641] = 1156, + [9642] = 1146, + [9643] = 9524, + [9644] = 1140, + [9645] = 9517, + [9646] = 1138, + [9647] = 9647, + [9648] = 1135, + [9649] = 1133, + [9650] = 9560, + [9651] = 1116, + [9652] = 1122, + [9653] = 1087, + [9654] = 9654, + [9655] = 9617, + [9656] = 9619, + [9657] = 9617, + [9658] = 9524, + [9659] = 9523, + [9660] = 9619, + [9661] = 9524, + [9662] = 9517, + [9663] = 9617, + [9664] = 9564, + [9665] = 9526, + [9666] = 9619, + [9667] = 9617, + [9668] = 9619, + [9669] = 9617, + [9670] = 9670, + [9671] = 9523, + [9672] = 9619, + [9673] = 9526, + [9674] = 1084, + [9675] = 9524, + [9676] = 9562, + [9677] = 1080, + [9678] = 1069, + [9679] = 9526, + [9680] = 1065, + [9681] = 9613, + [9682] = 1194, + [9683] = 9523, + [9684] = 9526, + [9685] = 1130, + [9686] = 9524, + [9687] = 9617, + [9688] = 9517, + [9689] = 9569, + [9690] = 9526, + [9691] = 9538, + [9692] = 9524, + [9693] = 9619, + [9694] = 9561, + [9695] = 9524, + [9696] = 9541, + [9697] = 9523, + [9698] = 9524, + [9699] = 9578, + [9700] = 9528, + [9701] = 9701, + [9702] = 9524, + [9703] = 9517, + [9704] = 1107, + [9705] = 9526, + [9706] = 9523, + [9707] = 9524, + [9708] = 9517, + [9709] = 9526, + [9710] = 1066, + [9711] = 9547, + [9712] = 1167, + [9713] = 9576, + [9714] = 9554, + [9715] = 9578, + [9716] = 1196, + [9717] = 1127, + [9718] = 9576, + [9719] = 1114, + [9720] = 9547, + [9721] = 9517, + [9722] = 1159, + [9723] = 9561, + [9724] = 1067, + [9725] = 9569, + [9726] = 1079, + [9727] = 9528, + [9728] = 9517, + [9729] = 9528, + [9730] = 9560, + [9731] = 9529, + [9732] = 9541, + [9733] = 9541, + [9734] = 9550, + [9735] = 9523, + [9736] = 9625, + [9737] = 9538, + [9738] = 9538, + [9739] = 1112, + [9740] = 9560, + [9741] = 9526, + [9742] = 1071, + [9743] = 1124, + [9744] = 9541, + [9745] = 9528, + [9746] = 1044, + [9747] = 9517, + [9748] = 9576, + [9749] = 9578, + [9750] = 9523, + [9751] = 9524, + [9752] = 9561, + [9753] = 1125, + [9754] = 9529, + [9755] = 9564, + [9756] = 9756, + [9757] = 9757, + [9758] = 9526, + [9759] = 1178, + [9760] = 9529, + [9761] = 9526, + [9762] = 9550, + [9763] = 9517, + [9764] = 9524, + [9765] = 9584, + [9766] = 9523, + [9767] = 9562, + [9768] = 9526, + [9769] = 9517, + [9770] = 9560, + [9771] = 9578, + [9772] = 9772, + [9773] = 9773, + [9774] = 9541, + [9775] = 9528, + [9776] = 9524, + [9777] = 9517, + [9778] = 9576, + [9779] = 9578, + [9780] = 9524, + [9781] = 9523, + [9782] = 9561, + [9783] = 9615, + [9784] = 9784, + [9785] = 9526, + [9786] = 9523, + [9787] = 9787, + [9788] = 9576, + [9789] = 9517, + [9790] = 9529, + [9791] = 9524, + [9792] = 1139, + [9793] = 9793, + [9794] = 9608, + [9795] = 9547, + [9796] = 9523, + [9797] = 9613, + [9798] = 9550, + [9799] = 9799, + [9800] = 9607, + [9801] = 9615, + [9802] = 9517, + [9803] = 9520, + [9804] = 9793, + [9805] = 9526, + [9806] = 9518, + [9807] = 9520, + [9808] = 9793, + [9809] = 9518, + [9810] = 9520, + [9811] = 9793, + [9812] = 9526, + [9813] = 9518, + [9814] = 9520, + [9815] = 9793, + [9816] = 9518, + [9817] = 9520, + [9818] = 9793, + [9819] = 9518, + [9820] = 9520, + [9821] = 9793, + [9822] = 9518, + [9823] = 9520, + [9824] = 9793, + [9825] = 9520, + [9826] = 9518, + [9827] = 9520, + [9828] = 9793, + [9829] = 9615, + [9830] = 9590, + [9831] = 9518, + [9832] = 9520, + [9833] = 9833, + [9834] = 9793, + [9835] = 9615, + [9836] = 9518, + [9837] = 9523, + [9838] = 9528, + [9839] = 9520, + [9840] = 9517, + [9841] = 9793, + [9842] = 9615, + [9843] = 9524, + [9844] = 9550, + [9845] = 9518, + [9846] = 9520, + [9847] = 9793, + [9848] = 9615, + [9849] = 9849, + [9850] = 9850, + [9851] = 9518, + [9852] = 9613, + [9853] = 9541, + [9854] = 9520, + [9855] = 9793, + [9856] = 9615, + [9857] = 9518, + [9858] = 9523, + [9859] = 9560, + [9860] = 9793, + [9861] = 9615, + [9862] = 9526, + [9863] = 9520, + [9864] = 9793, + [9865] = 9615, + [9866] = 9518, + [9867] = 9538, + [9868] = 9526, + [9869] = 9520, + [9870] = 9793, + [9871] = 9615, + [9872] = 9872, + [9873] = 9518, + [9874] = 9520, + [9875] = 9793, + [9876] = 9517, + [9877] = 9615, + [9878] = 9518, + [9879] = 9520, + [9880] = 9561, + [9881] = 9793, + [9882] = 9554, + [9883] = 9615, + [9884] = 9524, + [9885] = 9625, + [9886] = 9523, + [9887] = 9518, + [9888] = 9520, + [9889] = 9793, + [9890] = 9615, + [9891] = 9518, + [9892] = 9520, + [9893] = 9613, + [9894] = 9787, + [9895] = 9793, + [9896] = 9615, + [9897] = 9518, + [9898] = 9520, + [9899] = 9787, + [9900] = 9793, + [9901] = 9615, + [9902] = 9518, + [9903] = 9520, + [9904] = 9787, + [9905] = 9793, + [9906] = 9615, + [9907] = 9518, + [9908] = 9524, + [9909] = 9517, + [9910] = 9520, + [9911] = 9787, + [9912] = 9793, + [9913] = 9615, + [9914] = 9526, + [9915] = 9518, + [9916] = 9520, + [9917] = 9787, + [9918] = 9617, + [9919] = 9793, + [9920] = 9920, + [9921] = 9615, + [9922] = 9518, + [9923] = 9520, + [9924] = 9787, + [9925] = 9793, + [9926] = 9920, + [9927] = 9607, + [9928] = 9615, + [9929] = 9518, + [9930] = 9520, + [9931] = 9787, + [9932] = 9793, + [9933] = 9920, + [9934] = 9613, + [9935] = 9615, + [9936] = 9518, + [9937] = 9608, + [9938] = 9564, + [9939] = 9526, + [9940] = 9607, + [9941] = 9941, + [9942] = 9942, + [9943] = 9564, + [9944] = 9541, + [9945] = 9550, + [9946] = 9528, + [9947] = 9523, + [9948] = 9576, + [9949] = 9578, + [9950] = 9561, + [9951] = 9608, + [9952] = 9607, + [9953] = 9578, + [9954] = 9550, + [9955] = 9550, + [9956] = 9550, + [9957] = 9607, + [9958] = 9529, + [9959] = 9550, + [9960] = 9607, + [9961] = 9550, + [9962] = 9550, + [9963] = 9550, + [9964] = 9550, + [9965] = 9550, + [9966] = 9584, + [9967] = 9615, + [9968] = 9562, + [9969] = 9541, + [9970] = 9550, + [9971] = 9576, + [9972] = 9604, + [9973] = 9529, + [9974] = 9550, + [9975] = 9520, + [9976] = 9787, + [9977] = 9793, + [9978] = 9920, + [9979] = 9615, + [9980] = 9518, + [9981] = 9541, + [9982] = 9617, + [9983] = 9619, + [9984] = 9617, + [9985] = 9619, + [9986] = 9550, + [9987] = 9617, + [9988] = 9619, + [9989] = 9773, + [9990] = 9567, + [9991] = 9584, + [9992] = 9590, + [9993] = 9617, + [9994] = 9584, + [9995] = 9619, + [9996] = 9773, + [9997] = 9584, + [9998] = 9584, + [9999] = 9584, + [10000] = 9584, + [10001] = 9584, + [10002] = 9584, + [10003] = 9584, + [10004] = 9584, + [10005] = 9584, + [10006] = 9584, + [10007] = 9584, + [10008] = 9584, + [10009] = 9584, + [10010] = 9584, + [10011] = 9584, + [10012] = 9584, + [10013] = 9584, + [10014] = 9584, + [10015] = 9584, + [10016] = 9584, + [10017] = 9584, + [10018] = 9567, + [10019] = 9590, + [10020] = 9617, + [10021] = 9619, + [10022] = 9773, + [10023] = 9560, + [10024] = 1049, + [10025] = 9604, + [10026] = 9567, + [10027] = 9670, + [10028] = 9625, + [10029] = 9590, + [10030] = 9617, + [10031] = 9619, + [10032] = 9773, + [10033] = 9576, + [10034] = 9567, + [10035] = 9625, + [10036] = 9590, + [10037] = 9872, + [10038] = 9617, + [10039] = 9619, + [10040] = 9773, + [10041] = 9604, + [10042] = 9590, + [10043] = 9567, + [10044] = 9625, + [10045] = 9590, + [10046] = 9872, + [10047] = 10047, + [10048] = 9607, + [10049] = 9617, + [10050] = 9619, + [10051] = 9920, + [10052] = 9773, + [10053] = 9604, + [10054] = 9549, + [10055] = 9567, + [10056] = 9625, + [10057] = 9590, + [10058] = 9872, + [10059] = 9526, + [10060] = 9554, + [10061] = 9617, + [10062] = 9549, + [10063] = 9619, + [10064] = 10064, + [10065] = 10065, + [10066] = 9773, + [10067] = 9604, + [10068] = 9549, + [10069] = 9541, + [10070] = 9567, + [10071] = 9625, + [10072] = 9567, + [10073] = 9590, + [10074] = 9872, + [10075] = 9554, + [10076] = 9773, + [10077] = 9617, + [10078] = 10078, + [10079] = 10047, + [10080] = 9562, + [10081] = 9529, + [10082] = 10078, + [10083] = 9773, + [10084] = 9619, + [10085] = 10064, + [10086] = 10065, + [10087] = 10087, + [10088] = 9578, + [10089] = 9773, + [10090] = 9604, + [10091] = 9549, + [10092] = 9567, + [10093] = 9625, + [10094] = 9604, + [10095] = 10095, + [10096] = 9590, + [10097] = 10097, + [10098] = 9872, + [10099] = 9554, + [10100] = 10100, + [10101] = 9617, + [10102] = 10047, + [10103] = 10078, + [10104] = 9560, + [10105] = 9619, + [10106] = 10064, + [10107] = 10065, + [10108] = 9773, + [10109] = 9604, + [10110] = 9549, + [10111] = 9567, + [10112] = 9529, + [10113] = 9625, + [10114] = 10114, + [10115] = 9550, + [10116] = 9590, + [10117] = 9872, + [10118] = 9554, + [10119] = 10064, + [10120] = 9617, + [10121] = 10047, + [10122] = 10078, + [10123] = 10123, + [10124] = 9619, + [10125] = 10064, + [10126] = 10065, + [10127] = 9550, + [10128] = 9773, + [10129] = 9604, + [10130] = 9549, + [10131] = 9567, + [10132] = 10132, + [10133] = 9625, + [10134] = 9615, + [10135] = 10135, + [10136] = 9518, + [10137] = 9584, + [10138] = 9590, + [10139] = 9872, + [10140] = 9554, + [10141] = 9567, + [10142] = 9617, + [10143] = 10047, + [10144] = 10065, + [10145] = 9619, + [10146] = 10078, + [10147] = 10147, + [10148] = 9619, + [10149] = 9529, + [10150] = 9604, + [10151] = 10151, + [10152] = 10152, + [10153] = 10153, + [10154] = 9590, + [10155] = 9529, + [10156] = 9550, + [10157] = 10157, + [10158] = 9523, + [10159] = 10064, + [10160] = 9549, + [10161] = 10065, + [10162] = 9550, + [10163] = 9541, + [10164] = 9576, + [10165] = 9578, + [10166] = 9773, + [10167] = 9604, + [10168] = 9523, + [10169] = 9549, + [10170] = 9567, + [10171] = 9625, + [10172] = 9608, + [10173] = 9524, + [10174] = 9517, + [10175] = 9529, + [10176] = 9872, + [10177] = 9554, + [10178] = 9550, + [10179] = 10179, + [10180] = 9560, + [10181] = 9617, + [10182] = 10047, + [10183] = 9526, + [10184] = 10184, + [10185] = 10078, + [10186] = 10186, + [10187] = 10187, + [10188] = 9619, + [10189] = 9619, + [10190] = 9617, + [10191] = 9619, + [10192] = 9617, + [10193] = 9619, + [10194] = 9617, + [10195] = 9619, + [10196] = 9617, + [10197] = 10197, + [10198] = 9576, + [10199] = 9670, + [10200] = 9576, + [10201] = 9569, + [10202] = 10202, + [10203] = 9529, + [10204] = 9670, + [10205] = 9670, + [10206] = 9670, + [10207] = 9576, + [10208] = 9541, +}; + +static TSCharacterRange sym__alpha_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37a, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, + {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, + {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, + {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, + {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, + {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe33}, + {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, + {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, + {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16f1, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, + {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, + {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, + {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, + {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, + {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, + {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, + {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, + {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2183, 0x2184}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, + {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, + {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, + {0x3005, 0x3006}, {0x3031, 0x3035}, {0x303b, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, + {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x3400}, {0x4dbf, 0x4dbf}, {0x4e00, 0x4e00}, {0x9fff, 0xa48c}, {0xa4d0, 0xa4fd}, + {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6e5}, {0xa717, 0xa71f}, {0xa722, 0xa788}, + {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, + {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, + {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, + {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, + {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, + {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xac00}, {0xd7a3, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, + {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, + {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe70, 0xfe74}, + {0xfe76, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, + {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10280, 0x1029c}, + {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x10340}, {0x10342, 0x10349}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, + {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, + {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x1092b}, +}; + +static TSCharacterRange sym__alpha_identifier_character_set_2[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, + {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, + {0x37a, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, + {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x660, 0x669}, + {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, + {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, + {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, + {0x950, 0x950}, {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, + {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, + {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb6f}, + {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, + {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbef}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc80, 0xc80}, {0xc85, 0xc8c}, + {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xce6, 0xcef}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xde6, 0xdef}, + {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe40, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, + {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xed0, 0xed9}, {0xedc, 0xedf}, + {0xf00, 0xf00}, {0xf20, 0xf29}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x1049}, {0x1050, 0x1055}, + {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x1090, 0x1099}, {0x10a0, 0x10c5}, + {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, + {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, + {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, + {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16f1, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, + {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x17e0, 0x17e9}, {0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, + {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19d9}, + {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, + {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, + {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, + {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, + {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, + {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, + {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, + {0x2183, 0x2184}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x3005, 0x3006}, {0x3031, 0x3035}, {0x303b, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, + {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x3400}, {0x4dbf, 0x4dbf}, + {0x4e00, 0x4e00}, {0x9fff, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6e5}, + {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, + {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, + {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, {0xaa00, 0xaa28}, + {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, + {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, + {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xac00}, + {0xd7a3, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, + {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, + {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x10340}, + {0x10342, 0x10349}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, + {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, + {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, + {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, + {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x1092b}, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(322); + ADVANCE_MAP( + '!', 399, + '#', 8, + '$', 372, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 338, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 512, + '[', 331, + '\\', 304, + ']', 332, + '`', 319, + 'a', 728, + 'b', 835, + 'c', 820, + 'd', 714, + 'e', 874, + 'f', 777, + 'g', 754, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 'r', 765, + 's', 741, + 't', 712, + 'v', 709, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 1: + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 2: + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(2); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 3: + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + '`', 319, + 'a', 554, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 4: + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + '`', 319, + 'a', 557, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 5: + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + '`', 319, + 'a', 554, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 6: + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + '`', 319, + 'a', 557, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(401); + if (lookahead == '=') ADVANCE(379); + if (lookahead == 'i') ADVANCE(249); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(323); + END_STATE(); + case 9: + ADVANCE_MAP( + '!', 398, + '\'', 520, + '(', 343, + ')', 345, + '*', 363, + '+', 387, + '-', 389, + '.', 336, + '/', 30, + '0', 516, + ':', 330, + '<', 346, + '@', 328, + '[', 331, + '`', 319, + 'a', 558, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(9); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 10: + ADVANCE_MAP( + '!', 398, + '\'', 520, + '(', 343, + '*', 363, + '+', 387, + '-', 389, + '.', 313, + '/', 30, + '0', 516, + ':', 35, + '@', 328, + '[', 331, + '`', 319, + 'a', 558, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 589, + 't', 598, + 'v', 550, + '{', 341, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(10); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 11: + ADVANCE_MAP( + '!', 400, + '&', 359, + '\'', 520, + '(', 343, + '*', 363, + '+', 387, + ',', 344, + '-', 392, + '.', 336, + '/', 30, + '0', 516, + ':', 330, + ';', 350, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + '[', 331, + '`', 319, + 'a', 555, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 12: + ADVANCE_MAP( + '!', 400, + '&', 359, + '\'', 520, + '(', 343, + '*', 363, + '+', 387, + ',', 344, + '-', 392, + '.', 336, + '/', 30, + '0', 516, + ':', 330, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + '[', 331, + '`', 319, + 'a', 558, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 13: + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 360, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 14: + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 360, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 's', 591, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(14); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 15: + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(17); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 16: + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 's', 591, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(18); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 17: + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(17); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 18: + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 's', 591, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(18); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 19: + if (lookahead == '&') ADVANCE(369); + END_STATE(); + case 20: + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + '*', 337, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 731, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 's', 764, + 'v', 724, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(21); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 21: + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 731, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 's', 764, + 'v', 724, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(21); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 22: + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '`', 319, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 23: + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + '`', 319, + 'a', 729, + 'c', 824, + 'd', 714, + 'e', 874, + 'f', 777, + 'g', 754, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 's', 742, + 't', 713, + 'v', 709, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(23); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 24: + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + 'a', 555, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(24); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 25: + ADVANCE_MAP( + '&', 359, + '(', 343, + ',', 344, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + 'a', 729, + 'c', 824, + 'd', 714, + 'e', 874, + 'f', 777, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 's', 762, + 't', 713, + 'v', 709, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(25); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 26: + ADVANCE_MAP( + '(', 343, + ')', 345, + '*', 363, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '=', 339, + '@', 328, + '`', 319, + 'a', 731, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 's', 763, + 'v', 724, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(26); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 27: + ADVANCE_MAP( + '(', 343, + ')', 345, + ',', 344, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '@', 328, + '`', 319, + 'a', 731, + 'c', 836, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 'n', 825, + 's', 763, + 'v', 709, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(27); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 28: + ADVANCE_MAP( + '(', 343, + ')', 345, + ',', 344, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '@', 328, + '`', 319, + 'a', 731, + 'c', 836, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 'n', 825, + 's', 764, + 'v', 709, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(28); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 29: + ADVANCE_MAP( + '(', 343, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '@', 328, + 'a', 54, + 'c', 126, + 'd', 42, + 'e', 168, + 'f', 92, + 'g', 76, + 'i', 111, + 'l', 44, + 'n', 131, + 'o', 132, + 'p', 135, + 's', 65, + 't', 41, + 'v', 39, + '{', 341, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(29); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 30: + if (lookahead == '/') ADVANCE(506); + END_STATE(); + case 31: + if (lookahead == '/') ADVANCE(506); + if (lookahead == '=') ADVANCE(377); + END_STATE(); + case 32: + ADVANCE_MAP( + '/', 30, + ';', 350, + '@', 328, + 'a', 192, + 'c', 266, + 'd', 179, + 'e', 308, + 'f', 230, + 'g', 203, + 'i', 250, + 'l', 180, + 'n', 265, + 'o', 271, + 'p', 274, + 's', 204, + 't', 181, + 'v', 177, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == 'b') ADVANCE(318); + END_STATE(); + case 33: + if (lookahead == '/') ADVANCE(30); + if (lookahead == 'g') ADVANCE(754); + if (lookahead == 's') ADVANCE(764); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(33); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 34: + if (lookahead == '/') ADVANCE(522); + if (lookahead == '\\') ADVANCE(304); + if (lookahead == '\n' || + lookahead == '\r') SKIP(34); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(523); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(521); + END_STATE(); + case 35: + if (lookahead == ':') ADVANCE(373); + END_STATE(); + case 36: + if (lookahead == ':') ADVANCE(368); + END_STATE(); + case 37: + if (lookahead == '=') ADVANCE(378); + END_STATE(); + case 38: + if (lookahead == '>') ADVANCE(365); + END_STATE(); + case 39: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 40: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 41: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(91); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 42: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 43: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(108); + if (lookahead == 't') ADVANCE(357); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 44: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(160); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 45: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 46: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 47: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 48: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 49: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 50: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(158); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 51: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(159); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 52: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 53: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 54: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'c') ADVANCE(150); + if (lookahead == 'n') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 55: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 56: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(436); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 57: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 58: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 59: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 60: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(162); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 61: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(408); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 62: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(404); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 63: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 64: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 65: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'u') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 66: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 67: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 68: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 69: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 70: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(424); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 71: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(464); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 72: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 73: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(492); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 74: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 75: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 76: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(151); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 77: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 78: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 79: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 80: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 81: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 82: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 83: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 84: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 85: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'f') ADVANCE(88); + if (lookahead == 'l') ADVANCE(95); + if (lookahead == 'n') ADVANCE(79); + if (lookahead == 't') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 86: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'g') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 87: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(167); + if (lookahead == 'o') ADVANCE(163); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 88: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 89: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 90: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 91: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 92: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 93: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 94: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 95: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 96: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 97: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 98: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 99: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 100: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 101: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 102: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 103: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 104: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(444); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 105: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(166); + if (lookahead == 'r') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 106: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 107: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 108: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 109: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 110: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 111: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 112: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(484); + if (lookahead == 'r') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 113: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(412); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 114: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 115: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 116: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 117: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 118: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 119: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 120: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 121: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 122: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 123: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 124: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 125: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 126: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(124); + if (lookahead == 'r') ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 127: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 128: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(164); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 129: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(138); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 130: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 131: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 132: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(66); + if (lookahead == 'v') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 133: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(68); + if (lookahead == 't') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 134: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 135: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(87); + if (lookahead == 'u') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 136: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(420); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 137: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 138: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 139: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 140: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 141: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 142: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 143: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 144: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 145: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 146: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 147: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(156); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 148: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 149: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 150: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 151: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(353); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 152: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 153: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 154: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 155: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(432); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 156: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 157: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 158: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 159: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 160: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 161: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 162: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 163: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 164: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 165: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 166: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 167: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'v') ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 168: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 169: + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(460); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 170: + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 171: + if (lookahead == '_') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); + END_STATE(); + case 172: + if (lookahead == '_') ADVANCE(172); + if (lookahead == '0' || + lookahead == '1') ADVANCE(519); + END_STATE(); + case 173: + if (lookahead == '_') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); + END_STATE(); + case 174: + if (lookahead == '_') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); + END_STATE(); + case 175: + if (lookahead == '_') ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + END_STATE(); + case 176: + if (lookahead == '`') ADVANCE(878); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(176); + END_STATE(); + case 177: + if (lookahead == 'a') ADVANCE(243); + END_STATE(); + case 178: + if (lookahead == 'a') ADVANCE(414); + END_STATE(); + case 179: + if (lookahead == 'a') ADVANCE(296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(317); + END_STATE(); + case 180: + if (lookahead == 'a') ADVANCE(298); + END_STATE(); + case 181: + if (lookahead == 'a') ADVANCE(229); + END_STATE(); + case 182: + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 't') ADVANCE(355); + END_STATE(); + case 183: + if (lookahead == 'a') ADVANCE(239); + END_STATE(); + case 184: + if (lookahead == 'a') ADVANCE(240); + END_STATE(); + case 185: + if (lookahead == 'a') ADVANCE(297); + END_STATE(); + case 186: + if (lookahead == 'a') ADVANCE(276); + END_STATE(); + case 187: + if (lookahead == 'a') ADVANCE(241); + END_STATE(); + case 188: + if (lookahead == 'a') ADVANCE(299); + END_STATE(); + case 189: + if (lookahead == 'a') ADVANCE(242); + END_STATE(); + case 190: + if (lookahead == 'a') ADVANCE(197); + END_STATE(); + case 191: + if (lookahead == 'a') ADVANCE(300); + END_STATE(); + case 192: + if (lookahead == 'b') ADVANCE(285); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'n') ADVANCE(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + END_STATE(); + case 193: + if (lookahead == 'b') ADVANCE(244); + END_STATE(); + case 194: + if (lookahead == 'c') ADVANCE(434); + END_STATE(); + case 195: + if (lookahead == 'c') ADVANCE(450); + END_STATE(); + case 196: + if (lookahead == 'c') ADVANCE(292); + END_STATE(); + case 197: + if (lookahead == 'c') ADVANCE(293); + END_STATE(); + case 198: + if (lookahead == 'c') ADVANCE(301); + END_STATE(); + case 199: + if (lookahead == 'd') ADVANCE(406); + END_STATE(); + case 200: + if (lookahead == 'd') ADVANCE(402); + END_STATE(); + case 201: + if (lookahead == 'd') ADVANCE(446); + END_STATE(); + case 202: + if (lookahead == 'd') ADVANCE(213); + END_STATE(); + case 203: + if (lookahead == 'e') ADVANCE(290); + END_STATE(); + case 204: + if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'u') ADVANCE(284); + END_STATE(); + case 205: + if (lookahead == 'e') ADVANCE(251); + END_STATE(); + case 206: + if (lookahead == 'e') ADVANCE(279); + END_STATE(); + case 207: + if (lookahead == 'e') ADVANCE(196); + END_STATE(); + case 208: + if (lookahead == 'e') ADVANCE(199); + END_STATE(); + case 209: + if (lookahead == 'e') ADVANCE(422); + END_STATE(); + case 210: + if (lookahead == 'e') ADVANCE(462); + END_STATE(); + case 211: + if (lookahead == 'e') ADVANCE(438); + END_STATE(); + case 212: + if (lookahead == 'e') ADVANCE(490); + END_STATE(); + case 213: + if (lookahead == 'e') ADVANCE(426); + END_STATE(); + case 214: + if (lookahead == 'e') ADVANCE(494); + END_STATE(); + case 215: + if (lookahead == 'e') ADVANCE(282); + END_STATE(); + case 216: + if (lookahead == 'e') ADVANCE(195); + END_STATE(); + case 217: + if (lookahead == 'e') ADVANCE(275); + END_STATE(); + case 218: + if (lookahead == 'e') ADVANCE(201); + END_STATE(); + case 219: + if (lookahead == 'e') ADVANCE(255); + END_STATE(); + case 220: + if (lookahead == 'e') ADVANCE(198); + END_STATE(); + case 221: + if (lookahead == 'e') ADVANCE(234); + END_STATE(); + case 222: + if (lookahead == 'e') ADVANCE(283); + END_STATE(); + case 223: + if (lookahead == 'f') ADVANCE(226); + if (lookahead == 'l') ADVANCE(233); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(222); + END_STATE(); + case 224: + if (lookahead == 'g') ADVANCE(486); + END_STATE(); + case 225: + if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'o') ADVANCE(302); + END_STATE(); + case 226: + if (lookahead == 'i') ADVANCE(309); + END_STATE(); + case 227: + if (lookahead == 'i') ADVANCE(194); + END_STATE(); + case 228: + if (lookahead == 'i') ADVANCE(202); + END_STATE(); + case 229: + if (lookahead == 'i') ADVANCE(245); + END_STATE(); + case 230: + if (lookahead == 'i') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + END_STATE(); + case 231: + if (lookahead == 'i') ADVANCE(257); + END_STATE(); + case 232: + if (lookahead == 'i') ADVANCE(270); + END_STATE(); + case 233: + if (lookahead == 'i') ADVANCE(261); + END_STATE(); + case 234: + if (lookahead == 'i') ADVANCE(258); + END_STATE(); + case 235: + if (lookahead == 'i') ADVANCE(294); + END_STATE(); + case 236: + if (lookahead == 'i') ADVANCE(262); + END_STATE(); + case 237: + if (lookahead == 'i') ADVANCE(263); + END_STATE(); + case 238: + if (lookahead == 'i') ADVANCE(264); + END_STATE(); + case 239: + if (lookahead == 'l') ADVANCE(478); + END_STATE(); + case 240: + if (lookahead == 'l') ADVANCE(502); + END_STATE(); + case 241: + if (lookahead == 'l') ADVANCE(466); + END_STATE(); + case 242: + if (lookahead == 'l') ADVANCE(442); + END_STATE(); + case 243: + if (lookahead == 'l') ADVANCE(306); + if (lookahead == 'r') ADVANCE(186); + END_STATE(); + case 244: + if (lookahead == 'l') ADVANCE(227); + END_STATE(); + case 245: + if (lookahead == 'l') ADVANCE(281); + END_STATE(); + case 246: + if (lookahead == 'l') ADVANCE(208); + END_STATE(); + case 247: + if (lookahead == 'l') ADVANCE(236); + END_STATE(); + case 248: + if (lookahead == 'l') ADVANCE(237); + END_STATE(); + case 249: + if (lookahead == 'n') ADVANCE(385); + if (lookahead == 's') ADVANCE(386); + END_STATE(); + case 250: + if (lookahead == 'n') ADVANCE(223); + END_STATE(); + case 251: + if (lookahead == 'n') ADVANCE(482); + if (lookahead == 'r') ADVANCE(185); + END_STATE(); + case 252: + if (lookahead == 'n') ADVANCE(410); + END_STATE(); + case 253: + if (lookahead == 'n') ADVANCE(287); + END_STATE(); + case 254: + if (lookahead == 'n') ADVANCE(268); + END_STATE(); + case 255: + if (lookahead == 'n') ADVANCE(200); + END_STATE(); + case 256: + if (lookahead == 'n') ADVANCE(183); + END_STATE(); + case 257: + if (lookahead == 'n') ADVANCE(247); + END_STATE(); + case 258: + if (lookahead == 'n') ADVANCE(235); + END_STATE(); + case 259: + if (lookahead == 'n') ADVANCE(187); + END_STATE(); + case 260: + if (lookahead == 'n') ADVANCE(189); + END_STATE(); + case 261: + if (lookahead == 'n') ADVANCE(210); + END_STATE(); + case 262: + if (lookahead == 'n') ADVANCE(212); + END_STATE(); + case 263: + if (lookahead == 'n') ADVANCE(214); + END_STATE(); + case 264: + if (lookahead == 'n') ADVANCE(248); + END_STATE(); + case 265: + if (lookahead == 'o') ADVANCE(231); + END_STATE(); + case 266: + if (lookahead == 'o') ADVANCE(253); + if (lookahead == 'r') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + END_STATE(); + case 267: + if (lookahead == 'o') ADVANCE(286); + END_STATE(); + case 268: + if (lookahead == 'o') ADVANCE(303); + END_STATE(); + case 269: + if (lookahead == 'o') ADVANCE(277); + END_STATE(); + case 270: + if (lookahead == 'o') ADVANCE(252); + END_STATE(); + case 271: + if (lookahead == 'p') ADVANCE(205); + if (lookahead == 'v') ADVANCE(206); + END_STATE(); + case 272: + if (lookahead == 'p') ADVANCE(207); + if (lookahead == 't') ADVANCE(215); + END_STATE(); + case 273: + if (lookahead == 'p') ADVANCE(219); + END_STATE(); + case 274: + if (lookahead == 'r') ADVANCE(225); + if (lookahead == 'u') ADVANCE(193); + END_STATE(); + case 275: + if (lookahead == 'r') ADVANCE(418); + END_STATE(); + case 276: + if (lookahead == 'r') ADVANCE(224); + END_STATE(); + case 277: + if (lookahead == 'r') ADVANCE(454); + END_STATE(); + case 278: + if (lookahead == 'r') ADVANCE(228); + END_STATE(); + case 279: + if (lookahead == 'r') ADVANCE(278); + END_STATE(); + case 280: + if (lookahead == 'r') ADVANCE(190); + END_STATE(); + case 281: + if (lookahead == 'r') ADVANCE(216); + END_STATE(); + case 282: + if (lookahead == 'r') ADVANCE(259); + END_STATE(); + case 283: + if (lookahead == 'r') ADVANCE(260); + END_STATE(); + case 284: + if (lookahead == 's') ADVANCE(273); + END_STATE(); + case 285: + if (lookahead == 's') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); + END_STATE(); + case 286: + if (lookahead == 's') ADVANCE(288); + END_STATE(); + case 287: + if (lookahead == 's') ADVANCE(291); + END_STATE(); + case 288: + if (lookahead == 's') ADVANCE(238); + END_STATE(); + case 289: + if (lookahead == 't') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); + END_STATE(); + case 290: + if (lookahead == 't') ADVANCE(351); + END_STATE(); + case 291: + if (lookahead == 't') ADVANCE(470); + END_STATE(); + case 292: + if (lookahead == 't') ADVANCE(498); + END_STATE(); + case 293: + if (lookahead == 't') ADVANCE(474); + END_STATE(); + case 294: + if (lookahead == 't') ADVANCE(430); + END_STATE(); + case 295: + if (lookahead == 't') ADVANCE(280); + END_STATE(); + case 296: + if (lookahead == 't') ADVANCE(178); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); + END_STATE(); + case 297: + if (lookahead == 't') ADVANCE(269); + END_STATE(); + case 298: + if (lookahead == 't') ADVANCE(221); + END_STATE(); + case 299: + if (lookahead == 't') ADVANCE(232); + END_STATE(); + case 300: + if (lookahead == 't') ADVANCE(211); + END_STATE(); + case 301: + if (lookahead == 't') ADVANCE(218); + END_STATE(); + case 302: + if (lookahead == 't') ADVANCE(220); + END_STATE(); + case 303: + if (lookahead == 't') ADVANCE(188); + END_STATE(); + case 304: + ADVANCE_MAP( + 'u', 879, + '"', 881, + '$', 881, + '\'', 881, + '\\', 881, + 'b', 881, + 'n', 881, + 'r', 881, + 't', 881, + ); + END_STATE(); + case 305: + if (lookahead == 'u') ADVANCE(184); + END_STATE(); + case 306: + if (lookahead == 'u') ADVANCE(209); + END_STATE(); + case 307: + if (lookahead == 'v') ADVANCE(191); + END_STATE(); + case 308: + if (lookahead == 'x') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + END_STATE(); + case 309: + if (lookahead == 'x') ADVANCE(458); + END_STATE(); + case 310: + if (lookahead == '|') ADVANCE(370); + END_STATE(); + case 311: + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + END_STATE(); + case 312: + if (lookahead == '0' || + lookahead == '1') ADVANCE(519); + END_STATE(); + case 313: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); + END_STATE(); + case 314: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + END_STATE(); + case 315: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); + END_STATE(); + case 316: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(880); + END_STATE(); + case 317: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); + END_STATE(); + case 318: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + END_STATE(); + case 319: + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '`') ADVANCE(176); + END_STATE(); + case 320: + if (eof) ADVANCE(322); + ADVANCE_MAP( + '!', 399, + '#', 8, + '$', 372, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + '\\', 304, + ']', 332, + '`', 319, + 'a', 728, + 'b', 835, + 'c', 820, + 'd', 714, + 'e', 874, + 'f', 777, + 'g', 754, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 'r', 765, + 's', 741, + 't', 712, + 'v', 709, + '{', 341, + '|', 310, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 321: + if (eof) ADVANCE(322); + ADVANCE_MAP( + '!', 398, + '#', 8, + '%', 37, + '&', 359, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 336, + '/', 31, + '0', 516, + ':', 330, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '[', 331, + '`', 319, + 'a', 555, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '}', 342, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(321); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); + END_STATE(); + case 322: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 323: + ACCEPT_TOKEN(anon_sym_POUND_BANG); + END_STATE(); + case 324: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == '\r') ADVANCE(506); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(324); + END_STATE(); + case 325: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == '/') ADVANCE(326); + if (lookahead == '\t' || + lookahead == 0x0b || + lookahead == '\f' || + lookahead == ' ') ADVANCE(325); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(327); + END_STATE(); + case 326: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == '/') ADVANCE(324); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(327); + END_STATE(); + case 327: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(327); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 329: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 330: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(373); + END_STATE(); + case 331: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 332: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 333: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 334: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(367); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_wildcard_import); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym_wildcard_import); + if (lookahead == '=') ADVANCE(376); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(381); + END_STATE(); + case 341: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 342: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 343: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(383); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(384); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_get); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_get); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 353: + ACCEPT_TOKEN(anon_sym_get); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 354: + ACCEPT_TOKEN(anon_sym_get); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_set); + END_STATE(); + case 356: + ACCEPT_TOKEN(anon_sym_set); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_set); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_set); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(369); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym__quest); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym__quest); + if (lookahead == ':') ADVANCE(368); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 364: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(376); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym_label); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 368: + ACCEPT_TOKEN(anon_sym_QMARK_COLON); + END_STATE(); + case 369: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') ADVANCE(371); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(380); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(382); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 384: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 385: + ACCEPT_TOKEN(anon_sym_BANGin); + END_STATE(); + case 386: + ACCEPT_TOKEN(anon_sym_BANGis); + END_STATE(); + case 387: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(396); + END_STATE(); + case 388: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(396); + if (lookahead == '=') ADVANCE(374); + END_STATE(); + case 389: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(397); + END_STATE(); + case 390: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + END_STATE(); + case 391: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(365); + END_STATE(); + case 392: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '>') ADVANCE(365); + END_STATE(); + case 393: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '=') ADVANCE(377); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(378); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_as_QMARK); + END_STATE(); + case 396: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 397: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '!') ADVANCE(401); + if (lookahead == '=') ADVANCE(379); + if (lookahead == 'i') ADVANCE(249); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == 'i') ADVANCE(249); + END_STATE(); + case 401: + ACCEPT_TOKEN(anon_sym_BANG_BANG); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_suspend); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_suspend); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym_suspend); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_suspend); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 406: + ACCEPT_TOKEN(anon_sym_sealed); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_sealed); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 408: + ACCEPT_TOKEN(anon_sym_sealed); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 409: + ACCEPT_TOKEN(anon_sym_sealed); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 410: + ACCEPT_TOKEN(anon_sym_annotation); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_annotation); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 412: + ACCEPT_TOKEN(anon_sym_annotation); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 413: + ACCEPT_TOKEN(anon_sym_annotation); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 414: + ACCEPT_TOKEN(anon_sym_data); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_data); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 416: + ACCEPT_TOKEN(anon_sym_data); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 417: + ACCEPT_TOKEN(anon_sym_data); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 418: + ACCEPT_TOKEN(anon_sym_inner); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_inner); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 420: + ACCEPT_TOKEN(anon_sym_inner); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 421: + ACCEPT_TOKEN(anon_sym_inner); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 422: + ACCEPT_TOKEN(anon_sym_value); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_value); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_value); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_value); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 426: + ACCEPT_TOKEN(anon_sym_override); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_override); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 428: + ACCEPT_TOKEN(anon_sym_override); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 429: + ACCEPT_TOKEN(anon_sym_override); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 430: + ACCEPT_TOKEN(anon_sym_lateinit); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym_lateinit); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 432: + ACCEPT_TOKEN(anon_sym_lateinit); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym_lateinit); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 434: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 435: + ACCEPT_TOKEN(anon_sym_public); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 436: + ACCEPT_TOKEN(anon_sym_public); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_public); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 439: + ACCEPT_TOKEN(anon_sym_private); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 440: + ACCEPT_TOKEN(anon_sym_private); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_private); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 442: + ACCEPT_TOKEN(anon_sym_internal); + END_STATE(); + case 443: + ACCEPT_TOKEN(anon_sym_internal); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 444: + ACCEPT_TOKEN(anon_sym_internal); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym_internal); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 446: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 447: + ACCEPT_TOKEN(anon_sym_protected); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 448: + ACCEPT_TOKEN(anon_sym_protected); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 449: + ACCEPT_TOKEN(anon_sym_protected); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 450: + ACCEPT_TOKEN(anon_sym_tailrec); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym_tailrec); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 452: + ACCEPT_TOKEN(anon_sym_tailrec); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 453: + ACCEPT_TOKEN(anon_sym_tailrec); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 454: + ACCEPT_TOKEN(anon_sym_operator); + END_STATE(); + case 455: + ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 456: + ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 457: + ACCEPT_TOKEN(anon_sym_operator); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 458: + ACCEPT_TOKEN(anon_sym_infix); + END_STATE(); + case 459: + ACCEPT_TOKEN(anon_sym_infix); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 460: + ACCEPT_TOKEN(anon_sym_infix); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 461: + ACCEPT_TOKEN(anon_sym_infix); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 463: + ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 464: + ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 465: + ACCEPT_TOKEN(anon_sym_inline); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 466: + ACCEPT_TOKEN(anon_sym_external); + END_STATE(); + case 467: + ACCEPT_TOKEN(anon_sym_external); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 468: + ACCEPT_TOKEN(anon_sym_external); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 469: + ACCEPT_TOKEN(anon_sym_external); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_property_modifier); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_property_modifier); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_property_modifier); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_property_modifier); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 474: + ACCEPT_TOKEN(anon_sym_abstract); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_abstract); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 476: + ACCEPT_TOKEN(anon_sym_abstract); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 477: + ACCEPT_TOKEN(anon_sym_abstract); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 478: + ACCEPT_TOKEN(anon_sym_final); + END_STATE(); + case 479: + ACCEPT_TOKEN(anon_sym_final); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 480: + ACCEPT_TOKEN(anon_sym_final); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 481: + ACCEPT_TOKEN(anon_sym_final); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 482: + ACCEPT_TOKEN(anon_sym_open); + END_STATE(); + case 483: + ACCEPT_TOKEN(anon_sym_open); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 484: + ACCEPT_TOKEN(anon_sym_open); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_open); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 486: + ACCEPT_TOKEN(anon_sym_vararg); + END_STATE(); + case 487: + ACCEPT_TOKEN(anon_sym_vararg); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 488: + ACCEPT_TOKEN(anon_sym_vararg); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 489: + ACCEPT_TOKEN(anon_sym_vararg); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 490: + ACCEPT_TOKEN(anon_sym_noinline); + END_STATE(); + case 491: + ACCEPT_TOKEN(anon_sym_noinline); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 492: + ACCEPT_TOKEN(anon_sym_noinline); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 493: + ACCEPT_TOKEN(anon_sym_noinline); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 494: + ACCEPT_TOKEN(anon_sym_crossinline); + END_STATE(); + case 495: + ACCEPT_TOKEN(anon_sym_crossinline); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 496: + ACCEPT_TOKEN(anon_sym_crossinline); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 497: + ACCEPT_TOKEN(anon_sym_crossinline); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 498: + ACCEPT_TOKEN(anon_sym_expect); + END_STATE(); + case 499: + ACCEPT_TOKEN(anon_sym_expect); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 500: + ACCEPT_TOKEN(anon_sym_expect); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 501: + ACCEPT_TOKEN(anon_sym_expect); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 502: + ACCEPT_TOKEN(anon_sym_actual); + END_STATE(); + case 503: + ACCEPT_TOKEN(anon_sym_actual); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 504: + ACCEPT_TOKEN(anon_sym_actual); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); + END_STATE(); + case 505: + ACCEPT_TOKEN(anon_sym_actual); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(506); + END_STATE(); + case 507: + ACCEPT_TOKEN(anon_sym_return_AT); + END_STATE(); + case 508: + ACCEPT_TOKEN(anon_sym_continue_AT); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym_break_AT); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_this_AT); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_super_AT); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_AT2); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym_real_literal); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym_real_literal); + if (lookahead == '_') ADVANCE(174); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(311); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym_real_literal); + if (lookahead == '_') ADVANCE(175); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym_integer_literal); + ADVANCE_MAP( + '.', 313, + '_', 171, + 'B', 312, + 'b', 312, + 'E', 311, + 'e', 311, + 'F', 513, + 'f', 513, + 'X', 315, + 'x', 315, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '.') ADVANCE(313); + if (lookahead == '_') ADVANCE(171); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(311); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym_hex_literal); + if (lookahead == '_') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym_bin_literal); + if (lookahead == '_') ADVANCE(172); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 521: + ACCEPT_TOKEN(aux_sym_character_literal_token1); + END_STATE(); + case 522: + ACCEPT_TOKEN(aux_sym_character_literal_token1); + if (lookahead == '/') ADVANCE(506); + END_STATE(); + case 523: + ACCEPT_TOKEN(aux_sym_character_literal_token1); + if (lookahead == '/') ADVANCE(522); + if (lookahead == '\t' || + lookahead == 0x0b || + lookahead == '\f' || + lookahead == ' ') ADVANCE(523); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\'' && + lookahead != '\\') ADVANCE(521); + END_STATE(); + case 524: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '?') ADVANCE(395); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 525: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '?') ADVANCE(395); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 526: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 527: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(510); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 528: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 529: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(509); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 530: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 531: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(511); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 532: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 533: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(507); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 534: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(508); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 535: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(508); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 536: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(620); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 537: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(615); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 538: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(415); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 539: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(604); + if (lookahead == 'h') ADVANCE(603); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 540: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(604); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 541: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(691); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 542: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(623); + if (lookahead == 't') ADVANCE(356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 543: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(694); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 544: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(616); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 545: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(617); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 546: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 547: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 548: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(619); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 549: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 550: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 551: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(693); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(562); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 553: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(695); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 554: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(678); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'n') ADVANCE(631); + if (lookahead == 's') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 555: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(678); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'n') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 556: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(622); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 557: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 's') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 558: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(682); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 559: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(435); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 560: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 561: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(686); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 562: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 563: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(696); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 564: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 565: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 566: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 567: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 568: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'u') ADVANCE(659); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 569: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'u') ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 570: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(629); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 571: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 572: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 573: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 574: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(463); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 575: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 576: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(491); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 577: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(427); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 578: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(495); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 579: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 580: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 581: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(683); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 582: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(560); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 583: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 584: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 585: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 586: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 588: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(632); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 589: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(684); + if (lookahead == 'u') ADVANCE(659); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 590: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(684); + if (lookahead == 'u') ADVANCE(660); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 591: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 592: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(689); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 593: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(563); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 594: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(610); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 595: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 596: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'f') ADVANCE(600); + if (lookahead == 'l') ADVANCE(608); + if (lookahead == 'n') ADVANCE(585); + if (lookahead == 't') ADVANCE(595); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 597: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'g') ADVANCE(487); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 598: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'h') ADVANCE(603); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 599: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(704); + if (lookahead == 'o') ADVANCE(697); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 600: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 601: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 602: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(567); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 603: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(676); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 604: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(624); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 605: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(633); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 606: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(635); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 607: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 608: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(640); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 609: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(645); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 610: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(636); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 611: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(688); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 612: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(642); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 613: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(643); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 614: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(647); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 615: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'k') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 617: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 618: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 619: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(443); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 620: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(701); + if (lookahead == 'r') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 621: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 622: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(601); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 623: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(572); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 624: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(672); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 625: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 626: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 627: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(596); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 628: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(679); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(483); + if (lookahead == 'r') ADVANCE(549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(411); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(650); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(565); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 633: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(625); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 636: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(611); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 637: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 638: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 639: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 640: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 641: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 642: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(680); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 645: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(702); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 646: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(637); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 647: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(626); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 648: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(677); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(628); + if (lookahead == 'r') ADVANCE(648); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 651: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 652: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(630); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 653: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(644); + if (lookahead == 'r') ADVANCE(648); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 655: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(606); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 656: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(570); + if (lookahead == 'v') ADVANCE(579); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 657: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(571); + if (lookahead == 't') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 658: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(571); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 659: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(587); + if (lookahead == 's') ADVANCE(661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 660: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 661: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(588); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 662: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(599); + if (lookahead == 'u') ADVANCE(556); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 663: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 664: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(597); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 667: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(530); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 668: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 669: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(602); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 670: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 671: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(634); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 673: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(638); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 674: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 675: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 676: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(526); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 677: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(681); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 678: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(690); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 679: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(685); + if (lookahead == 't') ADVANCE(609); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 680: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 681: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 682: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(700); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 683: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 684: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 685: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 686: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 687: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 688: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 689: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(703); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 690: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 691: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 692: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(651); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 693: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(607); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 694: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(594); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 695: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 696: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(584); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 697: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(593); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 698: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(609); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 699: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 700: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 701: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 702: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 703: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(671); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 704: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'v') ADVANCE(553); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 705: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(657); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 706: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(459); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 707: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(658); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 708: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 709: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(792); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 710: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(787); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 711: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(417); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 712: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(776); + if (lookahead == 'h') ADVANCE(775); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 713: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(776); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 714: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(861); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 715: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(795); + if (lookahead == 't') ADVANCE(358); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 716: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(795); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 717: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(864); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 718: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(788); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 719: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(789); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 720: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(790); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 721: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(833); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 722: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(791); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 723: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(862); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 724: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(793); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 725: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(863); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 726: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(735); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 727: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'a') ADVANCE(865); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 728: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'b') ADVANCE(848); + if (lookahead == 'c') ADVANCE(852); + if (lookahead == 'n') ADVANCE(803); + if (lookahead == 's') ADVANCE(525); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 729: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'b') ADVANCE(848); + if (lookahead == 'c') ADVANCE(852); + if (lookahead == 'n') ADVANCE(803); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 730: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'b') ADVANCE(794); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 731: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'c') ADVANCE(852); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 732: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'c') ADVANCE(437); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 733: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'c') ADVANCE(453); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 734: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'c') ADVANCE(856); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 735: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'c') ADVANCE(857); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 736: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'c') ADVANCE(866); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 737: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'd') ADVANCE(409); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 738: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'd') ADVANCE(405); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 739: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'd') ADVANCE(449); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 740: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'd') ADVANCE(750); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 741: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(715); + if (lookahead == 'u') ADVANCE(829); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 742: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(715); + if (lookahead == 'u') ADVANCE(845); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 743: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(801); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 744: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(734); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 745: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(737); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 746: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(425); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 747: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(465); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 748: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(441); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 749: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(493); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 750: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(429); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 751: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(497); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 752: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(838); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 753: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(710); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 754: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(853); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 755: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(733); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 756: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(843); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 757: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(739); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 758: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(832); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 759: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(535); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 760: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(837); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 761: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(804); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 762: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(716); + if (lookahead == 'u') ADVANCE(845); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 763: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(854); + if (lookahead == 'u') ADVANCE(845); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 764: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(854); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 765: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(859); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 766: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(736); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 767: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(782); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 768: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'e') ADVANCE(844); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 769: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'f') ADVANCE(772); + if (lookahead == 'l') ADVANCE(780); + if (lookahead == 'n') ADVANCE(758); + if (lookahead == 't') ADVANCE(768); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 770: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'g') ADVANCE(489); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 771: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(873); + if (lookahead == 'o') ADVANCE(867); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 772: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 773: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(732); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 774: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(740); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 775: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(846); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 776: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(796); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 777: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(806); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 778: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(807); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 779: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(823); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 780: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(812); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 781: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(816); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 782: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(808); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 783: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(858); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 784: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(813); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 785: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(814); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 786: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'i') ADVANCE(818); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 787: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'k') ADVANCE(529); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 788: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(481); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 789: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(505); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 790: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(469); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 791: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(445); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 792: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(870); + if (lookahead == 'r') ADVANCE(721); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 793: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(870); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 794: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(773); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 795: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(745); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 796: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(842); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 797: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(784); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 798: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'l') ADVANCE(785); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 799: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(769); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 800: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(849); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 801: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(485); + if (lookahead == 'r') ADVANCE(723); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(413); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 803: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(821); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 804: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(738); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 805: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(533); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 806: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(718); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 807: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(797); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 808: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(783); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 809: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(758); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 810: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(720); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 811: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(722); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 812: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(747); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 813: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(749); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 814: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(751); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 815: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(850); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 816: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(871); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 817: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(809); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 818: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'n') ADVANCE(798); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 819: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(847); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 820: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(800); + if (lookahead == 'r') ADVANCE(819); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 821: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(868); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 822: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(834); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 823: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(802); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 824: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(815); + if (lookahead == 'r') ADVANCE(819); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 825: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'o') ADVANCE(778); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 826: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'p') ADVANCE(743); + if (lookahead == 'v') ADVANCE(752); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 827: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'p') ADVANCE(744); + if (lookahead == 't') ADVANCE(756); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 828: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'p') ADVANCE(744); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 829: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'p') ADVANCE(760); + if (lookahead == 's') ADVANCE(830); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 830: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'p') ADVANCE(761); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 831: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(771); + if (lookahead == 'u') ADVANCE(730); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 832: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(421); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 833: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(770); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 834: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(457); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 835: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(753); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 836: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(819); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 837: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(531); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 838: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(839); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 839: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(774); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 840: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(726); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 841: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(805); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 842: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(755); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 843: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(810); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'r') ADVANCE(811); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(830); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(527); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(851); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(860); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(855); + if (lookahead == 't') ADVANCE(781); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(855); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 's') ADVANCE(786); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(869); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 853: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(354); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 854: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(358); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 855: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(473); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 856: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(501); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 857: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(477); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 858: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(433); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 859: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(872); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 860: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(840); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 861: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(711); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 862: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(822); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 863: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(779); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 864: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(767); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 865: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(748); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 866: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(757); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 867: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(766); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 868: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 't') ADVANCE(725); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 869: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(719); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 870: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(746); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 871: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(759); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 872: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'u') ADVANCE(841); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 873: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'v') ADVANCE(727); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 874: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(827); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 875: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(461); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 876: + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(828); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 877: + ACCEPT_TOKEN(sym__alpha_identifier); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); + END_STATE(); + case 878: + ACCEPT_TOKEN(sym__backtick_identifier); + END_STATE(); + case 879: + ACCEPT_TOKEN(anon_sym_BSLASHu); + END_STATE(); + case 880: + ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); + END_STATE(); + case 881: + ACCEPT_TOKEN(sym__escaped_identifier); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'L', 1, + 'a', 2, + 'b', 3, + 'c', 4, + 'd', 5, + 'e', 6, + 'f', 7, + 'i', 8, + 'n', 9, + 'o', 10, + 'p', 11, + 'r', 12, + 's', 13, + 't', 14, + 'v', 15, + 'w', 16, + 'U', 17, + 'u', 17, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); + END_STATE(); + case 1: + ACCEPT_TOKEN(anon_sym_L); + END_STATE(); + case 2: + if (lookahead == 's') ADVANCE(18); + END_STATE(); + case 3: + if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'y') ADVANCE(20); + END_STATE(); + case 4: + if (lookahead == 'a') ADVANCE(21); + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'o') ADVANCE(23); + END_STATE(); + case 5: + if (lookahead == 'e') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'y') ADVANCE(26); + END_STATE(); + case 6: + if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'n') ADVANCE(28); + END_STATE(); + case 7: + if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'i') ADVANCE(30); + if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'u') ADVANCE(32); + END_STATE(); + case 8: + if (lookahead == 'f') ADVANCE(33); + if (lookahead == 'm') ADVANCE(34); + if (lookahead == 'n') ADVANCE(35); + if (lookahead == 's') ADVANCE(36); + END_STATE(); + case 9: + if (lookahead == 'u') ADVANCE(37); + END_STATE(); + case 10: + if (lookahead == 'b') ADVANCE(38); + if (lookahead == 'u') ADVANCE(39); + END_STATE(); + case 11: + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'r') ADVANCE(41); + END_STATE(); + case 12: + if (lookahead == 'e') ADVANCE(42); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'u') ADVANCE(44); + END_STATE(); + case 14: + if (lookahead == 'h') ADVANCE(45); + if (lookahead == 'r') ADVANCE(46); + if (lookahead == 'y') ADVANCE(47); + END_STATE(); + case 15: + if (lookahead == 'a') ADVANCE(48); + END_STATE(); + case 16: + if (lookahead == 'h') ADVANCE(49); + END_STATE(); + case 17: + ACCEPT_TOKEN(aux_sym_unsigned_literal_token1); + if (lookahead == 'L') ADVANCE(50); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 19: + if (lookahead == 'e') ADVANCE(51); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_by); + END_STATE(); + case 21: + if (lookahead == 't') ADVANCE(52); + END_STATE(); + case 22: + if (lookahead == 'a') ADVANCE(53); + END_STATE(); + case 23: + if (lookahead == 'm') ADVANCE(54); + if (lookahead == 'n') ADVANCE(55); + END_STATE(); + case 24: + if (lookahead == 'l') ADVANCE(56); + END_STATE(); + case 25: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 26: + if (lookahead == 'n') ADVANCE(57); + END_STATE(); + case 27: + if (lookahead == 's') ADVANCE(58); + END_STATE(); + case 28: + if (lookahead == 'u') ADVANCE(59); + END_STATE(); + case 29: + if (lookahead == 'l') ADVANCE(60); + END_STATE(); + case 30: + if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'l') ADVANCE(62); + if (lookahead == 'n') ADVANCE(63); + END_STATE(); + case 31: + if (lookahead == 'r') ADVANCE(64); + END_STATE(); + case 32: + if (lookahead == 'n') ADVANCE(65); + END_STATE(); + case 33: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 34: + if (lookahead == 'p') ADVANCE(66); + END_STATE(); + case 35: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'i') ADVANCE(67); + if (lookahead == 't') ADVANCE(68); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_is); + END_STATE(); + case 37: + if (lookahead == 'l') ADVANCE(69); + END_STATE(); + case 38: + if (lookahead == 'j') ADVANCE(70); + END_STATE(); + case 39: + if (lookahead == 't') ADVANCE(71); + END_STATE(); + case 40: + if (lookahead == 'c') ADVANCE(72); + if (lookahead == 'r') ADVANCE(73); + END_STATE(); + case 41: + if (lookahead == 'o') ADVANCE(74); + END_STATE(); + case 42: + if (lookahead == 'c') ADVANCE(75); + if (lookahead == 'i') ADVANCE(76); + if (lookahead == 't') ADVANCE(77); + END_STATE(); + case 43: + if (lookahead == 't') ADVANCE(78); + END_STATE(); + case 44: + if (lookahead == 'p') ADVANCE(79); + END_STATE(); + case 45: + if (lookahead == 'i') ADVANCE(80); + if (lookahead == 'r') ADVANCE(81); + END_STATE(); + case 46: + if (lookahead == 'u') ADVANCE(82); + if (lookahead == 'y') ADVANCE(83); + END_STATE(); + case 47: + if (lookahead == 'p') ADVANCE(84); + END_STATE(); + case 48: + if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'r') ADVANCE(86); + END_STATE(); + case 49: + if (lookahead == 'e') ADVANCE(87); + if (lookahead == 'i') ADVANCE(88); + END_STATE(); + case 50: + ACCEPT_TOKEN(aux_sym_unsigned_literal_token1); + END_STATE(); + case 51: + if (lookahead == 'a') ADVANCE(89); + END_STATE(); + case 52: + if (lookahead == 'c') ADVANCE(90); + END_STATE(); + case 53: + if (lookahead == 's') ADVANCE(91); + END_STATE(); + case 54: + if (lookahead == 'p') ADVANCE(92); + END_STATE(); + case 55: + if (lookahead == 's') ADVANCE(93); + if (lookahead == 't') ADVANCE(94); + END_STATE(); + case 56: + if (lookahead == 'e') ADVANCE(95); + END_STATE(); + case 57: + if (lookahead == 'a') ADVANCE(96); + END_STATE(); + case 58: + if (lookahead == 'e') ADVANCE(97); + END_STATE(); + case 59: + if (lookahead == 'm') ADVANCE(98); + END_STATE(); + case 60: + if (lookahead == 's') ADVANCE(99); + END_STATE(); + case 61: + if (lookahead == 'l') ADVANCE(100); + END_STATE(); + case 62: + if (lookahead == 'e') ADVANCE(101); + END_STATE(); + case 63: + if (lookahead == 'a') ADVANCE(102); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_fun); + END_STATE(); + case 66: + if (lookahead == 'o') ADVANCE(103); + END_STATE(); + case 67: + if (lookahead == 't') ADVANCE(104); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(105); + END_STATE(); + case 69: + if (lookahead == 'l') ADVANCE(106); + END_STATE(); + case 70: + if (lookahead == 'e') ADVANCE(107); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_out); + END_STATE(); + case 72: + if (lookahead == 'k') ADVANCE(108); + END_STATE(); + case 73: + if (lookahead == 'a') ADVANCE(109); + END_STATE(); + case 74: + if (lookahead == 'p') ADVANCE(110); + END_STATE(); + case 75: + if (lookahead == 'e') ADVANCE(111); + END_STATE(); + case 76: + if (lookahead == 'f') ADVANCE(112); + END_STATE(); + case 77: + if (lookahead == 'u') ADVANCE(113); + END_STATE(); + case 78: + if (lookahead == 'p') ADVANCE(114); + END_STATE(); + case 79: + if (lookahead == 'e') ADVANCE(115); + END_STATE(); + case 80: + if (lookahead == 's') ADVANCE(116); + END_STATE(); + case 81: + if (lookahead == 'o') ADVANCE(117); + END_STATE(); + case 82: + if (lookahead == 'e') ADVANCE(118); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 84: + if (lookahead == 'e') ADVANCE(119); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_val); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 87: + if (lookahead == 'n') ADVANCE(120); + if (lookahead == 'r') ADVANCE(121); + END_STATE(); + case 88: + if (lookahead == 'l') ADVANCE(122); + END_STATE(); + case 89: + if (lookahead == 'k') ADVANCE(123); + END_STATE(); + case 90: + if (lookahead == 'h') ADVANCE(124); + END_STATE(); + case 91: + if (lookahead == 's') ADVANCE(125); + END_STATE(); + case 92: + if (lookahead == 'a') ADVANCE(126); + END_STATE(); + case 93: + if (lookahead == 't') ADVANCE(127); + END_STATE(); + case 94: + if (lookahead == 'i') ADVANCE(128); + END_STATE(); + case 95: + if (lookahead == 'g') ADVANCE(129); + END_STATE(); + case 96: + if (lookahead == 'm') ADVANCE(130); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 99: + if (lookahead == 'e') ADVANCE(131); + END_STATE(); + case 100: + if (lookahead == 'd') ADVANCE(132); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_file); + END_STATE(); + case 102: + if (lookahead == 'l') ADVANCE(133); + END_STATE(); + case 103: + if (lookahead == 'r') ADVANCE(134); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_init); + END_STATE(); + case 105: + if (lookahead == 'r') ADVANCE(135); + END_STATE(); + case 106: + ACCEPT_TOKEN(sym_null_literal); + END_STATE(); + case 107: + if (lookahead == 'c') ADVANCE(136); + END_STATE(); + case 108: + if (lookahead == 'a') ADVANCE(137); + END_STATE(); + case 109: + if (lookahead == 'm') ADVANCE(138); + END_STATE(); + case 110: + if (lookahead == 'e') ADVANCE(139); + END_STATE(); + case 111: + if (lookahead == 'i') ADVANCE(140); + END_STATE(); + case 112: + if (lookahead == 'i') ADVANCE(141); + END_STATE(); + case 113: + if (lookahead == 'r') ADVANCE(142); + END_STATE(); + case 114: + if (lookahead == 'a') ADVANCE(143); + END_STATE(); + case 115: + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_this); + END_STATE(); + case 117: + if (lookahead == 'w') ADVANCE(145); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 119: + if (lookahead == 'a') ADVANCE(146); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_when); + END_STATE(); + case 121: + if (lookahead == 'e') ADVANCE(147); + END_STATE(); + case 122: + if (lookahead == 'e') ADVANCE(148); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 126: + if (lookahead == 'n') ADVANCE(149); + END_STATE(); + case 127: + if (lookahead == 'r') ADVANCE(150); + END_STATE(); + case 128: + if (lookahead == 'n') ADVANCE(151); + END_STATE(); + case 129: + if (lookahead == 'a') ADVANCE(152); + END_STATE(); + case 130: + if (lookahead == 'i') ADVANCE(153); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_field); + END_STATE(); + case 133: + if (lookahead == 'l') ADVANCE(154); + END_STATE(); + case 134: + if (lookahead == 't') ADVANCE(155); + END_STATE(); + case 135: + if (lookahead == 'f') ADVANCE(156); + END_STATE(); + case 136: + if (lookahead == 't') ADVANCE(157); + END_STATE(); + case 137: + if (lookahead == 'g') ADVANCE(158); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_param); + END_STATE(); + case 139: + if (lookahead == 'r') ADVANCE(159); + END_STATE(); + case 140: + if (lookahead == 'v') ADVANCE(160); + END_STATE(); + case 141: + if (lookahead == 'e') ADVANCE(161); + END_STATE(); + case 142: + if (lookahead == 'n') ADVANCE(162); + END_STATE(); + case 143: + if (lookahead == 'r') ADVANCE(163); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_super); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_throw); + END_STATE(); + case 146: + if (lookahead == 'l') ADVANCE(164); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 149: + if (lookahead == 'i') ADVANCE(165); + END_STATE(); + case 150: + if (lookahead == 'u') ADVANCE(166); + END_STATE(); + case 151: + if (lookahead == 'u') ADVANCE(167); + END_STATE(); + case 152: + if (lookahead == 't') ADVANCE(168); + END_STATE(); + case 153: + if (lookahead == 'c') ADVANCE(169); + END_STATE(); + case 154: + if (lookahead == 'y') ADVANCE(170); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 156: + if (lookahead == 'a') ADVANCE(171); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_object); + END_STATE(); + case 158: + if (lookahead == 'e') ADVANCE(172); + END_STATE(); + case 159: + if (lookahead == 't') ADVANCE(173); + END_STATE(); + case 160: + if (lookahead == 'e') ADVANCE(174); + END_STATE(); + case 161: + if (lookahead == 'd') ADVANCE(175); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 163: + if (lookahead == 'a') ADVANCE(176); + END_STATE(); + case 164: + if (lookahead == 'i') ADVANCE(177); + END_STATE(); + case 165: + if (lookahead == 'o') ADVANCE(178); + END_STATE(); + case 166: + if (lookahead == 'c') ADVANCE(179); + END_STATE(); + case 167: + if (lookahead == 'e') ADVANCE(180); + END_STATE(); + case 168: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_dynamic); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 171: + if (lookahead == 'c') ADVANCE(182); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_package); + END_STATE(); + case 173: + if (lookahead == 'y') ADVANCE(183); + END_STATE(); + case 174: + if (lookahead == 'r') ADVANCE(184); + END_STATE(); + case 175: + ACCEPT_TOKEN(sym_reification_modifier); + END_STATE(); + case 176: + if (lookahead == 'm') ADVANCE(185); + END_STATE(); + case 177: + if (lookahead == 'a') ADVANCE(186); + END_STATE(); + case 178: + if (lookahead == 'n') ADVANCE(187); + END_STATE(); + case 179: + if (lookahead == 't') ADVANCE(188); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_delegate); + END_STATE(); + case 182: + if (lookahead == 'e') ADVANCE(189); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_property); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_receiver); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_setparam); + END_STATE(); + case 186: + if (lookahead == 's') ADVANCE(190); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_companion); + END_STATE(); + case 188: + if (lookahead == 'o') ADVANCE(191); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_interface); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_typealias); + END_STATE(); + case 191: + if (lookahead == 'r') ADVANCE(192); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_constructor); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 321, .external_lex_state = 2}, + [2] = {.lex_state = 1, .external_lex_state = 3}, + [3] = {.lex_state = 1, .external_lex_state = 3}, + [4] = {.lex_state = 1, .external_lex_state = 3}, + [5] = {.lex_state = 1, .external_lex_state = 3}, + [6] = {.lex_state = 1, .external_lex_state = 3}, + [7] = {.lex_state = 1, .external_lex_state = 4}, + [8] = {.lex_state = 1, .external_lex_state = 4}, + [9] = {.lex_state = 1, .external_lex_state = 4}, + [10] = {.lex_state = 1, .external_lex_state = 4}, + [11] = {.lex_state = 1, .external_lex_state = 4}, + [12] = {.lex_state = 1, .external_lex_state = 4}, + [13] = {.lex_state = 1, .external_lex_state = 4}, + [14] = {.lex_state = 1, .external_lex_state = 4}, + [15] = {.lex_state = 1, .external_lex_state = 4}, + [16] = {.lex_state = 1, .external_lex_state = 4}, + [17] = {.lex_state = 1, .external_lex_state = 4}, + [18] = {.lex_state = 1, .external_lex_state = 4}, + [19] = {.lex_state = 1, .external_lex_state = 3}, + [20] = {.lex_state = 1, .external_lex_state = 4}, + [21] = {.lex_state = 1, .external_lex_state = 4}, + [22] = {.lex_state = 1, .external_lex_state = 3}, + [23] = {.lex_state = 1, .external_lex_state = 3}, + [24] = {.lex_state = 1, .external_lex_state = 3}, + [25] = {.lex_state = 1, .external_lex_state = 4}, + [26] = {.lex_state = 1, .external_lex_state = 4}, + [27] = {.lex_state = 1, .external_lex_state = 4}, + [28] = {.lex_state = 1, .external_lex_state = 3}, + [29] = {.lex_state = 1, .external_lex_state = 3}, + [30] = {.lex_state = 1, .external_lex_state = 3}, + [31] = {.lex_state = 1, .external_lex_state = 3}, + [32] = {.lex_state = 1, .external_lex_state = 4}, + [33] = {.lex_state = 1, .external_lex_state = 4}, + [34] = {.lex_state = 1, .external_lex_state = 4}, + [35] = {.lex_state = 1, .external_lex_state = 4}, + [36] = {.lex_state = 1, .external_lex_state = 4}, + [37] = {.lex_state = 1, .external_lex_state = 4}, + [38] = {.lex_state = 1, .external_lex_state = 4}, + [39] = {.lex_state = 1, .external_lex_state = 4}, + [40] = {.lex_state = 1, .external_lex_state = 4}, + [41] = {.lex_state = 1, .external_lex_state = 3}, + [42] = {.lex_state = 1, .external_lex_state = 4}, + [43] = {.lex_state = 1, .external_lex_state = 3}, + [44] = {.lex_state = 1, .external_lex_state = 4}, + [45] = {.lex_state = 1, .external_lex_state = 4}, + [46] = {.lex_state = 1, .external_lex_state = 4}, + [47] = {.lex_state = 1, .external_lex_state = 3}, + [48] = {.lex_state = 1, .external_lex_state = 4}, + [49] = {.lex_state = 1, .external_lex_state = 3}, + [50] = {.lex_state = 1, .external_lex_state = 4}, + [51] = {.lex_state = 1, .external_lex_state = 4}, + [52] = {.lex_state = 321, .external_lex_state = 2}, + [53] = {.lex_state = 321, .external_lex_state = 2}, + [54] = {.lex_state = 321, .external_lex_state = 2}, + [55] = {.lex_state = 11, .external_lex_state = 5}, + [56] = {.lex_state = 11, .external_lex_state = 5}, + [57] = {.lex_state = 11, .external_lex_state = 5}, + [58] = {.lex_state = 321, .external_lex_state = 2}, + [59] = {.lex_state = 321, .external_lex_state = 2}, + [60] = {.lex_state = 321, .external_lex_state = 2}, + [61] = {.lex_state = 321, .external_lex_state = 2}, + [62] = {.lex_state = 321, .external_lex_state = 2}, + [63] = {.lex_state = 321, .external_lex_state = 2}, + [64] = {.lex_state = 321, .external_lex_state = 2}, + [65] = {.lex_state = 321, .external_lex_state = 2}, + [66] = {.lex_state = 321, .external_lex_state = 2}, + [67] = {.lex_state = 321, .external_lex_state = 2}, + [68] = {.lex_state = 321, .external_lex_state = 2}, + [69] = {.lex_state = 321, .external_lex_state = 2}, + [70] = {.lex_state = 321, .external_lex_state = 2}, + [71] = {.lex_state = 321, .external_lex_state = 2}, + [72] = {.lex_state = 321, .external_lex_state = 2}, + [73] = {.lex_state = 321, .external_lex_state = 2}, + [74] = {.lex_state = 321, .external_lex_state = 2}, + [75] = {.lex_state = 321, .external_lex_state = 2}, + [76] = {.lex_state = 321, .external_lex_state = 2}, + [77] = {.lex_state = 321, .external_lex_state = 2}, + [78] = {.lex_state = 321, .external_lex_state = 2}, + [79] = {.lex_state = 321, .external_lex_state = 2}, + [80] = {.lex_state = 321, .external_lex_state = 2}, + [81] = {.lex_state = 321, .external_lex_state = 2}, + [82] = {.lex_state = 321, .external_lex_state = 2}, + [83] = {.lex_state = 321, .external_lex_state = 2}, + [84] = {.lex_state = 321, .external_lex_state = 2}, + [85] = {.lex_state = 321, .external_lex_state = 2}, + [86] = {.lex_state = 321, .external_lex_state = 5}, + [87] = {.lex_state = 321, .external_lex_state = 2}, + [88] = {.lex_state = 321, .external_lex_state = 2}, + [89] = {.lex_state = 321, .external_lex_state = 2}, + [90] = {.lex_state = 321, .external_lex_state = 2}, + [91] = {.lex_state = 321, .external_lex_state = 2}, + [92] = {.lex_state = 321, .external_lex_state = 2}, + [93] = {.lex_state = 321, .external_lex_state = 2}, + [94] = {.lex_state = 321, .external_lex_state = 2}, + [95] = {.lex_state = 321, .external_lex_state = 2}, + [96] = {.lex_state = 321, .external_lex_state = 5}, + [97] = {.lex_state = 321, .external_lex_state = 2}, + [98] = {.lex_state = 321, .external_lex_state = 2}, + [99] = {.lex_state = 321, .external_lex_state = 2}, + [100] = {.lex_state = 321, .external_lex_state = 2}, + [101] = {.lex_state = 321, .external_lex_state = 2}, + [102] = {.lex_state = 321, .external_lex_state = 2}, + [103] = {.lex_state = 321, .external_lex_state = 2}, + [104] = {.lex_state = 321, .external_lex_state = 2}, + [105] = {.lex_state = 321, .external_lex_state = 5}, + [106] = {.lex_state = 321, .external_lex_state = 2}, + [107] = {.lex_state = 321, .external_lex_state = 2}, + [108] = {.lex_state = 321, .external_lex_state = 2}, + [109] = {.lex_state = 321, .external_lex_state = 2}, + [110] = {.lex_state = 321, .external_lex_state = 2}, + [111] = {.lex_state = 321, .external_lex_state = 2}, + [112] = {.lex_state = 321, .external_lex_state = 2}, + [113] = {.lex_state = 321, .external_lex_state = 2}, + [114] = {.lex_state = 321, .external_lex_state = 2}, + [115] = {.lex_state = 321, .external_lex_state = 2}, + [116] = {.lex_state = 321, .external_lex_state = 2}, + [117] = {.lex_state = 321, .external_lex_state = 2}, + [118] = {.lex_state = 321, .external_lex_state = 2}, + [119] = {.lex_state = 321, .external_lex_state = 2}, + [120] = {.lex_state = 321, .external_lex_state = 2}, + [121] = {.lex_state = 321, .external_lex_state = 2}, + [122] = {.lex_state = 321, .external_lex_state = 2}, + [123] = {.lex_state = 321, .external_lex_state = 2}, + [124] = {.lex_state = 321, .external_lex_state = 2}, + [125] = {.lex_state = 321, .external_lex_state = 2}, + [126] = {.lex_state = 321, .external_lex_state = 2}, + [127] = {.lex_state = 321, .external_lex_state = 2}, + [128] = {.lex_state = 321, .external_lex_state = 2}, + [129] = {.lex_state = 321, .external_lex_state = 2}, + [130] = {.lex_state = 321, .external_lex_state = 2}, + [131] = {.lex_state = 321, .external_lex_state = 2}, + [132] = {.lex_state = 321, .external_lex_state = 2}, + [133] = {.lex_state = 321, .external_lex_state = 2}, + [134] = {.lex_state = 321, .external_lex_state = 2}, + [135] = {.lex_state = 321, .external_lex_state = 2}, + [136] = {.lex_state = 321, .external_lex_state = 2}, + [137] = {.lex_state = 321, .external_lex_state = 2}, + [138] = {.lex_state = 321, .external_lex_state = 2}, + [139] = {.lex_state = 321, .external_lex_state = 2}, + [140] = {.lex_state = 321, .external_lex_state = 2}, + [141] = {.lex_state = 321, .external_lex_state = 2}, + [142] = {.lex_state = 321, .external_lex_state = 2}, + [143] = {.lex_state = 321, .external_lex_state = 2}, + [144] = {.lex_state = 321, .external_lex_state = 2}, + [145] = {.lex_state = 321, .external_lex_state = 2}, + [146] = {.lex_state = 321, .external_lex_state = 2}, + [147] = {.lex_state = 321, .external_lex_state = 2}, + [148] = {.lex_state = 321, .external_lex_state = 2}, + [149] = {.lex_state = 321, .external_lex_state = 2}, + [150] = {.lex_state = 321, .external_lex_state = 2}, + [151] = {.lex_state = 321, .external_lex_state = 2}, + [152] = {.lex_state = 321, .external_lex_state = 2}, + [153] = {.lex_state = 321, .external_lex_state = 2}, + [154] = {.lex_state = 321, .external_lex_state = 2}, + [155] = {.lex_state = 321, .external_lex_state = 2}, + [156] = {.lex_state = 321, .external_lex_state = 2}, + [157] = {.lex_state = 321, .external_lex_state = 2}, + [158] = {.lex_state = 321, .external_lex_state = 2}, + [159] = {.lex_state = 321, .external_lex_state = 2}, + [160] = {.lex_state = 321, .external_lex_state = 2}, + [161] = {.lex_state = 321, .external_lex_state = 2}, + [162] = {.lex_state = 321, .external_lex_state = 2}, + [163] = {.lex_state = 321, .external_lex_state = 2}, + [164] = {.lex_state = 321, .external_lex_state = 2}, + [165] = {.lex_state = 321, .external_lex_state = 2}, + [166] = {.lex_state = 321, .external_lex_state = 2}, + [167] = {.lex_state = 321, .external_lex_state = 2}, + [168] = {.lex_state = 321, .external_lex_state = 2}, + [169] = {.lex_state = 321, .external_lex_state = 2}, + [170] = {.lex_state = 321, .external_lex_state = 2}, + [171] = {.lex_state = 321, .external_lex_state = 2}, + [172] = {.lex_state = 321, .external_lex_state = 2}, + [173] = {.lex_state = 321, .external_lex_state = 2}, + [174] = {.lex_state = 321, .external_lex_state = 2}, + [175] = {.lex_state = 321, .external_lex_state = 2}, + [176] = {.lex_state = 321, .external_lex_state = 2}, + [177] = {.lex_state = 321, .external_lex_state = 2}, + [178] = {.lex_state = 321, .external_lex_state = 2}, + [179] = {.lex_state = 321, .external_lex_state = 2}, + [180] = {.lex_state = 321, .external_lex_state = 2}, + [181] = {.lex_state = 321, .external_lex_state = 2}, + [182] = {.lex_state = 321, .external_lex_state = 2}, + [183] = {.lex_state = 321, .external_lex_state = 2}, + [184] = {.lex_state = 321, .external_lex_state = 2}, + [185] = {.lex_state = 321, .external_lex_state = 2}, + [186] = {.lex_state = 321, .external_lex_state = 2}, + [187] = {.lex_state = 321, .external_lex_state = 2}, + [188] = {.lex_state = 321, .external_lex_state = 2}, + [189] = {.lex_state = 321, .external_lex_state = 2}, + [190] = {.lex_state = 321, .external_lex_state = 2}, + [191] = {.lex_state = 321, .external_lex_state = 2}, + [192] = {.lex_state = 321, .external_lex_state = 2}, + [193] = {.lex_state = 321, .external_lex_state = 2}, + [194] = {.lex_state = 321, .external_lex_state = 2}, + [195] = {.lex_state = 321, .external_lex_state = 2}, + [196] = {.lex_state = 321, .external_lex_state = 2}, + [197] = {.lex_state = 321, .external_lex_state = 2}, + [198] = {.lex_state = 321, .external_lex_state = 2}, + [199] = {.lex_state = 321, .external_lex_state = 2}, + [200] = {.lex_state = 321, .external_lex_state = 2}, + [201] = {.lex_state = 321, .external_lex_state = 2}, + [202] = {.lex_state = 321, .external_lex_state = 2}, + [203] = {.lex_state = 321, .external_lex_state = 2}, + [204] = {.lex_state = 321, .external_lex_state = 2}, + [205] = {.lex_state = 321, .external_lex_state = 2}, + [206] = {.lex_state = 321, .external_lex_state = 2}, + [207] = {.lex_state = 321, .external_lex_state = 2}, + [208] = {.lex_state = 321, .external_lex_state = 2}, + [209] = {.lex_state = 321, .external_lex_state = 2}, + [210] = {.lex_state = 321, .external_lex_state = 2}, + [211] = {.lex_state = 321, .external_lex_state = 2}, + [212] = {.lex_state = 321, .external_lex_state = 2}, + [213] = {.lex_state = 321, .external_lex_state = 2}, + [214] = {.lex_state = 321, .external_lex_state = 2}, + [215] = {.lex_state = 321, .external_lex_state = 2}, + [216] = {.lex_state = 321, .external_lex_state = 2}, + [217] = {.lex_state = 321, .external_lex_state = 2}, + [218] = {.lex_state = 321, .external_lex_state = 2}, + [219] = {.lex_state = 321, .external_lex_state = 2}, + [220] = {.lex_state = 321, .external_lex_state = 2}, + [221] = {.lex_state = 321, .external_lex_state = 2}, + [222] = {.lex_state = 321, .external_lex_state = 2}, + [223] = {.lex_state = 321, .external_lex_state = 2}, + [224] = {.lex_state = 321, .external_lex_state = 2}, + [225] = {.lex_state = 321, .external_lex_state = 2}, + [226] = {.lex_state = 321, .external_lex_state = 2}, + [227] = {.lex_state = 321, .external_lex_state = 2}, + [228] = {.lex_state = 321, .external_lex_state = 2}, + [229] = {.lex_state = 321, .external_lex_state = 2}, + [230] = {.lex_state = 321, .external_lex_state = 2}, + [231] = {.lex_state = 321, .external_lex_state = 2}, + [232] = {.lex_state = 321, .external_lex_state = 2}, + [233] = {.lex_state = 321, .external_lex_state = 2}, + [234] = {.lex_state = 321, .external_lex_state = 2}, + [235] = {.lex_state = 321, .external_lex_state = 2}, + [236] = {.lex_state = 321, .external_lex_state = 2}, + [237] = {.lex_state = 321, .external_lex_state = 2}, + [238] = {.lex_state = 321, .external_lex_state = 2}, + [239] = {.lex_state = 321, .external_lex_state = 2}, + [240] = {.lex_state = 321, .external_lex_state = 2}, + [241] = {.lex_state = 321, .external_lex_state = 2}, + [242] = {.lex_state = 321, .external_lex_state = 2}, + [243] = {.lex_state = 321, .external_lex_state = 2}, + [244] = {.lex_state = 321, .external_lex_state = 2}, + [245] = {.lex_state = 321, .external_lex_state = 2}, + [246] = {.lex_state = 321, .external_lex_state = 2}, + [247] = {.lex_state = 321, .external_lex_state = 2}, + [248] = {.lex_state = 321, .external_lex_state = 2}, + [249] = {.lex_state = 321, .external_lex_state = 2}, + [250] = {.lex_state = 321, .external_lex_state = 2}, + [251] = {.lex_state = 321, .external_lex_state = 2}, + [252] = {.lex_state = 321, .external_lex_state = 2}, + [253] = {.lex_state = 321, .external_lex_state = 2}, + [254] = {.lex_state = 321, .external_lex_state = 2}, + [255] = {.lex_state = 321, .external_lex_state = 2}, + [256] = {.lex_state = 321, .external_lex_state = 2}, + [257] = {.lex_state = 321, .external_lex_state = 2}, + [258] = {.lex_state = 321, .external_lex_state = 2}, + [259] = {.lex_state = 321, .external_lex_state = 2}, + [260] = {.lex_state = 321, .external_lex_state = 2}, + [261] = {.lex_state = 321, .external_lex_state = 2}, + [262] = {.lex_state = 321, .external_lex_state = 2}, + [263] = {.lex_state = 321, .external_lex_state = 2}, + [264] = {.lex_state = 321, .external_lex_state = 2}, + [265] = {.lex_state = 321, .external_lex_state = 2}, + [266] = {.lex_state = 321, .external_lex_state = 2}, + [267] = {.lex_state = 321, .external_lex_state = 2}, + [268] = {.lex_state = 321, .external_lex_state = 2}, + [269] = {.lex_state = 321, .external_lex_state = 2}, + [270] = {.lex_state = 321, .external_lex_state = 2}, + [271] = {.lex_state = 321, .external_lex_state = 2}, + [272] = {.lex_state = 321, .external_lex_state = 2}, + [273] = {.lex_state = 321, .external_lex_state = 2}, + [274] = {.lex_state = 321, .external_lex_state = 2}, + [275] = {.lex_state = 321, .external_lex_state = 2}, + [276] = {.lex_state = 321, .external_lex_state = 2}, + [277] = {.lex_state = 321, .external_lex_state = 2}, + [278] = {.lex_state = 321, .external_lex_state = 2}, + [279] = {.lex_state = 321, .external_lex_state = 2}, + [280] = {.lex_state = 1, .external_lex_state = 3}, + [281] = {.lex_state = 321, .external_lex_state = 2}, + [282] = {.lex_state = 321, .external_lex_state = 2}, + [283] = {.lex_state = 321, .external_lex_state = 2}, + [284] = {.lex_state = 1, .external_lex_state = 4}, + [285] = {.lex_state = 1, .external_lex_state = 4}, + [286] = {.lex_state = 1, .external_lex_state = 3}, + [287] = {.lex_state = 1, .external_lex_state = 4}, + [288] = {.lex_state = 1, .external_lex_state = 4}, + [289] = {.lex_state = 1, .external_lex_state = 3}, + [290] = {.lex_state = 1, .external_lex_state = 4}, + [291] = {.lex_state = 1, .external_lex_state = 4}, + [292] = {.lex_state = 1, .external_lex_state = 3}, + [293] = {.lex_state = 1, .external_lex_state = 4}, + [294] = {.lex_state = 1, .external_lex_state = 4}, + [295] = {.lex_state = 1, .external_lex_state = 4}, + [296] = {.lex_state = 1, .external_lex_state = 4}, + [297] = {.lex_state = 1, .external_lex_state = 4}, + [298] = {.lex_state = 1, .external_lex_state = 4}, + [299] = {.lex_state = 1, .external_lex_state = 4}, + [300] = {.lex_state = 1, .external_lex_state = 4}, + [301] = {.lex_state = 1, .external_lex_state = 4}, + [302] = {.lex_state = 1, .external_lex_state = 4}, + [303] = {.lex_state = 1, .external_lex_state = 4}, + [304] = {.lex_state = 1, .external_lex_state = 4}, + [305] = {.lex_state = 1, .external_lex_state = 4}, + [306] = {.lex_state = 1, .external_lex_state = 4}, + [307] = {.lex_state = 2, .external_lex_state = 3}, + [308] = {.lex_state = 1, .external_lex_state = 4}, + [309] = {.lex_state = 1, .external_lex_state = 4}, + [310] = {.lex_state = 1, .external_lex_state = 4}, + [311] = {.lex_state = 1, .external_lex_state = 4}, + [312] = {.lex_state = 1, .external_lex_state = 4}, + [313] = {.lex_state = 1, .external_lex_state = 4}, + [314] = {.lex_state = 1, .external_lex_state = 4}, + [315] = {.lex_state = 1, .external_lex_state = 4}, + [316] = {.lex_state = 1, .external_lex_state = 4}, + [317] = {.lex_state = 1, .external_lex_state = 4}, + [318] = {.lex_state = 1, .external_lex_state = 4}, + [319] = {.lex_state = 1, .external_lex_state = 4}, + [320] = {.lex_state = 2, .external_lex_state = 4}, + [321] = {.lex_state = 2, .external_lex_state = 4}, + [322] = {.lex_state = 2, .external_lex_state = 3}, + [323] = {.lex_state = 1, .external_lex_state = 4}, + [324] = {.lex_state = 1, .external_lex_state = 4}, + [325] = {.lex_state = 2, .external_lex_state = 4}, + [326] = {.lex_state = 1, .external_lex_state = 4}, + [327] = {.lex_state = 1, .external_lex_state = 4}, + [328] = {.lex_state = 1, .external_lex_state = 4}, + [329] = {.lex_state = 2, .external_lex_state = 4}, + [330] = {.lex_state = 1, .external_lex_state = 4}, + [331] = {.lex_state = 1, .external_lex_state = 4}, + [332] = {.lex_state = 1, .external_lex_state = 4}, + [333] = {.lex_state = 1, .external_lex_state = 4}, + [334] = {.lex_state = 1, .external_lex_state = 4}, + [335] = {.lex_state = 1, .external_lex_state = 4}, + [336] = {.lex_state = 1, .external_lex_state = 4}, + [337] = {.lex_state = 2, .external_lex_state = 3}, + [338] = {.lex_state = 1, .external_lex_state = 4}, + [339] = {.lex_state = 1, .external_lex_state = 4}, + [340] = {.lex_state = 1, .external_lex_state = 4}, + [341] = {.lex_state = 1, .external_lex_state = 4}, + [342] = {.lex_state = 1, .external_lex_state = 4}, + [343] = {.lex_state = 1, .external_lex_state = 4}, + [344] = {.lex_state = 1, .external_lex_state = 4}, + [345] = {.lex_state = 1, .external_lex_state = 4}, + [346] = {.lex_state = 1, .external_lex_state = 4}, + [347] = {.lex_state = 1, .external_lex_state = 4}, + [348] = {.lex_state = 1, .external_lex_state = 4}, + [349] = {.lex_state = 1, .external_lex_state = 4}, + [350] = {.lex_state = 1, .external_lex_state = 4}, + [351] = {.lex_state = 1, .external_lex_state = 4}, + [352] = {.lex_state = 1, .external_lex_state = 4}, + [353] = {.lex_state = 1, .external_lex_state = 4}, + [354] = {.lex_state = 1, .external_lex_state = 4}, + [355] = {.lex_state = 1, .external_lex_state = 4}, + [356] = {.lex_state = 321, .external_lex_state = 2}, + [357] = {.lex_state = 321, .external_lex_state = 2}, + [358] = {.lex_state = 321, .external_lex_state = 2}, + [359] = {.lex_state = 321, .external_lex_state = 2}, + [360] = {.lex_state = 321, .external_lex_state = 2}, + [361] = {.lex_state = 321, .external_lex_state = 2}, + [362] = {.lex_state = 321, .external_lex_state = 2}, + [363] = {.lex_state = 321, .external_lex_state = 2}, + [364] = {.lex_state = 321, .external_lex_state = 2}, + [365] = {.lex_state = 321, .external_lex_state = 2}, + [366] = {.lex_state = 321, .external_lex_state = 2}, + [367] = {.lex_state = 321, .external_lex_state = 2}, + [368] = {.lex_state = 321, .external_lex_state = 2}, + [369] = {.lex_state = 321, .external_lex_state = 2}, + [370] = {.lex_state = 321, .external_lex_state = 2}, + [371] = {.lex_state = 321, .external_lex_state = 2}, + [372] = {.lex_state = 321, .external_lex_state = 2}, + [373] = {.lex_state = 321, .external_lex_state = 2}, + [374] = {.lex_state = 321, .external_lex_state = 2}, + [375] = {.lex_state = 321, .external_lex_state = 2}, + [376] = {.lex_state = 321, .external_lex_state = 2}, + [377] = {.lex_state = 321, .external_lex_state = 2}, + [378] = {.lex_state = 321, .external_lex_state = 2}, + [379] = {.lex_state = 321, .external_lex_state = 2}, + [380] = {.lex_state = 2, .external_lex_state = 4}, + [381] = {.lex_state = 2, .external_lex_state = 4}, + [382] = {.lex_state = 2, .external_lex_state = 3}, + [383] = {.lex_state = 1, .external_lex_state = 4}, + [384] = {.lex_state = 1, .external_lex_state = 4}, + [385] = {.lex_state = 1, .external_lex_state = 4}, + [386] = {.lex_state = 1, .external_lex_state = 4}, + [387] = {.lex_state = 1, .external_lex_state = 4}, + [388] = {.lex_state = 1, .external_lex_state = 4}, + [389] = {.lex_state = 1, .external_lex_state = 4}, + [390] = {.lex_state = 1, .external_lex_state = 4}, + [391] = {.lex_state = 1, .external_lex_state = 4}, + [392] = {.lex_state = 1, .external_lex_state = 4}, + [393] = {.lex_state = 1, .external_lex_state = 4}, + [394] = {.lex_state = 1, .external_lex_state = 4}, + [395] = {.lex_state = 1, .external_lex_state = 4}, + [396] = {.lex_state = 1, .external_lex_state = 4}, + [397] = {.lex_state = 1, .external_lex_state = 4}, + [398] = {.lex_state = 2, .external_lex_state = 4}, + [399] = {.lex_state = 1, .external_lex_state = 4}, + [400] = {.lex_state = 1, .external_lex_state = 4}, + [401] = {.lex_state = 2, .external_lex_state = 4}, + [402] = {.lex_state = 1, .external_lex_state = 4}, + [403] = {.lex_state = 1, .external_lex_state = 4}, + [404] = {.lex_state = 1, .external_lex_state = 4}, + [405] = {.lex_state = 1, .external_lex_state = 4}, + [406] = {.lex_state = 1, .external_lex_state = 4}, + [407] = {.lex_state = 1, .external_lex_state = 4}, + [408] = {.lex_state = 1, .external_lex_state = 4}, + [409] = {.lex_state = 1, .external_lex_state = 4}, + [410] = {.lex_state = 1, .external_lex_state = 4}, + [411] = {.lex_state = 1, .external_lex_state = 4}, + [412] = {.lex_state = 1, .external_lex_state = 4}, + [413] = {.lex_state = 1, .external_lex_state = 4}, + [414] = {.lex_state = 1, .external_lex_state = 4}, + [415] = {.lex_state = 1, .external_lex_state = 4}, + [416] = {.lex_state = 1, .external_lex_state = 4}, + [417] = {.lex_state = 1, .external_lex_state = 4}, + [418] = {.lex_state = 1, .external_lex_state = 4}, + [419] = {.lex_state = 1, .external_lex_state = 4}, + [420] = {.lex_state = 1, .external_lex_state = 4}, + [421] = {.lex_state = 1, .external_lex_state = 4}, + [422] = {.lex_state = 1, .external_lex_state = 4}, + [423] = {.lex_state = 1, .external_lex_state = 4}, + [424] = {.lex_state = 1, .external_lex_state = 4}, + [425] = {.lex_state = 1, .external_lex_state = 4}, + [426] = {.lex_state = 1, .external_lex_state = 4}, + [427] = {.lex_state = 1, .external_lex_state = 4}, + [428] = {.lex_state = 1, .external_lex_state = 4}, + [429] = {.lex_state = 1, .external_lex_state = 4}, + [430] = {.lex_state = 1, .external_lex_state = 4}, + [431] = {.lex_state = 1, .external_lex_state = 4}, + [432] = {.lex_state = 1, .external_lex_state = 4}, + [433] = {.lex_state = 1, .external_lex_state = 4}, + [434] = {.lex_state = 1, .external_lex_state = 4}, + [435] = {.lex_state = 1, .external_lex_state = 4}, + [436] = {.lex_state = 1, .external_lex_state = 4}, + [437] = {.lex_state = 1, .external_lex_state = 4}, + [438] = {.lex_state = 1, .external_lex_state = 4}, + [439] = {.lex_state = 1, .external_lex_state = 4}, + [440] = {.lex_state = 1, .external_lex_state = 4}, + [441] = {.lex_state = 1, .external_lex_state = 4}, + [442] = {.lex_state = 1, .external_lex_state = 4}, + [443] = {.lex_state = 1, .external_lex_state = 4}, + [444] = {.lex_state = 1, .external_lex_state = 4}, + [445] = {.lex_state = 1, .external_lex_state = 4}, + [446] = {.lex_state = 1, .external_lex_state = 4}, + [447] = {.lex_state = 1, .external_lex_state = 4}, + [448] = {.lex_state = 1, .external_lex_state = 4}, + [449] = {.lex_state = 1, .external_lex_state = 4}, + [450] = {.lex_state = 1, .external_lex_state = 4}, + [451] = {.lex_state = 1, .external_lex_state = 4}, + [452] = {.lex_state = 1, .external_lex_state = 4}, + [453] = {.lex_state = 1, .external_lex_state = 4}, + [454] = {.lex_state = 1, .external_lex_state = 4}, + [455] = {.lex_state = 1, .external_lex_state = 4}, + [456] = {.lex_state = 1, .external_lex_state = 4}, + [457] = {.lex_state = 1, .external_lex_state = 4}, + [458] = {.lex_state = 1, .external_lex_state = 4}, + [459] = {.lex_state = 1, .external_lex_state = 4}, + [460] = {.lex_state = 1, .external_lex_state = 4}, + [461] = {.lex_state = 1, .external_lex_state = 4}, + [462] = {.lex_state = 1, .external_lex_state = 4}, + [463] = {.lex_state = 1, .external_lex_state = 4}, + [464] = {.lex_state = 1, .external_lex_state = 4}, + [465] = {.lex_state = 1, .external_lex_state = 4}, + [466] = {.lex_state = 1, .external_lex_state = 4}, + [467] = {.lex_state = 1, .external_lex_state = 4}, + [468] = {.lex_state = 1, .external_lex_state = 4}, + [469] = {.lex_state = 1, .external_lex_state = 4}, + [470] = {.lex_state = 1, .external_lex_state = 4}, + [471] = {.lex_state = 1, .external_lex_state = 4}, + [472] = {.lex_state = 1, .external_lex_state = 4}, + [473] = {.lex_state = 1, .external_lex_state = 4}, + [474] = {.lex_state = 1, .external_lex_state = 4}, + [475] = {.lex_state = 1, .external_lex_state = 4}, + [476] = {.lex_state = 1, .external_lex_state = 4}, + [477] = {.lex_state = 1, .external_lex_state = 4}, + [478] = {.lex_state = 1, .external_lex_state = 4}, + [479] = {.lex_state = 1, .external_lex_state = 4}, + [480] = {.lex_state = 1, .external_lex_state = 4}, + [481] = {.lex_state = 1, .external_lex_state = 4}, + [482] = {.lex_state = 1, .external_lex_state = 4}, + [483] = {.lex_state = 1, .external_lex_state = 4}, + [484] = {.lex_state = 1, .external_lex_state = 4}, + [485] = {.lex_state = 1, .external_lex_state = 4}, + [486] = {.lex_state = 1, .external_lex_state = 4}, + [487] = {.lex_state = 1, .external_lex_state = 4}, + [488] = {.lex_state = 1, .external_lex_state = 4}, + [489] = {.lex_state = 1, .external_lex_state = 4}, + [490] = {.lex_state = 1, .external_lex_state = 4}, + [491] = {.lex_state = 1, .external_lex_state = 4}, + [492] = {.lex_state = 1, .external_lex_state = 4}, + [493] = {.lex_state = 1, .external_lex_state = 4}, + [494] = {.lex_state = 1, .external_lex_state = 4}, + [495] = {.lex_state = 1, .external_lex_state = 4}, + [496] = {.lex_state = 1, .external_lex_state = 4}, + [497] = {.lex_state = 1, .external_lex_state = 4}, + [498] = {.lex_state = 1, .external_lex_state = 4}, + [499] = {.lex_state = 1, .external_lex_state = 4}, + [500] = {.lex_state = 1, .external_lex_state = 4}, + [501] = {.lex_state = 1, .external_lex_state = 4}, + [502] = {.lex_state = 1, .external_lex_state = 4}, + [503] = {.lex_state = 1, .external_lex_state = 4}, + [504] = {.lex_state = 1, .external_lex_state = 4}, + [505] = {.lex_state = 1, .external_lex_state = 4}, + [506] = {.lex_state = 1, .external_lex_state = 4}, + [507] = {.lex_state = 1, .external_lex_state = 4}, + [508] = {.lex_state = 1, .external_lex_state = 4}, + [509] = {.lex_state = 1, .external_lex_state = 4}, + [510] = {.lex_state = 1, .external_lex_state = 4}, + [511] = {.lex_state = 1, .external_lex_state = 4}, + [512] = {.lex_state = 1, .external_lex_state = 4}, + [513] = {.lex_state = 1, .external_lex_state = 4}, + [514] = {.lex_state = 1, .external_lex_state = 4}, + [515] = {.lex_state = 1, .external_lex_state = 4}, + [516] = {.lex_state = 1, .external_lex_state = 4}, + [517] = {.lex_state = 1, .external_lex_state = 4}, + [518] = {.lex_state = 1, .external_lex_state = 4}, + [519] = {.lex_state = 1, .external_lex_state = 4}, + [520] = {.lex_state = 1, .external_lex_state = 4}, + [521] = {.lex_state = 1, .external_lex_state = 4}, + [522] = {.lex_state = 1, .external_lex_state = 4}, + [523] = {.lex_state = 1, .external_lex_state = 4}, + [524] = {.lex_state = 1, .external_lex_state = 4}, + [525] = {.lex_state = 1, .external_lex_state = 4}, + [526] = {.lex_state = 1, .external_lex_state = 4}, + [527] = {.lex_state = 1, .external_lex_state = 4}, + [528] = {.lex_state = 1, .external_lex_state = 4}, + [529] = {.lex_state = 1, .external_lex_state = 4}, + [530] = {.lex_state = 1, .external_lex_state = 4}, + [531] = {.lex_state = 1, .external_lex_state = 4}, + [532] = {.lex_state = 1, .external_lex_state = 4}, + [533] = {.lex_state = 1, .external_lex_state = 4}, + [534] = {.lex_state = 1, .external_lex_state = 4}, + [535] = {.lex_state = 1, .external_lex_state = 4}, + [536] = {.lex_state = 1, .external_lex_state = 4}, + [537] = {.lex_state = 1, .external_lex_state = 4}, + [538] = {.lex_state = 1, .external_lex_state = 4}, + [539] = {.lex_state = 1, .external_lex_state = 4}, + [540] = {.lex_state = 1, .external_lex_state = 4}, + [541] = {.lex_state = 1, .external_lex_state = 4}, + [542] = {.lex_state = 1, .external_lex_state = 4}, + [543] = {.lex_state = 1, .external_lex_state = 4}, + [544] = {.lex_state = 1, .external_lex_state = 4}, + [545] = {.lex_state = 1, .external_lex_state = 4}, + [546] = {.lex_state = 1, .external_lex_state = 4}, + [547] = {.lex_state = 1, .external_lex_state = 4}, + [548] = {.lex_state = 1, .external_lex_state = 4}, + [549] = {.lex_state = 1, .external_lex_state = 4}, + [550] = {.lex_state = 1, .external_lex_state = 4}, + [551] = {.lex_state = 1, .external_lex_state = 4}, + [552] = {.lex_state = 1, .external_lex_state = 4}, + [553] = {.lex_state = 1, .external_lex_state = 4}, + [554] = {.lex_state = 1, .external_lex_state = 4}, + [555] = {.lex_state = 1, .external_lex_state = 4}, + [556] = {.lex_state = 1, .external_lex_state = 4}, + [557] = {.lex_state = 1, .external_lex_state = 4}, + [558] = {.lex_state = 1, .external_lex_state = 4}, + [559] = {.lex_state = 1, .external_lex_state = 4}, + [560] = {.lex_state = 1, .external_lex_state = 4}, + [561] = {.lex_state = 1, .external_lex_state = 4}, + [562] = {.lex_state = 1, .external_lex_state = 4}, + [563] = {.lex_state = 1, .external_lex_state = 4}, + [564] = {.lex_state = 1, .external_lex_state = 4}, + [565] = {.lex_state = 1, .external_lex_state = 4}, + [566] = {.lex_state = 1, .external_lex_state = 4}, + [567] = {.lex_state = 1, .external_lex_state = 4}, + [568] = {.lex_state = 1, .external_lex_state = 4}, + [569] = {.lex_state = 1, .external_lex_state = 4}, + [570] = {.lex_state = 1, .external_lex_state = 4}, + [571] = {.lex_state = 1, .external_lex_state = 4}, + [572] = {.lex_state = 1, .external_lex_state = 4}, + [573] = {.lex_state = 1, .external_lex_state = 4}, + [574] = {.lex_state = 1, .external_lex_state = 4}, + [575] = {.lex_state = 1, .external_lex_state = 4}, + [576] = {.lex_state = 1, .external_lex_state = 4}, + [577] = {.lex_state = 1, .external_lex_state = 4}, + [578] = {.lex_state = 1, .external_lex_state = 4}, + [579] = {.lex_state = 1, .external_lex_state = 4}, + [580] = {.lex_state = 1, .external_lex_state = 4}, + [581] = {.lex_state = 1, .external_lex_state = 4}, + [582] = {.lex_state = 1, .external_lex_state = 4}, + [583] = {.lex_state = 1, .external_lex_state = 4}, + [584] = {.lex_state = 1, .external_lex_state = 4}, + [585] = {.lex_state = 1, .external_lex_state = 4}, + [586] = {.lex_state = 1, .external_lex_state = 4}, + [587] = {.lex_state = 1, .external_lex_state = 4}, + [588] = {.lex_state = 1, .external_lex_state = 4}, + [589] = {.lex_state = 1, .external_lex_state = 4}, + [590] = {.lex_state = 1, .external_lex_state = 4}, + [591] = {.lex_state = 1, .external_lex_state = 4}, + [592] = {.lex_state = 1, .external_lex_state = 4}, + [593] = {.lex_state = 1, .external_lex_state = 4}, + [594] = {.lex_state = 1, .external_lex_state = 4}, + [595] = {.lex_state = 1, .external_lex_state = 4}, + [596] = {.lex_state = 1, .external_lex_state = 4}, + [597] = {.lex_state = 1, .external_lex_state = 4}, + [598] = {.lex_state = 1, .external_lex_state = 4}, + [599] = {.lex_state = 1, .external_lex_state = 4}, + [600] = {.lex_state = 1, .external_lex_state = 4}, + [601] = {.lex_state = 1, .external_lex_state = 4}, + [602] = {.lex_state = 1, .external_lex_state = 4}, + [603] = {.lex_state = 1, .external_lex_state = 4}, + [604] = {.lex_state = 1, .external_lex_state = 4}, + [605] = {.lex_state = 1, .external_lex_state = 4}, + [606] = {.lex_state = 1, .external_lex_state = 4}, + [607] = {.lex_state = 1, .external_lex_state = 4}, + [608] = {.lex_state = 1, .external_lex_state = 4}, + [609] = {.lex_state = 1, .external_lex_state = 4}, + [610] = {.lex_state = 1, .external_lex_state = 4}, + [611] = {.lex_state = 1, .external_lex_state = 4}, + [612] = {.lex_state = 1, .external_lex_state = 4}, + [613] = {.lex_state = 1, .external_lex_state = 4}, + [614] = {.lex_state = 1, .external_lex_state = 4}, + [615] = {.lex_state = 1, .external_lex_state = 4}, + [616] = {.lex_state = 1, .external_lex_state = 4}, + [617] = {.lex_state = 1, .external_lex_state = 4}, + [618] = {.lex_state = 1, .external_lex_state = 4}, + [619] = {.lex_state = 1, .external_lex_state = 4}, + [620] = {.lex_state = 1, .external_lex_state = 4}, + [621] = {.lex_state = 1, .external_lex_state = 4}, + [622] = {.lex_state = 1, .external_lex_state = 4}, + [623] = {.lex_state = 1, .external_lex_state = 4}, + [624] = {.lex_state = 1, .external_lex_state = 4}, + [625] = {.lex_state = 1, .external_lex_state = 4}, + [626] = {.lex_state = 1, .external_lex_state = 4}, + [627] = {.lex_state = 1, .external_lex_state = 4}, + [628] = {.lex_state = 1, .external_lex_state = 4}, + [629] = {.lex_state = 1, .external_lex_state = 4}, + [630] = {.lex_state = 1, .external_lex_state = 4}, + [631] = {.lex_state = 1, .external_lex_state = 4}, + [632] = {.lex_state = 1, .external_lex_state = 4}, + [633] = {.lex_state = 1, .external_lex_state = 4}, + [634] = {.lex_state = 1, .external_lex_state = 4}, + [635] = {.lex_state = 1, .external_lex_state = 4}, + [636] = {.lex_state = 1, .external_lex_state = 4}, + [637] = {.lex_state = 1, .external_lex_state = 4}, + [638] = {.lex_state = 1, .external_lex_state = 4}, + [639] = {.lex_state = 1, .external_lex_state = 4}, + [640] = {.lex_state = 1, .external_lex_state = 4}, + [641] = {.lex_state = 1, .external_lex_state = 4}, + [642] = {.lex_state = 1, .external_lex_state = 4}, + [643] = {.lex_state = 1, .external_lex_state = 4}, + [644] = {.lex_state = 1, .external_lex_state = 4}, + [645] = {.lex_state = 1, .external_lex_state = 4}, + [646] = {.lex_state = 1, .external_lex_state = 4}, + [647] = {.lex_state = 1, .external_lex_state = 4}, + [648] = {.lex_state = 1, .external_lex_state = 4}, + [649] = {.lex_state = 13, .external_lex_state = 6}, + [650] = {.lex_state = 13, .external_lex_state = 6}, + [651] = {.lex_state = 13, .external_lex_state = 6}, + [652] = {.lex_state = 13, .external_lex_state = 6}, + [653] = {.lex_state = 13, .external_lex_state = 6}, + [654] = {.lex_state = 13, .external_lex_state = 6}, + [655] = {.lex_state = 13, .external_lex_state = 6}, + [656] = {.lex_state = 13, .external_lex_state = 6}, + [657] = {.lex_state = 13, .external_lex_state = 6}, + [658] = {.lex_state = 13, .external_lex_state = 6}, + [659] = {.lex_state = 13, .external_lex_state = 6}, + [660] = {.lex_state = 13, .external_lex_state = 6}, + [661] = {.lex_state = 1, .external_lex_state = 4}, + [662] = {.lex_state = 1, .external_lex_state = 4}, + [663] = {.lex_state = 1, .external_lex_state = 4}, + [664] = {.lex_state = 1, .external_lex_state = 4}, + [665] = {.lex_state = 1, .external_lex_state = 4}, + [666] = {.lex_state = 1, .external_lex_state = 4}, + [667] = {.lex_state = 1, .external_lex_state = 4}, + [668] = {.lex_state = 1, .external_lex_state = 4}, + [669] = {.lex_state = 1, .external_lex_state = 4}, + [670] = {.lex_state = 1, .external_lex_state = 4}, + [671] = {.lex_state = 1, .external_lex_state = 4}, + [672] = {.lex_state = 1, .external_lex_state = 4}, + [673] = {.lex_state = 1, .external_lex_state = 4}, + [674] = {.lex_state = 1, .external_lex_state = 4}, + [675] = {.lex_state = 1, .external_lex_state = 4}, + [676] = {.lex_state = 1, .external_lex_state = 4}, + [677] = {.lex_state = 1, .external_lex_state = 4}, + [678] = {.lex_state = 1, .external_lex_state = 4}, + [679] = {.lex_state = 1, .external_lex_state = 4}, + [680] = {.lex_state = 1, .external_lex_state = 4}, + [681] = {.lex_state = 1, .external_lex_state = 4}, + [682] = {.lex_state = 1, .external_lex_state = 4}, + [683] = {.lex_state = 1, .external_lex_state = 4}, + [684] = {.lex_state = 1, .external_lex_state = 4}, + [685] = {.lex_state = 1, .external_lex_state = 4}, + [686] = {.lex_state = 1, .external_lex_state = 4}, + [687] = {.lex_state = 1, .external_lex_state = 4}, + [688] = {.lex_state = 1, .external_lex_state = 4}, + [689] = {.lex_state = 1, .external_lex_state = 4}, + [690] = {.lex_state = 1, .external_lex_state = 4}, + [691] = {.lex_state = 1, .external_lex_state = 4}, + [692] = {.lex_state = 1, .external_lex_state = 4}, + [693] = {.lex_state = 1, .external_lex_state = 4}, + [694] = {.lex_state = 1, .external_lex_state = 4}, + [695] = {.lex_state = 1, .external_lex_state = 4}, + [696] = {.lex_state = 1, .external_lex_state = 4}, + [697] = {.lex_state = 1, .external_lex_state = 4}, + [698] = {.lex_state = 1, .external_lex_state = 4}, + [699] = {.lex_state = 12, .external_lex_state = 2}, + [700] = {.lex_state = 12, .external_lex_state = 2}, + [701] = {.lex_state = 13, .external_lex_state = 7}, + [702] = {.lex_state = 12, .external_lex_state = 2}, + [703] = {.lex_state = 12, .external_lex_state = 2}, + [704] = {.lex_state = 12, .external_lex_state = 2}, + [705] = {.lex_state = 13, .external_lex_state = 7}, + [706] = {.lex_state = 12, .external_lex_state = 2}, + [707] = {.lex_state = 13, .external_lex_state = 7}, + [708] = {.lex_state = 13, .external_lex_state = 7}, + [709] = {.lex_state = 13, .external_lex_state = 7}, + [710] = {.lex_state = 12, .external_lex_state = 2}, + [711] = {.lex_state = 13, .external_lex_state = 7}, + [712] = {.lex_state = 13, .external_lex_state = 7}, + [713] = {.lex_state = 12, .external_lex_state = 2}, + [714] = {.lex_state = 12, .external_lex_state = 2}, + [715] = {.lex_state = 13, .external_lex_state = 7}, + [716] = {.lex_state = 13, .external_lex_state = 7}, + [717] = {.lex_state = 12, .external_lex_state = 2}, + [718] = {.lex_state = 12, .external_lex_state = 2}, + [719] = {.lex_state = 12, .external_lex_state = 2}, + [720] = {.lex_state = 12, .external_lex_state = 2}, + [721] = {.lex_state = 12, .external_lex_state = 2}, + [722] = {.lex_state = 12, .external_lex_state = 2}, + [723] = {.lex_state = 12, .external_lex_state = 2}, + [724] = {.lex_state = 12, .external_lex_state = 2}, + [725] = {.lex_state = 12, .external_lex_state = 2}, + [726] = {.lex_state = 12, .external_lex_state = 2}, + [727] = {.lex_state = 12, .external_lex_state = 2}, + [728] = {.lex_state = 12, .external_lex_state = 2}, + [729] = {.lex_state = 12, .external_lex_state = 2}, + [730] = {.lex_state = 13, .external_lex_state = 7}, + [731] = {.lex_state = 12, .external_lex_state = 2}, + [732] = {.lex_state = 13, .external_lex_state = 7}, + [733] = {.lex_state = 12, .external_lex_state = 2}, + [734] = {.lex_state = 13, .external_lex_state = 7}, + [735] = {.lex_state = 12, .external_lex_state = 2}, + [736] = {.lex_state = 1, .external_lex_state = 4}, + [737] = {.lex_state = 1, .external_lex_state = 4}, + [738] = {.lex_state = 1, .external_lex_state = 4}, + [739] = {.lex_state = 13, .external_lex_state = 6}, + [740] = {.lex_state = 1, .external_lex_state = 4}, + [741] = {.lex_state = 13, .external_lex_state = 6}, + [742] = {.lex_state = 13, .external_lex_state = 6}, + [743] = {.lex_state = 1, .external_lex_state = 4}, + [744] = {.lex_state = 13, .external_lex_state = 6}, + [745] = {.lex_state = 13, .external_lex_state = 6}, + [746] = {.lex_state = 1, .external_lex_state = 4}, + [747] = {.lex_state = 1, .external_lex_state = 4}, + [748] = {.lex_state = 1, .external_lex_state = 4}, + [749] = {.lex_state = 1, .external_lex_state = 4}, + [750] = {.lex_state = 1, .external_lex_state = 4}, + [751] = {.lex_state = 1, .external_lex_state = 4}, + [752] = {.lex_state = 1, .external_lex_state = 4}, + [753] = {.lex_state = 1, .external_lex_state = 4}, + [754] = {.lex_state = 1, .external_lex_state = 4}, + [755] = {.lex_state = 13, .external_lex_state = 6}, + [756] = {.lex_state = 1, .external_lex_state = 4}, + [757] = {.lex_state = 13, .external_lex_state = 6}, + [758] = {.lex_state = 13, .external_lex_state = 6}, + [759] = {.lex_state = 13, .external_lex_state = 6}, + [760] = {.lex_state = 1, .external_lex_state = 4}, + [761] = {.lex_state = 13, .external_lex_state = 6}, + [762] = {.lex_state = 13, .external_lex_state = 6}, + [763] = {.lex_state = 1, .external_lex_state = 4}, + [764] = {.lex_state = 1, .external_lex_state = 4}, + [765] = {.lex_state = 13, .external_lex_state = 6}, + [766] = {.lex_state = 1, .external_lex_state = 4}, + [767] = {.lex_state = 1, .external_lex_state = 4}, + [768] = {.lex_state = 1, .external_lex_state = 4}, + [769] = {.lex_state = 1, .external_lex_state = 4}, + [770] = {.lex_state = 1, .external_lex_state = 4}, + [771] = {.lex_state = 1, .external_lex_state = 4}, + [772] = {.lex_state = 1, .external_lex_state = 4}, + [773] = {.lex_state = 1, .external_lex_state = 4}, + [774] = {.lex_state = 1, .external_lex_state = 4}, + [775] = {.lex_state = 1, .external_lex_state = 4}, + [776] = {.lex_state = 13, .external_lex_state = 7}, + [777] = {.lex_state = 9, .external_lex_state = 2}, + [778] = {.lex_state = 9, .external_lex_state = 2}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 9, .external_lex_state = 2}, + [782] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 13, .external_lex_state = 7}, + [784] = {.lex_state = 1, .external_lex_state = 4}, + [785] = {.lex_state = 1, .external_lex_state = 4}, + [786] = {.lex_state = 9, .external_lex_state = 2}, + [787] = {.lex_state = 13, .external_lex_state = 7}, + [788] = {.lex_state = 9, .external_lex_state = 2}, + [789] = {.lex_state = 9, .external_lex_state = 2}, + [790] = {.lex_state = 9, .external_lex_state = 2}, + [791] = {.lex_state = 1, .external_lex_state = 4}, + [792] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 9, .external_lex_state = 2}, + [797] = {.lex_state = 13, .external_lex_state = 7}, + [798] = {.lex_state = 1, .external_lex_state = 4}, + [799] = {.lex_state = 13, .external_lex_state = 7}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 1, .external_lex_state = 4}, + [802] = {.lex_state = 9, .external_lex_state = 2}, + [803] = {.lex_state = 9, .external_lex_state = 2}, + [804] = {.lex_state = 13, .external_lex_state = 7}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 13, .external_lex_state = 7}, + [807] = {.lex_state = 13, .external_lex_state = 7}, + [808] = {.lex_state = 1, .external_lex_state = 4}, + [809] = {.lex_state = 1, .external_lex_state = 4}, + [810] = {.lex_state = 1, .external_lex_state = 4}, + [811] = {.lex_state = 9, .external_lex_state = 2}, + [812] = {.lex_state = 9, .external_lex_state = 2}, + [813] = {.lex_state = 9, .external_lex_state = 2}, + [814] = {.lex_state = 13, .external_lex_state = 7}, + [815] = {.lex_state = 13, .external_lex_state = 7}, + [816] = {.lex_state = 9, .external_lex_state = 2}, + [817] = {.lex_state = 9, .external_lex_state = 2}, + [818] = {.lex_state = 13, .external_lex_state = 7}, + [819] = {.lex_state = 9, .external_lex_state = 2}, + [820] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 13, .external_lex_state = 7}, + [822] = {.lex_state = 9, .external_lex_state = 2}, + [823] = {.lex_state = 13, .external_lex_state = 6}, + [824] = {.lex_state = 13, .external_lex_state = 6}, + [825] = {.lex_state = 13, .external_lex_state = 6}, + [826] = {.lex_state = 13, .external_lex_state = 6}, + [827] = {.lex_state = 13, .external_lex_state = 6}, + [828] = {.lex_state = 13, .external_lex_state = 6}, + [829] = {.lex_state = 13, .external_lex_state = 6}, + [830] = {.lex_state = 13, .external_lex_state = 6}, + [831] = {.lex_state = 13, .external_lex_state = 6}, + [832] = {.lex_state = 1, .external_lex_state = 4}, + [833] = {.lex_state = 13, .external_lex_state = 6}, + [834] = {.lex_state = 13, .external_lex_state = 6}, + [835] = {.lex_state = 13, .external_lex_state = 6}, + [836] = {.lex_state = 1, .external_lex_state = 4}, + [837] = {.lex_state = 1, .external_lex_state = 4}, + [838] = {.lex_state = 1, .external_lex_state = 4}, + [839] = {.lex_state = 1, .external_lex_state = 4}, + [840] = {.lex_state = 1, .external_lex_state = 4}, + [841] = {.lex_state = 1, .external_lex_state = 4}, + [842] = {.lex_state = 12, .external_lex_state = 2}, + [843] = {.lex_state = 1, .external_lex_state = 4}, + [844] = {.lex_state = 1, .external_lex_state = 4}, + [845] = {.lex_state = 1, .external_lex_state = 4}, + [846] = {.lex_state = 1, .external_lex_state = 4}, + [847] = {.lex_state = 1, .external_lex_state = 4}, + [848] = {.lex_state = 1, .external_lex_state = 4}, + [849] = {.lex_state = 1, .external_lex_state = 4}, + [850] = {.lex_state = 1, .external_lex_state = 4}, + [851] = {.lex_state = 1, .external_lex_state = 4}, + [852] = {.lex_state = 1, .external_lex_state = 4}, + [853] = {.lex_state = 1, .external_lex_state = 4}, + [854] = {.lex_state = 1, .external_lex_state = 3}, + [855] = {.lex_state = 1, .external_lex_state = 4}, + [856] = {.lex_state = 1, .external_lex_state = 3}, + [857] = {.lex_state = 1, .external_lex_state = 4}, + [858] = {.lex_state = 1, .external_lex_state = 4}, + [859] = {.lex_state = 1, .external_lex_state = 4}, + [860] = {.lex_state = 1, .external_lex_state = 4}, + [861] = {.lex_state = 1, .external_lex_state = 3}, + [862] = {.lex_state = 1, .external_lex_state = 4}, + [863] = {.lex_state = 1, .external_lex_state = 4}, + [864] = {.lex_state = 1, .external_lex_state = 4}, + [865] = {.lex_state = 1, .external_lex_state = 4}, + [866] = {.lex_state = 1, .external_lex_state = 4}, + [867] = {.lex_state = 1, .external_lex_state = 4}, + [868] = {.lex_state = 1, .external_lex_state = 4}, + [869] = {.lex_state = 1, .external_lex_state = 4}, + [870] = {.lex_state = 1, .external_lex_state = 4}, + [871] = {.lex_state = 1, .external_lex_state = 4}, + [872] = {.lex_state = 1, .external_lex_state = 4}, + [873] = {.lex_state = 1, .external_lex_state = 4}, + [874] = {.lex_state = 1, .external_lex_state = 4}, + [875] = {.lex_state = 1, .external_lex_state = 3}, + [876] = {.lex_state = 1, .external_lex_state = 4}, + [877] = {.lex_state = 1, .external_lex_state = 4}, + [878] = {.lex_state = 1, .external_lex_state = 4}, + [879] = {.lex_state = 1, .external_lex_state = 4}, + [880] = {.lex_state = 1, .external_lex_state = 4}, + [881] = {.lex_state = 1, .external_lex_state = 4}, + [882] = {.lex_state = 1, .external_lex_state = 4}, + [883] = {.lex_state = 1, .external_lex_state = 4}, + [884] = {.lex_state = 1, .external_lex_state = 4}, + [885] = {.lex_state = 1, .external_lex_state = 4}, + [886] = {.lex_state = 1, .external_lex_state = 4}, + [887] = {.lex_state = 1, .external_lex_state = 4}, + [888] = {.lex_state = 1, .external_lex_state = 4}, + [889] = {.lex_state = 1, .external_lex_state = 4}, + [890] = {.lex_state = 1, .external_lex_state = 4}, + [891] = {.lex_state = 1, .external_lex_state = 4}, + [892] = {.lex_state = 1, .external_lex_state = 4}, + [893] = {.lex_state = 13, .external_lex_state = 7}, + [894] = {.lex_state = 1, .external_lex_state = 4}, + [895] = {.lex_state = 13, .external_lex_state = 7}, + [896] = {.lex_state = 13, .external_lex_state = 7}, + [897] = {.lex_state = 13, .external_lex_state = 7}, + [898] = {.lex_state = 13, .external_lex_state = 7}, + [899] = {.lex_state = 13, .external_lex_state = 7}, + [900] = {.lex_state = 1, .external_lex_state = 4}, + [901] = {.lex_state = 1, .external_lex_state = 4}, + [902] = {.lex_state = 1, .external_lex_state = 4}, + [903] = {.lex_state = 1, .external_lex_state = 4}, + [904] = {.lex_state = 1, .external_lex_state = 4}, + [905] = {.lex_state = 1, .external_lex_state = 4}, + [906] = {.lex_state = 1, .external_lex_state = 4}, + [907] = {.lex_state = 1, .external_lex_state = 4}, + [908] = {.lex_state = 1, .external_lex_state = 4}, + [909] = {.lex_state = 1, .external_lex_state = 4}, + [910] = {.lex_state = 1, .external_lex_state = 4}, + [911] = {.lex_state = 1, .external_lex_state = 4}, + [912] = {.lex_state = 1, .external_lex_state = 4}, + [913] = {.lex_state = 1, .external_lex_state = 4}, + [914] = {.lex_state = 1, .external_lex_state = 4}, + [915] = {.lex_state = 1, .external_lex_state = 4}, + [916] = {.lex_state = 1, .external_lex_state = 4}, + [917] = {.lex_state = 1, .external_lex_state = 4}, + [918] = {.lex_state = 1, .external_lex_state = 4}, + [919] = {.lex_state = 1, .external_lex_state = 4}, + [920] = {.lex_state = 1, .external_lex_state = 4}, + [921] = {.lex_state = 1, .external_lex_state = 4}, + [922] = {.lex_state = 1, .external_lex_state = 4}, + [923] = {.lex_state = 1, .external_lex_state = 4}, + [924] = {.lex_state = 1, .external_lex_state = 4}, + [925] = {.lex_state = 1, .external_lex_state = 4}, + [926] = {.lex_state = 1, .external_lex_state = 4}, + [927] = {.lex_state = 1, .external_lex_state = 4}, + [928] = {.lex_state = 1, .external_lex_state = 4}, + [929] = {.lex_state = 1, .external_lex_state = 4}, + [930] = {.lex_state = 1, .external_lex_state = 4}, + [931] = {.lex_state = 1, .external_lex_state = 4}, + [932] = {.lex_state = 1, .external_lex_state = 4}, + [933] = {.lex_state = 1, .external_lex_state = 4}, + [934] = {.lex_state = 1, .external_lex_state = 4}, + [935] = {.lex_state = 13, .external_lex_state = 7}, + [936] = {.lex_state = 1, .external_lex_state = 4}, + [937] = {.lex_state = 1, .external_lex_state = 4}, + [938] = {.lex_state = 13, .external_lex_state = 7}, + [939] = {.lex_state = 13, .external_lex_state = 7}, + [940] = {.lex_state = 13, .external_lex_state = 7}, + [941] = {.lex_state = 13, .external_lex_state = 7}, + [942] = {.lex_state = 1, .external_lex_state = 4}, + [943] = {.lex_state = 1, .external_lex_state = 4}, + [944] = {.lex_state = 1, .external_lex_state = 4}, + [945] = {.lex_state = 1, .external_lex_state = 4}, + [946] = {.lex_state = 1, .external_lex_state = 4}, + [947] = {.lex_state = 1, .external_lex_state = 4}, + [948] = {.lex_state = 1, .external_lex_state = 4}, + [949] = {.lex_state = 13, .external_lex_state = 7}, + [950] = {.lex_state = 2, .external_lex_state = 4}, + [951] = {.lex_state = 1, .external_lex_state = 4}, + [952] = {.lex_state = 1, .external_lex_state = 4}, + [953] = {.lex_state = 1, .external_lex_state = 4}, + [954] = {.lex_state = 2, .external_lex_state = 4}, + [955] = {.lex_state = 1, .external_lex_state = 4}, + [956] = {.lex_state = 1, .external_lex_state = 4}, + [957] = {.lex_state = 1, .external_lex_state = 4}, + [958] = {.lex_state = 1, .external_lex_state = 4}, + [959] = {.lex_state = 1, .external_lex_state = 4}, + [960] = {.lex_state = 1, .external_lex_state = 4}, + [961] = {.lex_state = 1, .external_lex_state = 4}, + [962] = {.lex_state = 1, .external_lex_state = 4}, + [963] = {.lex_state = 1, .external_lex_state = 4}, + [964] = {.lex_state = 2, .external_lex_state = 4}, + [965] = {.lex_state = 1, .external_lex_state = 4}, + [966] = {.lex_state = 1, .external_lex_state = 4}, + [967] = {.lex_state = 1, .external_lex_state = 4}, + [968] = {.lex_state = 1, .external_lex_state = 4}, + [969] = {.lex_state = 1, .external_lex_state = 4}, + [970] = {.lex_state = 1, .external_lex_state = 4}, + [971] = {.lex_state = 1, .external_lex_state = 4}, + [972] = {.lex_state = 1, .external_lex_state = 4}, + [973] = {.lex_state = 1, .external_lex_state = 4}, + [974] = {.lex_state = 1, .external_lex_state = 4}, + [975] = {.lex_state = 1, .external_lex_state = 4}, + [976] = {.lex_state = 1, .external_lex_state = 4}, + [977] = {.lex_state = 1, .external_lex_state = 4}, + [978] = {.lex_state = 1, .external_lex_state = 4}, + [979] = {.lex_state = 1, .external_lex_state = 4}, + [980] = {.lex_state = 1, .external_lex_state = 4}, + [981] = {.lex_state = 2, .external_lex_state = 4}, + [982] = {.lex_state = 2, .external_lex_state = 4}, + [983] = {.lex_state = 2, .external_lex_state = 4}, + [984] = {.lex_state = 2, .external_lex_state = 4}, + [985] = {.lex_state = 2, .external_lex_state = 4}, + [986] = {.lex_state = 2, .external_lex_state = 4}, + [987] = {.lex_state = 2, .external_lex_state = 4}, + [988] = {.lex_state = 2, .external_lex_state = 4}, + [989] = {.lex_state = 2, .external_lex_state = 4}, + [990] = {.lex_state = 2, .external_lex_state = 4}, + [991] = {.lex_state = 1, .external_lex_state = 4}, + [992] = {.lex_state = 1, .external_lex_state = 4}, + [993] = {.lex_state = 1, .external_lex_state = 4}, + [994] = {.lex_state = 1, .external_lex_state = 4}, + [995] = {.lex_state = 1, .external_lex_state = 4}, + [996] = {.lex_state = 13, .external_lex_state = 6}, + [997] = {.lex_state = 13, .external_lex_state = 6}, + [998] = {.lex_state = 13, .external_lex_state = 6}, + [999] = {.lex_state = 13, .external_lex_state = 6}, + [1000] = {.lex_state = 13, .external_lex_state = 6}, + [1001] = {.lex_state = 13, .external_lex_state = 6}, + [1002] = {.lex_state = 1, .external_lex_state = 4}, + [1003] = {.lex_state = 1, .external_lex_state = 4}, + [1004] = {.lex_state = 1, .external_lex_state = 4}, + [1005] = {.lex_state = 1, .external_lex_state = 4}, + [1006] = {.lex_state = 2, .external_lex_state = 4}, + [1007] = {.lex_state = 1, .external_lex_state = 4}, + [1008] = {.lex_state = 1, .external_lex_state = 4}, + [1009] = {.lex_state = 1, .external_lex_state = 4}, + [1010] = {.lex_state = 2, .external_lex_state = 4}, + [1011] = {.lex_state = 1, .external_lex_state = 4}, + [1012] = {.lex_state = 1, .external_lex_state = 4}, + [1013] = {.lex_state = 2, .external_lex_state = 4}, + [1014] = {.lex_state = 3, .external_lex_state = 4}, + [1015] = {.lex_state = 1, .external_lex_state = 4}, + [1016] = {.lex_state = 1, .external_lex_state = 4}, + [1017] = {.lex_state = 13, .external_lex_state = 6}, + [1018] = {.lex_state = 13, .external_lex_state = 6}, + [1019] = {.lex_state = 1, .external_lex_state = 4}, + [1020] = {.lex_state = 13, .external_lex_state = 6}, + [1021] = {.lex_state = 1, .external_lex_state = 4}, + [1022] = {.lex_state = 2, .external_lex_state = 4}, + [1023] = {.lex_state = 1, .external_lex_state = 4}, + [1024] = {.lex_state = 1, .external_lex_state = 4}, + [1025] = {.lex_state = 1, .external_lex_state = 4}, + [1026] = {.lex_state = 1, .external_lex_state = 4}, + [1027] = {.lex_state = 1, .external_lex_state = 4}, + [1028] = {.lex_state = 1, .external_lex_state = 4}, + [1029] = {.lex_state = 13, .external_lex_state = 6}, + [1030] = {.lex_state = 1, .external_lex_state = 4}, + [1031] = {.lex_state = 1, .external_lex_state = 4}, + [1032] = {.lex_state = 1, .external_lex_state = 4}, + [1033] = {.lex_state = 13, .external_lex_state = 6}, + [1034] = {.lex_state = 13, .external_lex_state = 6}, + [1035] = {.lex_state = 1, .external_lex_state = 4}, + [1036] = {.lex_state = 2, .external_lex_state = 4}, + [1037] = {.lex_state = 1, .external_lex_state = 4}, + [1038] = {.lex_state = 1, .external_lex_state = 4}, + [1039] = {.lex_state = 1, .external_lex_state = 4}, + [1040] = {.lex_state = 1, .external_lex_state = 4}, + [1041] = {.lex_state = 1, .external_lex_state = 4}, + [1042] = {.lex_state = 1, .external_lex_state = 4}, + [1043] = {.lex_state = 1, .external_lex_state = 4}, + [1044] = {.lex_state = 1, .external_lex_state = 4}, + [1045] = {.lex_state = 1, .external_lex_state = 4}, + [1046] = {.lex_state = 1, .external_lex_state = 4}, + [1047] = {.lex_state = 1, .external_lex_state = 4}, + [1048] = {.lex_state = 1, .external_lex_state = 4}, + [1049] = {.lex_state = 1, .external_lex_state = 4}, + [1050] = {.lex_state = 1, .external_lex_state = 4}, + [1051] = {.lex_state = 1, .external_lex_state = 4}, + [1052] = {.lex_state = 1, .external_lex_state = 4}, + [1053] = {.lex_state = 1, .external_lex_state = 4}, + [1054] = {.lex_state = 1, .external_lex_state = 4}, + [1055] = {.lex_state = 1, .external_lex_state = 4}, + [1056] = {.lex_state = 1, .external_lex_state = 4}, + [1057] = {.lex_state = 1, .external_lex_state = 4}, + [1058] = {.lex_state = 1, .external_lex_state = 4}, + [1059] = {.lex_state = 1, .external_lex_state = 4}, + [1060] = {.lex_state = 1, .external_lex_state = 4}, + [1061] = {.lex_state = 1, .external_lex_state = 4}, + [1062] = {.lex_state = 1, .external_lex_state = 4}, + [1063] = {.lex_state = 1, .external_lex_state = 4}, + [1064] = {.lex_state = 1, .external_lex_state = 4}, + [1065] = {.lex_state = 1, .external_lex_state = 4}, + [1066] = {.lex_state = 1, .external_lex_state = 4}, + [1067] = {.lex_state = 1, .external_lex_state = 4}, + [1068] = {.lex_state = 1, .external_lex_state = 4}, + [1069] = {.lex_state = 1, .external_lex_state = 4}, + [1070] = {.lex_state = 1, .external_lex_state = 4}, + [1071] = {.lex_state = 1, .external_lex_state = 4}, + [1072] = {.lex_state = 1, .external_lex_state = 4}, + [1073] = {.lex_state = 1, .external_lex_state = 4}, + [1074] = {.lex_state = 1, .external_lex_state = 4}, + [1075] = {.lex_state = 1, .external_lex_state = 4}, + [1076] = {.lex_state = 1, .external_lex_state = 4}, + [1077] = {.lex_state = 1, .external_lex_state = 4}, + [1078] = {.lex_state = 1, .external_lex_state = 4}, + [1079] = {.lex_state = 1, .external_lex_state = 4}, + [1080] = {.lex_state = 1, .external_lex_state = 4}, + [1081] = {.lex_state = 13, .external_lex_state = 7}, + [1082] = {.lex_state = 1, .external_lex_state = 4}, + [1083] = {.lex_state = 1, .external_lex_state = 4}, + [1084] = {.lex_state = 1, .external_lex_state = 4}, + [1085] = {.lex_state = 1, .external_lex_state = 4}, + [1086] = {.lex_state = 1, .external_lex_state = 4}, + [1087] = {.lex_state = 1, .external_lex_state = 4}, + [1088] = {.lex_state = 1, .external_lex_state = 4}, + [1089] = {.lex_state = 1, .external_lex_state = 4}, + [1090] = {.lex_state = 1, .external_lex_state = 4}, + [1091] = {.lex_state = 1, .external_lex_state = 4}, + [1092] = {.lex_state = 1, .external_lex_state = 4}, + [1093] = {.lex_state = 1, .external_lex_state = 4}, + [1094] = {.lex_state = 1, .external_lex_state = 4}, + [1095] = {.lex_state = 1, .external_lex_state = 4}, + [1096] = {.lex_state = 1, .external_lex_state = 4}, + [1097] = {.lex_state = 1, .external_lex_state = 4}, + [1098] = {.lex_state = 1, .external_lex_state = 4}, + [1099] = {.lex_state = 1, .external_lex_state = 4}, + [1100] = {.lex_state = 1, .external_lex_state = 4}, + [1101] = {.lex_state = 1, .external_lex_state = 4}, + [1102] = {.lex_state = 1, .external_lex_state = 4}, + [1103] = {.lex_state = 1, .external_lex_state = 4}, + [1104] = {.lex_state = 1, .external_lex_state = 4}, + [1105] = {.lex_state = 1, .external_lex_state = 4}, + [1106] = {.lex_state = 1, .external_lex_state = 4}, + [1107] = {.lex_state = 1, .external_lex_state = 4}, + [1108] = {.lex_state = 1, .external_lex_state = 4}, + [1109] = {.lex_state = 1, .external_lex_state = 4}, + [1110] = {.lex_state = 1, .external_lex_state = 4}, + [1111] = {.lex_state = 1, .external_lex_state = 4}, + [1112] = {.lex_state = 1, .external_lex_state = 4}, + [1113] = {.lex_state = 1, .external_lex_state = 4}, + [1114] = {.lex_state = 1, .external_lex_state = 4}, + [1115] = {.lex_state = 1, .external_lex_state = 4}, + [1116] = {.lex_state = 1, .external_lex_state = 4}, + [1117] = {.lex_state = 1, .external_lex_state = 4}, + [1118] = {.lex_state = 1, .external_lex_state = 4}, + [1119] = {.lex_state = 1, .external_lex_state = 4}, + [1120] = {.lex_state = 1, .external_lex_state = 4}, + [1121] = {.lex_state = 1, .external_lex_state = 4}, + [1122] = {.lex_state = 1, .external_lex_state = 4}, + [1123] = {.lex_state = 1, .external_lex_state = 4}, + [1124] = {.lex_state = 1, .external_lex_state = 4}, + [1125] = {.lex_state = 1, .external_lex_state = 4}, + [1126] = {.lex_state = 13, .external_lex_state = 7}, + [1127] = {.lex_state = 1, .external_lex_state = 4}, + [1128] = {.lex_state = 1, .external_lex_state = 4}, + [1129] = {.lex_state = 1, .external_lex_state = 4}, + [1130] = {.lex_state = 1, .external_lex_state = 4}, + [1131] = {.lex_state = 1, .external_lex_state = 4}, + [1132] = {.lex_state = 1, .external_lex_state = 4}, + [1133] = {.lex_state = 1, .external_lex_state = 4}, + [1134] = {.lex_state = 1, .external_lex_state = 4}, + [1135] = {.lex_state = 1, .external_lex_state = 4}, + [1136] = {.lex_state = 1, .external_lex_state = 4}, + [1137] = {.lex_state = 1, .external_lex_state = 4}, + [1138] = {.lex_state = 1, .external_lex_state = 4}, + [1139] = {.lex_state = 1, .external_lex_state = 4}, + [1140] = {.lex_state = 1, .external_lex_state = 4}, + [1141] = {.lex_state = 13, .external_lex_state = 7}, + [1142] = {.lex_state = 1, .external_lex_state = 4}, + [1143] = {.lex_state = 1, .external_lex_state = 4}, + [1144] = {.lex_state = 1, .external_lex_state = 4}, + [1145] = {.lex_state = 1, .external_lex_state = 4}, + [1146] = {.lex_state = 1, .external_lex_state = 4}, + [1147] = {.lex_state = 1, .external_lex_state = 4}, + [1148] = {.lex_state = 1, .external_lex_state = 4}, + [1149] = {.lex_state = 1, .external_lex_state = 4}, + [1150] = {.lex_state = 1, .external_lex_state = 4}, + [1151] = {.lex_state = 1, .external_lex_state = 4}, + [1152] = {.lex_state = 1, .external_lex_state = 4}, + [1153] = {.lex_state = 1, .external_lex_state = 4}, + [1154] = {.lex_state = 1, .external_lex_state = 4}, + [1155] = {.lex_state = 1, .external_lex_state = 4}, + [1156] = {.lex_state = 1, .external_lex_state = 4}, + [1157] = {.lex_state = 1, .external_lex_state = 4}, + [1158] = {.lex_state = 13, .external_lex_state = 7}, + [1159] = {.lex_state = 1, .external_lex_state = 4}, + [1160] = {.lex_state = 1, .external_lex_state = 4}, + [1161] = {.lex_state = 1, .external_lex_state = 4}, + [1162] = {.lex_state = 1, .external_lex_state = 4}, + [1163] = {.lex_state = 1, .external_lex_state = 4}, + [1164] = {.lex_state = 1, .external_lex_state = 4}, + [1165] = {.lex_state = 1, .external_lex_state = 4}, + [1166] = {.lex_state = 1, .external_lex_state = 4}, + [1167] = {.lex_state = 1, .external_lex_state = 4}, + [1168] = {.lex_state = 1, .external_lex_state = 4}, + [1169] = {.lex_state = 1, .external_lex_state = 4}, + [1170] = {.lex_state = 1, .external_lex_state = 4}, + [1171] = {.lex_state = 1, .external_lex_state = 4}, + [1172] = {.lex_state = 1, .external_lex_state = 4}, + [1173] = {.lex_state = 1, .external_lex_state = 4}, + [1174] = {.lex_state = 1, .external_lex_state = 4}, + [1175] = {.lex_state = 1, .external_lex_state = 4}, + [1176] = {.lex_state = 1, .external_lex_state = 4}, + [1177] = {.lex_state = 1, .external_lex_state = 4}, + [1178] = {.lex_state = 1, .external_lex_state = 4}, + [1179] = {.lex_state = 1, .external_lex_state = 4}, + [1180] = {.lex_state = 1, .external_lex_state = 4}, + [1181] = {.lex_state = 1, .external_lex_state = 4}, + [1182] = {.lex_state = 1, .external_lex_state = 4}, + [1183] = {.lex_state = 1, .external_lex_state = 4}, + [1184] = {.lex_state = 1, .external_lex_state = 4}, + [1185] = {.lex_state = 1, .external_lex_state = 4}, + [1186] = {.lex_state = 1, .external_lex_state = 4}, + [1187] = {.lex_state = 1, .external_lex_state = 4}, + [1188] = {.lex_state = 1, .external_lex_state = 4}, + [1189] = {.lex_state = 1, .external_lex_state = 4}, + [1190] = {.lex_state = 1, .external_lex_state = 4}, + [1191] = {.lex_state = 1, .external_lex_state = 4}, + [1192] = {.lex_state = 1, .external_lex_state = 4}, + [1193] = {.lex_state = 1, .external_lex_state = 4}, + [1194] = {.lex_state = 1, .external_lex_state = 4}, + [1195] = {.lex_state = 1, .external_lex_state = 4}, + [1196] = {.lex_state = 1, .external_lex_state = 4}, + [1197] = {.lex_state = 1, .external_lex_state = 4}, + [1198] = {.lex_state = 1, .external_lex_state = 4}, + [1199] = {.lex_state = 1, .external_lex_state = 4}, + [1200] = {.lex_state = 13, .external_lex_state = 7}, + [1201] = {.lex_state = 1, .external_lex_state = 4}, + [1202] = {.lex_state = 1, .external_lex_state = 4}, + [1203] = {.lex_state = 13, .external_lex_state = 7}, + [1204] = {.lex_state = 13, .external_lex_state = 7}, + [1205] = {.lex_state = 13, .external_lex_state = 7}, + [1206] = {.lex_state = 1, .external_lex_state = 4}, + [1207] = {.lex_state = 13, .external_lex_state = 7}, + [1208] = {.lex_state = 13, .external_lex_state = 7}, + [1209] = {.lex_state = 13, .external_lex_state = 7}, + [1210] = {.lex_state = 13, .external_lex_state = 7}, + [1211] = {.lex_state = 1, .external_lex_state = 4}, + [1212] = {.lex_state = 1, .external_lex_state = 4}, + [1213] = {.lex_state = 1, .external_lex_state = 4}, + [1214] = {.lex_state = 1, .external_lex_state = 4}, + [1215] = {.lex_state = 1, .external_lex_state = 4}, + [1216] = {.lex_state = 13, .external_lex_state = 6}, + [1217] = {.lex_state = 13, .external_lex_state = 6}, + [1218] = {.lex_state = 13, .external_lex_state = 6}, + [1219] = {.lex_state = 2, .external_lex_state = 4}, + [1220] = {.lex_state = 13, .external_lex_state = 6}, + [1221] = {.lex_state = 2, .external_lex_state = 4}, + [1222] = {.lex_state = 2, .external_lex_state = 4}, + [1223] = {.lex_state = 2, .external_lex_state = 4}, + [1224] = {.lex_state = 13, .external_lex_state = 6}, + [1225] = {.lex_state = 13, .external_lex_state = 7}, + [1226] = {.lex_state = 2, .external_lex_state = 4}, + [1227] = {.lex_state = 13, .external_lex_state = 6}, + [1228] = {.lex_state = 2, .external_lex_state = 4}, + [1229] = {.lex_state = 2, .external_lex_state = 4}, + [1230] = {.lex_state = 2, .external_lex_state = 4}, + [1231] = {.lex_state = 13, .external_lex_state = 7}, + [1232] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 2, .external_lex_state = 4}, + [1234] = {.lex_state = 2, .external_lex_state = 4}, + [1235] = {.lex_state = 13, .external_lex_state = 7}, + [1236] = {.lex_state = 2, .external_lex_state = 4}, + [1237] = {.lex_state = 2, .external_lex_state = 4}, + [1238] = {.lex_state = 13, .external_lex_state = 6}, + [1239] = {.lex_state = 2, .external_lex_state = 4}, + [1240] = {.lex_state = 13, .external_lex_state = 6}, + [1241] = {.lex_state = 13, .external_lex_state = 6}, + [1242] = {.lex_state = 1, .external_lex_state = 4}, + [1243] = {.lex_state = 13, .external_lex_state = 6}, + [1244] = {.lex_state = 1, .external_lex_state = 4}, + [1245] = {.lex_state = 1, .external_lex_state = 4}, + [1246] = {.lex_state = 13, .external_lex_state = 6}, + [1247] = {.lex_state = 13, .external_lex_state = 6}, + [1248] = {.lex_state = 13, .external_lex_state = 6}, + [1249] = {.lex_state = 1, .external_lex_state = 3}, + [1250] = {.lex_state = 13, .external_lex_state = 6}, + [1251] = {.lex_state = 13, .external_lex_state = 6}, + [1252] = {.lex_state = 13, .external_lex_state = 6}, + [1253] = {.lex_state = 13, .external_lex_state = 6}, + [1254] = {.lex_state = 13, .external_lex_state = 6}, + [1255] = {.lex_state = 13, .external_lex_state = 7}, + [1256] = {.lex_state = 1, .external_lex_state = 3}, + [1257] = {.lex_state = 1, .external_lex_state = 4}, + [1258] = {.lex_state = 13, .external_lex_state = 6}, + [1259] = {.lex_state = 2, .external_lex_state = 4}, + [1260] = {.lex_state = 1, .external_lex_state = 4}, + [1261] = {.lex_state = 13, .external_lex_state = 7}, + [1262] = {.lex_state = 13, .external_lex_state = 7}, + [1263] = {.lex_state = 2, .external_lex_state = 4}, + [1264] = {.lex_state = 2, .external_lex_state = 4}, + [1265] = {.lex_state = 9, .external_lex_state = 2}, + [1266] = {.lex_state = 1, .external_lex_state = 4}, + [1267] = {.lex_state = 1, .external_lex_state = 4}, + [1268] = {.lex_state = 9, .external_lex_state = 2}, + [1269] = {.lex_state = 1, .external_lex_state = 4}, + [1270] = {.lex_state = 1, .external_lex_state = 4}, + [1271] = {.lex_state = 9, .external_lex_state = 2}, + [1272] = {.lex_state = 1, .external_lex_state = 4}, + [1273] = {.lex_state = 1, .external_lex_state = 4}, + [1274] = {.lex_state = 9, .external_lex_state = 2}, + [1275] = {.lex_state = 1, .external_lex_state = 4}, + [1276] = {.lex_state = 1, .external_lex_state = 4}, + [1277] = {.lex_state = 1, .external_lex_state = 4}, + [1278] = {.lex_state = 1, .external_lex_state = 4}, + [1279] = {.lex_state = 9, .external_lex_state = 2}, + [1280] = {.lex_state = 1, .external_lex_state = 4}, + [1281] = {.lex_state = 9, .external_lex_state = 2}, + [1282] = {.lex_state = 1, .external_lex_state = 4}, + [1283] = {.lex_state = 9, .external_lex_state = 2}, + [1284] = {.lex_state = 1, .external_lex_state = 4}, + [1285] = {.lex_state = 9, .external_lex_state = 2}, + [1286] = {.lex_state = 9, .external_lex_state = 2}, + [1287] = {.lex_state = 9, .external_lex_state = 2}, + [1288] = {.lex_state = 1, .external_lex_state = 4}, + [1289] = {.lex_state = 1, .external_lex_state = 4}, + [1290] = {.lex_state = 9, .external_lex_state = 2}, + [1291] = {.lex_state = 1, .external_lex_state = 4}, + [1292] = {.lex_state = 1, .external_lex_state = 4}, + [1293] = {.lex_state = 1, .external_lex_state = 4}, + [1294] = {.lex_state = 13, .external_lex_state = 6}, + [1295] = {.lex_state = 13, .external_lex_state = 6}, + [1296] = {.lex_state = 13, .external_lex_state = 6}, + [1297] = {.lex_state = 1, .external_lex_state = 4}, + [1298] = {.lex_state = 1, .external_lex_state = 4}, + [1299] = {.lex_state = 9, .external_lex_state = 2}, + [1300] = {.lex_state = 9, .external_lex_state = 2}, + [1301] = {.lex_state = 1, .external_lex_state = 4}, + [1302] = {.lex_state = 9, .external_lex_state = 2}, + [1303] = {.lex_state = 1, .external_lex_state = 4}, + [1304] = {.lex_state = 9, .external_lex_state = 2}, + [1305] = {.lex_state = 9, .external_lex_state = 2}, + [1306] = {.lex_state = 1, .external_lex_state = 4}, + [1307] = {.lex_state = 9, .external_lex_state = 2}, + [1308] = {.lex_state = 1, .external_lex_state = 4}, + [1309] = {.lex_state = 9, .external_lex_state = 2}, + [1310] = {.lex_state = 9, .external_lex_state = 2}, + [1311] = {.lex_state = 1, .external_lex_state = 4}, + [1312] = {.lex_state = 9, .external_lex_state = 2}, + [1313] = {.lex_state = 9, .external_lex_state = 2}, + [1314] = {.lex_state = 13, .external_lex_state = 6}, + [1315] = {.lex_state = 13, .external_lex_state = 6}, + [1316] = {.lex_state = 1, .external_lex_state = 4}, + [1317] = {.lex_state = 13, .external_lex_state = 6}, + [1318] = {.lex_state = 9, .external_lex_state = 2}, + [1319] = {.lex_state = 9, .external_lex_state = 2}, + [1320] = {.lex_state = 1, .external_lex_state = 4}, + [1321] = {.lex_state = 9, .external_lex_state = 2}, + [1322] = {.lex_state = 9, .external_lex_state = 2}, + [1323] = {.lex_state = 9, .external_lex_state = 2}, + [1324] = {.lex_state = 9, .external_lex_state = 2}, + [1325] = {.lex_state = 9, .external_lex_state = 2}, + [1326] = {.lex_state = 1, .external_lex_state = 4}, + [1327] = {.lex_state = 1, .external_lex_state = 3}, + [1328] = {.lex_state = 1, .external_lex_state = 3}, + [1329] = {.lex_state = 9, .external_lex_state = 2}, + [1330] = {.lex_state = 1, .external_lex_state = 4}, + [1331] = {.lex_state = 13, .external_lex_state = 6}, + [1332] = {.lex_state = 9, .external_lex_state = 2}, + [1333] = {.lex_state = 13, .external_lex_state = 6}, + [1334] = {.lex_state = 13, .external_lex_state = 6}, + [1335] = {.lex_state = 9, .external_lex_state = 2}, + [1336] = {.lex_state = 1, .external_lex_state = 4}, + [1337] = {.lex_state = 13, .external_lex_state = 6}, + [1338] = {.lex_state = 1, .external_lex_state = 4}, + [1339] = {.lex_state = 1, .external_lex_state = 4}, + [1340] = {.lex_state = 9, .external_lex_state = 2}, + [1341] = {.lex_state = 9, .external_lex_state = 2}, + [1342] = {.lex_state = 1, .external_lex_state = 4}, + [1343] = {.lex_state = 1, .external_lex_state = 4}, + [1344] = {.lex_state = 13, .external_lex_state = 6}, + [1345] = {.lex_state = 9, .external_lex_state = 2}, + [1346] = {.lex_state = 1, .external_lex_state = 4}, + [1347] = {.lex_state = 9, .external_lex_state = 2}, + [1348] = {.lex_state = 13, .external_lex_state = 6}, + [1349] = {.lex_state = 9, .external_lex_state = 2}, + [1350] = {.lex_state = 1, .external_lex_state = 4}, + [1351] = {.lex_state = 13, .external_lex_state = 6}, + [1352] = {.lex_state = 9, .external_lex_state = 2}, + [1353] = {.lex_state = 9, .external_lex_state = 2}, + [1354] = {.lex_state = 13, .external_lex_state = 6}, + [1355] = {.lex_state = 1, .external_lex_state = 4}, + [1356] = {.lex_state = 9, .external_lex_state = 2}, + [1357] = {.lex_state = 1, .external_lex_state = 4}, + [1358] = {.lex_state = 1, .external_lex_state = 4}, + [1359] = {.lex_state = 1, .external_lex_state = 4}, + [1360] = {.lex_state = 1, .external_lex_state = 4}, + [1361] = {.lex_state = 1, .external_lex_state = 4}, + [1362] = {.lex_state = 1, .external_lex_state = 4}, + [1363] = {.lex_state = 1, .external_lex_state = 4}, + [1364] = {.lex_state = 9, .external_lex_state = 2}, + [1365] = {.lex_state = 1, .external_lex_state = 4}, + [1366] = {.lex_state = 9, .external_lex_state = 2}, + [1367] = {.lex_state = 1, .external_lex_state = 4}, + [1368] = {.lex_state = 1, .external_lex_state = 4}, + [1369] = {.lex_state = 9, .external_lex_state = 2}, + [1370] = {.lex_state = 9, .external_lex_state = 2}, + [1371] = {.lex_state = 1, .external_lex_state = 4}, + [1372] = {.lex_state = 9, .external_lex_state = 2}, + [1373] = {.lex_state = 9, .external_lex_state = 2}, + [1374] = {.lex_state = 9, .external_lex_state = 2}, + [1375] = {.lex_state = 9, .external_lex_state = 2}, + [1376] = {.lex_state = 9, .external_lex_state = 2}, + [1377] = {.lex_state = 9, .external_lex_state = 2}, + [1378] = {.lex_state = 9, .external_lex_state = 2}, + [1379] = {.lex_state = 9, .external_lex_state = 2}, + [1380] = {.lex_state = 9, .external_lex_state = 2}, + [1381] = {.lex_state = 9, .external_lex_state = 2}, + [1382] = {.lex_state = 9, .external_lex_state = 2}, + [1383] = {.lex_state = 1, .external_lex_state = 4}, + [1384] = {.lex_state = 9, .external_lex_state = 2}, + [1385] = {.lex_state = 9, .external_lex_state = 2}, + [1386] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 9, .external_lex_state = 2}, + [1388] = {.lex_state = 9, .external_lex_state = 2}, + [1389] = {.lex_state = 9, .external_lex_state = 2}, + [1390] = {.lex_state = 9, .external_lex_state = 2}, + [1391] = {.lex_state = 9, .external_lex_state = 2}, + [1392] = {.lex_state = 9, .external_lex_state = 2}, + [1393] = {.lex_state = 9, .external_lex_state = 2}, + [1394] = {.lex_state = 9, .external_lex_state = 2}, + [1395] = {.lex_state = 9, .external_lex_state = 2}, + [1396] = {.lex_state = 9, .external_lex_state = 2}, + [1397] = {.lex_state = 9, .external_lex_state = 2}, + [1398] = {.lex_state = 9, .external_lex_state = 2}, + [1399] = {.lex_state = 9, .external_lex_state = 2}, + [1400] = {.lex_state = 9, .external_lex_state = 2}, + [1401] = {.lex_state = 9, .external_lex_state = 2}, + [1402] = {.lex_state = 9, .external_lex_state = 2}, + [1403] = {.lex_state = 9, .external_lex_state = 2}, + [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1405] = {.lex_state = 9, .external_lex_state = 2}, + [1406] = {.lex_state = 1, .external_lex_state = 4}, + [1407] = {.lex_state = 9, .external_lex_state = 2}, + [1408] = {.lex_state = 9, .external_lex_state = 2}, + [1409] = {.lex_state = 9, .external_lex_state = 2}, + [1410] = {.lex_state = 9, .external_lex_state = 2}, + [1411] = {.lex_state = 9, .external_lex_state = 2}, + [1412] = {.lex_state = 13, .external_lex_state = 7}, + [1413] = {.lex_state = 13, .external_lex_state = 7}, + [1414] = {.lex_state = 13, .external_lex_state = 7}, + [1415] = {.lex_state = 13, .external_lex_state = 7}, + [1416] = {.lex_state = 1, .external_lex_state = 4}, + [1417] = {.lex_state = 9, .external_lex_state = 2}, + [1418] = {.lex_state = 13, .external_lex_state = 7}, + [1419] = {.lex_state = 13, .external_lex_state = 7}, + [1420] = {.lex_state = 13, .external_lex_state = 7}, + [1421] = {.lex_state = 1, .external_lex_state = 4}, + [1422] = {.lex_state = 13, .external_lex_state = 7}, + [1423] = {.lex_state = 13, .external_lex_state = 7}, + [1424] = {.lex_state = 13, .external_lex_state = 7}, + [1425] = {.lex_state = 1, .external_lex_state = 4}, + [1426] = {.lex_state = 1, .external_lex_state = 4}, + [1427] = {.lex_state = 13, .external_lex_state = 7}, + [1428] = {.lex_state = 1, .external_lex_state = 4}, + [1429] = {.lex_state = 1, .external_lex_state = 4}, + [1430] = {.lex_state = 13, .external_lex_state = 7}, + [1431] = {.lex_state = 13, .external_lex_state = 7}, + [1432] = {.lex_state = 13, .external_lex_state = 7}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 13, .external_lex_state = 7}, + [1435] = {.lex_state = 1, .external_lex_state = 4}, + [1436] = {.lex_state = 1, .external_lex_state = 4}, + [1437] = {.lex_state = 1, .external_lex_state = 4}, + [1438] = {.lex_state = 1, .external_lex_state = 4}, + [1439] = {.lex_state = 1, .external_lex_state = 4}, + [1440] = {.lex_state = 13, .external_lex_state = 7}, + [1441] = {.lex_state = 13, .external_lex_state = 7}, + [1442] = {.lex_state = 1, .external_lex_state = 4}, + [1443] = {.lex_state = 13, .external_lex_state = 6}, + [1444] = {.lex_state = 13, .external_lex_state = 6}, + [1445] = {.lex_state = 1, .external_lex_state = 4}, + [1446] = {.lex_state = 13, .external_lex_state = 7}, + [1447] = {.lex_state = 13, .external_lex_state = 6}, + [1448] = {.lex_state = 13, .external_lex_state = 6}, + [1449] = {.lex_state = 13, .external_lex_state = 7}, + [1450] = {.lex_state = 1, .external_lex_state = 4}, + [1451] = {.lex_state = 13, .external_lex_state = 6}, + [1452] = {.lex_state = 13, .external_lex_state = 6}, + [1453] = {.lex_state = 13, .external_lex_state = 6}, + [1454] = {.lex_state = 13, .external_lex_state = 6}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 9, .external_lex_state = 2}, + [1457] = {.lex_state = 9, .external_lex_state = 2}, + [1458] = {.lex_state = 9, .external_lex_state = 2}, + [1459] = {.lex_state = 9, .external_lex_state = 2}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 9, .external_lex_state = 2}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 9, .external_lex_state = 2}, + [1464] = {.lex_state = 9, .external_lex_state = 2}, + [1465] = {.lex_state = 9, .external_lex_state = 2}, + [1466] = {.lex_state = 9, .external_lex_state = 2}, + [1467] = {.lex_state = 9, .external_lex_state = 2}, + [1468] = {.lex_state = 9, .external_lex_state = 2}, + [1469] = {.lex_state = 9, .external_lex_state = 2}, + [1470] = {.lex_state = 9, .external_lex_state = 2}, + [1471] = {.lex_state = 9, .external_lex_state = 2}, + [1472] = {.lex_state = 9, .external_lex_state = 2}, + [1473] = {.lex_state = 9, .external_lex_state = 2}, + [1474] = {.lex_state = 9, .external_lex_state = 2}, + [1475] = {.lex_state = 9, .external_lex_state = 2}, + [1476] = {.lex_state = 9, .external_lex_state = 2}, + [1477] = {.lex_state = 9, .external_lex_state = 2}, + [1478] = {.lex_state = 9, .external_lex_state = 2}, + [1479] = {.lex_state = 9, .external_lex_state = 2}, + [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1481] = {.lex_state = 9, .external_lex_state = 2}, + [1482] = {.lex_state = 9, .external_lex_state = 2}, + [1483] = {.lex_state = 9, .external_lex_state = 2}, + [1484] = {.lex_state = 9, .external_lex_state = 2}, + [1485] = {.lex_state = 9, .external_lex_state = 2}, + [1486] = {.lex_state = 9, .external_lex_state = 2}, + [1487] = {.lex_state = 9, .external_lex_state = 2}, + [1488] = {.lex_state = 9, .external_lex_state = 2}, + [1489] = {.lex_state = 9, .external_lex_state = 2}, + [1490] = {.lex_state = 9, .external_lex_state = 2}, + [1491] = {.lex_state = 9, .external_lex_state = 2}, + [1492] = {.lex_state = 9, .external_lex_state = 2}, + [1493] = {.lex_state = 9, .external_lex_state = 2}, + [1494] = {.lex_state = 9, .external_lex_state = 2}, + [1495] = {.lex_state = 9, .external_lex_state = 2}, + [1496] = {.lex_state = 9, .external_lex_state = 2}, + [1497] = {.lex_state = 9, .external_lex_state = 2}, + [1498] = {.lex_state = 9, .external_lex_state = 2}, + [1499] = {.lex_state = 9, .external_lex_state = 2}, + [1500] = {.lex_state = 9, .external_lex_state = 2}, + [1501] = {.lex_state = 9, .external_lex_state = 2}, + [1502] = {.lex_state = 9, .external_lex_state = 2}, + [1503] = {.lex_state = 9, .external_lex_state = 2}, + [1504] = {.lex_state = 9, .external_lex_state = 2}, + [1505] = {.lex_state = 9, .external_lex_state = 2}, + [1506] = {.lex_state = 9, .external_lex_state = 2}, + [1507] = {.lex_state = 9, .external_lex_state = 2}, + [1508] = {.lex_state = 9, .external_lex_state = 2}, + [1509] = {.lex_state = 9, .external_lex_state = 2}, + [1510] = {.lex_state = 9, .external_lex_state = 2}, + [1511] = {.lex_state = 9, .external_lex_state = 2}, + [1512] = {.lex_state = 9, .external_lex_state = 2}, + [1513] = {.lex_state = 9, .external_lex_state = 2}, + [1514] = {.lex_state = 9, .external_lex_state = 2}, + [1515] = {.lex_state = 9, .external_lex_state = 2}, + [1516] = {.lex_state = 9, .external_lex_state = 2}, + [1517] = {.lex_state = 9, .external_lex_state = 2}, + [1518] = {.lex_state = 9, .external_lex_state = 2}, + [1519] = {.lex_state = 9, .external_lex_state = 2}, + [1520] = {.lex_state = 9, .external_lex_state = 2}, + [1521] = {.lex_state = 9, .external_lex_state = 2}, + [1522] = {.lex_state = 9, .external_lex_state = 2}, + [1523] = {.lex_state = 9, .external_lex_state = 2}, + [1524] = {.lex_state = 9, .external_lex_state = 2}, + [1525] = {.lex_state = 9, .external_lex_state = 2}, + [1526] = {.lex_state = 9, .external_lex_state = 2}, + [1527] = {.lex_state = 9, .external_lex_state = 2}, + [1528] = {.lex_state = 9, .external_lex_state = 2}, + [1529] = {.lex_state = 9, .external_lex_state = 2}, + [1530] = {.lex_state = 9, .external_lex_state = 2}, + [1531] = {.lex_state = 9, .external_lex_state = 2}, + [1532] = {.lex_state = 9, .external_lex_state = 2}, + [1533] = {.lex_state = 9, .external_lex_state = 2}, + [1534] = {.lex_state = 9, .external_lex_state = 2}, + [1535] = {.lex_state = 9, .external_lex_state = 2}, + [1536] = {.lex_state = 9, .external_lex_state = 2}, + [1537] = {.lex_state = 9, .external_lex_state = 2}, + [1538] = {.lex_state = 9, .external_lex_state = 2}, + [1539] = {.lex_state = 9, .external_lex_state = 2}, + [1540] = {.lex_state = 9, .external_lex_state = 2}, + [1541] = {.lex_state = 9, .external_lex_state = 2}, + [1542] = {.lex_state = 9, .external_lex_state = 2}, + [1543] = {.lex_state = 9, .external_lex_state = 2}, + [1544] = {.lex_state = 9, .external_lex_state = 2}, + [1545] = {.lex_state = 9, .external_lex_state = 2}, + [1546] = {.lex_state = 9, .external_lex_state = 2}, + [1547] = {.lex_state = 9, .external_lex_state = 2}, + [1548] = {.lex_state = 9, .external_lex_state = 2}, + [1549] = {.lex_state = 9, .external_lex_state = 2}, + [1550] = {.lex_state = 9, .external_lex_state = 2}, + [1551] = {.lex_state = 9, .external_lex_state = 2}, + [1552] = {.lex_state = 9, .external_lex_state = 2}, + [1553] = {.lex_state = 9, .external_lex_state = 2}, + [1554] = {.lex_state = 9, .external_lex_state = 2}, + [1555] = {.lex_state = 9, .external_lex_state = 2}, + [1556] = {.lex_state = 9, .external_lex_state = 2}, + [1557] = {.lex_state = 9, .external_lex_state = 2}, + [1558] = {.lex_state = 9, .external_lex_state = 2}, + [1559] = {.lex_state = 9, .external_lex_state = 2}, + [1560] = {.lex_state = 9, .external_lex_state = 2}, + [1561] = {.lex_state = 9, .external_lex_state = 2}, + [1562] = {.lex_state = 9, .external_lex_state = 2}, + [1563] = {.lex_state = 9, .external_lex_state = 2}, + [1564] = {.lex_state = 9, .external_lex_state = 2}, + [1565] = {.lex_state = 9, .external_lex_state = 2}, + [1566] = {.lex_state = 9, .external_lex_state = 2}, + [1567] = {.lex_state = 9, .external_lex_state = 2}, + [1568] = {.lex_state = 9, .external_lex_state = 2}, + [1569] = {.lex_state = 9, .external_lex_state = 2}, + [1570] = {.lex_state = 9, .external_lex_state = 2}, + [1571] = {.lex_state = 9, .external_lex_state = 2}, + [1572] = {.lex_state = 9, .external_lex_state = 2}, + [1573] = {.lex_state = 9, .external_lex_state = 2}, + [1574] = {.lex_state = 9, .external_lex_state = 2}, + [1575] = {.lex_state = 9, .external_lex_state = 2}, + [1576] = {.lex_state = 9, .external_lex_state = 2}, + [1577] = {.lex_state = 9, .external_lex_state = 2}, + [1578] = {.lex_state = 9, .external_lex_state = 2}, + [1579] = {.lex_state = 9, .external_lex_state = 2}, + [1580] = {.lex_state = 9, .external_lex_state = 2}, + [1581] = {.lex_state = 9, .external_lex_state = 2}, + [1582] = {.lex_state = 9, .external_lex_state = 2}, + [1583] = {.lex_state = 9, .external_lex_state = 2}, + [1584] = {.lex_state = 9, .external_lex_state = 2}, + [1585] = {.lex_state = 9, .external_lex_state = 2}, + [1586] = {.lex_state = 9, .external_lex_state = 2}, + [1587] = {.lex_state = 9, .external_lex_state = 2}, + [1588] = {.lex_state = 9, .external_lex_state = 2}, + [1589] = {.lex_state = 9, .external_lex_state = 2}, + [1590] = {.lex_state = 9, .external_lex_state = 2}, + [1591] = {.lex_state = 9, .external_lex_state = 2}, + [1592] = {.lex_state = 9, .external_lex_state = 2}, + [1593] = {.lex_state = 9, .external_lex_state = 2}, + [1594] = {.lex_state = 9, .external_lex_state = 2}, + [1595] = {.lex_state = 9, .external_lex_state = 2}, + [1596] = {.lex_state = 9, .external_lex_state = 2}, + [1597] = {.lex_state = 9, .external_lex_state = 2}, + [1598] = {.lex_state = 9, .external_lex_state = 2}, + [1599] = {.lex_state = 9, .external_lex_state = 2}, + [1600] = {.lex_state = 9, .external_lex_state = 2}, + [1601] = {.lex_state = 9, .external_lex_state = 2}, + [1602] = {.lex_state = 9, .external_lex_state = 2}, + [1603] = {.lex_state = 9, .external_lex_state = 2}, + [1604] = {.lex_state = 9, .external_lex_state = 2}, + [1605] = {.lex_state = 9, .external_lex_state = 2}, + [1606] = {.lex_state = 9, .external_lex_state = 2}, + [1607] = {.lex_state = 9, .external_lex_state = 2}, + [1608] = {.lex_state = 9, .external_lex_state = 2}, + [1609] = {.lex_state = 9, .external_lex_state = 2}, + [1610] = {.lex_state = 9, .external_lex_state = 2}, + [1611] = {.lex_state = 9, .external_lex_state = 2}, + [1612] = {.lex_state = 9, .external_lex_state = 2}, + [1613] = {.lex_state = 9, .external_lex_state = 2}, + [1614] = {.lex_state = 9, .external_lex_state = 2}, + [1615] = {.lex_state = 9, .external_lex_state = 2}, + [1616] = {.lex_state = 9, .external_lex_state = 2}, + [1617] = {.lex_state = 9, .external_lex_state = 2}, + [1618] = {.lex_state = 9, .external_lex_state = 2}, + [1619] = {.lex_state = 9, .external_lex_state = 2}, + [1620] = {.lex_state = 9, .external_lex_state = 2}, + [1621] = {.lex_state = 9, .external_lex_state = 2}, + [1622] = {.lex_state = 9, .external_lex_state = 2}, + [1623] = {.lex_state = 9, .external_lex_state = 2}, + [1624] = {.lex_state = 9, .external_lex_state = 2}, + [1625] = {.lex_state = 9, .external_lex_state = 2}, + [1626] = {.lex_state = 2, .external_lex_state = 4}, + [1627] = {.lex_state = 9, .external_lex_state = 2}, + [1628] = {.lex_state = 9, .external_lex_state = 2}, + [1629] = {.lex_state = 9, .external_lex_state = 2}, + [1630] = {.lex_state = 9, .external_lex_state = 2}, + [1631] = {.lex_state = 9, .external_lex_state = 2}, + [1632] = {.lex_state = 9, .external_lex_state = 2}, + [1633] = {.lex_state = 9, .external_lex_state = 2}, + [1634] = {.lex_state = 9, .external_lex_state = 2}, + [1635] = {.lex_state = 9, .external_lex_state = 2}, + [1636] = {.lex_state = 9, .external_lex_state = 2}, + [1637] = {.lex_state = 9, .external_lex_state = 2}, + [1638] = {.lex_state = 9, .external_lex_state = 2}, + [1639] = {.lex_state = 9, .external_lex_state = 2}, + [1640] = {.lex_state = 13, .external_lex_state = 6}, + [1641] = {.lex_state = 2, .external_lex_state = 4}, + [1642] = {.lex_state = 2, .external_lex_state = 4}, + [1643] = {.lex_state = 2, .external_lex_state = 4}, + [1644] = {.lex_state = 9, .external_lex_state = 2}, + [1645] = {.lex_state = 2, .external_lex_state = 4}, + [1646] = {.lex_state = 9, .external_lex_state = 2}, + [1647] = {.lex_state = 2, .external_lex_state = 4}, + [1648] = {.lex_state = 9, .external_lex_state = 2}, + [1649] = {.lex_state = 9, .external_lex_state = 2}, + [1650] = {.lex_state = 9, .external_lex_state = 2}, + [1651] = {.lex_state = 9, .external_lex_state = 2}, + [1652] = {.lex_state = 9, .external_lex_state = 2}, + [1653] = {.lex_state = 2, .external_lex_state = 4}, + [1654] = {.lex_state = 9, .external_lex_state = 2}, + [1655] = {.lex_state = 9, .external_lex_state = 2}, + [1656] = {.lex_state = 2, .external_lex_state = 4}, + [1657] = {.lex_state = 2, .external_lex_state = 4}, + [1658] = {.lex_state = 2, .external_lex_state = 4}, + [1659] = {.lex_state = 2, .external_lex_state = 4}, + [1660] = {.lex_state = 9, .external_lex_state = 2}, + [1661] = {.lex_state = 13, .external_lex_state = 6}, + [1662] = {.lex_state = 9, .external_lex_state = 2}, + [1663] = {.lex_state = 9, .external_lex_state = 2}, + [1664] = {.lex_state = 9, .external_lex_state = 2}, + [1665] = {.lex_state = 9, .external_lex_state = 2}, + [1666] = {.lex_state = 9, .external_lex_state = 2}, + [1667] = {.lex_state = 9, .external_lex_state = 2}, + [1668] = {.lex_state = 9, .external_lex_state = 2}, + [1669] = {.lex_state = 9, .external_lex_state = 2}, + [1670] = {.lex_state = 9, .external_lex_state = 2}, + [1671] = {.lex_state = 9, .external_lex_state = 2}, + [1672] = {.lex_state = 9, .external_lex_state = 2}, + [1673] = {.lex_state = 9, .external_lex_state = 2}, + [1674] = {.lex_state = 13, .external_lex_state = 6}, + [1675] = {.lex_state = 9, .external_lex_state = 2}, + [1676] = {.lex_state = 9, .external_lex_state = 2}, + [1677] = {.lex_state = 9, .external_lex_state = 2}, + [1678] = {.lex_state = 9, .external_lex_state = 2}, + [1679] = {.lex_state = 9, .external_lex_state = 2}, + [1680] = {.lex_state = 9, .external_lex_state = 2}, + [1681] = {.lex_state = 9, .external_lex_state = 2}, + [1682] = {.lex_state = 13, .external_lex_state = 6}, + [1683] = {.lex_state = 9, .external_lex_state = 2}, + [1684] = {.lex_state = 9, .external_lex_state = 2}, + [1685] = {.lex_state = 13, .external_lex_state = 6}, + [1686] = {.lex_state = 13, .external_lex_state = 6}, + [1687] = {.lex_state = 13, .external_lex_state = 6}, + [1688] = {.lex_state = 13, .external_lex_state = 6}, + [1689] = {.lex_state = 13, .external_lex_state = 6}, + [1690] = {.lex_state = 13, .external_lex_state = 6}, + [1691] = {.lex_state = 13, .external_lex_state = 6}, + [1692] = {.lex_state = 13, .external_lex_state = 6}, + [1693] = {.lex_state = 9, .external_lex_state = 2}, + [1694] = {.lex_state = 13, .external_lex_state = 6}, + [1695] = {.lex_state = 13, .external_lex_state = 6}, + [1696] = {.lex_state = 9, .external_lex_state = 2}, + [1697] = {.lex_state = 9, .external_lex_state = 2}, + [1698] = {.lex_state = 9, .external_lex_state = 2}, + [1699] = {.lex_state = 9, .external_lex_state = 2}, + [1700] = {.lex_state = 9, .external_lex_state = 2}, + [1701] = {.lex_state = 9, .external_lex_state = 2}, + [1702] = {.lex_state = 9, .external_lex_state = 2}, + [1703] = {.lex_state = 9, .external_lex_state = 2}, + [1704] = {.lex_state = 9, .external_lex_state = 2}, + [1705] = {.lex_state = 9, .external_lex_state = 2}, + [1706] = {.lex_state = 9, .external_lex_state = 2}, + [1707] = {.lex_state = 9, .external_lex_state = 2}, + [1708] = {.lex_state = 9, .external_lex_state = 2}, + [1709] = {.lex_state = 9, .external_lex_state = 2}, + [1710] = {.lex_state = 9, .external_lex_state = 2}, + [1711] = {.lex_state = 9, .external_lex_state = 2}, + [1712] = {.lex_state = 9, .external_lex_state = 2}, + [1713] = {.lex_state = 9, .external_lex_state = 2}, + [1714] = {.lex_state = 9, .external_lex_state = 2}, + [1715] = {.lex_state = 9, .external_lex_state = 2}, + [1716] = {.lex_state = 9, .external_lex_state = 2}, + [1717] = {.lex_state = 9, .external_lex_state = 2}, + [1718] = {.lex_state = 9, .external_lex_state = 2}, + [1719] = {.lex_state = 9, .external_lex_state = 2}, + [1720] = {.lex_state = 9, .external_lex_state = 2}, + [1721] = {.lex_state = 9, .external_lex_state = 2}, + [1722] = {.lex_state = 9, .external_lex_state = 2}, + [1723] = {.lex_state = 9, .external_lex_state = 2}, + [1724] = {.lex_state = 9, .external_lex_state = 2}, + [1725] = {.lex_state = 9, .external_lex_state = 2}, + [1726] = {.lex_state = 9, .external_lex_state = 2}, + [1727] = {.lex_state = 9, .external_lex_state = 2}, + [1728] = {.lex_state = 9, .external_lex_state = 2}, + [1729] = {.lex_state = 9, .external_lex_state = 2}, + [1730] = {.lex_state = 9, .external_lex_state = 2}, + [1731] = {.lex_state = 9, .external_lex_state = 2}, + [1732] = {.lex_state = 9, .external_lex_state = 2}, + [1733] = {.lex_state = 9, .external_lex_state = 2}, + [1734] = {.lex_state = 9, .external_lex_state = 2}, + [1735] = {.lex_state = 9, .external_lex_state = 2}, + [1736] = {.lex_state = 9, .external_lex_state = 2}, + [1737] = {.lex_state = 9, .external_lex_state = 2}, + [1738] = {.lex_state = 9, .external_lex_state = 2}, + [1739] = {.lex_state = 9, .external_lex_state = 2}, + [1740] = {.lex_state = 9, .external_lex_state = 2}, + [1741] = {.lex_state = 9, .external_lex_state = 2}, + [1742] = {.lex_state = 9, .external_lex_state = 2}, + [1743] = {.lex_state = 9, .external_lex_state = 2}, + [1744] = {.lex_state = 9, .external_lex_state = 2}, + [1745] = {.lex_state = 9, .external_lex_state = 2}, + [1746] = {.lex_state = 1, .external_lex_state = 4}, + [1747] = {.lex_state = 9, .external_lex_state = 2}, + [1748] = {.lex_state = 9, .external_lex_state = 2}, + [1749] = {.lex_state = 9, .external_lex_state = 2}, + [1750] = {.lex_state = 9, .external_lex_state = 2}, + [1751] = {.lex_state = 9, .external_lex_state = 2}, + [1752] = {.lex_state = 9, .external_lex_state = 2}, + [1753] = {.lex_state = 9, .external_lex_state = 2}, + [1754] = {.lex_state = 9, .external_lex_state = 2}, + [1755] = {.lex_state = 9, .external_lex_state = 2}, + [1756] = {.lex_state = 9, .external_lex_state = 2}, + [1757] = {.lex_state = 9, .external_lex_state = 2}, + [1758] = {.lex_state = 9, .external_lex_state = 2}, + [1759] = {.lex_state = 9, .external_lex_state = 2}, + [1760] = {.lex_state = 9, .external_lex_state = 2}, + [1761] = {.lex_state = 9, .external_lex_state = 2}, + [1762] = {.lex_state = 9, .external_lex_state = 2}, + [1763] = {.lex_state = 9, .external_lex_state = 2}, + [1764] = {.lex_state = 9, .external_lex_state = 2}, + [1765] = {.lex_state = 9, .external_lex_state = 2}, + [1766] = {.lex_state = 9, .external_lex_state = 2}, + [1767] = {.lex_state = 9, .external_lex_state = 2}, + [1768] = {.lex_state = 9, .external_lex_state = 2}, + [1769] = {.lex_state = 9, .external_lex_state = 2}, + [1770] = {.lex_state = 9, .external_lex_state = 2}, + [1771] = {.lex_state = 9, .external_lex_state = 2}, + [1772] = {.lex_state = 9, .external_lex_state = 2}, + [1773] = {.lex_state = 9, .external_lex_state = 2}, + [1774] = {.lex_state = 9, .external_lex_state = 2}, + [1775] = {.lex_state = 9, .external_lex_state = 2}, + [1776] = {.lex_state = 9, .external_lex_state = 2}, + [1777] = {.lex_state = 9, .external_lex_state = 2}, + [1778] = {.lex_state = 9, .external_lex_state = 2}, + [1779] = {.lex_state = 9, .external_lex_state = 2}, + [1780] = {.lex_state = 9, .external_lex_state = 2}, + [1781] = {.lex_state = 9, .external_lex_state = 2}, + [1782] = {.lex_state = 9, .external_lex_state = 2}, + [1783] = {.lex_state = 9, .external_lex_state = 2}, + [1784] = {.lex_state = 9, .external_lex_state = 2}, + [1785] = {.lex_state = 9, .external_lex_state = 2}, + [1786] = {.lex_state = 9, .external_lex_state = 2}, + [1787] = {.lex_state = 9, .external_lex_state = 2}, + [1788] = {.lex_state = 9, .external_lex_state = 2}, + [1789] = {.lex_state = 9, .external_lex_state = 2}, + [1790] = {.lex_state = 9, .external_lex_state = 2}, + [1791] = {.lex_state = 9, .external_lex_state = 2}, + [1792] = {.lex_state = 9, .external_lex_state = 2}, + [1793] = {.lex_state = 9, .external_lex_state = 2}, + [1794] = {.lex_state = 9, .external_lex_state = 2}, + [1795] = {.lex_state = 9, .external_lex_state = 2}, + [1796] = {.lex_state = 9, .external_lex_state = 2}, + [1797] = {.lex_state = 9, .external_lex_state = 2}, + [1798] = {.lex_state = 9, .external_lex_state = 2}, + [1799] = {.lex_state = 9, .external_lex_state = 2}, + [1800] = {.lex_state = 9, .external_lex_state = 2}, + [1801] = {.lex_state = 9, .external_lex_state = 2}, + [1802] = {.lex_state = 9, .external_lex_state = 2}, + [1803] = {.lex_state = 9, .external_lex_state = 2}, + [1804] = {.lex_state = 9, .external_lex_state = 2}, + [1805] = {.lex_state = 9, .external_lex_state = 2}, + [1806] = {.lex_state = 9, .external_lex_state = 2}, + [1807] = {.lex_state = 9, .external_lex_state = 2}, + [1808] = {.lex_state = 9, .external_lex_state = 2}, + [1809] = {.lex_state = 9, .external_lex_state = 2}, + [1810] = {.lex_state = 9, .external_lex_state = 2}, + [1811] = {.lex_state = 9, .external_lex_state = 2}, + [1812] = {.lex_state = 9, .external_lex_state = 2}, + [1813] = {.lex_state = 9, .external_lex_state = 2}, + [1814] = {.lex_state = 9, .external_lex_state = 2}, + [1815] = {.lex_state = 9, .external_lex_state = 2}, + [1816] = {.lex_state = 9, .external_lex_state = 2}, + [1817] = {.lex_state = 9, .external_lex_state = 2}, + [1818] = {.lex_state = 9, .external_lex_state = 2}, + [1819] = {.lex_state = 9, .external_lex_state = 2}, + [1820] = {.lex_state = 9, .external_lex_state = 2}, + [1821] = {.lex_state = 9, .external_lex_state = 2}, + [1822] = {.lex_state = 9, .external_lex_state = 2}, + [1823] = {.lex_state = 9, .external_lex_state = 2}, + [1824] = {.lex_state = 9, .external_lex_state = 2}, + [1825] = {.lex_state = 9, .external_lex_state = 2}, + [1826] = {.lex_state = 9, .external_lex_state = 2}, + [1827] = {.lex_state = 9, .external_lex_state = 2}, + [1828] = {.lex_state = 9, .external_lex_state = 2}, + [1829] = {.lex_state = 9, .external_lex_state = 2}, + [1830] = {.lex_state = 9, .external_lex_state = 2}, + [1831] = {.lex_state = 9, .external_lex_state = 2}, + [1832] = {.lex_state = 9, .external_lex_state = 2}, + [1833] = {.lex_state = 13, .external_lex_state = 6}, + [1834] = {.lex_state = 9, .external_lex_state = 2}, + [1835] = {.lex_state = 9, .external_lex_state = 2}, + [1836] = {.lex_state = 9, .external_lex_state = 2}, + [1837] = {.lex_state = 9, .external_lex_state = 2}, + [1838] = {.lex_state = 9, .external_lex_state = 2}, + [1839] = {.lex_state = 9, .external_lex_state = 2}, + [1840] = {.lex_state = 9, .external_lex_state = 2}, + [1841] = {.lex_state = 9, .external_lex_state = 2}, + [1842] = {.lex_state = 9, .external_lex_state = 2}, + [1843] = {.lex_state = 9, .external_lex_state = 2}, + [1844] = {.lex_state = 1, .external_lex_state = 4}, + [1845] = {.lex_state = 9, .external_lex_state = 2}, + [1846] = {.lex_state = 9, .external_lex_state = 2}, + [1847] = {.lex_state = 9, .external_lex_state = 2}, + [1848] = {.lex_state = 9, .external_lex_state = 2}, + [1849] = {.lex_state = 9, .external_lex_state = 2}, + [1850] = {.lex_state = 9, .external_lex_state = 2}, + [1851] = {.lex_state = 9, .external_lex_state = 2}, + [1852] = {.lex_state = 9, .external_lex_state = 2}, + [1853] = {.lex_state = 9, .external_lex_state = 2}, + [1854] = {.lex_state = 13, .external_lex_state = 6}, + [1855] = {.lex_state = 9, .external_lex_state = 2}, + [1856] = {.lex_state = 9, .external_lex_state = 2}, + [1857] = {.lex_state = 9, .external_lex_state = 2}, + [1858] = {.lex_state = 9, .external_lex_state = 2}, + [1859] = {.lex_state = 9, .external_lex_state = 2}, + [1860] = {.lex_state = 9, .external_lex_state = 2}, + [1861] = {.lex_state = 9, .external_lex_state = 2}, + [1862] = {.lex_state = 9, .external_lex_state = 2}, + [1863] = {.lex_state = 9, .external_lex_state = 2}, + [1864] = {.lex_state = 9, .external_lex_state = 2}, + [1865] = {.lex_state = 9, .external_lex_state = 2}, + [1866] = {.lex_state = 9, .external_lex_state = 2}, + [1867] = {.lex_state = 9, .external_lex_state = 2}, + [1868] = {.lex_state = 9, .external_lex_state = 2}, + [1869] = {.lex_state = 9, .external_lex_state = 2}, + [1870] = {.lex_state = 13, .external_lex_state = 6}, + [1871] = {.lex_state = 9, .external_lex_state = 2}, + [1872] = {.lex_state = 9, .external_lex_state = 2}, + [1873] = {.lex_state = 9, .external_lex_state = 2}, + [1874] = {.lex_state = 9, .external_lex_state = 2}, + [1875] = {.lex_state = 9, .external_lex_state = 2}, + [1876] = {.lex_state = 9, .external_lex_state = 2}, + [1877] = {.lex_state = 9, .external_lex_state = 2}, + [1878] = {.lex_state = 9, .external_lex_state = 2}, + [1879] = {.lex_state = 9, .external_lex_state = 2}, + [1880] = {.lex_state = 9, .external_lex_state = 2}, + [1881] = {.lex_state = 9, .external_lex_state = 2}, + [1882] = {.lex_state = 9, .external_lex_state = 2}, + [1883] = {.lex_state = 9, .external_lex_state = 2}, + [1884] = {.lex_state = 9, .external_lex_state = 2}, + [1885] = {.lex_state = 9, .external_lex_state = 2}, + [1886] = {.lex_state = 9, .external_lex_state = 2}, + [1887] = {.lex_state = 9, .external_lex_state = 2}, + [1888] = {.lex_state = 9, .external_lex_state = 2}, + [1889] = {.lex_state = 9, .external_lex_state = 2}, + [1890] = {.lex_state = 9, .external_lex_state = 2}, + [1891] = {.lex_state = 9, .external_lex_state = 2}, + [1892] = {.lex_state = 9, .external_lex_state = 2}, + [1893] = {.lex_state = 9, .external_lex_state = 2}, + [1894] = {.lex_state = 9, .external_lex_state = 2}, + [1895] = {.lex_state = 9, .external_lex_state = 2}, + [1896] = {.lex_state = 9, .external_lex_state = 2}, + [1897] = {.lex_state = 9, .external_lex_state = 2}, + [1898] = {.lex_state = 9, .external_lex_state = 2}, + [1899] = {.lex_state = 9, .external_lex_state = 2}, + [1900] = {.lex_state = 9, .external_lex_state = 2}, + [1901] = {.lex_state = 9, .external_lex_state = 2}, + [1902] = {.lex_state = 9, .external_lex_state = 2}, + [1903] = {.lex_state = 9, .external_lex_state = 2}, + [1904] = {.lex_state = 9, .external_lex_state = 2}, + [1905] = {.lex_state = 13, .external_lex_state = 6}, + [1906] = {.lex_state = 9, .external_lex_state = 2}, + [1907] = {.lex_state = 9, .external_lex_state = 2}, + [1908] = {.lex_state = 9, .external_lex_state = 2}, + [1909] = {.lex_state = 9, .external_lex_state = 2}, + [1910] = {.lex_state = 9, .external_lex_state = 2}, + [1911] = {.lex_state = 9, .external_lex_state = 2}, + [1912] = {.lex_state = 9, .external_lex_state = 2}, + [1913] = {.lex_state = 9, .external_lex_state = 2}, + [1914] = {.lex_state = 9, .external_lex_state = 2}, + [1915] = {.lex_state = 9, .external_lex_state = 2}, + [1916] = {.lex_state = 9, .external_lex_state = 2}, + [1917] = {.lex_state = 9, .external_lex_state = 2}, + [1918] = {.lex_state = 9, .external_lex_state = 2}, + [1919] = {.lex_state = 9, .external_lex_state = 2}, + [1920] = {.lex_state = 9, .external_lex_state = 2}, + [1921] = {.lex_state = 9, .external_lex_state = 2}, + [1922] = {.lex_state = 9, .external_lex_state = 2}, + [1923] = {.lex_state = 9, .external_lex_state = 2}, + [1924] = {.lex_state = 9, .external_lex_state = 2}, + [1925] = {.lex_state = 9, .external_lex_state = 2}, + [1926] = {.lex_state = 9, .external_lex_state = 2}, + [1927] = {.lex_state = 9, .external_lex_state = 2}, + [1928] = {.lex_state = 9, .external_lex_state = 2}, + [1929] = {.lex_state = 9, .external_lex_state = 2}, + [1930] = {.lex_state = 9, .external_lex_state = 2}, + [1931] = {.lex_state = 9, .external_lex_state = 2}, + [1932] = {.lex_state = 9, .external_lex_state = 2}, + [1933] = {.lex_state = 9, .external_lex_state = 2}, + [1934] = {.lex_state = 9, .external_lex_state = 2}, + [1935] = {.lex_state = 9, .external_lex_state = 2}, + [1936] = {.lex_state = 9, .external_lex_state = 2}, + [1937] = {.lex_state = 9, .external_lex_state = 2}, + [1938] = {.lex_state = 9, .external_lex_state = 2}, + [1939] = {.lex_state = 9, .external_lex_state = 2}, + [1940] = {.lex_state = 9, .external_lex_state = 2}, + [1941] = {.lex_state = 9, .external_lex_state = 2}, + [1942] = {.lex_state = 9, .external_lex_state = 2}, + [1943] = {.lex_state = 13, .external_lex_state = 6}, + [1944] = {.lex_state = 9, .external_lex_state = 2}, + [1945] = {.lex_state = 9, .external_lex_state = 2}, + [1946] = {.lex_state = 9, .external_lex_state = 2}, + [1947] = {.lex_state = 9, .external_lex_state = 2}, + [1948] = {.lex_state = 9, .external_lex_state = 2}, + [1949] = {.lex_state = 9, .external_lex_state = 2}, + [1950] = {.lex_state = 9, .external_lex_state = 2}, + [1951] = {.lex_state = 9, .external_lex_state = 2}, + [1952] = {.lex_state = 9, .external_lex_state = 2}, + [1953] = {.lex_state = 9, .external_lex_state = 2}, + [1954] = {.lex_state = 9, .external_lex_state = 2}, + [1955] = {.lex_state = 9, .external_lex_state = 2}, + [1956] = {.lex_state = 9, .external_lex_state = 2}, + [1957] = {.lex_state = 9, .external_lex_state = 2}, + [1958] = {.lex_state = 9, .external_lex_state = 2}, + [1959] = {.lex_state = 9, .external_lex_state = 2}, + [1960] = {.lex_state = 9, .external_lex_state = 2}, + [1961] = {.lex_state = 9, .external_lex_state = 2}, + [1962] = {.lex_state = 9, .external_lex_state = 2}, + [1963] = {.lex_state = 9, .external_lex_state = 2}, + [1964] = {.lex_state = 9, .external_lex_state = 2}, + [1965] = {.lex_state = 9, .external_lex_state = 2}, + [1966] = {.lex_state = 9, .external_lex_state = 2}, + [1967] = {.lex_state = 9, .external_lex_state = 2}, + [1968] = {.lex_state = 1, .external_lex_state = 4}, + [1969] = {.lex_state = 9, .external_lex_state = 2}, + [1970] = {.lex_state = 9, .external_lex_state = 2}, + [1971] = {.lex_state = 9, .external_lex_state = 2}, + [1972] = {.lex_state = 9, .external_lex_state = 2}, + [1973] = {.lex_state = 9, .external_lex_state = 2}, + [1974] = {.lex_state = 9, .external_lex_state = 2}, + [1975] = {.lex_state = 9, .external_lex_state = 2}, + [1976] = {.lex_state = 9, .external_lex_state = 2}, + [1977] = {.lex_state = 9, .external_lex_state = 2}, + [1978] = {.lex_state = 9, .external_lex_state = 2}, + [1979] = {.lex_state = 9, .external_lex_state = 2}, + [1980] = {.lex_state = 9, .external_lex_state = 2}, + [1981] = {.lex_state = 9, .external_lex_state = 2}, + [1982] = {.lex_state = 1, .external_lex_state = 4}, + [1983] = {.lex_state = 9, .external_lex_state = 2}, + [1984] = {.lex_state = 9, .external_lex_state = 2}, + [1985] = {.lex_state = 9, .external_lex_state = 2}, + [1986] = {.lex_state = 9, .external_lex_state = 2}, + [1987] = {.lex_state = 9, .external_lex_state = 2}, + [1988] = {.lex_state = 9, .external_lex_state = 2}, + [1989] = {.lex_state = 9, .external_lex_state = 2}, + [1990] = {.lex_state = 9, .external_lex_state = 2}, + [1991] = {.lex_state = 13, .external_lex_state = 6}, + [1992] = {.lex_state = 9, .external_lex_state = 2}, + [1993] = {.lex_state = 9, .external_lex_state = 2}, + [1994] = {.lex_state = 9, .external_lex_state = 2}, + [1995] = {.lex_state = 9, .external_lex_state = 2}, + [1996] = {.lex_state = 9, .external_lex_state = 2}, + [1997] = {.lex_state = 9, .external_lex_state = 2}, + [1998] = {.lex_state = 9, .external_lex_state = 2}, + [1999] = {.lex_state = 9, .external_lex_state = 2}, + [2000] = {.lex_state = 9, .external_lex_state = 2}, + [2001] = {.lex_state = 9, .external_lex_state = 2}, + [2002] = {.lex_state = 9, .external_lex_state = 2}, + [2003] = {.lex_state = 9, .external_lex_state = 2}, + [2004] = {.lex_state = 9, .external_lex_state = 2}, + [2005] = {.lex_state = 9, .external_lex_state = 2}, + [2006] = {.lex_state = 9, .external_lex_state = 2}, + [2007] = {.lex_state = 9, .external_lex_state = 2}, + [2008] = {.lex_state = 9, .external_lex_state = 2}, + [2009] = {.lex_state = 9, .external_lex_state = 2}, + [2010] = {.lex_state = 9, .external_lex_state = 2}, + [2011] = {.lex_state = 9, .external_lex_state = 2}, + [2012] = {.lex_state = 9, .external_lex_state = 2}, + [2013] = {.lex_state = 9, .external_lex_state = 2}, + [2014] = {.lex_state = 9, .external_lex_state = 2}, + [2015] = {.lex_state = 9, .external_lex_state = 2}, + [2016] = {.lex_state = 9, .external_lex_state = 2}, + [2017] = {.lex_state = 9, .external_lex_state = 2}, + [2018] = {.lex_state = 9, .external_lex_state = 2}, + [2019] = {.lex_state = 9, .external_lex_state = 2}, + [2020] = {.lex_state = 9, .external_lex_state = 2}, + [2021] = {.lex_state = 9, .external_lex_state = 2}, + [2022] = {.lex_state = 9, .external_lex_state = 2}, + [2023] = {.lex_state = 9, .external_lex_state = 2}, + [2024] = {.lex_state = 9, .external_lex_state = 2}, + [2025] = {.lex_state = 9, .external_lex_state = 2}, + [2026] = {.lex_state = 9, .external_lex_state = 2}, + [2027] = {.lex_state = 9, .external_lex_state = 2}, + [2028] = {.lex_state = 9, .external_lex_state = 2}, + [2029] = {.lex_state = 9, .external_lex_state = 2}, + [2030] = {.lex_state = 9, .external_lex_state = 2}, + [2031] = {.lex_state = 9, .external_lex_state = 2}, + [2032] = {.lex_state = 9, .external_lex_state = 2}, + [2033] = {.lex_state = 9, .external_lex_state = 2}, + [2034] = {.lex_state = 9, .external_lex_state = 2}, + [2035] = {.lex_state = 9, .external_lex_state = 2}, + [2036] = {.lex_state = 9, .external_lex_state = 2}, + [2037] = {.lex_state = 9, .external_lex_state = 2}, + [2038] = {.lex_state = 9, .external_lex_state = 2}, + [2039] = {.lex_state = 9, .external_lex_state = 2}, + [2040] = {.lex_state = 9, .external_lex_state = 2}, + [2041] = {.lex_state = 9, .external_lex_state = 2}, + [2042] = {.lex_state = 9, .external_lex_state = 2}, + [2043] = {.lex_state = 9, .external_lex_state = 2}, + [2044] = {.lex_state = 13, .external_lex_state = 6}, + [2045] = {.lex_state = 9, .external_lex_state = 2}, + [2046] = {.lex_state = 9, .external_lex_state = 2}, + [2047] = {.lex_state = 9, .external_lex_state = 2}, + [2048] = {.lex_state = 9, .external_lex_state = 2}, + [2049] = {.lex_state = 9, .external_lex_state = 2}, + [2050] = {.lex_state = 9, .external_lex_state = 2}, + [2051] = {.lex_state = 9, .external_lex_state = 2}, + [2052] = {.lex_state = 1, .external_lex_state = 4}, + [2053] = {.lex_state = 9, .external_lex_state = 2}, + [2054] = {.lex_state = 9, .external_lex_state = 2}, + [2055] = {.lex_state = 9, .external_lex_state = 2}, + [2056] = {.lex_state = 9, .external_lex_state = 2}, + [2057] = {.lex_state = 9, .external_lex_state = 2}, + [2058] = {.lex_state = 9, .external_lex_state = 2}, + [2059] = {.lex_state = 9, .external_lex_state = 2}, + [2060] = {.lex_state = 1, .external_lex_state = 4}, + [2061] = {.lex_state = 9, .external_lex_state = 2}, + [2062] = {.lex_state = 13, .external_lex_state = 6}, + [2063] = {.lex_state = 9, .external_lex_state = 2}, + [2064] = {.lex_state = 9, .external_lex_state = 2}, + [2065] = {.lex_state = 9, .external_lex_state = 2}, + [2066] = {.lex_state = 9, .external_lex_state = 2}, + [2067] = {.lex_state = 9, .external_lex_state = 2}, + [2068] = {.lex_state = 9, .external_lex_state = 2}, + [2069] = {.lex_state = 9, .external_lex_state = 2}, + [2070] = {.lex_state = 9, .external_lex_state = 2}, + [2071] = {.lex_state = 9, .external_lex_state = 2}, + [2072] = {.lex_state = 9, .external_lex_state = 2}, + [2073] = {.lex_state = 9, .external_lex_state = 2}, + [2074] = {.lex_state = 9, .external_lex_state = 2}, + [2075] = {.lex_state = 9, .external_lex_state = 2}, + [2076] = {.lex_state = 9, .external_lex_state = 2}, + [2077] = {.lex_state = 9, .external_lex_state = 2}, + [2078] = {.lex_state = 9, .external_lex_state = 2}, + [2079] = {.lex_state = 9, .external_lex_state = 2}, + [2080] = {.lex_state = 13, .external_lex_state = 6}, + [2081] = {.lex_state = 13, .external_lex_state = 6}, + [2082] = {.lex_state = 13, .external_lex_state = 6}, + [2083] = {.lex_state = 9, .external_lex_state = 2}, + [2084] = {.lex_state = 9, .external_lex_state = 2}, + [2085] = {.lex_state = 9, .external_lex_state = 2}, + [2086] = {.lex_state = 9, .external_lex_state = 2}, + [2087] = {.lex_state = 9, .external_lex_state = 2}, + [2088] = {.lex_state = 2, .external_lex_state = 4}, + [2089] = {.lex_state = 9, .external_lex_state = 2}, + [2090] = {.lex_state = 9, .external_lex_state = 2}, + [2091] = {.lex_state = 9, .external_lex_state = 2}, + [2092] = {.lex_state = 9, .external_lex_state = 2}, + [2093] = {.lex_state = 9, .external_lex_state = 2}, + [2094] = {.lex_state = 9, .external_lex_state = 2}, + [2095] = {.lex_state = 9, .external_lex_state = 2}, + [2096] = {.lex_state = 9, .external_lex_state = 2}, + [2097] = {.lex_state = 9, .external_lex_state = 2}, + [2098] = {.lex_state = 9, .external_lex_state = 2}, + [2099] = {.lex_state = 9, .external_lex_state = 2}, + [2100] = {.lex_state = 2, .external_lex_state = 4}, + [2101] = {.lex_state = 9, .external_lex_state = 2}, + [2102] = {.lex_state = 9, .external_lex_state = 2}, + [2103] = {.lex_state = 9, .external_lex_state = 2}, + [2104] = {.lex_state = 9, .external_lex_state = 2}, + [2105] = {.lex_state = 9, .external_lex_state = 2}, + [2106] = {.lex_state = 9, .external_lex_state = 2}, + [2107] = {.lex_state = 9, .external_lex_state = 2}, + [2108] = {.lex_state = 1, .external_lex_state = 4}, + [2109] = {.lex_state = 9, .external_lex_state = 2}, + [2110] = {.lex_state = 1, .external_lex_state = 4}, + [2111] = {.lex_state = 9, .external_lex_state = 2}, + [2112] = {.lex_state = 9, .external_lex_state = 2}, + [2113] = {.lex_state = 2, .external_lex_state = 4}, + [2114] = {.lex_state = 9, .external_lex_state = 2}, + [2115] = {.lex_state = 9, .external_lex_state = 2}, + [2116] = {.lex_state = 9, .external_lex_state = 2}, + [2117] = {.lex_state = 9, .external_lex_state = 2}, + [2118] = {.lex_state = 9, .external_lex_state = 2}, + [2119] = {.lex_state = 9, .external_lex_state = 2}, + [2120] = {.lex_state = 9, .external_lex_state = 2}, + [2121] = {.lex_state = 9, .external_lex_state = 2}, + [2122] = {.lex_state = 9, .external_lex_state = 2}, + [2123] = {.lex_state = 1, .external_lex_state = 4}, + [2124] = {.lex_state = 9, .external_lex_state = 2}, + [2125] = {.lex_state = 9, .external_lex_state = 2}, + [2126] = {.lex_state = 9, .external_lex_state = 2}, + [2127] = {.lex_state = 9, .external_lex_state = 2}, + [2128] = {.lex_state = 9, .external_lex_state = 2}, + [2129] = {.lex_state = 9, .external_lex_state = 2}, + [2130] = {.lex_state = 9, .external_lex_state = 2}, + [2131] = {.lex_state = 9, .external_lex_state = 2}, + [2132] = {.lex_state = 9, .external_lex_state = 2}, + [2133] = {.lex_state = 9, .external_lex_state = 2}, + [2134] = {.lex_state = 9, .external_lex_state = 2}, + [2135] = {.lex_state = 9, .external_lex_state = 2}, + [2136] = {.lex_state = 9, .external_lex_state = 2}, + [2137] = {.lex_state = 9, .external_lex_state = 2}, + [2138] = {.lex_state = 9, .external_lex_state = 2}, + [2139] = {.lex_state = 9, .external_lex_state = 2}, + [2140] = {.lex_state = 9, .external_lex_state = 2}, + [2141] = {.lex_state = 9, .external_lex_state = 2}, + [2142] = {.lex_state = 9, .external_lex_state = 2}, + [2143] = {.lex_state = 2, .external_lex_state = 4}, + [2144] = {.lex_state = 1, .external_lex_state = 4}, + [2145] = {.lex_state = 9, .external_lex_state = 2}, + [2146] = {.lex_state = 9, .external_lex_state = 2}, + [2147] = {.lex_state = 9, .external_lex_state = 2}, + [2148] = {.lex_state = 1, .external_lex_state = 4}, + [2149] = {.lex_state = 9, .external_lex_state = 2}, + [2150] = {.lex_state = 9, .external_lex_state = 2}, + [2151] = {.lex_state = 1, .external_lex_state = 4}, + [2152] = {.lex_state = 9, .external_lex_state = 2}, + [2153] = {.lex_state = 9, .external_lex_state = 2}, + [2154] = {.lex_state = 9, .external_lex_state = 2}, + [2155] = {.lex_state = 9, .external_lex_state = 2}, + [2156] = {.lex_state = 9, .external_lex_state = 2}, + [2157] = {.lex_state = 9, .external_lex_state = 2}, + [2158] = {.lex_state = 9, .external_lex_state = 2}, + [2159] = {.lex_state = 1, .external_lex_state = 4}, + [2160] = {.lex_state = 9, .external_lex_state = 2}, + [2161] = {.lex_state = 9, .external_lex_state = 2}, + [2162] = {.lex_state = 9, .external_lex_state = 2}, + [2163] = {.lex_state = 9, .external_lex_state = 2}, + [2164] = {.lex_state = 9, .external_lex_state = 2}, + [2165] = {.lex_state = 9, .external_lex_state = 2}, + [2166] = {.lex_state = 9, .external_lex_state = 2}, + [2167] = {.lex_state = 9, .external_lex_state = 2}, + [2168] = {.lex_state = 9, .external_lex_state = 2}, + [2169] = {.lex_state = 9, .external_lex_state = 2}, + [2170] = {.lex_state = 9, .external_lex_state = 2}, + [2171] = {.lex_state = 9, .external_lex_state = 2}, + [2172] = {.lex_state = 9, .external_lex_state = 2}, + [2173] = {.lex_state = 9, .external_lex_state = 2}, + [2174] = {.lex_state = 9, .external_lex_state = 2}, + [2175] = {.lex_state = 9, .external_lex_state = 2}, + [2176] = {.lex_state = 9, .external_lex_state = 2}, + [2177] = {.lex_state = 9, .external_lex_state = 2}, + [2178] = {.lex_state = 9, .external_lex_state = 2}, + [2179] = {.lex_state = 1, .external_lex_state = 4}, + [2180] = {.lex_state = 9, .external_lex_state = 2}, + [2181] = {.lex_state = 9, .external_lex_state = 2}, + [2182] = {.lex_state = 9, .external_lex_state = 2}, + [2183] = {.lex_state = 9, .external_lex_state = 2}, + [2184] = {.lex_state = 9, .external_lex_state = 2}, + [2185] = {.lex_state = 9, .external_lex_state = 2}, + [2186] = {.lex_state = 9, .external_lex_state = 2}, + [2187] = {.lex_state = 9, .external_lex_state = 2}, + [2188] = {.lex_state = 9, .external_lex_state = 2}, + [2189] = {.lex_state = 9, .external_lex_state = 2}, + [2190] = {.lex_state = 9, .external_lex_state = 2}, + [2191] = {.lex_state = 9, .external_lex_state = 2}, + [2192] = {.lex_state = 9, .external_lex_state = 2}, + [2193] = {.lex_state = 9, .external_lex_state = 2}, + [2194] = {.lex_state = 9, .external_lex_state = 2}, + [2195] = {.lex_state = 9, .external_lex_state = 2}, + [2196] = {.lex_state = 9, .external_lex_state = 2}, + [2197] = {.lex_state = 9, .external_lex_state = 2}, + [2198] = {.lex_state = 9, .external_lex_state = 2}, + [2199] = {.lex_state = 9, .external_lex_state = 2}, + [2200] = {.lex_state = 9, .external_lex_state = 2}, + [2201] = {.lex_state = 9, .external_lex_state = 2}, + [2202] = {.lex_state = 9, .external_lex_state = 2}, + [2203] = {.lex_state = 9, .external_lex_state = 2}, + [2204] = {.lex_state = 9, .external_lex_state = 2}, + [2205] = {.lex_state = 9, .external_lex_state = 2}, + [2206] = {.lex_state = 1, .external_lex_state = 4}, + [2207] = {.lex_state = 2, .external_lex_state = 4}, + [2208] = {.lex_state = 9, .external_lex_state = 2}, + [2209] = {.lex_state = 9, .external_lex_state = 2}, + [2210] = {.lex_state = 13, .external_lex_state = 6}, + [2211] = {.lex_state = 13, .external_lex_state = 6}, + [2212] = {.lex_state = 13, .external_lex_state = 6}, + [2213] = {.lex_state = 2, .external_lex_state = 4}, + [2214] = {.lex_state = 2, .external_lex_state = 4}, + [2215] = {.lex_state = 9, .external_lex_state = 2}, + [2216] = {.lex_state = 9, .external_lex_state = 2}, + [2217] = {.lex_state = 13, .external_lex_state = 7}, + [2218] = {.lex_state = 13, .external_lex_state = 7}, + [2219] = {.lex_state = 13, .external_lex_state = 7}, + [2220] = {.lex_state = 13, .external_lex_state = 7}, + [2221] = {.lex_state = 13, .external_lex_state = 7}, + [2222] = {.lex_state = 13, .external_lex_state = 7}, + [2223] = {.lex_state = 13, .external_lex_state = 7}, + [2224] = {.lex_state = 13, .external_lex_state = 7}, + [2225] = {.lex_state = 13, .external_lex_state = 6}, + [2226] = {.lex_state = 13, .external_lex_state = 7}, + [2227] = {.lex_state = 11, .external_lex_state = 5}, + [2228] = {.lex_state = 13, .external_lex_state = 6}, + [2229] = {.lex_state = 13, .external_lex_state = 6}, + [2230] = {.lex_state = 1, .external_lex_state = 4}, + [2231] = {.lex_state = 13, .external_lex_state = 7}, + [2232] = {.lex_state = 13, .external_lex_state = 6}, + [2233] = {.lex_state = 13, .external_lex_state = 7}, + [2234] = {.lex_state = 11, .external_lex_state = 5}, + [2235] = {.lex_state = 13, .external_lex_state = 6}, + [2236] = {.lex_state = 13, .external_lex_state = 7}, + [2237] = {.lex_state = 13, .external_lex_state = 6}, + [2238] = {.lex_state = 13, .external_lex_state = 7}, + [2239] = {.lex_state = 13, .external_lex_state = 6}, + [2240] = {.lex_state = 13, .external_lex_state = 6}, + [2241] = {.lex_state = 13, .external_lex_state = 6}, + [2242] = {.lex_state = 13, .external_lex_state = 7}, + [2243] = {.lex_state = 13, .external_lex_state = 7}, + [2244] = {.lex_state = 13, .external_lex_state = 7}, + [2245] = {.lex_state = 13, .external_lex_state = 7}, + [2246] = {.lex_state = 1, .external_lex_state = 4}, + [2247] = {.lex_state = 13, .external_lex_state = 6}, + [2248] = {.lex_state = 13, .external_lex_state = 7}, + [2249] = {.lex_state = 13, .external_lex_state = 6}, + [2250] = {.lex_state = 1, .external_lex_state = 4}, + [2251] = {.lex_state = 1, .external_lex_state = 4}, + [2252] = {.lex_state = 13, .external_lex_state = 7}, + [2253] = {.lex_state = 11, .external_lex_state = 5}, + [2254] = {.lex_state = 13, .external_lex_state = 6}, + [2255] = {.lex_state = 11, .external_lex_state = 5}, + [2256] = {.lex_state = 13, .external_lex_state = 6}, + [2257] = {.lex_state = 13, .external_lex_state = 6}, + [2258] = {.lex_state = 13, .external_lex_state = 7}, + [2259] = {.lex_state = 13, .external_lex_state = 7}, + [2260] = {.lex_state = 1, .external_lex_state = 4}, + [2261] = {.lex_state = 1, .external_lex_state = 4}, + [2262] = {.lex_state = 13, .external_lex_state = 7}, + [2263] = {.lex_state = 1, .external_lex_state = 4}, + [2264] = {.lex_state = 13, .external_lex_state = 7}, + [2265] = {.lex_state = 1, .external_lex_state = 4}, + [2266] = {.lex_state = 13, .external_lex_state = 7}, + [2267] = {.lex_state = 13, .external_lex_state = 6}, + [2268] = {.lex_state = 13, .external_lex_state = 6}, + [2269] = {.lex_state = 1, .external_lex_state = 4}, + [2270] = {.lex_state = 13, .external_lex_state = 6}, + [2271] = {.lex_state = 1, .external_lex_state = 4}, + [2272] = {.lex_state = 13, .external_lex_state = 6}, + [2273] = {.lex_state = 13, .external_lex_state = 7}, + [2274] = {.lex_state = 13, .external_lex_state = 7}, + [2275] = {.lex_state = 1, .external_lex_state = 4}, + [2276] = {.lex_state = 1, .external_lex_state = 4}, + [2277] = {.lex_state = 13, .external_lex_state = 7}, + [2278] = {.lex_state = 13, .external_lex_state = 6}, + [2279] = {.lex_state = 2, .external_lex_state = 4}, + [2280] = {.lex_state = 2, .external_lex_state = 4}, + [2281] = {.lex_state = 11, .external_lex_state = 5}, + [2282] = {.lex_state = 13, .external_lex_state = 7}, + [2283] = {.lex_state = 13, .external_lex_state = 7}, + [2284] = {.lex_state = 13, .external_lex_state = 6}, + [2285] = {.lex_state = 2, .external_lex_state = 4}, + [2286] = {.lex_state = 13, .external_lex_state = 7}, + [2287] = {.lex_state = 2, .external_lex_state = 4}, + [2288] = {.lex_state = 13, .external_lex_state = 6}, + [2289] = {.lex_state = 13, .external_lex_state = 6}, + [2290] = {.lex_state = 13, .external_lex_state = 6}, + [2291] = {.lex_state = 13, .external_lex_state = 6}, + [2292] = {.lex_state = 13, .external_lex_state = 6}, + [2293] = {.lex_state = 13, .external_lex_state = 6}, + [2294] = {.lex_state = 13, .external_lex_state = 6}, + [2295] = {.lex_state = 2, .external_lex_state = 4}, + [2296] = {.lex_state = 11, .external_lex_state = 5}, + [2297] = {.lex_state = 2, .external_lex_state = 4}, + [2298] = {.lex_state = 13, .external_lex_state = 6}, + [2299] = {.lex_state = 2, .external_lex_state = 4}, + [2300] = {.lex_state = 2, .external_lex_state = 4}, + [2301] = {.lex_state = 2, .external_lex_state = 4}, + [2302] = {.lex_state = 2, .external_lex_state = 4}, + [2303] = {.lex_state = 13, .external_lex_state = 7}, + [2304] = {.lex_state = 2, .external_lex_state = 4}, + [2305] = {.lex_state = 2, .external_lex_state = 4}, + [2306] = {.lex_state = 2, .external_lex_state = 4}, + [2307] = {.lex_state = 13, .external_lex_state = 6}, + [2308] = {.lex_state = 2, .external_lex_state = 4}, + [2309] = {.lex_state = 2, .external_lex_state = 4}, + [2310] = {.lex_state = 13, .external_lex_state = 6}, + [2311] = {.lex_state = 11, .external_lex_state = 5}, + [2312] = {.lex_state = 2, .external_lex_state = 4}, + [2313] = {.lex_state = 13, .external_lex_state = 7}, + [2314] = {.lex_state = 1, .external_lex_state = 3}, + [2315] = {.lex_state = 13, .external_lex_state = 6}, + [2316] = {.lex_state = 1, .external_lex_state = 3}, + [2317] = {.lex_state = 13, .external_lex_state = 6}, + [2318] = {.lex_state = 13, .external_lex_state = 7}, + [2319] = {.lex_state = 13, .external_lex_state = 6}, + [2320] = {.lex_state = 13, .external_lex_state = 6}, + [2321] = {.lex_state = 13, .external_lex_state = 7}, + [2322] = {.lex_state = 13, .external_lex_state = 6}, + [2323] = {.lex_state = 13, .external_lex_state = 6}, + [2324] = {.lex_state = 13, .external_lex_state = 6}, + [2325] = {.lex_state = 13, .external_lex_state = 6}, + [2326] = {.lex_state = 13, .external_lex_state = 6}, + [2327] = {.lex_state = 13, .external_lex_state = 6}, + [2328] = {.lex_state = 11, .external_lex_state = 5}, + [2329] = {.lex_state = 13, .external_lex_state = 6}, + [2330] = {.lex_state = 13, .external_lex_state = 6}, + [2331] = {.lex_state = 13, .external_lex_state = 7}, + [2332] = {.lex_state = 13, .external_lex_state = 6}, + [2333] = {.lex_state = 2, .external_lex_state = 4}, + [2334] = {.lex_state = 13, .external_lex_state = 7}, + [2335] = {.lex_state = 13, .external_lex_state = 7}, + [2336] = {.lex_state = 13, .external_lex_state = 6}, + [2337] = {.lex_state = 13, .external_lex_state = 7}, + [2338] = {.lex_state = 13, .external_lex_state = 7}, + [2339] = {.lex_state = 13, .external_lex_state = 6}, + [2340] = {.lex_state = 13, .external_lex_state = 7}, + [2341] = {.lex_state = 13, .external_lex_state = 7}, + [2342] = {.lex_state = 11, .external_lex_state = 5}, + [2343] = {.lex_state = 13, .external_lex_state = 7}, + [2344] = {.lex_state = 13, .external_lex_state = 6}, + [2345] = {.lex_state = 13, .external_lex_state = 7}, + [2346] = {.lex_state = 13, .external_lex_state = 6}, + [2347] = {.lex_state = 11, .external_lex_state = 5}, + [2348] = {.lex_state = 13, .external_lex_state = 6}, + [2349] = {.lex_state = 13, .external_lex_state = 6}, + [2350] = {.lex_state = 13, .external_lex_state = 6}, + [2351] = {.lex_state = 1, .external_lex_state = 4}, + [2352] = {.lex_state = 13, .external_lex_state = 6}, + [2353] = {.lex_state = 13, .external_lex_state = 7}, + [2354] = {.lex_state = 13, .external_lex_state = 6}, + [2355] = {.lex_state = 13, .external_lex_state = 7}, + [2356] = {.lex_state = 13, .external_lex_state = 6}, + [2357] = {.lex_state = 13, .external_lex_state = 6}, + [2358] = {.lex_state = 13, .external_lex_state = 6}, + [2359] = {.lex_state = 13, .external_lex_state = 7}, + [2360] = {.lex_state = 1, .external_lex_state = 4}, + [2361] = {.lex_state = 11, .external_lex_state = 5}, + [2362] = {.lex_state = 13, .external_lex_state = 6}, + [2363] = {.lex_state = 13, .external_lex_state = 6}, + [2364] = {.lex_state = 1, .external_lex_state = 4}, + [2365] = {.lex_state = 13, .external_lex_state = 6}, + [2366] = {.lex_state = 13, .external_lex_state = 7}, + [2367] = {.lex_state = 13, .external_lex_state = 6}, + [2368] = {.lex_state = 1, .external_lex_state = 4}, + [2369] = {.lex_state = 13, .external_lex_state = 7}, + [2370] = {.lex_state = 13, .external_lex_state = 7}, + [2371] = {.lex_state = 13, .external_lex_state = 7}, + [2372] = {.lex_state = 1, .external_lex_state = 4}, + [2373] = {.lex_state = 13, .external_lex_state = 6}, + [2374] = {.lex_state = 1, .external_lex_state = 4}, + [2375] = {.lex_state = 13, .external_lex_state = 6}, + [2376] = {.lex_state = 13, .external_lex_state = 6}, + [2377] = {.lex_state = 13, .external_lex_state = 6}, + [2378] = {.lex_state = 13, .external_lex_state = 6}, + [2379] = {.lex_state = 13, .external_lex_state = 6}, + [2380] = {.lex_state = 13, .external_lex_state = 7}, + [2381] = {.lex_state = 13, .external_lex_state = 6}, + [2382] = {.lex_state = 11, .external_lex_state = 5}, + [2383] = {.lex_state = 13, .external_lex_state = 6}, + [2384] = {.lex_state = 13, .external_lex_state = 7}, + [2385] = {.lex_state = 13, .external_lex_state = 6}, + [2386] = {.lex_state = 13, .external_lex_state = 6}, + [2387] = {.lex_state = 13, .external_lex_state = 6}, + [2388] = {.lex_state = 13, .external_lex_state = 6}, + [2389] = {.lex_state = 13, .external_lex_state = 6}, + [2390] = {.lex_state = 13, .external_lex_state = 6}, + [2391] = {.lex_state = 13, .external_lex_state = 7}, + [2392] = {.lex_state = 13, .external_lex_state = 6}, + [2393] = {.lex_state = 13, .external_lex_state = 6}, + [2394] = {.lex_state = 13, .external_lex_state = 6}, + [2395] = {.lex_state = 13, .external_lex_state = 7}, + [2396] = {.lex_state = 13, .external_lex_state = 6}, + [2397] = {.lex_state = 1, .external_lex_state = 4}, + [2398] = {.lex_state = 1, .external_lex_state = 4}, + [2399] = {.lex_state = 13, .external_lex_state = 7}, + [2400] = {.lex_state = 1, .external_lex_state = 4}, + [2401] = {.lex_state = 1, .external_lex_state = 4}, + [2402] = {.lex_state = 13, .external_lex_state = 6}, + [2403] = {.lex_state = 11, .external_lex_state = 5}, + [2404] = {.lex_state = 13, .external_lex_state = 6}, + [2405] = {.lex_state = 13, .external_lex_state = 7}, + [2406] = {.lex_state = 13, .external_lex_state = 6}, + [2407] = {.lex_state = 13, .external_lex_state = 7}, + [2408] = {.lex_state = 13, .external_lex_state = 6}, + [2409] = {.lex_state = 13, .external_lex_state = 7}, + [2410] = {.lex_state = 13, .external_lex_state = 7}, + [2411] = {.lex_state = 13, .external_lex_state = 7}, + [2412] = {.lex_state = 13, .external_lex_state = 6}, + [2413] = {.lex_state = 13, .external_lex_state = 6}, + [2414] = {.lex_state = 13, .external_lex_state = 7}, + [2415] = {.lex_state = 11, .external_lex_state = 5}, + [2416] = {.lex_state = 13, .external_lex_state = 7}, + [2417] = {.lex_state = 13, .external_lex_state = 7}, + [2418] = {.lex_state = 13, .external_lex_state = 7}, + [2419] = {.lex_state = 11, .external_lex_state = 5}, + [2420] = {.lex_state = 13, .external_lex_state = 7}, + [2421] = {.lex_state = 11, .external_lex_state = 5}, + [2422] = {.lex_state = 13, .external_lex_state = 6}, + [2423] = {.lex_state = 13, .external_lex_state = 6}, + [2424] = {.lex_state = 11, .external_lex_state = 5}, + [2425] = {.lex_state = 13, .external_lex_state = 7}, + [2426] = {.lex_state = 13, .external_lex_state = 7}, + [2427] = {.lex_state = 13, .external_lex_state = 7}, + [2428] = {.lex_state = 13, .external_lex_state = 7}, + [2429] = {.lex_state = 13, .external_lex_state = 7}, + [2430] = {.lex_state = 13, .external_lex_state = 6}, + [2431] = {.lex_state = 13, .external_lex_state = 7}, + [2432] = {.lex_state = 13, .external_lex_state = 7}, + [2433] = {.lex_state = 13, .external_lex_state = 7}, + [2434] = {.lex_state = 13, .external_lex_state = 6}, + [2435] = {.lex_state = 13, .external_lex_state = 7}, + [2436] = {.lex_state = 13, .external_lex_state = 6}, + [2437] = {.lex_state = 13, .external_lex_state = 7}, + [2438] = {.lex_state = 13, .external_lex_state = 7}, + [2439] = {.lex_state = 13, .external_lex_state = 7}, + [2440] = {.lex_state = 13, .external_lex_state = 7}, + [2441] = {.lex_state = 13, .external_lex_state = 6}, + [2442] = {.lex_state = 13, .external_lex_state = 7}, + [2443] = {.lex_state = 13, .external_lex_state = 6}, + [2444] = {.lex_state = 13, .external_lex_state = 7}, + [2445] = {.lex_state = 11, .external_lex_state = 5}, + [2446] = {.lex_state = 13, .external_lex_state = 6}, + [2447] = {.lex_state = 13, .external_lex_state = 7}, + [2448] = {.lex_state = 13, .external_lex_state = 6}, + [2449] = {.lex_state = 13, .external_lex_state = 6}, + [2450] = {.lex_state = 13, .external_lex_state = 6}, + [2451] = {.lex_state = 13, .external_lex_state = 6}, + [2452] = {.lex_state = 13, .external_lex_state = 6}, + [2453] = {.lex_state = 13, .external_lex_state = 6}, + [2454] = {.lex_state = 13, .external_lex_state = 6}, + [2455] = {.lex_state = 13, .external_lex_state = 6}, + [2456] = {.lex_state = 13, .external_lex_state = 6}, + [2457] = {.lex_state = 13, .external_lex_state = 6}, + [2458] = {.lex_state = 13, .external_lex_state = 6}, + [2459] = {.lex_state = 13, .external_lex_state = 6}, + [2460] = {.lex_state = 13, .external_lex_state = 6}, + [2461] = {.lex_state = 13, .external_lex_state = 6}, + [2462] = {.lex_state = 13, .external_lex_state = 6}, + [2463] = {.lex_state = 13, .external_lex_state = 6}, + [2464] = {.lex_state = 13, .external_lex_state = 6}, + [2465] = {.lex_state = 13, .external_lex_state = 6}, + [2466] = {.lex_state = 13, .external_lex_state = 6}, + [2467] = {.lex_state = 13, .external_lex_state = 6}, + [2468] = {.lex_state = 13, .external_lex_state = 6}, + [2469] = {.lex_state = 13, .external_lex_state = 7}, + [2470] = {.lex_state = 13, .external_lex_state = 6}, + [2471] = {.lex_state = 13, .external_lex_state = 7}, + [2472] = {.lex_state = 13, .external_lex_state = 7}, + [2473] = {.lex_state = 13, .external_lex_state = 6}, + [2474] = {.lex_state = 13, .external_lex_state = 7}, + [2475] = {.lex_state = 13, .external_lex_state = 7}, + [2476] = {.lex_state = 13, .external_lex_state = 7}, + [2477] = {.lex_state = 13, .external_lex_state = 6}, + [2478] = {.lex_state = 13, .external_lex_state = 7}, + [2479] = {.lex_state = 13, .external_lex_state = 7}, + [2480] = {.lex_state = 13, .external_lex_state = 7}, + [2481] = {.lex_state = 13, .external_lex_state = 7}, + [2482] = {.lex_state = 13, .external_lex_state = 6}, + [2483] = {.lex_state = 13, .external_lex_state = 7}, + [2484] = {.lex_state = 13, .external_lex_state = 7}, + [2485] = {.lex_state = 13, .external_lex_state = 7}, + [2486] = {.lex_state = 13, .external_lex_state = 6}, + [2487] = {.lex_state = 13, .external_lex_state = 7}, + [2488] = {.lex_state = 13, .external_lex_state = 7}, + [2489] = {.lex_state = 13, .external_lex_state = 6}, + [2490] = {.lex_state = 13, .external_lex_state = 7}, + [2491] = {.lex_state = 13, .external_lex_state = 7}, + [2492] = {.lex_state = 13, .external_lex_state = 6}, + [2493] = {.lex_state = 13, .external_lex_state = 7}, + [2494] = {.lex_state = 13, .external_lex_state = 7}, + [2495] = {.lex_state = 13, .external_lex_state = 7}, + [2496] = {.lex_state = 13, .external_lex_state = 6}, + [2497] = {.lex_state = 13, .external_lex_state = 6}, + [2498] = {.lex_state = 13, .external_lex_state = 6}, + [2499] = {.lex_state = 13, .external_lex_state = 7}, + [2500] = {.lex_state = 13, .external_lex_state = 7}, + [2501] = {.lex_state = 13, .external_lex_state = 7}, + [2502] = {.lex_state = 13, .external_lex_state = 7}, + [2503] = {.lex_state = 13, .external_lex_state = 7}, + [2504] = {.lex_state = 13, .external_lex_state = 6}, + [2505] = {.lex_state = 13, .external_lex_state = 6}, + [2506] = {.lex_state = 13, .external_lex_state = 6}, + [2507] = {.lex_state = 13, .external_lex_state = 7}, + [2508] = {.lex_state = 13, .external_lex_state = 6}, + [2509] = {.lex_state = 13, .external_lex_state = 7}, + [2510] = {.lex_state = 13, .external_lex_state = 6}, + [2511] = {.lex_state = 13, .external_lex_state = 6}, + [2512] = {.lex_state = 13, .external_lex_state = 7}, + [2513] = {.lex_state = 13, .external_lex_state = 7}, + [2514] = {.lex_state = 13, .external_lex_state = 6}, + [2515] = {.lex_state = 13, .external_lex_state = 7}, + [2516] = {.lex_state = 13, .external_lex_state = 6}, + [2517] = {.lex_state = 13, .external_lex_state = 7}, + [2518] = {.lex_state = 13, .external_lex_state = 7}, + [2519] = {.lex_state = 13, .external_lex_state = 6}, + [2520] = {.lex_state = 13, .external_lex_state = 7}, + [2521] = {.lex_state = 13, .external_lex_state = 7}, + [2522] = {.lex_state = 13, .external_lex_state = 6}, + [2523] = {.lex_state = 13, .external_lex_state = 6}, + [2524] = {.lex_state = 13, .external_lex_state = 6}, + [2525] = {.lex_state = 13, .external_lex_state = 6}, + [2526] = {.lex_state = 13, .external_lex_state = 7}, + [2527] = {.lex_state = 13, .external_lex_state = 6}, + [2528] = {.lex_state = 13, .external_lex_state = 6}, + [2529] = {.lex_state = 13, .external_lex_state = 7}, + [2530] = {.lex_state = 13, .external_lex_state = 7}, + [2531] = {.lex_state = 13, .external_lex_state = 7}, + [2532] = {.lex_state = 13, .external_lex_state = 6}, + [2533] = {.lex_state = 13, .external_lex_state = 6}, + [2534] = {.lex_state = 13, .external_lex_state = 7}, + [2535] = {.lex_state = 13, .external_lex_state = 6}, + [2536] = {.lex_state = 13, .external_lex_state = 7}, + [2537] = {.lex_state = 13, .external_lex_state = 7}, + [2538] = {.lex_state = 13, .external_lex_state = 7}, + [2539] = {.lex_state = 13, .external_lex_state = 7}, + [2540] = {.lex_state = 13, .external_lex_state = 7}, + [2541] = {.lex_state = 13, .external_lex_state = 7}, + [2542] = {.lex_state = 13, .external_lex_state = 7}, + [2543] = {.lex_state = 13, .external_lex_state = 7}, + [2544] = {.lex_state = 13, .external_lex_state = 7}, + [2545] = {.lex_state = 13, .external_lex_state = 7}, + [2546] = {.lex_state = 13, .external_lex_state = 7}, + [2547] = {.lex_state = 13, .external_lex_state = 7}, + [2548] = {.lex_state = 13, .external_lex_state = 6}, + [2549] = {.lex_state = 13, .external_lex_state = 7}, + [2550] = {.lex_state = 13, .external_lex_state = 7}, + [2551] = {.lex_state = 13, .external_lex_state = 6}, + [2552] = {.lex_state = 13, .external_lex_state = 6}, + [2553] = {.lex_state = 13, .external_lex_state = 6}, + [2554] = {.lex_state = 13, .external_lex_state = 7}, + [2555] = {.lex_state = 13, .external_lex_state = 7}, + [2556] = {.lex_state = 13, .external_lex_state = 6}, + [2557] = {.lex_state = 13, .external_lex_state = 6}, + [2558] = {.lex_state = 13, .external_lex_state = 6}, + [2559] = {.lex_state = 13, .external_lex_state = 7}, + [2560] = {.lex_state = 13, .external_lex_state = 6}, + [2561] = {.lex_state = 13, .external_lex_state = 6}, + [2562] = {.lex_state = 13, .external_lex_state = 7}, + [2563] = {.lex_state = 13, .external_lex_state = 6}, + [2564] = {.lex_state = 13, .external_lex_state = 6}, + [2565] = {.lex_state = 13, .external_lex_state = 6}, + [2566] = {.lex_state = 11, .external_lex_state = 5}, + [2567] = {.lex_state = 13, .external_lex_state = 7}, + [2568] = {.lex_state = 13, .external_lex_state = 6}, + [2569] = {.lex_state = 13, .external_lex_state = 6}, + [2570] = {.lex_state = 13, .external_lex_state = 6}, + [2571] = {.lex_state = 13, .external_lex_state = 6}, + [2572] = {.lex_state = 13, .external_lex_state = 6}, + [2573] = {.lex_state = 13, .external_lex_state = 6}, + [2574] = {.lex_state = 13, .external_lex_state = 7}, + [2575] = {.lex_state = 11, .external_lex_state = 5}, + [2576] = {.lex_state = 13, .external_lex_state = 7}, + [2577] = {.lex_state = 13, .external_lex_state = 7}, + [2578] = {.lex_state = 13, .external_lex_state = 7}, + [2579] = {.lex_state = 13, .external_lex_state = 6}, + [2580] = {.lex_state = 13, .external_lex_state = 6}, + [2581] = {.lex_state = 13, .external_lex_state = 6}, + [2582] = {.lex_state = 13, .external_lex_state = 6}, + [2583] = {.lex_state = 13, .external_lex_state = 6}, + [2584] = {.lex_state = 13, .external_lex_state = 7}, + [2585] = {.lex_state = 13, .external_lex_state = 7}, + [2586] = {.lex_state = 13, .external_lex_state = 6}, + [2587] = {.lex_state = 13, .external_lex_state = 7}, + [2588] = {.lex_state = 13, .external_lex_state = 6}, + [2589] = {.lex_state = 13, .external_lex_state = 7}, + [2590] = {.lex_state = 13, .external_lex_state = 7}, + [2591] = {.lex_state = 13, .external_lex_state = 7}, + [2592] = {.lex_state = 13, .external_lex_state = 6}, + [2593] = {.lex_state = 11, .external_lex_state = 5}, + [2594] = {.lex_state = 13, .external_lex_state = 6}, + [2595] = {.lex_state = 13, .external_lex_state = 7}, + [2596] = {.lex_state = 11, .external_lex_state = 5}, + [2597] = {.lex_state = 13, .external_lex_state = 7}, + [2598] = {.lex_state = 13, .external_lex_state = 7}, + [2599] = {.lex_state = 13, .external_lex_state = 6}, + [2600] = {.lex_state = 13, .external_lex_state = 7}, + [2601] = {.lex_state = 13, .external_lex_state = 6}, + [2602] = {.lex_state = 13, .external_lex_state = 6}, + [2603] = {.lex_state = 13, .external_lex_state = 7}, + [2604] = {.lex_state = 13, .external_lex_state = 6}, + [2605] = {.lex_state = 13, .external_lex_state = 7}, + [2606] = {.lex_state = 13, .external_lex_state = 7}, + [2607] = {.lex_state = 11, .external_lex_state = 5}, + [2608] = {.lex_state = 13, .external_lex_state = 7}, + [2609] = {.lex_state = 13, .external_lex_state = 7}, + [2610] = {.lex_state = 13, .external_lex_state = 6}, + [2611] = {.lex_state = 13, .external_lex_state = 6}, + [2612] = {.lex_state = 11, .external_lex_state = 5}, + [2613] = {.lex_state = 13, .external_lex_state = 6}, + [2614] = {.lex_state = 13, .external_lex_state = 6}, + [2615] = {.lex_state = 13, .external_lex_state = 6}, + [2616] = {.lex_state = 13, .external_lex_state = 6}, + [2617] = {.lex_state = 13, .external_lex_state = 6}, + [2618] = {.lex_state = 13, .external_lex_state = 7}, + [2619] = {.lex_state = 13, .external_lex_state = 6}, + [2620] = {.lex_state = 13, .external_lex_state = 7}, + [2621] = {.lex_state = 13, .external_lex_state = 6}, + [2622] = {.lex_state = 13, .external_lex_state = 6}, + [2623] = {.lex_state = 13, .external_lex_state = 6}, + [2624] = {.lex_state = 13, .external_lex_state = 7}, + [2625] = {.lex_state = 13, .external_lex_state = 7}, + [2626] = {.lex_state = 13, .external_lex_state = 6}, + [2627] = {.lex_state = 13, .external_lex_state = 7}, + [2628] = {.lex_state = 13, .external_lex_state = 7}, + [2629] = {.lex_state = 13, .external_lex_state = 7}, + [2630] = {.lex_state = 13, .external_lex_state = 7}, + [2631] = {.lex_state = 11, .external_lex_state = 5}, + [2632] = {.lex_state = 13, .external_lex_state = 6}, + [2633] = {.lex_state = 13, .external_lex_state = 6}, + [2634] = {.lex_state = 13, .external_lex_state = 6}, + [2635] = {.lex_state = 13, .external_lex_state = 7}, + [2636] = {.lex_state = 13, .external_lex_state = 7}, + [2637] = {.lex_state = 11, .external_lex_state = 5}, + [2638] = {.lex_state = 13, .external_lex_state = 7}, + [2639] = {.lex_state = 13, .external_lex_state = 7}, + [2640] = {.lex_state = 13, .external_lex_state = 7}, + [2641] = {.lex_state = 13, .external_lex_state = 6}, + [2642] = {.lex_state = 13, .external_lex_state = 7}, + [2643] = {.lex_state = 13, .external_lex_state = 7}, + [2644] = {.lex_state = 11, .external_lex_state = 5}, + [2645] = {.lex_state = 13, .external_lex_state = 6}, + [2646] = {.lex_state = 13, .external_lex_state = 7}, + [2647] = {.lex_state = 11, .external_lex_state = 5}, + [2648] = {.lex_state = 13, .external_lex_state = 6}, + [2649] = {.lex_state = 13, .external_lex_state = 7}, + [2650] = {.lex_state = 13, .external_lex_state = 7}, + [2651] = {.lex_state = 13, .external_lex_state = 7}, + [2652] = {.lex_state = 13, .external_lex_state = 7}, + [2653] = {.lex_state = 13, .external_lex_state = 7}, + [2654] = {.lex_state = 13, .external_lex_state = 7}, + [2655] = {.lex_state = 13, .external_lex_state = 7}, + [2656] = {.lex_state = 13, .external_lex_state = 7}, + [2657] = {.lex_state = 13, .external_lex_state = 7}, + [2658] = {.lex_state = 13, .external_lex_state = 7}, + [2659] = {.lex_state = 13, .external_lex_state = 7}, + [2660] = {.lex_state = 13, .external_lex_state = 7}, + [2661] = {.lex_state = 13, .external_lex_state = 7}, + [2662] = {.lex_state = 13, .external_lex_state = 7}, + [2663] = {.lex_state = 13, .external_lex_state = 7}, + [2664] = {.lex_state = 13, .external_lex_state = 7}, + [2665] = {.lex_state = 13, .external_lex_state = 7}, + [2666] = {.lex_state = 11, .external_lex_state = 5}, + [2667] = {.lex_state = 13, .external_lex_state = 7}, + [2668] = {.lex_state = 13, .external_lex_state = 7}, + [2669] = {.lex_state = 13, .external_lex_state = 7}, + [2670] = {.lex_state = 13, .external_lex_state = 7}, + [2671] = {.lex_state = 13, .external_lex_state = 7}, + [2672] = {.lex_state = 13, .external_lex_state = 7}, + [2673] = {.lex_state = 13, .external_lex_state = 7}, + [2674] = {.lex_state = 13, .external_lex_state = 7}, + [2675] = {.lex_state = 13, .external_lex_state = 7}, + [2676] = {.lex_state = 13, .external_lex_state = 7}, + [2677] = {.lex_state = 13, .external_lex_state = 7}, + [2678] = {.lex_state = 13, .external_lex_state = 6}, + [2679] = {.lex_state = 13, .external_lex_state = 6}, + [2680] = {.lex_state = 13, .external_lex_state = 6}, + [2681] = {.lex_state = 13, .external_lex_state = 7}, + [2682] = {.lex_state = 11, .external_lex_state = 5}, + [2683] = {.lex_state = 13, .external_lex_state = 7}, + [2684] = {.lex_state = 13, .external_lex_state = 7}, + [2685] = {.lex_state = 13, .external_lex_state = 7}, + [2686] = {.lex_state = 13, .external_lex_state = 6}, + [2687] = {.lex_state = 13, .external_lex_state = 7}, + [2688] = {.lex_state = 13, .external_lex_state = 7}, + [2689] = {.lex_state = 13, .external_lex_state = 7}, + [2690] = {.lex_state = 13, .external_lex_state = 7}, + [2691] = {.lex_state = 13, .external_lex_state = 7}, + [2692] = {.lex_state = 13, .external_lex_state = 7}, + [2693] = {.lex_state = 13, .external_lex_state = 6}, + [2694] = {.lex_state = 13, .external_lex_state = 7}, + [2695] = {.lex_state = 13, .external_lex_state = 7}, + [2696] = {.lex_state = 11, .external_lex_state = 5}, + [2697] = {.lex_state = 13, .external_lex_state = 6}, + [2698] = {.lex_state = 13, .external_lex_state = 6}, + [2699] = {.lex_state = 13, .external_lex_state = 7}, + [2700] = {.lex_state = 13, .external_lex_state = 6}, + [2701] = {.lex_state = 13, .external_lex_state = 6}, + [2702] = {.lex_state = 13, .external_lex_state = 7}, + [2703] = {.lex_state = 13, .external_lex_state = 7}, + [2704] = {.lex_state = 11, .external_lex_state = 5}, + [2705] = {.lex_state = 13, .external_lex_state = 6}, + [2706] = {.lex_state = 13, .external_lex_state = 6}, + [2707] = {.lex_state = 13, .external_lex_state = 6}, + [2708] = {.lex_state = 13, .external_lex_state = 6}, + [2709] = {.lex_state = 13, .external_lex_state = 6}, + [2710] = {.lex_state = 13, .external_lex_state = 6}, + [2711] = {.lex_state = 13, .external_lex_state = 6}, + [2712] = {.lex_state = 13, .external_lex_state = 6}, + [2713] = {.lex_state = 13, .external_lex_state = 6}, + [2714] = {.lex_state = 13, .external_lex_state = 7}, + [2715] = {.lex_state = 13, .external_lex_state = 6}, + [2716] = {.lex_state = 13, .external_lex_state = 7}, + [2717] = {.lex_state = 13, .external_lex_state = 7}, + [2718] = {.lex_state = 13, .external_lex_state = 7}, + [2719] = {.lex_state = 13, .external_lex_state = 6}, + [2720] = {.lex_state = 13, .external_lex_state = 7}, + [2721] = {.lex_state = 13, .external_lex_state = 7}, + [2722] = {.lex_state = 13, .external_lex_state = 6}, + [2723] = {.lex_state = 13, .external_lex_state = 7}, + [2724] = {.lex_state = 13, .external_lex_state = 7}, + [2725] = {.lex_state = 13, .external_lex_state = 7}, + [2726] = {.lex_state = 13, .external_lex_state = 6}, + [2727] = {.lex_state = 13, .external_lex_state = 7}, + [2728] = {.lex_state = 13, .external_lex_state = 6}, + [2729] = {.lex_state = 13, .external_lex_state = 6}, + [2730] = {.lex_state = 13, .external_lex_state = 7}, + [2731] = {.lex_state = 13, .external_lex_state = 7}, + [2732] = {.lex_state = 13, .external_lex_state = 7}, + [2733] = {.lex_state = 13, .external_lex_state = 6}, + [2734] = {.lex_state = 13, .external_lex_state = 7}, + [2735] = {.lex_state = 13, .external_lex_state = 7}, + [2736] = {.lex_state = 13, .external_lex_state = 6}, + [2737] = {.lex_state = 13, .external_lex_state = 6}, + [2738] = {.lex_state = 13, .external_lex_state = 7}, + [2739] = {.lex_state = 13, .external_lex_state = 7}, + [2740] = {.lex_state = 13, .external_lex_state = 7}, + [2741] = {.lex_state = 13, .external_lex_state = 6}, + [2742] = {.lex_state = 13, .external_lex_state = 7}, + [2743] = {.lex_state = 13, .external_lex_state = 6}, + [2744] = {.lex_state = 13, .external_lex_state = 7}, + [2745] = {.lex_state = 13, .external_lex_state = 6}, + [2746] = {.lex_state = 13, .external_lex_state = 6}, + [2747] = {.lex_state = 13, .external_lex_state = 6}, + [2748] = {.lex_state = 13, .external_lex_state = 7}, + [2749] = {.lex_state = 13, .external_lex_state = 7}, + [2750] = {.lex_state = 13, .external_lex_state = 6}, + [2751] = {.lex_state = 13, .external_lex_state = 6}, + [2752] = {.lex_state = 13, .external_lex_state = 7}, + [2753] = {.lex_state = 13, .external_lex_state = 6}, + [2754] = {.lex_state = 13, .external_lex_state = 6}, + [2755] = {.lex_state = 13, .external_lex_state = 6}, + [2756] = {.lex_state = 13, .external_lex_state = 6}, + [2757] = {.lex_state = 13, .external_lex_state = 6}, + [2758] = {.lex_state = 13, .external_lex_state = 6}, + [2759] = {.lex_state = 13, .external_lex_state = 7}, + [2760] = {.lex_state = 13, .external_lex_state = 7}, + [2761] = {.lex_state = 13, .external_lex_state = 7}, + [2762] = {.lex_state = 13, .external_lex_state = 7}, + [2763] = {.lex_state = 13, .external_lex_state = 7}, + [2764] = {.lex_state = 13, .external_lex_state = 6}, + [2765] = {.lex_state = 2, .external_lex_state = 4}, + [2766] = {.lex_state = 2, .external_lex_state = 4}, + [2767] = {.lex_state = 13, .external_lex_state = 6}, + [2768] = {.lex_state = 2, .external_lex_state = 4}, + [2769] = {.lex_state = 13, .external_lex_state = 6}, + [2770] = {.lex_state = 13, .external_lex_state = 6}, + [2771] = {.lex_state = 13, .external_lex_state = 6}, + [2772] = {.lex_state = 13, .external_lex_state = 6}, + [2773] = {.lex_state = 13, .external_lex_state = 6}, + [2774] = {.lex_state = 13, .external_lex_state = 6}, + [2775] = {.lex_state = 13, .external_lex_state = 6}, + [2776] = {.lex_state = 13, .external_lex_state = 6}, + [2777] = {.lex_state = 13, .external_lex_state = 6}, + [2778] = {.lex_state = 13, .external_lex_state = 6}, + [2779] = {.lex_state = 13, .external_lex_state = 6}, + [2780] = {.lex_state = 2, .external_lex_state = 4}, + [2781] = {.lex_state = 13, .external_lex_state = 6}, + [2782] = {.lex_state = 13, .external_lex_state = 7}, + [2783] = {.lex_state = 13, .external_lex_state = 7}, + [2784] = {.lex_state = 13, .external_lex_state = 7}, + [2785] = {.lex_state = 13, .external_lex_state = 7}, + [2786] = {.lex_state = 13, .external_lex_state = 7}, + [2787] = {.lex_state = 2, .external_lex_state = 4}, + [2788] = {.lex_state = 13, .external_lex_state = 7}, + [2789] = {.lex_state = 13, .external_lex_state = 7}, + [2790] = {.lex_state = 13, .external_lex_state = 7}, + [2791] = {.lex_state = 13, .external_lex_state = 7}, + [2792] = {.lex_state = 13, .external_lex_state = 7}, + [2793] = {.lex_state = 13, .external_lex_state = 7}, + [2794] = {.lex_state = 13, .external_lex_state = 7}, + [2795] = {.lex_state = 2, .external_lex_state = 4}, + [2796] = {.lex_state = 13, .external_lex_state = 7}, + [2797] = {.lex_state = 2, .external_lex_state = 4}, + [2798] = {.lex_state = 13, .external_lex_state = 6}, + [2799] = {.lex_state = 2, .external_lex_state = 4}, + [2800] = {.lex_state = 13, .external_lex_state = 6}, + [2801] = {.lex_state = 2, .external_lex_state = 4}, + [2802] = {.lex_state = 2, .external_lex_state = 4}, + [2803] = {.lex_state = 2, .external_lex_state = 4}, + [2804] = {.lex_state = 13, .external_lex_state = 6}, + [2805] = {.lex_state = 13, .external_lex_state = 7}, + [2806] = {.lex_state = 2, .external_lex_state = 4}, + [2807] = {.lex_state = 13, .external_lex_state = 7}, + [2808] = {.lex_state = 13, .external_lex_state = 7}, + [2809] = {.lex_state = 2, .external_lex_state = 4}, + [2810] = {.lex_state = 13, .external_lex_state = 7}, + [2811] = {.lex_state = 13, .external_lex_state = 6}, + [2812] = {.lex_state = 13, .external_lex_state = 7}, + [2813] = {.lex_state = 13, .external_lex_state = 7}, + [2814] = {.lex_state = 13, .external_lex_state = 7}, + [2815] = {.lex_state = 13, .external_lex_state = 7}, + [2816] = {.lex_state = 13, .external_lex_state = 7}, + [2817] = {.lex_state = 13, .external_lex_state = 7}, + [2818] = {.lex_state = 13, .external_lex_state = 7}, + [2819] = {.lex_state = 13, .external_lex_state = 7}, + [2820] = {.lex_state = 13, .external_lex_state = 7}, + [2821] = {.lex_state = 13, .external_lex_state = 7}, + [2822] = {.lex_state = 2, .external_lex_state = 4}, + [2823] = {.lex_state = 13, .external_lex_state = 7}, + [2824] = {.lex_state = 13, .external_lex_state = 7}, + [2825] = {.lex_state = 2, .external_lex_state = 4}, + [2826] = {.lex_state = 13, .external_lex_state = 7}, + [2827] = {.lex_state = 2, .external_lex_state = 4}, + [2828] = {.lex_state = 13, .external_lex_state = 7}, + [2829] = {.lex_state = 13, .external_lex_state = 7}, + [2830] = {.lex_state = 13, .external_lex_state = 7}, + [2831] = {.lex_state = 2, .external_lex_state = 4}, + [2832] = {.lex_state = 13, .external_lex_state = 7}, + [2833] = {.lex_state = 13, .external_lex_state = 7}, + [2834] = {.lex_state = 13, .external_lex_state = 7}, + [2835] = {.lex_state = 13, .external_lex_state = 7}, + [2836] = {.lex_state = 13, .external_lex_state = 7}, + [2837] = {.lex_state = 13, .external_lex_state = 7}, + [2838] = {.lex_state = 13, .external_lex_state = 7}, + [2839] = {.lex_state = 13, .external_lex_state = 6}, + [2840] = {.lex_state = 2, .external_lex_state = 4}, + [2841] = {.lex_state = 13, .external_lex_state = 6}, + [2842] = {.lex_state = 2, .external_lex_state = 4}, + [2843] = {.lex_state = 13, .external_lex_state = 6}, + [2844] = {.lex_state = 2, .external_lex_state = 4}, + [2845] = {.lex_state = 13, .external_lex_state = 6}, + [2846] = {.lex_state = 2, .external_lex_state = 4}, + [2847] = {.lex_state = 2, .external_lex_state = 4}, + [2848] = {.lex_state = 13, .external_lex_state = 6}, + [2849] = {.lex_state = 2, .external_lex_state = 3}, + [2850] = {.lex_state = 13, .external_lex_state = 6}, + [2851] = {.lex_state = 13, .external_lex_state = 6}, + [2852] = {.lex_state = 13, .external_lex_state = 6}, + [2853] = {.lex_state = 2, .external_lex_state = 4}, + [2854] = {.lex_state = 2, .external_lex_state = 4}, + [2855] = {.lex_state = 2, .external_lex_state = 4}, + [2856] = {.lex_state = 2, .external_lex_state = 4}, + [2857] = {.lex_state = 2, .external_lex_state = 4}, + [2858] = {.lex_state = 2, .external_lex_state = 4}, + [2859] = {.lex_state = 13, .external_lex_state = 6}, + [2860] = {.lex_state = 2, .external_lex_state = 4}, + [2861] = {.lex_state = 11, .external_lex_state = 5}, + [2862] = {.lex_state = 2, .external_lex_state = 4}, + [2863] = {.lex_state = 11, .external_lex_state = 5}, + [2864] = {.lex_state = 2, .external_lex_state = 4}, + [2865] = {.lex_state = 13, .external_lex_state = 6}, + [2866] = {.lex_state = 2, .external_lex_state = 4}, + [2867] = {.lex_state = 2, .external_lex_state = 3}, + [2868] = {.lex_state = 13, .external_lex_state = 6}, + [2869] = {.lex_state = 13, .external_lex_state = 6}, + [2870] = {.lex_state = 13, .external_lex_state = 6}, + [2871] = {.lex_state = 13, .external_lex_state = 6}, + [2872] = {.lex_state = 2, .external_lex_state = 3}, + [2873] = {.lex_state = 2, .external_lex_state = 4}, + [2874] = {.lex_state = 13, .external_lex_state = 6}, + [2875] = {.lex_state = 13, .external_lex_state = 6}, + [2876] = {.lex_state = 13, .external_lex_state = 6}, + [2877] = {.lex_state = 13, .external_lex_state = 6}, + [2878] = {.lex_state = 13, .external_lex_state = 6}, + [2879] = {.lex_state = 13, .external_lex_state = 6}, + [2880] = {.lex_state = 13, .external_lex_state = 6}, + [2881] = {.lex_state = 2, .external_lex_state = 3}, + [2882] = {.lex_state = 13, .external_lex_state = 6}, + [2883] = {.lex_state = 13, .external_lex_state = 6}, + [2884] = {.lex_state = 13, .external_lex_state = 6}, + [2885] = {.lex_state = 13, .external_lex_state = 6}, + [2886] = {.lex_state = 13, .external_lex_state = 6}, + [2887] = {.lex_state = 2, .external_lex_state = 4}, + [2888] = {.lex_state = 2, .external_lex_state = 4}, + [2889] = {.lex_state = 2, .external_lex_state = 4}, + [2890] = {.lex_state = 2, .external_lex_state = 4}, + [2891] = {.lex_state = 2, .external_lex_state = 4}, + [2892] = {.lex_state = 2, .external_lex_state = 4}, + [2893] = {.lex_state = 2, .external_lex_state = 4}, + [2894] = {.lex_state = 2, .external_lex_state = 4}, + [2895] = {.lex_state = 13, .external_lex_state = 6}, + [2896] = {.lex_state = 2, .external_lex_state = 4}, + [2897] = {.lex_state = 13, .external_lex_state = 6}, + [2898] = {.lex_state = 13, .external_lex_state = 6}, + [2899] = {.lex_state = 2, .external_lex_state = 4}, + [2900] = {.lex_state = 2, .external_lex_state = 4}, + [2901] = {.lex_state = 2, .external_lex_state = 4}, + [2902] = {.lex_state = 2, .external_lex_state = 4}, + [2903] = {.lex_state = 2, .external_lex_state = 4}, + [2904] = {.lex_state = 2, .external_lex_state = 4}, + [2905] = {.lex_state = 2, .external_lex_state = 4}, + [2906] = {.lex_state = 13, .external_lex_state = 7}, + [2907] = {.lex_state = 13, .external_lex_state = 7}, + [2908] = {.lex_state = 11, .external_lex_state = 5}, + [2909] = {.lex_state = 13, .external_lex_state = 6}, + [2910] = {.lex_state = 2, .external_lex_state = 4}, + [2911] = {.lex_state = 13, .external_lex_state = 7}, + [2912] = {.lex_state = 13, .external_lex_state = 7}, + [2913] = {.lex_state = 13, .external_lex_state = 7}, + [2914] = {.lex_state = 13, .external_lex_state = 7}, + [2915] = {.lex_state = 13, .external_lex_state = 7}, + [2916] = {.lex_state = 13, .external_lex_state = 7}, + [2917] = {.lex_state = 13, .external_lex_state = 7}, + [2918] = {.lex_state = 13, .external_lex_state = 7}, + [2919] = {.lex_state = 13, .external_lex_state = 7}, + [2920] = {.lex_state = 13, .external_lex_state = 7}, + [2921] = {.lex_state = 13, .external_lex_state = 7}, + [2922] = {.lex_state = 13, .external_lex_state = 6}, + [2923] = {.lex_state = 2, .external_lex_state = 4}, + [2924] = {.lex_state = 2, .external_lex_state = 4}, + [2925] = {.lex_state = 13, .external_lex_state = 7}, + [2926] = {.lex_state = 2, .external_lex_state = 4}, + [2927] = {.lex_state = 2, .external_lex_state = 4}, + [2928] = {.lex_state = 13, .external_lex_state = 7}, + [2929] = {.lex_state = 2, .external_lex_state = 4}, + [2930] = {.lex_state = 2, .external_lex_state = 4}, + [2931] = {.lex_state = 2, .external_lex_state = 4}, + [2932] = {.lex_state = 2, .external_lex_state = 4}, + [2933] = {.lex_state = 2, .external_lex_state = 4}, + [2934] = {.lex_state = 2, .external_lex_state = 4}, + [2935] = {.lex_state = 2, .external_lex_state = 4}, + [2936] = {.lex_state = 2, .external_lex_state = 4}, + [2937] = {.lex_state = 13, .external_lex_state = 6}, + [2938] = {.lex_state = 2, .external_lex_state = 4}, + [2939] = {.lex_state = 2, .external_lex_state = 4}, + [2940] = {.lex_state = 2, .external_lex_state = 4}, + [2941] = {.lex_state = 2, .external_lex_state = 4}, + [2942] = {.lex_state = 2, .external_lex_state = 4}, + [2943] = {.lex_state = 13, .external_lex_state = 7}, + [2944] = {.lex_state = 13, .external_lex_state = 7}, + [2945] = {.lex_state = 13, .external_lex_state = 7}, + [2946] = {.lex_state = 2, .external_lex_state = 4}, + [2947] = {.lex_state = 13, .external_lex_state = 7}, + [2948] = {.lex_state = 2, .external_lex_state = 4}, + [2949] = {.lex_state = 13, .external_lex_state = 7}, + [2950] = {.lex_state = 2, .external_lex_state = 4}, + [2951] = {.lex_state = 2, .external_lex_state = 4}, + [2952] = {.lex_state = 2, .external_lex_state = 4}, + [2953] = {.lex_state = 2, .external_lex_state = 4}, + [2954] = {.lex_state = 2, .external_lex_state = 4}, + [2955] = {.lex_state = 2, .external_lex_state = 4}, + [2956] = {.lex_state = 13, .external_lex_state = 6}, + [2957] = {.lex_state = 2, .external_lex_state = 4}, + [2958] = {.lex_state = 13, .external_lex_state = 7}, + [2959] = {.lex_state = 2, .external_lex_state = 4}, + [2960] = {.lex_state = 2, .external_lex_state = 4}, + [2961] = {.lex_state = 2, .external_lex_state = 4}, + [2962] = {.lex_state = 2, .external_lex_state = 4}, + [2963] = {.lex_state = 13, .external_lex_state = 7}, + [2964] = {.lex_state = 13, .external_lex_state = 7}, + [2965] = {.lex_state = 13, .external_lex_state = 7}, + [2966] = {.lex_state = 13, .external_lex_state = 7}, + [2967] = {.lex_state = 13, .external_lex_state = 7}, + [2968] = {.lex_state = 2, .external_lex_state = 4}, + [2969] = {.lex_state = 2, .external_lex_state = 4}, + [2970] = {.lex_state = 2, .external_lex_state = 4}, + [2971] = {.lex_state = 2, .external_lex_state = 4}, + [2972] = {.lex_state = 13, .external_lex_state = 6}, + [2973] = {.lex_state = 13, .external_lex_state = 6}, + [2974] = {.lex_state = 13, .external_lex_state = 6}, + [2975] = {.lex_state = 13, .external_lex_state = 6}, + [2976] = {.lex_state = 2, .external_lex_state = 4}, + [2977] = {.lex_state = 11, .external_lex_state = 5}, + [2978] = {.lex_state = 11, .external_lex_state = 5}, + [2979] = {.lex_state = 13, .external_lex_state = 6}, + [2980] = {.lex_state = 13, .external_lex_state = 6}, + [2981] = {.lex_state = 13, .external_lex_state = 6}, + [2982] = {.lex_state = 13, .external_lex_state = 7}, + [2983] = {.lex_state = 2, .external_lex_state = 4}, + [2984] = {.lex_state = 13, .external_lex_state = 7}, + [2985] = {.lex_state = 11, .external_lex_state = 5}, + [2986] = {.lex_state = 2, .external_lex_state = 4}, + [2987] = {.lex_state = 2, .external_lex_state = 4}, + [2988] = {.lex_state = 2, .external_lex_state = 4}, + [2989] = {.lex_state = 2, .external_lex_state = 4}, + [2990] = {.lex_state = 13, .external_lex_state = 6}, + [2991] = {.lex_state = 2, .external_lex_state = 4}, + [2992] = {.lex_state = 13, .external_lex_state = 6}, + [2993] = {.lex_state = 2, .external_lex_state = 4}, + [2994] = {.lex_state = 2, .external_lex_state = 4}, + [2995] = {.lex_state = 13, .external_lex_state = 7}, + [2996] = {.lex_state = 11, .external_lex_state = 5}, + [2997] = {.lex_state = 13, .external_lex_state = 7}, + [2998] = {.lex_state = 2, .external_lex_state = 4}, + [2999] = {.lex_state = 2, .external_lex_state = 4}, + [3000] = {.lex_state = 13, .external_lex_state = 6}, + [3001] = {.lex_state = 13, .external_lex_state = 7}, + [3002] = {.lex_state = 13, .external_lex_state = 6}, + [3003] = {.lex_state = 13, .external_lex_state = 6}, + [3004] = {.lex_state = 2, .external_lex_state = 4}, + [3005] = {.lex_state = 2, .external_lex_state = 4}, + [3006] = {.lex_state = 2, .external_lex_state = 4}, + [3007] = {.lex_state = 13, .external_lex_state = 6}, + [3008] = {.lex_state = 2, .external_lex_state = 4}, + [3009] = {.lex_state = 13, .external_lex_state = 6}, + [3010] = {.lex_state = 13, .external_lex_state = 6}, + [3011] = {.lex_state = 2, .external_lex_state = 4}, + [3012] = {.lex_state = 2, .external_lex_state = 4}, + [3013] = {.lex_state = 2, .external_lex_state = 4}, + [3014] = {.lex_state = 2, .external_lex_state = 4}, + [3015] = {.lex_state = 2, .external_lex_state = 4}, + [3016] = {.lex_state = 2, .external_lex_state = 4}, + [3017] = {.lex_state = 2, .external_lex_state = 4}, + [3018] = {.lex_state = 2, .external_lex_state = 4}, + [3019] = {.lex_state = 2, .external_lex_state = 4}, + [3020] = {.lex_state = 13, .external_lex_state = 7}, + [3021] = {.lex_state = 13, .external_lex_state = 6}, + [3022] = {.lex_state = 2, .external_lex_state = 4}, + [3023] = {.lex_state = 2, .external_lex_state = 4}, + [3024] = {.lex_state = 2, .external_lex_state = 4}, + [3025] = {.lex_state = 2, .external_lex_state = 4}, + [3026] = {.lex_state = 2, .external_lex_state = 4}, + [3027] = {.lex_state = 2, .external_lex_state = 4}, + [3028] = {.lex_state = 2, .external_lex_state = 4}, + [3029] = {.lex_state = 2, .external_lex_state = 4}, + [3030] = {.lex_state = 13, .external_lex_state = 7}, + [3031] = {.lex_state = 2, .external_lex_state = 4}, + [3032] = {.lex_state = 2, .external_lex_state = 4}, + [3033] = {.lex_state = 2, .external_lex_state = 4}, + [3034] = {.lex_state = 2, .external_lex_state = 4}, + [3035] = {.lex_state = 2, .external_lex_state = 4}, + [3036] = {.lex_state = 2, .external_lex_state = 4}, + [3037] = {.lex_state = 2, .external_lex_state = 4}, + [3038] = {.lex_state = 2, .external_lex_state = 4}, + [3039] = {.lex_state = 2, .external_lex_state = 4}, + [3040] = {.lex_state = 2, .external_lex_state = 4}, + [3041] = {.lex_state = 13, .external_lex_state = 6}, + [3042] = {.lex_state = 13, .external_lex_state = 6}, + [3043] = {.lex_state = 13, .external_lex_state = 6}, + [3044] = {.lex_state = 13, .external_lex_state = 6}, + [3045] = {.lex_state = 13, .external_lex_state = 6}, + [3046] = {.lex_state = 2, .external_lex_state = 4}, + [3047] = {.lex_state = 13, .external_lex_state = 6}, + [3048] = {.lex_state = 2, .external_lex_state = 4}, + [3049] = {.lex_state = 2, .external_lex_state = 4}, + [3050] = {.lex_state = 2, .external_lex_state = 4}, + [3051] = {.lex_state = 2, .external_lex_state = 4}, + [3052] = {.lex_state = 13, .external_lex_state = 6}, + [3053] = {.lex_state = 13, .external_lex_state = 6}, + [3054] = {.lex_state = 13, .external_lex_state = 6}, + [3055] = {.lex_state = 13, .external_lex_state = 6}, + [3056] = {.lex_state = 13, .external_lex_state = 6}, + [3057] = {.lex_state = 2, .external_lex_state = 4}, + [3058] = {.lex_state = 13, .external_lex_state = 6}, + [3059] = {.lex_state = 2, .external_lex_state = 4}, + [3060] = {.lex_state = 13, .external_lex_state = 7}, + [3061] = {.lex_state = 2, .external_lex_state = 4}, + [3062] = {.lex_state = 2, .external_lex_state = 4}, + [3063] = {.lex_state = 2, .external_lex_state = 4}, + [3064] = {.lex_state = 4, .external_lex_state = 4}, + [3065] = {.lex_state = 2, .external_lex_state = 4}, + [3066] = {.lex_state = 13, .external_lex_state = 6}, + [3067] = {.lex_state = 2, .external_lex_state = 4}, + [3068] = {.lex_state = 13, .external_lex_state = 6}, + [3069] = {.lex_state = 2, .external_lex_state = 4}, + [3070] = {.lex_state = 2, .external_lex_state = 4}, + [3071] = {.lex_state = 2, .external_lex_state = 4}, + [3072] = {.lex_state = 13, .external_lex_state = 6}, + [3073] = {.lex_state = 11, .external_lex_state = 5}, + [3074] = {.lex_state = 13, .external_lex_state = 6}, + [3075] = {.lex_state = 321, .external_lex_state = 2}, + [3076] = {.lex_state = 13, .external_lex_state = 6}, + [3077] = {.lex_state = 2, .external_lex_state = 4}, + [3078] = {.lex_state = 2, .external_lex_state = 4}, + [3079] = {.lex_state = 2, .external_lex_state = 4}, + [3080] = {.lex_state = 2, .external_lex_state = 4}, + [3081] = {.lex_state = 2, .external_lex_state = 4}, + [3082] = {.lex_state = 11, .external_lex_state = 5}, + [3083] = {.lex_state = 13, .external_lex_state = 6}, + [3084] = {.lex_state = 11, .external_lex_state = 5}, + [3085] = {.lex_state = 13, .external_lex_state = 6}, + [3086] = {.lex_state = 11, .external_lex_state = 5}, + [3087] = {.lex_state = 2, .external_lex_state = 4}, + [3088] = {.lex_state = 2, .external_lex_state = 4}, + [3089] = {.lex_state = 2, .external_lex_state = 4}, + [3090] = {.lex_state = 321, .external_lex_state = 2}, + [3091] = {.lex_state = 2, .external_lex_state = 4}, + [3092] = {.lex_state = 2, .external_lex_state = 4}, + [3093] = {.lex_state = 2, .external_lex_state = 4}, + [3094] = {.lex_state = 2, .external_lex_state = 4}, + [3095] = {.lex_state = 2, .external_lex_state = 4}, + [3096] = {.lex_state = 2, .external_lex_state = 4}, + [3097] = {.lex_state = 13, .external_lex_state = 6}, + [3098] = {.lex_state = 13, .external_lex_state = 6}, + [3099] = {.lex_state = 2, .external_lex_state = 4}, + [3100] = {.lex_state = 2, .external_lex_state = 4}, + [3101] = {.lex_state = 2, .external_lex_state = 4}, + [3102] = {.lex_state = 2, .external_lex_state = 4}, + [3103] = {.lex_state = 13, .external_lex_state = 6}, + [3104] = {.lex_state = 2, .external_lex_state = 4}, + [3105] = {.lex_state = 2, .external_lex_state = 4}, + [3106] = {.lex_state = 2, .external_lex_state = 4}, + [3107] = {.lex_state = 2, .external_lex_state = 4}, + [3108] = {.lex_state = 2, .external_lex_state = 4}, + [3109] = {.lex_state = 13, .external_lex_state = 6}, + [3110] = {.lex_state = 13, .external_lex_state = 6}, + [3111] = {.lex_state = 13, .external_lex_state = 6}, + [3112] = {.lex_state = 2, .external_lex_state = 4}, + [3113] = {.lex_state = 2, .external_lex_state = 4}, + [3114] = {.lex_state = 2, .external_lex_state = 4}, + [3115] = {.lex_state = 2, .external_lex_state = 4}, + [3116] = {.lex_state = 2, .external_lex_state = 4}, + [3117] = {.lex_state = 13, .external_lex_state = 6}, + [3118] = {.lex_state = 2, .external_lex_state = 4}, + [3119] = {.lex_state = 13, .external_lex_state = 6}, + [3120] = {.lex_state = 2, .external_lex_state = 4}, + [3121] = {.lex_state = 2, .external_lex_state = 4}, + [3122] = {.lex_state = 2, .external_lex_state = 4}, + [3123] = {.lex_state = 2, .external_lex_state = 4}, + [3124] = {.lex_state = 2, .external_lex_state = 4}, + [3125] = {.lex_state = 2, .external_lex_state = 4}, + [3126] = {.lex_state = 2, .external_lex_state = 4}, + [3127] = {.lex_state = 11, .external_lex_state = 5}, + [3128] = {.lex_state = 2, .external_lex_state = 4}, + [3129] = {.lex_state = 11, .external_lex_state = 5}, + [3130] = {.lex_state = 11, .external_lex_state = 5}, + [3131] = {.lex_state = 2, .external_lex_state = 4}, + [3132] = {.lex_state = 2, .external_lex_state = 4}, + [3133] = {.lex_state = 11, .external_lex_state = 5}, + [3134] = {.lex_state = 2, .external_lex_state = 4}, + [3135] = {.lex_state = 13, .external_lex_state = 6}, + [3136] = {.lex_state = 13, .external_lex_state = 6}, + [3137] = {.lex_state = 11, .external_lex_state = 5}, + [3138] = {.lex_state = 2, .external_lex_state = 4}, + [3139] = {.lex_state = 2, .external_lex_state = 4}, + [3140] = {.lex_state = 2, .external_lex_state = 4}, + [3141] = {.lex_state = 13, .external_lex_state = 6}, + [3142] = {.lex_state = 2, .external_lex_state = 4}, + [3143] = {.lex_state = 2, .external_lex_state = 4}, + [3144] = {.lex_state = 2, .external_lex_state = 4}, + [3145] = {.lex_state = 2, .external_lex_state = 4}, + [3146] = {.lex_state = 2, .external_lex_state = 4}, + [3147] = {.lex_state = 2, .external_lex_state = 4}, + [3148] = {.lex_state = 2, .external_lex_state = 4}, + [3149] = {.lex_state = 2, .external_lex_state = 4}, + [3150] = {.lex_state = 2, .external_lex_state = 4}, + [3151] = {.lex_state = 13, .external_lex_state = 6}, + [3152] = {.lex_state = 13, .external_lex_state = 6}, + [3153] = {.lex_state = 2, .external_lex_state = 4}, + [3154] = {.lex_state = 13, .external_lex_state = 6}, + [3155] = {.lex_state = 2, .external_lex_state = 4}, + [3156] = {.lex_state = 13, .external_lex_state = 6}, + [3157] = {.lex_state = 2, .external_lex_state = 4}, + [3158] = {.lex_state = 2, .external_lex_state = 4}, + [3159] = {.lex_state = 2, .external_lex_state = 4}, + [3160] = {.lex_state = 2, .external_lex_state = 4}, + [3161] = {.lex_state = 2, .external_lex_state = 4}, + [3162] = {.lex_state = 2, .external_lex_state = 4}, + [3163] = {.lex_state = 2, .external_lex_state = 4}, + [3164] = {.lex_state = 2, .external_lex_state = 4}, + [3165] = {.lex_state = 2, .external_lex_state = 4}, + [3166] = {.lex_state = 2, .external_lex_state = 4}, + [3167] = {.lex_state = 2, .external_lex_state = 4}, + [3168] = {.lex_state = 2, .external_lex_state = 4}, + [3169] = {.lex_state = 2, .external_lex_state = 4}, + [3170] = {.lex_state = 2, .external_lex_state = 4}, + [3171] = {.lex_state = 2, .external_lex_state = 4}, + [3172] = {.lex_state = 2, .external_lex_state = 4}, + [3173] = {.lex_state = 2, .external_lex_state = 4}, + [3174] = {.lex_state = 2, .external_lex_state = 4}, + [3175] = {.lex_state = 2, .external_lex_state = 4}, + [3176] = {.lex_state = 2, .external_lex_state = 4}, + [3177] = {.lex_state = 2, .external_lex_state = 4}, + [3178] = {.lex_state = 13, .external_lex_state = 6}, + [3179] = {.lex_state = 2, .external_lex_state = 4}, + [3180] = {.lex_state = 2, .external_lex_state = 4}, + [3181] = {.lex_state = 2, .external_lex_state = 4}, + [3182] = {.lex_state = 2, .external_lex_state = 4}, + [3183] = {.lex_state = 13, .external_lex_state = 6}, + [3184] = {.lex_state = 2, .external_lex_state = 4}, + [3185] = {.lex_state = 2, .external_lex_state = 4}, + [3186] = {.lex_state = 2, .external_lex_state = 4}, + [3187] = {.lex_state = 2, .external_lex_state = 4}, + [3188] = {.lex_state = 13, .external_lex_state = 6}, + [3189] = {.lex_state = 2, .external_lex_state = 4}, + [3190] = {.lex_state = 2, .external_lex_state = 4}, + [3191] = {.lex_state = 13, .external_lex_state = 6}, + [3192] = {.lex_state = 13, .external_lex_state = 6}, + [3193] = {.lex_state = 2, .external_lex_state = 4}, + [3194] = {.lex_state = 13, .external_lex_state = 6}, + [3195] = {.lex_state = 2, .external_lex_state = 4}, + [3196] = {.lex_state = 2, .external_lex_state = 4}, + [3197] = {.lex_state = 2, .external_lex_state = 4}, + [3198] = {.lex_state = 2, .external_lex_state = 4}, + [3199] = {.lex_state = 13, .external_lex_state = 6}, + [3200] = {.lex_state = 11, .external_lex_state = 5}, + [3201] = {.lex_state = 2, .external_lex_state = 4}, + [3202] = {.lex_state = 2, .external_lex_state = 4}, + [3203] = {.lex_state = 2, .external_lex_state = 4}, + [3204] = {.lex_state = 2, .external_lex_state = 4}, + [3205] = {.lex_state = 2, .external_lex_state = 4}, + [3206] = {.lex_state = 2, .external_lex_state = 4}, + [3207] = {.lex_state = 13, .external_lex_state = 6}, + [3208] = {.lex_state = 2, .external_lex_state = 4}, + [3209] = {.lex_state = 2, .external_lex_state = 4}, + [3210] = {.lex_state = 13, .external_lex_state = 6}, + [3211] = {.lex_state = 2, .external_lex_state = 4}, + [3212] = {.lex_state = 2, .external_lex_state = 4}, + [3213] = {.lex_state = 13, .external_lex_state = 6}, + [3214] = {.lex_state = 2, .external_lex_state = 4}, + [3215] = {.lex_state = 13, .external_lex_state = 6}, + [3216] = {.lex_state = 2, .external_lex_state = 4}, + [3217] = {.lex_state = 13, .external_lex_state = 6}, + [3218] = {.lex_state = 2, .external_lex_state = 4}, + [3219] = {.lex_state = 2, .external_lex_state = 4}, + [3220] = {.lex_state = 2, .external_lex_state = 4}, + [3221] = {.lex_state = 13, .external_lex_state = 6}, + [3222] = {.lex_state = 13, .external_lex_state = 6}, + [3223] = {.lex_state = 2, .external_lex_state = 4}, + [3224] = {.lex_state = 2, .external_lex_state = 4}, + [3225] = {.lex_state = 2, .external_lex_state = 4}, + [3226] = {.lex_state = 2, .external_lex_state = 4}, + [3227] = {.lex_state = 2, .external_lex_state = 4}, + [3228] = {.lex_state = 2, .external_lex_state = 4}, + [3229] = {.lex_state = 2, .external_lex_state = 4}, + [3230] = {.lex_state = 2, .external_lex_state = 4}, + [3231] = {.lex_state = 2, .external_lex_state = 4}, + [3232] = {.lex_state = 2, .external_lex_state = 4}, + [3233] = {.lex_state = 13, .external_lex_state = 6}, + [3234] = {.lex_state = 2, .external_lex_state = 4}, + [3235] = {.lex_state = 2, .external_lex_state = 4}, + [3236] = {.lex_state = 2, .external_lex_state = 4}, + [3237] = {.lex_state = 2, .external_lex_state = 4}, + [3238] = {.lex_state = 2, .external_lex_state = 4}, + [3239] = {.lex_state = 2, .external_lex_state = 4}, + [3240] = {.lex_state = 2, .external_lex_state = 4}, + [3241] = {.lex_state = 13, .external_lex_state = 6}, + [3242] = {.lex_state = 2, .external_lex_state = 4}, + [3243] = {.lex_state = 2, .external_lex_state = 4}, + [3244] = {.lex_state = 2, .external_lex_state = 4}, + [3245] = {.lex_state = 13, .external_lex_state = 6}, + [3246] = {.lex_state = 13, .external_lex_state = 6}, + [3247] = {.lex_state = 2, .external_lex_state = 4}, + [3248] = {.lex_state = 2, .external_lex_state = 4}, + [3249] = {.lex_state = 11, .external_lex_state = 5}, + [3250] = {.lex_state = 2, .external_lex_state = 4}, + [3251] = {.lex_state = 13, .external_lex_state = 6}, + [3252] = {.lex_state = 13, .external_lex_state = 6}, + [3253] = {.lex_state = 2, .external_lex_state = 4}, + [3254] = {.lex_state = 13, .external_lex_state = 7}, + [3255] = {.lex_state = 2, .external_lex_state = 4}, + [3256] = {.lex_state = 13, .external_lex_state = 6}, + [3257] = {.lex_state = 2, .external_lex_state = 4}, + [3258] = {.lex_state = 2, .external_lex_state = 4}, + [3259] = {.lex_state = 2, .external_lex_state = 4}, + [3260] = {.lex_state = 2, .external_lex_state = 4}, + [3261] = {.lex_state = 2, .external_lex_state = 4}, + [3262] = {.lex_state = 2, .external_lex_state = 4}, + [3263] = {.lex_state = 2, .external_lex_state = 4}, + [3264] = {.lex_state = 2, .external_lex_state = 4}, + [3265] = {.lex_state = 13, .external_lex_state = 6}, + [3266] = {.lex_state = 2, .external_lex_state = 4}, + [3267] = {.lex_state = 2, .external_lex_state = 4}, + [3268] = {.lex_state = 2, .external_lex_state = 4}, + [3269] = {.lex_state = 2, .external_lex_state = 4}, + [3270] = {.lex_state = 2, .external_lex_state = 4}, + [3271] = {.lex_state = 2, .external_lex_state = 4}, + [3272] = {.lex_state = 2, .external_lex_state = 4}, + [3273] = {.lex_state = 2, .external_lex_state = 4}, + [3274] = {.lex_state = 2, .external_lex_state = 4}, + [3275] = {.lex_state = 2, .external_lex_state = 4}, + [3276] = {.lex_state = 2, .external_lex_state = 4}, + [3277] = {.lex_state = 2, .external_lex_state = 4}, + [3278] = {.lex_state = 2, .external_lex_state = 4}, + [3279] = {.lex_state = 2, .external_lex_state = 4}, + [3280] = {.lex_state = 2, .external_lex_state = 4}, + [3281] = {.lex_state = 2, .external_lex_state = 4}, + [3282] = {.lex_state = 2, .external_lex_state = 4}, + [3283] = {.lex_state = 2, .external_lex_state = 4}, + [3284] = {.lex_state = 2, .external_lex_state = 4}, + [3285] = {.lex_state = 2, .external_lex_state = 4}, + [3286] = {.lex_state = 2, .external_lex_state = 4}, + [3287] = {.lex_state = 2, .external_lex_state = 4}, + [3288] = {.lex_state = 2, .external_lex_state = 4}, + [3289] = {.lex_state = 2, .external_lex_state = 4}, + [3290] = {.lex_state = 2, .external_lex_state = 4}, + [3291] = {.lex_state = 2, .external_lex_state = 4}, + [3292] = {.lex_state = 13, .external_lex_state = 6}, + [3293] = {.lex_state = 11, .external_lex_state = 5}, + [3294] = {.lex_state = 2, .external_lex_state = 4}, + [3295] = {.lex_state = 13, .external_lex_state = 6}, + [3296] = {.lex_state = 2, .external_lex_state = 4}, + [3297] = {.lex_state = 2, .external_lex_state = 4}, + [3298] = {.lex_state = 2, .external_lex_state = 4}, + [3299] = {.lex_state = 2, .external_lex_state = 4}, + [3300] = {.lex_state = 13, .external_lex_state = 6}, + [3301] = {.lex_state = 2, .external_lex_state = 4}, + [3302] = {.lex_state = 2, .external_lex_state = 4}, + [3303] = {.lex_state = 2, .external_lex_state = 4}, + [3304] = {.lex_state = 2, .external_lex_state = 4}, + [3305] = {.lex_state = 13, .external_lex_state = 6}, + [3306] = {.lex_state = 13, .external_lex_state = 7}, + [3307] = {.lex_state = 13, .external_lex_state = 6}, + [3308] = {.lex_state = 13, .external_lex_state = 6}, + [3309] = {.lex_state = 13, .external_lex_state = 6}, + [3310] = {.lex_state = 2, .external_lex_state = 3}, + [3311] = {.lex_state = 13, .external_lex_state = 6}, + [3312] = {.lex_state = 13, .external_lex_state = 6}, + [3313] = {.lex_state = 13, .external_lex_state = 6}, + [3314] = {.lex_state = 14, .external_lex_state = 6}, + [3315] = {.lex_state = 14, .external_lex_state = 6}, + [3316] = {.lex_state = 13, .external_lex_state = 7}, + [3317] = {.lex_state = 13, .external_lex_state = 6}, + [3318] = {.lex_state = 13, .external_lex_state = 6}, + [3319] = {.lex_state = 13, .external_lex_state = 6}, + [3320] = {.lex_state = 13, .external_lex_state = 6}, + [3321] = {.lex_state = 13, .external_lex_state = 6}, + [3322] = {.lex_state = 13, .external_lex_state = 6}, + [3323] = {.lex_state = 13, .external_lex_state = 6}, + [3324] = {.lex_state = 13, .external_lex_state = 6}, + [3325] = {.lex_state = 13, .external_lex_state = 7}, + [3326] = {.lex_state = 13, .external_lex_state = 6}, + [3327] = {.lex_state = 13, .external_lex_state = 6}, + [3328] = {.lex_state = 13, .external_lex_state = 6}, + [3329] = {.lex_state = 13, .external_lex_state = 6}, + [3330] = {.lex_state = 13, .external_lex_state = 6}, + [3331] = {.lex_state = 13, .external_lex_state = 6}, + [3332] = {.lex_state = 13, .external_lex_state = 6}, + [3333] = {.lex_state = 13, .external_lex_state = 6}, + [3334] = {.lex_state = 13, .external_lex_state = 6}, + [3335] = {.lex_state = 2, .external_lex_state = 4}, + [3336] = {.lex_state = 13, .external_lex_state = 6}, + [3337] = {.lex_state = 13, .external_lex_state = 6}, + [3338] = {.lex_state = 13, .external_lex_state = 6}, + [3339] = {.lex_state = 13, .external_lex_state = 7}, + [3340] = {.lex_state = 13, .external_lex_state = 6}, + [3341] = {.lex_state = 2, .external_lex_state = 4}, + [3342] = {.lex_state = 13, .external_lex_state = 6}, + [3343] = {.lex_state = 2, .external_lex_state = 4}, + [3344] = {.lex_state = 13, .external_lex_state = 6}, + [3345] = {.lex_state = 13, .external_lex_state = 6}, + [3346] = {.lex_state = 13, .external_lex_state = 7}, + [3347] = {.lex_state = 13, .external_lex_state = 6}, + [3348] = {.lex_state = 13, .external_lex_state = 6}, + [3349] = {.lex_state = 14, .external_lex_state = 6}, + [3350] = {.lex_state = 14, .external_lex_state = 6}, + [3351] = {.lex_state = 13, .external_lex_state = 6}, + [3352] = {.lex_state = 2, .external_lex_state = 4}, + [3353] = {.lex_state = 2, .external_lex_state = 4}, + [3354] = {.lex_state = 13, .external_lex_state = 7}, + [3355] = {.lex_state = 13, .external_lex_state = 7}, + [3356] = {.lex_state = 13, .external_lex_state = 7}, + [3357] = {.lex_state = 13, .external_lex_state = 6}, + [3358] = {.lex_state = 14, .external_lex_state = 6}, + [3359] = {.lex_state = 13, .external_lex_state = 7}, + [3360] = {.lex_state = 13, .external_lex_state = 7}, + [3361] = {.lex_state = 13, .external_lex_state = 7}, + [3362] = {.lex_state = 13, .external_lex_state = 7}, + [3363] = {.lex_state = 13, .external_lex_state = 6}, + [3364] = {.lex_state = 13, .external_lex_state = 6}, + [3365] = {.lex_state = 13, .external_lex_state = 6}, + [3366] = {.lex_state = 13, .external_lex_state = 6}, + [3367] = {.lex_state = 14, .external_lex_state = 6}, + [3368] = {.lex_state = 13, .external_lex_state = 6}, + [3369] = {.lex_state = 14, .external_lex_state = 6}, + [3370] = {.lex_state = 13, .external_lex_state = 6}, + [3371] = {.lex_state = 13, .external_lex_state = 6}, + [3372] = {.lex_state = 13, .external_lex_state = 6}, + [3373] = {.lex_state = 13, .external_lex_state = 6}, + [3374] = {.lex_state = 13, .external_lex_state = 6}, + [3375] = {.lex_state = 13, .external_lex_state = 6}, + [3376] = {.lex_state = 13, .external_lex_state = 6}, + [3377] = {.lex_state = 14, .external_lex_state = 6}, + [3378] = {.lex_state = 13, .external_lex_state = 6}, + [3379] = {.lex_state = 15, .external_lex_state = 6}, + [3380] = {.lex_state = 14, .external_lex_state = 6}, + [3381] = {.lex_state = 13, .external_lex_state = 6}, + [3382] = {.lex_state = 13, .external_lex_state = 6}, + [3383] = {.lex_state = 13, .external_lex_state = 6}, + [3384] = {.lex_state = 13, .external_lex_state = 6}, + [3385] = {.lex_state = 13, .external_lex_state = 6}, + [3386] = {.lex_state = 13, .external_lex_state = 6}, + [3387] = {.lex_state = 13, .external_lex_state = 6}, + [3388] = {.lex_state = 13, .external_lex_state = 6}, + [3389] = {.lex_state = 13, .external_lex_state = 7}, + [3390] = {.lex_state = 2, .external_lex_state = 3}, + [3391] = {.lex_state = 14, .external_lex_state = 6}, + [3392] = {.lex_state = 14, .external_lex_state = 6}, + [3393] = {.lex_state = 14, .external_lex_state = 6}, + [3394] = {.lex_state = 14, .external_lex_state = 6}, + [3395] = {.lex_state = 14, .external_lex_state = 6}, + [3396] = {.lex_state = 14, .external_lex_state = 6}, + [3397] = {.lex_state = 14, .external_lex_state = 6}, + [3398] = {.lex_state = 14, .external_lex_state = 6}, + [3399] = {.lex_state = 14, .external_lex_state = 6}, + [3400] = {.lex_state = 13, .external_lex_state = 6}, + [3401] = {.lex_state = 13, .external_lex_state = 6}, + [3402] = {.lex_state = 13, .external_lex_state = 6}, + [3403] = {.lex_state = 13, .external_lex_state = 6}, + [3404] = {.lex_state = 2, .external_lex_state = 4}, + [3405] = {.lex_state = 2, .external_lex_state = 4}, + [3406] = {.lex_state = 2, .external_lex_state = 4}, + [3407] = {.lex_state = 2, .external_lex_state = 4}, + [3408] = {.lex_state = 13, .external_lex_state = 6}, + [3409] = {.lex_state = 13, .external_lex_state = 6}, + [3410] = {.lex_state = 13, .external_lex_state = 6}, + [3411] = {.lex_state = 13, .external_lex_state = 6}, + [3412] = {.lex_state = 13, .external_lex_state = 6}, + [3413] = {.lex_state = 13, .external_lex_state = 6}, + [3414] = {.lex_state = 13, .external_lex_state = 6}, + [3415] = {.lex_state = 13, .external_lex_state = 6}, + [3416] = {.lex_state = 13, .external_lex_state = 6}, + [3417] = {.lex_state = 13, .external_lex_state = 6}, + [3418] = {.lex_state = 13, .external_lex_state = 6}, + [3419] = {.lex_state = 13, .external_lex_state = 6}, + [3420] = {.lex_state = 13, .external_lex_state = 6}, + [3421] = {.lex_state = 13, .external_lex_state = 6}, + [3422] = {.lex_state = 13, .external_lex_state = 6}, + [3423] = {.lex_state = 13, .external_lex_state = 6}, + [3424] = {.lex_state = 13, .external_lex_state = 6}, + [3425] = {.lex_state = 13, .external_lex_state = 6}, + [3426] = {.lex_state = 13, .external_lex_state = 6}, + [3427] = {.lex_state = 13, .external_lex_state = 6}, + [3428] = {.lex_state = 13, .external_lex_state = 6}, + [3429] = {.lex_state = 13, .external_lex_state = 6}, + [3430] = {.lex_state = 13, .external_lex_state = 6}, + [3431] = {.lex_state = 13, .external_lex_state = 6}, + [3432] = {.lex_state = 13, .external_lex_state = 6}, + [3433] = {.lex_state = 13, .external_lex_state = 6}, + [3434] = {.lex_state = 13, .external_lex_state = 6}, + [3435] = {.lex_state = 13, .external_lex_state = 6}, + [3436] = {.lex_state = 13, .external_lex_state = 6}, + [3437] = {.lex_state = 13, .external_lex_state = 6}, + [3438] = {.lex_state = 13, .external_lex_state = 6}, + [3439] = {.lex_state = 13, .external_lex_state = 6}, + [3440] = {.lex_state = 13, .external_lex_state = 6}, + [3441] = {.lex_state = 13, .external_lex_state = 6}, + [3442] = {.lex_state = 13, .external_lex_state = 6}, + [3443] = {.lex_state = 13, .external_lex_state = 6}, + [3444] = {.lex_state = 13, .external_lex_state = 6}, + [3445] = {.lex_state = 13, .external_lex_state = 6}, + [3446] = {.lex_state = 13, .external_lex_state = 6}, + [3447] = {.lex_state = 13, .external_lex_state = 6}, + [3448] = {.lex_state = 13, .external_lex_state = 6}, + [3449] = {.lex_state = 13, .external_lex_state = 6}, + [3450] = {.lex_state = 13, .external_lex_state = 6}, + [3451] = {.lex_state = 13, .external_lex_state = 6}, + [3452] = {.lex_state = 13, .external_lex_state = 6}, + [3453] = {.lex_state = 13, .external_lex_state = 6}, + [3454] = {.lex_state = 13, .external_lex_state = 6}, + [3455] = {.lex_state = 11, .external_lex_state = 5}, + [3456] = {.lex_state = 13, .external_lex_state = 6}, + [3457] = {.lex_state = 13, .external_lex_state = 6}, + [3458] = {.lex_state = 13, .external_lex_state = 6}, + [3459] = {.lex_state = 13, .external_lex_state = 6}, + [3460] = {.lex_state = 13, .external_lex_state = 6}, + [3461] = {.lex_state = 13, .external_lex_state = 6}, + [3462] = {.lex_state = 13, .external_lex_state = 6}, + [3463] = {.lex_state = 13, .external_lex_state = 6}, + [3464] = {.lex_state = 13, .external_lex_state = 6}, + [3465] = {.lex_state = 13, .external_lex_state = 6}, + [3466] = {.lex_state = 13, .external_lex_state = 6}, + [3467] = {.lex_state = 13, .external_lex_state = 6}, + [3468] = {.lex_state = 13, .external_lex_state = 6}, + [3469] = {.lex_state = 13, .external_lex_state = 6}, + [3470] = {.lex_state = 13, .external_lex_state = 6}, + [3471] = {.lex_state = 13, .external_lex_state = 6}, + [3472] = {.lex_state = 13, .external_lex_state = 6}, + [3473] = {.lex_state = 13, .external_lex_state = 7}, + [3474] = {.lex_state = 13, .external_lex_state = 6}, + [3475] = {.lex_state = 13, .external_lex_state = 7}, + [3476] = {.lex_state = 13, .external_lex_state = 6}, + [3477] = {.lex_state = 13, .external_lex_state = 6}, + [3478] = {.lex_state = 13, .external_lex_state = 6}, + [3479] = {.lex_state = 13, .external_lex_state = 6}, + [3480] = {.lex_state = 13, .external_lex_state = 6}, + [3481] = {.lex_state = 13, .external_lex_state = 7}, + [3482] = {.lex_state = 13, .external_lex_state = 6}, + [3483] = {.lex_state = 321, .external_lex_state = 2}, + [3484] = {.lex_state = 13, .external_lex_state = 6}, + [3485] = {.lex_state = 13, .external_lex_state = 6}, + [3486] = {.lex_state = 13, .external_lex_state = 6}, + [3487] = {.lex_state = 13, .external_lex_state = 6}, + [3488] = {.lex_state = 13, .external_lex_state = 6}, + [3489] = {.lex_state = 321, .external_lex_state = 2}, + [3490] = {.lex_state = 11, .external_lex_state = 5}, + [3491] = {.lex_state = 13, .external_lex_state = 6}, + [3492] = {.lex_state = 13, .external_lex_state = 6}, + [3493] = {.lex_state = 11, .external_lex_state = 5}, + [3494] = {.lex_state = 13, .external_lex_state = 6}, + [3495] = {.lex_state = 11, .external_lex_state = 5}, + [3496] = {.lex_state = 13, .external_lex_state = 6}, + [3497] = {.lex_state = 321, .external_lex_state = 2}, + [3498] = {.lex_state = 13, .external_lex_state = 6}, + [3499] = {.lex_state = 13, .external_lex_state = 6}, + [3500] = {.lex_state = 13, .external_lex_state = 6}, + [3501] = {.lex_state = 13, .external_lex_state = 6}, + [3502] = {.lex_state = 13, .external_lex_state = 6}, + [3503] = {.lex_state = 13, .external_lex_state = 6}, + [3504] = {.lex_state = 13, .external_lex_state = 6}, + [3505] = {.lex_state = 13, .external_lex_state = 6}, + [3506] = {.lex_state = 13, .external_lex_state = 6}, + [3507] = {.lex_state = 13, .external_lex_state = 6}, + [3508] = {.lex_state = 13, .external_lex_state = 6}, + [3509] = {.lex_state = 13, .external_lex_state = 6}, + [3510] = {.lex_state = 13, .external_lex_state = 6}, + [3511] = {.lex_state = 13, .external_lex_state = 6}, + [3512] = {.lex_state = 13, .external_lex_state = 6}, + [3513] = {.lex_state = 13, .external_lex_state = 6}, + [3514] = {.lex_state = 13, .external_lex_state = 6}, + [3515] = {.lex_state = 13, .external_lex_state = 6}, + [3516] = {.lex_state = 13, .external_lex_state = 6}, + [3517] = {.lex_state = 13, .external_lex_state = 6}, + [3518] = {.lex_state = 13, .external_lex_state = 6}, + [3519] = {.lex_state = 13, .external_lex_state = 7}, + [3520] = {.lex_state = 13, .external_lex_state = 6}, + [3521] = {.lex_state = 13, .external_lex_state = 6}, + [3522] = {.lex_state = 13, .external_lex_state = 6}, + [3523] = {.lex_state = 13, .external_lex_state = 6}, + [3524] = {.lex_state = 13, .external_lex_state = 6}, + [3525] = {.lex_state = 13, .external_lex_state = 6}, + [3526] = {.lex_state = 13, .external_lex_state = 6}, + [3527] = {.lex_state = 13, .external_lex_state = 6}, + [3528] = {.lex_state = 2, .external_lex_state = 4}, + [3529] = {.lex_state = 2, .external_lex_state = 4}, + [3530] = {.lex_state = 13, .external_lex_state = 6}, + [3531] = {.lex_state = 11, .external_lex_state = 5}, + [3532] = {.lex_state = 11, .external_lex_state = 5}, + [3533] = {.lex_state = 13, .external_lex_state = 7}, + [3534] = {.lex_state = 13, .external_lex_state = 6}, + [3535] = {.lex_state = 13, .external_lex_state = 6}, + [3536] = {.lex_state = 13, .external_lex_state = 6}, + [3537] = {.lex_state = 13, .external_lex_state = 7}, + [3538] = {.lex_state = 13, .external_lex_state = 6}, + [3539] = {.lex_state = 13, .external_lex_state = 6}, + [3540] = {.lex_state = 13, .external_lex_state = 6}, + [3541] = {.lex_state = 13, .external_lex_state = 6}, + [3542] = {.lex_state = 13, .external_lex_state = 6}, + [3543] = {.lex_state = 13, .external_lex_state = 7}, + [3544] = {.lex_state = 13, .external_lex_state = 6}, + [3545] = {.lex_state = 13, .external_lex_state = 7}, + [3546] = {.lex_state = 13, .external_lex_state = 6}, + [3547] = {.lex_state = 13, .external_lex_state = 7}, + [3548] = {.lex_state = 13, .external_lex_state = 6}, + [3549] = {.lex_state = 13, .external_lex_state = 6}, + [3550] = {.lex_state = 2, .external_lex_state = 4}, + [3551] = {.lex_state = 13, .external_lex_state = 6}, + [3552] = {.lex_state = 13, .external_lex_state = 6}, + [3553] = {.lex_state = 321, .external_lex_state = 2}, + [3554] = {.lex_state = 13, .external_lex_state = 6}, + [3555] = {.lex_state = 13, .external_lex_state = 6}, + [3556] = {.lex_state = 13, .external_lex_state = 6}, + [3557] = {.lex_state = 13, .external_lex_state = 6}, + [3558] = {.lex_state = 13, .external_lex_state = 6}, + [3559] = {.lex_state = 13, .external_lex_state = 6}, + [3560] = {.lex_state = 13, .external_lex_state = 6}, + [3561] = {.lex_state = 11, .external_lex_state = 5}, + [3562] = {.lex_state = 13, .external_lex_state = 6}, + [3563] = {.lex_state = 11, .external_lex_state = 5}, + [3564] = {.lex_state = 11, .external_lex_state = 5}, + [3565] = {.lex_state = 2, .external_lex_state = 4}, + [3566] = {.lex_state = 2, .external_lex_state = 4}, + [3567] = {.lex_state = 2, .external_lex_state = 4}, + [3568] = {.lex_state = 2, .external_lex_state = 4}, + [3569] = {.lex_state = 2, .external_lex_state = 4}, + [3570] = {.lex_state = 2, .external_lex_state = 4}, + [3571] = {.lex_state = 2, .external_lex_state = 4}, + [3572] = {.lex_state = 2, .external_lex_state = 4}, + [3573] = {.lex_state = 2, .external_lex_state = 4}, + [3574] = {.lex_state = 13, .external_lex_state = 6}, + [3575] = {.lex_state = 2, .external_lex_state = 4}, + [3576] = {.lex_state = 2, .external_lex_state = 4}, + [3577] = {.lex_state = 13, .external_lex_state = 6}, + [3578] = {.lex_state = 13, .external_lex_state = 6}, + [3579] = {.lex_state = 13, .external_lex_state = 6}, + [3580] = {.lex_state = 13, .external_lex_state = 6}, + [3581] = {.lex_state = 13, .external_lex_state = 6}, + [3582] = {.lex_state = 13, .external_lex_state = 6}, + [3583] = {.lex_state = 13, .external_lex_state = 6}, + [3584] = {.lex_state = 13, .external_lex_state = 6}, + [3585] = {.lex_state = 2, .external_lex_state = 4}, + [3586] = {.lex_state = 11, .external_lex_state = 5}, + [3587] = {.lex_state = 2, .external_lex_state = 4}, + [3588] = {.lex_state = 13, .external_lex_state = 6}, + [3589] = {.lex_state = 11, .external_lex_state = 5}, + [3590] = {.lex_state = 13, .external_lex_state = 6}, + [3591] = {.lex_state = 13, .external_lex_state = 7}, + [3592] = {.lex_state = 13, .external_lex_state = 7}, + [3593] = {.lex_state = 13, .external_lex_state = 7}, + [3594] = {.lex_state = 13, .external_lex_state = 7}, + [3595] = {.lex_state = 2, .external_lex_state = 4}, + [3596] = {.lex_state = 13, .external_lex_state = 6}, + [3597] = {.lex_state = 13, .external_lex_state = 7}, + [3598] = {.lex_state = 13, .external_lex_state = 7}, + [3599] = {.lex_state = 13, .external_lex_state = 7}, + [3600] = {.lex_state = 13, .external_lex_state = 6}, + [3601] = {.lex_state = 13, .external_lex_state = 7}, + [3602] = {.lex_state = 13, .external_lex_state = 6}, + [3603] = {.lex_state = 13, .external_lex_state = 6}, + [3604] = {.lex_state = 13, .external_lex_state = 6}, + [3605] = {.lex_state = 13, .external_lex_state = 7}, + [3606] = {.lex_state = 2, .external_lex_state = 4}, + [3607] = {.lex_state = 13, .external_lex_state = 6}, + [3608] = {.lex_state = 11, .external_lex_state = 5}, + [3609] = {.lex_state = 13, .external_lex_state = 7}, + [3610] = {.lex_state = 13, .external_lex_state = 7}, + [3611] = {.lex_state = 13, .external_lex_state = 6}, + [3612] = {.lex_state = 13, .external_lex_state = 6}, + [3613] = {.lex_state = 13, .external_lex_state = 6}, + [3614] = {.lex_state = 13, .external_lex_state = 6}, + [3615] = {.lex_state = 13, .external_lex_state = 6}, + [3616] = {.lex_state = 13, .external_lex_state = 7}, + [3617] = {.lex_state = 13, .external_lex_state = 6}, + [3618] = {.lex_state = 11, .external_lex_state = 5}, + [3619] = {.lex_state = 13, .external_lex_state = 6}, + [3620] = {.lex_state = 13, .external_lex_state = 6}, + [3621] = {.lex_state = 2, .external_lex_state = 4}, + [3622] = {.lex_state = 13, .external_lex_state = 6}, + [3623] = {.lex_state = 2, .external_lex_state = 4}, + [3624] = {.lex_state = 13, .external_lex_state = 7}, + [3625] = {.lex_state = 13, .external_lex_state = 7}, + [3626] = {.lex_state = 2, .external_lex_state = 4}, + [3627] = {.lex_state = 13, .external_lex_state = 7}, + [3628] = {.lex_state = 13, .external_lex_state = 7}, + [3629] = {.lex_state = 321, .external_lex_state = 2}, + [3630] = {.lex_state = 13, .external_lex_state = 7}, + [3631] = {.lex_state = 13, .external_lex_state = 6}, + [3632] = {.lex_state = 13, .external_lex_state = 7}, + [3633] = {.lex_state = 13, .external_lex_state = 7}, + [3634] = {.lex_state = 13, .external_lex_state = 7}, + [3635] = {.lex_state = 13, .external_lex_state = 7}, + [3636] = {.lex_state = 2, .external_lex_state = 4}, + [3637] = {.lex_state = 2, .external_lex_state = 4}, + [3638] = {.lex_state = 13, .external_lex_state = 7}, + [3639] = {.lex_state = 13, .external_lex_state = 7}, + [3640] = {.lex_state = 321, .external_lex_state = 2}, + [3641] = {.lex_state = 13, .external_lex_state = 6}, + [3642] = {.lex_state = 13, .external_lex_state = 7}, + [3643] = {.lex_state = 13, .external_lex_state = 7}, + [3644] = {.lex_state = 13, .external_lex_state = 7}, + [3645] = {.lex_state = 13, .external_lex_state = 6}, + [3646] = {.lex_state = 13, .external_lex_state = 7}, + [3647] = {.lex_state = 13, .external_lex_state = 6}, + [3648] = {.lex_state = 321, .external_lex_state = 2}, + [3649] = {.lex_state = 13, .external_lex_state = 7}, + [3650] = {.lex_state = 13, .external_lex_state = 7}, + [3651] = {.lex_state = 13, .external_lex_state = 7}, + [3652] = {.lex_state = 13, .external_lex_state = 7}, + [3653] = {.lex_state = 13, .external_lex_state = 7}, + [3654] = {.lex_state = 13, .external_lex_state = 7}, + [3655] = {.lex_state = 13, .external_lex_state = 7}, + [3656] = {.lex_state = 2, .external_lex_state = 4}, + [3657] = {.lex_state = 13, .external_lex_state = 7}, + [3658] = {.lex_state = 13, .external_lex_state = 7}, + [3659] = {.lex_state = 13, .external_lex_state = 7}, + [3660] = {.lex_state = 13, .external_lex_state = 7}, + [3661] = {.lex_state = 13, .external_lex_state = 7}, + [3662] = {.lex_state = 13, .external_lex_state = 7}, + [3663] = {.lex_state = 11, .external_lex_state = 5}, + [3664] = {.lex_state = 13, .external_lex_state = 7}, + [3665] = {.lex_state = 11, .external_lex_state = 5}, + [3666] = {.lex_state = 13, .external_lex_state = 7}, + [3667] = {.lex_state = 2, .external_lex_state = 4}, + [3668] = {.lex_state = 13, .external_lex_state = 7}, + [3669] = {.lex_state = 13, .external_lex_state = 7}, + [3670] = {.lex_state = 13, .external_lex_state = 7}, + [3671] = {.lex_state = 321, .external_lex_state = 2}, + [3672] = {.lex_state = 13, .external_lex_state = 7}, + [3673] = {.lex_state = 321, .external_lex_state = 2}, + [3674] = {.lex_state = 13, .external_lex_state = 7}, + [3675] = {.lex_state = 321, .external_lex_state = 2}, + [3676] = {.lex_state = 13, .external_lex_state = 7}, + [3677] = {.lex_state = 321, .external_lex_state = 2}, + [3678] = {.lex_state = 13, .external_lex_state = 7}, + [3679] = {.lex_state = 2, .external_lex_state = 4}, + [3680] = {.lex_state = 11, .external_lex_state = 5}, + [3681] = {.lex_state = 13, .external_lex_state = 7}, + [3682] = {.lex_state = 13, .external_lex_state = 7}, + [3683] = {.lex_state = 13, .external_lex_state = 7}, + [3684] = {.lex_state = 2, .external_lex_state = 4}, + [3685] = {.lex_state = 2, .external_lex_state = 4}, + [3686] = {.lex_state = 13, .external_lex_state = 7}, + [3687] = {.lex_state = 13, .external_lex_state = 7}, + [3688] = {.lex_state = 13, .external_lex_state = 6}, + [3689] = {.lex_state = 13, .external_lex_state = 7}, + [3690] = {.lex_state = 13, .external_lex_state = 7}, + [3691] = {.lex_state = 321, .external_lex_state = 2}, + [3692] = {.lex_state = 11, .external_lex_state = 5}, + [3693] = {.lex_state = 13, .external_lex_state = 7}, + [3694] = {.lex_state = 2, .external_lex_state = 4}, + [3695] = {.lex_state = 2, .external_lex_state = 3}, + [3696] = {.lex_state = 2, .external_lex_state = 3}, + [3697] = {.lex_state = 13, .external_lex_state = 7}, + [3698] = {.lex_state = 13, .external_lex_state = 7}, + [3699] = {.lex_state = 2, .external_lex_state = 4}, + [3700] = {.lex_state = 13, .external_lex_state = 7}, + [3701] = {.lex_state = 13, .external_lex_state = 7}, + [3702] = {.lex_state = 13, .external_lex_state = 7}, + [3703] = {.lex_state = 11, .external_lex_state = 5}, + [3704] = {.lex_state = 13, .external_lex_state = 7}, + [3705] = {.lex_state = 13, .external_lex_state = 7}, + [3706] = {.lex_state = 13, .external_lex_state = 7}, + [3707] = {.lex_state = 13, .external_lex_state = 7}, + [3708] = {.lex_state = 2, .external_lex_state = 4}, + [3709] = {.lex_state = 2, .external_lex_state = 4}, + [3710] = {.lex_state = 13, .external_lex_state = 7}, + [3711] = {.lex_state = 11, .external_lex_state = 5}, + [3712] = {.lex_state = 13, .external_lex_state = 6}, + [3713] = {.lex_state = 13, .external_lex_state = 6}, + [3714] = {.lex_state = 11, .external_lex_state = 5}, + [3715] = {.lex_state = 13, .external_lex_state = 6}, + [3716] = {.lex_state = 2, .external_lex_state = 4}, + [3717] = {.lex_state = 2, .external_lex_state = 4}, + [3718] = {.lex_state = 13, .external_lex_state = 6}, + [3719] = {.lex_state = 2, .external_lex_state = 4}, + [3720] = {.lex_state = 2, .external_lex_state = 4}, + [3721] = {.lex_state = 2, .external_lex_state = 4}, + [3722] = {.lex_state = 2, .external_lex_state = 4}, + [3723] = {.lex_state = 2, .external_lex_state = 4}, + [3724] = {.lex_state = 13, .external_lex_state = 7}, + [3725] = {.lex_state = 2, .external_lex_state = 4}, + [3726] = {.lex_state = 13, .external_lex_state = 7}, + [3727] = {.lex_state = 13, .external_lex_state = 7}, + [3728] = {.lex_state = 11, .external_lex_state = 5}, + [3729] = {.lex_state = 2, .external_lex_state = 4}, + [3730] = {.lex_state = 2, .external_lex_state = 4}, + [3731] = {.lex_state = 2, .external_lex_state = 4}, + [3732] = {.lex_state = 2, .external_lex_state = 4}, + [3733] = {.lex_state = 2, .external_lex_state = 4}, + [3734] = {.lex_state = 13, .external_lex_state = 7}, + [3735] = {.lex_state = 13, .external_lex_state = 7}, + [3736] = {.lex_state = 13, .external_lex_state = 7}, + [3737] = {.lex_state = 2, .external_lex_state = 4}, + [3738] = {.lex_state = 2, .external_lex_state = 4}, + [3739] = {.lex_state = 13, .external_lex_state = 6}, + [3740] = {.lex_state = 13, .external_lex_state = 6}, + [3741] = {.lex_state = 2, .external_lex_state = 4}, + [3742] = {.lex_state = 13, .external_lex_state = 7}, + [3743] = {.lex_state = 2, .external_lex_state = 4}, + [3744] = {.lex_state = 2, .external_lex_state = 4}, + [3745] = {.lex_state = 13, .external_lex_state = 7}, + [3746] = {.lex_state = 13, .external_lex_state = 7}, + [3747] = {.lex_state = 321, .external_lex_state = 2}, + [3748] = {.lex_state = 13, .external_lex_state = 6}, + [3749] = {.lex_state = 13, .external_lex_state = 6}, + [3750] = {.lex_state = 13, .external_lex_state = 6}, + [3751] = {.lex_state = 13, .external_lex_state = 7}, + [3752] = {.lex_state = 15, .external_lex_state = 7}, + [3753] = {.lex_state = 13, .external_lex_state = 7}, + [3754] = {.lex_state = 14, .external_lex_state = 7}, + [3755] = {.lex_state = 14, .external_lex_state = 7}, + [3756] = {.lex_state = 13, .external_lex_state = 7}, + [3757] = {.lex_state = 13, .external_lex_state = 6}, + [3758] = {.lex_state = 13, .external_lex_state = 6}, + [3759] = {.lex_state = 14, .external_lex_state = 7}, + [3760] = {.lex_state = 14, .external_lex_state = 7}, + [3761] = {.lex_state = 14, .external_lex_state = 7}, + [3762] = {.lex_state = 13, .external_lex_state = 6}, + [3763] = {.lex_state = 13, .external_lex_state = 7}, + [3764] = {.lex_state = 13, .external_lex_state = 6}, + [3765] = {.lex_state = 13, .external_lex_state = 7}, + [3766] = {.lex_state = 13, .external_lex_state = 6}, + [3767] = {.lex_state = 13, .external_lex_state = 7}, + [3768] = {.lex_state = 14, .external_lex_state = 7}, + [3769] = {.lex_state = 13, .external_lex_state = 6}, + [3770] = {.lex_state = 13, .external_lex_state = 6}, + [3771] = {.lex_state = 14, .external_lex_state = 7}, + [3772] = {.lex_state = 13, .external_lex_state = 6}, + [3773] = {.lex_state = 13, .external_lex_state = 7}, + [3774] = {.lex_state = 14, .external_lex_state = 7}, + [3775] = {.lex_state = 14, .external_lex_state = 7}, + [3776] = {.lex_state = 14, .external_lex_state = 7}, + [3777] = {.lex_state = 13, .external_lex_state = 6}, + [3778] = {.lex_state = 2, .external_lex_state = 4}, + [3779] = {.lex_state = 14, .external_lex_state = 7}, + [3780] = {.lex_state = 2, .external_lex_state = 4}, + [3781] = {.lex_state = 14, .external_lex_state = 7}, + [3782] = {.lex_state = 13, .external_lex_state = 7}, + [3783] = {.lex_state = 13, .external_lex_state = 7}, + [3784] = {.lex_state = 13, .external_lex_state = 6}, + [3785] = {.lex_state = 13, .external_lex_state = 7}, + [3786] = {.lex_state = 13, .external_lex_state = 6}, + [3787] = {.lex_state = 13, .external_lex_state = 7}, + [3788] = {.lex_state = 13, .external_lex_state = 7}, + [3789] = {.lex_state = 13, .external_lex_state = 6}, + [3790] = {.lex_state = 13, .external_lex_state = 7}, + [3791] = {.lex_state = 13, .external_lex_state = 7}, + [3792] = {.lex_state = 13, .external_lex_state = 7}, + [3793] = {.lex_state = 13, .external_lex_state = 7}, + [3794] = {.lex_state = 13, .external_lex_state = 7}, + [3795] = {.lex_state = 14, .external_lex_state = 7}, + [3796] = {.lex_state = 14, .external_lex_state = 7}, + [3797] = {.lex_state = 13, .external_lex_state = 7}, + [3798] = {.lex_state = 13, .external_lex_state = 7}, + [3799] = {.lex_state = 13, .external_lex_state = 7}, + [3800] = {.lex_state = 13, .external_lex_state = 7}, + [3801] = {.lex_state = 2, .external_lex_state = 4}, + [3802] = {.lex_state = 13, .external_lex_state = 7}, + [3803] = {.lex_state = 13, .external_lex_state = 7}, + [3804] = {.lex_state = 13, .external_lex_state = 7}, + [3805] = {.lex_state = 14, .external_lex_state = 7}, + [3806] = {.lex_state = 13, .external_lex_state = 7}, + [3807] = {.lex_state = 13, .external_lex_state = 7}, + [3808] = {.lex_state = 2, .external_lex_state = 4}, + [3809] = {.lex_state = 2, .external_lex_state = 4}, + [3810] = {.lex_state = 13, .external_lex_state = 7}, + [3811] = {.lex_state = 321, .external_lex_state = 2}, + [3812] = {.lex_state = 13, .external_lex_state = 7}, + [3813] = {.lex_state = 13, .external_lex_state = 7}, + [3814] = {.lex_state = 13, .external_lex_state = 7}, + [3815] = {.lex_state = 13, .external_lex_state = 7}, + [3816] = {.lex_state = 2, .external_lex_state = 4}, + [3817] = {.lex_state = 2, .external_lex_state = 4}, + [3818] = {.lex_state = 321, .external_lex_state = 2}, + [3819] = {.lex_state = 13, .external_lex_state = 6}, + [3820] = {.lex_state = 13, .external_lex_state = 7}, + [3821] = {.lex_state = 13, .external_lex_state = 7}, + [3822] = {.lex_state = 11, .external_lex_state = 5}, + [3823] = {.lex_state = 13, .external_lex_state = 6}, + [3824] = {.lex_state = 13, .external_lex_state = 7}, + [3825] = {.lex_state = 13, .external_lex_state = 6}, + [3826] = {.lex_state = 321, .external_lex_state = 2}, + [3827] = {.lex_state = 13, .external_lex_state = 7}, + [3828] = {.lex_state = 13, .external_lex_state = 7}, + [3829] = {.lex_state = 13, .external_lex_state = 7}, + [3830] = {.lex_state = 13, .external_lex_state = 7}, + [3831] = {.lex_state = 14, .external_lex_state = 7}, + [3832] = {.lex_state = 14, .external_lex_state = 7}, + [3833] = {.lex_state = 13, .external_lex_state = 7}, + [3834] = {.lex_state = 13, .external_lex_state = 7}, + [3835] = {.lex_state = 13, .external_lex_state = 7}, + [3836] = {.lex_state = 13, .external_lex_state = 7}, + [3837] = {.lex_state = 11, .external_lex_state = 5}, + [3838] = {.lex_state = 321, .external_lex_state = 2}, + [3839] = {.lex_state = 13, .external_lex_state = 7}, + [3840] = {.lex_state = 13, .external_lex_state = 7}, + [3841] = {.lex_state = 13, .external_lex_state = 7}, + [3842] = {.lex_state = 13, .external_lex_state = 7}, + [3843] = {.lex_state = 13, .external_lex_state = 7}, + [3844] = {.lex_state = 13, .external_lex_state = 7}, + [3845] = {.lex_state = 13, .external_lex_state = 7}, + [3846] = {.lex_state = 13, .external_lex_state = 7}, + [3847] = {.lex_state = 13, .external_lex_state = 6}, + [3848] = {.lex_state = 13, .external_lex_state = 7}, + [3849] = {.lex_state = 13, .external_lex_state = 7}, + [3850] = {.lex_state = 13, .external_lex_state = 6}, + [3851] = {.lex_state = 13, .external_lex_state = 7}, + [3852] = {.lex_state = 13, .external_lex_state = 7}, + [3853] = {.lex_state = 321, .external_lex_state = 2}, + [3854] = {.lex_state = 2, .external_lex_state = 4}, + [3855] = {.lex_state = 13, .external_lex_state = 7}, + [3856] = {.lex_state = 2, .external_lex_state = 4}, + [3857] = {.lex_state = 2, .external_lex_state = 4}, + [3858] = {.lex_state = 14, .external_lex_state = 7}, + [3859] = {.lex_state = 2, .external_lex_state = 4}, + [3860] = {.lex_state = 2, .external_lex_state = 4}, + [3861] = {.lex_state = 2, .external_lex_state = 4}, + [3862] = {.lex_state = 2, .external_lex_state = 4}, + [3863] = {.lex_state = 13, .external_lex_state = 7}, + [3864] = {.lex_state = 13, .external_lex_state = 7}, + [3865] = {.lex_state = 2, .external_lex_state = 4}, + [3866] = {.lex_state = 2, .external_lex_state = 4}, + [3867] = {.lex_state = 13, .external_lex_state = 7}, + [3868] = {.lex_state = 13, .external_lex_state = 7}, + [3869] = {.lex_state = 2, .external_lex_state = 4}, + [3870] = {.lex_state = 321, .external_lex_state = 2}, + [3871] = {.lex_state = 13, .external_lex_state = 7}, + [3872] = {.lex_state = 13, .external_lex_state = 7}, + [3873] = {.lex_state = 13, .external_lex_state = 6}, + [3874] = {.lex_state = 2, .external_lex_state = 4}, + [3875] = {.lex_state = 2, .external_lex_state = 4}, + [3876] = {.lex_state = 2, .external_lex_state = 4}, + [3877] = {.lex_state = 14, .external_lex_state = 6}, + [3878] = {.lex_state = 14, .external_lex_state = 6}, + [3879] = {.lex_state = 14, .external_lex_state = 6}, + [3880] = {.lex_state = 14, .external_lex_state = 6}, + [3881] = {.lex_state = 13, .external_lex_state = 7}, + [3882] = {.lex_state = 14, .external_lex_state = 6}, + [3883] = {.lex_state = 14, .external_lex_state = 6}, + [3884] = {.lex_state = 14, .external_lex_state = 6}, + [3885] = {.lex_state = 14, .external_lex_state = 6}, + [3886] = {.lex_state = 13, .external_lex_state = 7}, + [3887] = {.lex_state = 13, .external_lex_state = 7}, + [3888] = {.lex_state = 14, .external_lex_state = 6}, + [3889] = {.lex_state = 14, .external_lex_state = 6}, + [3890] = {.lex_state = 14, .external_lex_state = 6}, + [3891] = {.lex_state = 13, .external_lex_state = 7}, + [3892] = {.lex_state = 13, .external_lex_state = 7}, + [3893] = {.lex_state = 13, .external_lex_state = 7}, + [3894] = {.lex_state = 13, .external_lex_state = 7}, + [3895] = {.lex_state = 13, .external_lex_state = 7}, + [3896] = {.lex_state = 13, .external_lex_state = 7}, + [3897] = {.lex_state = 13, .external_lex_state = 7}, + [3898] = {.lex_state = 13, .external_lex_state = 7}, + [3899] = {.lex_state = 321, .external_lex_state = 2}, + [3900] = {.lex_state = 13, .external_lex_state = 7}, + [3901] = {.lex_state = 13, .external_lex_state = 7}, + [3902] = {.lex_state = 13, .external_lex_state = 7}, + [3903] = {.lex_state = 13, .external_lex_state = 7}, + [3904] = {.lex_state = 2, .external_lex_state = 4}, + [3905] = {.lex_state = 13, .external_lex_state = 7}, + [3906] = {.lex_state = 13, .external_lex_state = 7}, + [3907] = {.lex_state = 2, .external_lex_state = 4}, + [3908] = {.lex_state = 13, .external_lex_state = 7}, + [3909] = {.lex_state = 2, .external_lex_state = 4}, + [3910] = {.lex_state = 2, .external_lex_state = 4}, + [3911] = {.lex_state = 13, .external_lex_state = 7}, + [3912] = {.lex_state = 13, .external_lex_state = 7}, + [3913] = {.lex_state = 13, .external_lex_state = 7}, + [3914] = {.lex_state = 2, .external_lex_state = 4}, + [3915] = {.lex_state = 13, .external_lex_state = 7}, + [3916] = {.lex_state = 13, .external_lex_state = 7}, + [3917] = {.lex_state = 13, .external_lex_state = 6}, + [3918] = {.lex_state = 13, .external_lex_state = 6}, + [3919] = {.lex_state = 13, .external_lex_state = 7}, + [3920] = {.lex_state = 13, .external_lex_state = 7}, + [3921] = {.lex_state = 13, .external_lex_state = 6}, + [3922] = {.lex_state = 13, .external_lex_state = 7}, + [3923] = {.lex_state = 13, .external_lex_state = 7}, + [3924] = {.lex_state = 13, .external_lex_state = 7}, + [3925] = {.lex_state = 13, .external_lex_state = 7}, + [3926] = {.lex_state = 13, .external_lex_state = 7}, + [3927] = {.lex_state = 13, .external_lex_state = 7}, + [3928] = {.lex_state = 13, .external_lex_state = 7}, + [3929] = {.lex_state = 13, .external_lex_state = 7}, + [3930] = {.lex_state = 13, .external_lex_state = 6}, + [3931] = {.lex_state = 13, .external_lex_state = 7}, + [3932] = {.lex_state = 13, .external_lex_state = 7}, + [3933] = {.lex_state = 13, .external_lex_state = 7}, + [3934] = {.lex_state = 13, .external_lex_state = 7}, + [3935] = {.lex_state = 13, .external_lex_state = 7}, + [3936] = {.lex_state = 13, .external_lex_state = 7}, + [3937] = {.lex_state = 13, .external_lex_state = 7}, + [3938] = {.lex_state = 13, .external_lex_state = 7}, + [3939] = {.lex_state = 13, .external_lex_state = 6}, + [3940] = {.lex_state = 13, .external_lex_state = 7}, + [3941] = {.lex_state = 13, .external_lex_state = 6}, + [3942] = {.lex_state = 13, .external_lex_state = 7}, + [3943] = {.lex_state = 13, .external_lex_state = 6}, + [3944] = {.lex_state = 13, .external_lex_state = 7}, + [3945] = {.lex_state = 13, .external_lex_state = 6}, + [3946] = {.lex_state = 13, .external_lex_state = 6}, + [3947] = {.lex_state = 13, .external_lex_state = 7}, + [3948] = {.lex_state = 13, .external_lex_state = 6}, + [3949] = {.lex_state = 13, .external_lex_state = 7}, + [3950] = {.lex_state = 13, .external_lex_state = 6}, + [3951] = {.lex_state = 13, .external_lex_state = 6}, + [3952] = {.lex_state = 13, .external_lex_state = 7}, + [3953] = {.lex_state = 13, .external_lex_state = 7}, + [3954] = {.lex_state = 13, .external_lex_state = 6}, + [3955] = {.lex_state = 13, .external_lex_state = 7}, + [3956] = {.lex_state = 13, .external_lex_state = 7}, + [3957] = {.lex_state = 13, .external_lex_state = 7}, + [3958] = {.lex_state = 13, .external_lex_state = 7}, + [3959] = {.lex_state = 13, .external_lex_state = 7}, + [3960] = {.lex_state = 13, .external_lex_state = 6}, + [3961] = {.lex_state = 13, .external_lex_state = 6}, + [3962] = {.lex_state = 13, .external_lex_state = 7}, + [3963] = {.lex_state = 13, .external_lex_state = 7}, + [3964] = {.lex_state = 13, .external_lex_state = 7}, + [3965] = {.lex_state = 13, .external_lex_state = 7}, + [3966] = {.lex_state = 13, .external_lex_state = 7}, + [3967] = {.lex_state = 13, .external_lex_state = 7}, + [3968] = {.lex_state = 13, .external_lex_state = 7}, + [3969] = {.lex_state = 13, .external_lex_state = 7}, + [3970] = {.lex_state = 13, .external_lex_state = 7}, + [3971] = {.lex_state = 13, .external_lex_state = 7}, + [3972] = {.lex_state = 13, .external_lex_state = 7}, + [3973] = {.lex_state = 13, .external_lex_state = 7}, + [3974] = {.lex_state = 2, .external_lex_state = 4}, + [3975] = {.lex_state = 2, .external_lex_state = 4}, + [3976] = {.lex_state = 13, .external_lex_state = 7}, + [3977] = {.lex_state = 13, .external_lex_state = 7}, + [3978] = {.lex_state = 13, .external_lex_state = 7}, + [3979] = {.lex_state = 13, .external_lex_state = 7}, + [3980] = {.lex_state = 13, .external_lex_state = 7}, + [3981] = {.lex_state = 13, .external_lex_state = 7}, + [3982] = {.lex_state = 13, .external_lex_state = 7}, + [3983] = {.lex_state = 13, .external_lex_state = 7}, + [3984] = {.lex_state = 13, .external_lex_state = 7}, + [3985] = {.lex_state = 13, .external_lex_state = 7}, + [3986] = {.lex_state = 13, .external_lex_state = 7}, + [3987] = {.lex_state = 13, .external_lex_state = 7}, + [3988] = {.lex_state = 13, .external_lex_state = 7}, + [3989] = {.lex_state = 13, .external_lex_state = 7}, + [3990] = {.lex_state = 13, .external_lex_state = 7}, + [3991] = {.lex_state = 13, .external_lex_state = 7}, + [3992] = {.lex_state = 13, .external_lex_state = 7}, + [3993] = {.lex_state = 13, .external_lex_state = 7}, + [3994] = {.lex_state = 13, .external_lex_state = 7}, + [3995] = {.lex_state = 13, .external_lex_state = 7}, + [3996] = {.lex_state = 13, .external_lex_state = 7}, + [3997] = {.lex_state = 13, .external_lex_state = 7}, + [3998] = {.lex_state = 13, .external_lex_state = 7}, + [3999] = {.lex_state = 13, .external_lex_state = 7}, + [4000] = {.lex_state = 13, .external_lex_state = 7}, + [4001] = {.lex_state = 13, .external_lex_state = 7}, + [4002] = {.lex_state = 2, .external_lex_state = 4}, + [4003] = {.lex_state = 13, .external_lex_state = 7}, + [4004] = {.lex_state = 13, .external_lex_state = 7}, + [4005] = {.lex_state = 321, .external_lex_state = 2}, + [4006] = {.lex_state = 321, .external_lex_state = 2}, + [4007] = {.lex_state = 13, .external_lex_state = 7}, + [4008] = {.lex_state = 13, .external_lex_state = 7}, + [4009] = {.lex_state = 13, .external_lex_state = 7}, + [4010] = {.lex_state = 13, .external_lex_state = 7}, + [4011] = {.lex_state = 13, .external_lex_state = 6}, + [4012] = {.lex_state = 13, .external_lex_state = 6}, + [4013] = {.lex_state = 321, .external_lex_state = 2}, + [4014] = {.lex_state = 13, .external_lex_state = 7}, + [4015] = {.lex_state = 321, .external_lex_state = 2}, + [4016] = {.lex_state = 13, .external_lex_state = 7}, + [4017] = {.lex_state = 13, .external_lex_state = 7}, + [4018] = {.lex_state = 13, .external_lex_state = 7}, + [4019] = {.lex_state = 13, .external_lex_state = 7}, + [4020] = {.lex_state = 13, .external_lex_state = 7}, + [4021] = {.lex_state = 13, .external_lex_state = 7}, + [4022] = {.lex_state = 13, .external_lex_state = 7}, + [4023] = {.lex_state = 13, .external_lex_state = 7}, + [4024] = {.lex_state = 13, .external_lex_state = 7}, + [4025] = {.lex_state = 321, .external_lex_state = 2}, + [4026] = {.lex_state = 13, .external_lex_state = 7}, + [4027] = {.lex_state = 321, .external_lex_state = 2}, + [4028] = {.lex_state = 13, .external_lex_state = 7}, + [4029] = {.lex_state = 13, .external_lex_state = 7}, + [4030] = {.lex_state = 13, .external_lex_state = 7}, + [4031] = {.lex_state = 13, .external_lex_state = 7}, + [4032] = {.lex_state = 13, .external_lex_state = 7}, + [4033] = {.lex_state = 13, .external_lex_state = 7}, + [4034] = {.lex_state = 13, .external_lex_state = 7}, + [4035] = {.lex_state = 13, .external_lex_state = 7}, + [4036] = {.lex_state = 13, .external_lex_state = 7}, + [4037] = {.lex_state = 13, .external_lex_state = 7}, + [4038] = {.lex_state = 13, .external_lex_state = 7}, + [4039] = {.lex_state = 321, .external_lex_state = 2}, + [4040] = {.lex_state = 13, .external_lex_state = 7}, + [4041] = {.lex_state = 13, .external_lex_state = 7}, + [4042] = {.lex_state = 13, .external_lex_state = 7}, + [4043] = {.lex_state = 13, .external_lex_state = 7}, + [4044] = {.lex_state = 14, .external_lex_state = 6}, + [4045] = {.lex_state = 14, .external_lex_state = 6}, + [4046] = {.lex_state = 14, .external_lex_state = 6}, + [4047] = {.lex_state = 14, .external_lex_state = 6}, + [4048] = {.lex_state = 13, .external_lex_state = 7}, + [4049] = {.lex_state = 14, .external_lex_state = 6}, + [4050] = {.lex_state = 14, .external_lex_state = 6}, + [4051] = {.lex_state = 321, .external_lex_state = 2}, + [4052] = {.lex_state = 13, .external_lex_state = 7}, + [4053] = {.lex_state = 13, .external_lex_state = 7}, + [4054] = {.lex_state = 13, .external_lex_state = 7}, + [4055] = {.lex_state = 13, .external_lex_state = 7}, + [4056] = {.lex_state = 13, .external_lex_state = 7}, + [4057] = {.lex_state = 13, .external_lex_state = 7}, + [4058] = {.lex_state = 13, .external_lex_state = 7}, + [4059] = {.lex_state = 13, .external_lex_state = 7}, + [4060] = {.lex_state = 2, .external_lex_state = 4}, + [4061] = {.lex_state = 13, .external_lex_state = 7}, + [4062] = {.lex_state = 13, .external_lex_state = 7}, + [4063] = {.lex_state = 13, .external_lex_state = 7}, + [4064] = {.lex_state = 13, .external_lex_state = 7}, + [4065] = {.lex_state = 13, .external_lex_state = 7}, + [4066] = {.lex_state = 13, .external_lex_state = 7}, + [4067] = {.lex_state = 13, .external_lex_state = 7}, + [4068] = {.lex_state = 13, .external_lex_state = 7}, + [4069] = {.lex_state = 13, .external_lex_state = 7}, + [4070] = {.lex_state = 13, .external_lex_state = 7}, + [4071] = {.lex_state = 13, .external_lex_state = 7}, + [4072] = {.lex_state = 13, .external_lex_state = 7}, + [4073] = {.lex_state = 13, .external_lex_state = 7}, + [4074] = {.lex_state = 13, .external_lex_state = 7}, + [4075] = {.lex_state = 13, .external_lex_state = 7}, + [4076] = {.lex_state = 13, .external_lex_state = 7}, + [4077] = {.lex_state = 13, .external_lex_state = 7}, + [4078] = {.lex_state = 13, .external_lex_state = 7}, + [4079] = {.lex_state = 13, .external_lex_state = 7}, + [4080] = {.lex_state = 13, .external_lex_state = 7}, + [4081] = {.lex_state = 13, .external_lex_state = 7}, + [4082] = {.lex_state = 13, .external_lex_state = 7}, + [4083] = {.lex_state = 13, .external_lex_state = 7}, + [4084] = {.lex_state = 13, .external_lex_state = 7}, + [4085] = {.lex_state = 14, .external_lex_state = 7}, + [4086] = {.lex_state = 2, .external_lex_state = 4}, + [4087] = {.lex_state = 13, .external_lex_state = 6}, + [4088] = {.lex_state = 13, .external_lex_state = 6}, + [4089] = {.lex_state = 13, .external_lex_state = 6}, + [4090] = {.lex_state = 2, .external_lex_state = 4}, + [4091] = {.lex_state = 13, .external_lex_state = 6}, + [4092] = {.lex_state = 14, .external_lex_state = 7}, + [4093] = {.lex_state = 14, .external_lex_state = 7}, + [4094] = {.lex_state = 13, .external_lex_state = 6}, + [4095] = {.lex_state = 13, .external_lex_state = 6}, + [4096] = {.lex_state = 13, .external_lex_state = 6}, + [4097] = {.lex_state = 13, .external_lex_state = 6}, + [4098] = {.lex_state = 14, .external_lex_state = 7}, + [4099] = {.lex_state = 14, .external_lex_state = 7}, + [4100] = {.lex_state = 2, .external_lex_state = 4}, + [4101] = {.lex_state = 14, .external_lex_state = 7}, + [4102] = {.lex_state = 14, .external_lex_state = 7}, + [4103] = {.lex_state = 14, .external_lex_state = 7}, + [4104] = {.lex_state = 14, .external_lex_state = 7}, + [4105] = {.lex_state = 13, .external_lex_state = 6}, + [4106] = {.lex_state = 14, .external_lex_state = 7}, + [4107] = {.lex_state = 2, .external_lex_state = 4}, + [4108] = {.lex_state = 14, .external_lex_state = 7}, + [4109] = {.lex_state = 13, .external_lex_state = 6}, + [4110] = {.lex_state = 13, .external_lex_state = 6}, + [4111] = {.lex_state = 13, .external_lex_state = 6}, + [4112] = {.lex_state = 13, .external_lex_state = 6}, + [4113] = {.lex_state = 2, .external_lex_state = 4}, + [4114] = {.lex_state = 2, .external_lex_state = 4}, + [4115] = {.lex_state = 2, .external_lex_state = 4}, + [4116] = {.lex_state = 2, .external_lex_state = 4}, + [4117] = {.lex_state = 13, .external_lex_state = 6}, + [4118] = {.lex_state = 13, .external_lex_state = 6}, + [4119] = {.lex_state = 14, .external_lex_state = 7}, + [4120] = {.lex_state = 2, .external_lex_state = 4}, + [4121] = {.lex_state = 2, .external_lex_state = 4}, + [4122] = {.lex_state = 2, .external_lex_state = 4}, + [4123] = {.lex_state = 2, .external_lex_state = 4}, + [4124] = {.lex_state = 13, .external_lex_state = 7}, + [4125] = {.lex_state = 13, .external_lex_state = 7}, + [4126] = {.lex_state = 13, .external_lex_state = 7}, + [4127] = {.lex_state = 13, .external_lex_state = 7}, + [4128] = {.lex_state = 13, .external_lex_state = 7}, + [4129] = {.lex_state = 13, .external_lex_state = 6}, + [4130] = {.lex_state = 13, .external_lex_state = 6}, + [4131] = {.lex_state = 14, .external_lex_state = 7}, + [4132] = {.lex_state = 14, .external_lex_state = 7}, + [4133] = {.lex_state = 14, .external_lex_state = 7}, + [4134] = {.lex_state = 14, .external_lex_state = 7}, + [4135] = {.lex_state = 14, .external_lex_state = 7}, + [4136] = {.lex_state = 13, .external_lex_state = 6}, + [4137] = {.lex_state = 13, .external_lex_state = 7}, + [4138] = {.lex_state = 13, .external_lex_state = 6}, + [4139] = {.lex_state = 14, .external_lex_state = 6}, + [4140] = {.lex_state = 14, .external_lex_state = 6}, + [4141] = {.lex_state = 13, .external_lex_state = 7}, + [4142] = {.lex_state = 14, .external_lex_state = 6}, + [4143] = {.lex_state = 14, .external_lex_state = 6}, + [4144] = {.lex_state = 14, .external_lex_state = 6}, + [4145] = {.lex_state = 14, .external_lex_state = 6}, + [4146] = {.lex_state = 14, .external_lex_state = 6}, + [4147] = {.lex_state = 14, .external_lex_state = 6}, + [4148] = {.lex_state = 13, .external_lex_state = 7}, + [4149] = {.lex_state = 13, .external_lex_state = 7}, + [4150] = {.lex_state = 14, .external_lex_state = 6}, + [4151] = {.lex_state = 13, .external_lex_state = 7}, + [4152] = {.lex_state = 13, .external_lex_state = 7}, + [4153] = {.lex_state = 14, .external_lex_state = 6}, + [4154] = {.lex_state = 13, .external_lex_state = 7}, + [4155] = {.lex_state = 14, .external_lex_state = 6}, + [4156] = {.lex_state = 14, .external_lex_state = 6}, + [4157] = {.lex_state = 14, .external_lex_state = 6}, + [4158] = {.lex_state = 14, .external_lex_state = 6}, + [4159] = {.lex_state = 14, .external_lex_state = 6}, + [4160] = {.lex_state = 14, .external_lex_state = 6}, + [4161] = {.lex_state = 13, .external_lex_state = 7}, + [4162] = {.lex_state = 13, .external_lex_state = 7}, + [4163] = {.lex_state = 13, .external_lex_state = 7}, + [4164] = {.lex_state = 13, .external_lex_state = 7}, + [4165] = {.lex_state = 14, .external_lex_state = 6}, + [4166] = {.lex_state = 13, .external_lex_state = 7}, + [4167] = {.lex_state = 13, .external_lex_state = 7}, + [4168] = {.lex_state = 13, .external_lex_state = 7}, + [4169] = {.lex_state = 13, .external_lex_state = 6}, + [4170] = {.lex_state = 13, .external_lex_state = 7}, + [4171] = {.lex_state = 13, .external_lex_state = 7}, + [4172] = {.lex_state = 13, .external_lex_state = 7}, + [4173] = {.lex_state = 2, .external_lex_state = 3}, + [4174] = {.lex_state = 13, .external_lex_state = 6}, + [4175] = {.lex_state = 2, .external_lex_state = 3}, + [4176] = {.lex_state = 13, .external_lex_state = 7}, + [4177] = {.lex_state = 13, .external_lex_state = 7}, + [4178] = {.lex_state = 13, .external_lex_state = 6}, + [4179] = {.lex_state = 14, .external_lex_state = 6}, + [4180] = {.lex_state = 13, .external_lex_state = 6}, + [4181] = {.lex_state = 13, .external_lex_state = 6}, + [4182] = {.lex_state = 13, .external_lex_state = 7}, + [4183] = {.lex_state = 13, .external_lex_state = 7}, + [4184] = {.lex_state = 13, .external_lex_state = 6}, + [4185] = {.lex_state = 13, .external_lex_state = 6}, + [4186] = {.lex_state = 13, .external_lex_state = 7}, + [4187] = {.lex_state = 13, .external_lex_state = 7}, + [4188] = {.lex_state = 13, .external_lex_state = 7}, + [4189] = {.lex_state = 13, .external_lex_state = 7}, + [4190] = {.lex_state = 13, .external_lex_state = 7}, + [4191] = {.lex_state = 13, .external_lex_state = 7}, + [4192] = {.lex_state = 13, .external_lex_state = 6}, + [4193] = {.lex_state = 13, .external_lex_state = 7}, + [4194] = {.lex_state = 13, .external_lex_state = 7}, + [4195] = {.lex_state = 13, .external_lex_state = 6}, + [4196] = {.lex_state = 13, .external_lex_state = 7}, + [4197] = {.lex_state = 13, .external_lex_state = 7}, + [4198] = {.lex_state = 13, .external_lex_state = 6}, + [4199] = {.lex_state = 13, .external_lex_state = 7}, + [4200] = {.lex_state = 13, .external_lex_state = 6}, + [4201] = {.lex_state = 13, .external_lex_state = 7}, + [4202] = {.lex_state = 13, .external_lex_state = 6}, + [4203] = {.lex_state = 13, .external_lex_state = 6}, + [4204] = {.lex_state = 13, .external_lex_state = 6}, + [4205] = {.lex_state = 13, .external_lex_state = 7}, + [4206] = {.lex_state = 2, .external_lex_state = 4}, + [4207] = {.lex_state = 2, .external_lex_state = 4}, + [4208] = {.lex_state = 13, .external_lex_state = 6}, + [4209] = {.lex_state = 2, .external_lex_state = 4}, + [4210] = {.lex_state = 13, .external_lex_state = 6}, + [4211] = {.lex_state = 13, .external_lex_state = 6}, + [4212] = {.lex_state = 13, .external_lex_state = 6}, + [4213] = {.lex_state = 13, .external_lex_state = 6}, + [4214] = {.lex_state = 13, .external_lex_state = 6}, + [4215] = {.lex_state = 13, .external_lex_state = 6}, + [4216] = {.lex_state = 13, .external_lex_state = 6}, + [4217] = {.lex_state = 2, .external_lex_state = 4}, + [4218] = {.lex_state = 2, .external_lex_state = 4}, + [4219] = {.lex_state = 2, .external_lex_state = 4}, + [4220] = {.lex_state = 2, .external_lex_state = 4}, + [4221] = {.lex_state = 2, .external_lex_state = 4}, + [4222] = {.lex_state = 13, .external_lex_state = 7}, + [4223] = {.lex_state = 13, .external_lex_state = 7}, + [4224] = {.lex_state = 13, .external_lex_state = 7}, + [4225] = {.lex_state = 2, .external_lex_state = 4}, + [4226] = {.lex_state = 2, .external_lex_state = 4}, + [4227] = {.lex_state = 13, .external_lex_state = 7}, + [4228] = {.lex_state = 13, .external_lex_state = 7}, + [4229] = {.lex_state = 13, .external_lex_state = 7}, + [4230] = {.lex_state = 13, .external_lex_state = 7}, + [4231] = {.lex_state = 13, .external_lex_state = 6}, + [4232] = {.lex_state = 13, .external_lex_state = 6}, + [4233] = {.lex_state = 10, .external_lex_state = 2}, + [4234] = {.lex_state = 13, .external_lex_state = 7}, + [4235] = {.lex_state = 13, .external_lex_state = 7}, + [4236] = {.lex_state = 13, .external_lex_state = 7}, + [4237] = {.lex_state = 13, .external_lex_state = 7}, + [4238] = {.lex_state = 13, .external_lex_state = 7}, + [4239] = {.lex_state = 13, .external_lex_state = 6}, + [4240] = {.lex_state = 13, .external_lex_state = 7}, + [4241] = {.lex_state = 13, .external_lex_state = 7}, + [4242] = {.lex_state = 13, .external_lex_state = 6}, + [4243] = {.lex_state = 13, .external_lex_state = 7}, + [4244] = {.lex_state = 13, .external_lex_state = 7}, + [4245] = {.lex_state = 13, .external_lex_state = 7}, + [4246] = {.lex_state = 13, .external_lex_state = 7}, + [4247] = {.lex_state = 13, .external_lex_state = 7}, + [4248] = {.lex_state = 13, .external_lex_state = 7}, + [4249] = {.lex_state = 13, .external_lex_state = 6}, + [4250] = {.lex_state = 13, .external_lex_state = 6}, + [4251] = {.lex_state = 13, .external_lex_state = 6}, + [4252] = {.lex_state = 13, .external_lex_state = 6}, + [4253] = {.lex_state = 13, .external_lex_state = 6}, + [4254] = {.lex_state = 13, .external_lex_state = 7}, + [4255] = {.lex_state = 13, .external_lex_state = 6}, + [4256] = {.lex_state = 13, .external_lex_state = 6}, + [4257] = {.lex_state = 13, .external_lex_state = 7}, + [4258] = {.lex_state = 13, .external_lex_state = 7}, + [4259] = {.lex_state = 13, .external_lex_state = 6}, + [4260] = {.lex_state = 13, .external_lex_state = 7}, + [4261] = {.lex_state = 13, .external_lex_state = 6}, + [4262] = {.lex_state = 13, .external_lex_state = 7}, + [4263] = {.lex_state = 13, .external_lex_state = 6}, + [4264] = {.lex_state = 13, .external_lex_state = 7}, + [4265] = {.lex_state = 13, .external_lex_state = 7}, + [4266] = {.lex_state = 14, .external_lex_state = 7}, + [4267] = {.lex_state = 13, .external_lex_state = 7}, + [4268] = {.lex_state = 14, .external_lex_state = 7}, + [4269] = {.lex_state = 14, .external_lex_state = 7}, + [4270] = {.lex_state = 14, .external_lex_state = 7}, + [4271] = {.lex_state = 13, .external_lex_state = 7}, + [4272] = {.lex_state = 14, .external_lex_state = 7}, + [4273] = {.lex_state = 14, .external_lex_state = 7}, + [4274] = {.lex_state = 14, .external_lex_state = 7}, + [4275] = {.lex_state = 13, .external_lex_state = 7}, + [4276] = {.lex_state = 14, .external_lex_state = 7}, + [4277] = {.lex_state = 14, .external_lex_state = 7}, + [4278] = {.lex_state = 13, .external_lex_state = 7}, + [4279] = {.lex_state = 14, .external_lex_state = 7}, + [4280] = {.lex_state = 14, .external_lex_state = 7}, + [4281] = {.lex_state = 13, .external_lex_state = 7}, + [4282] = {.lex_state = 14, .external_lex_state = 7}, + [4283] = {.lex_state = 13, .external_lex_state = 6}, + [4284] = {.lex_state = 13, .external_lex_state = 7}, + [4285] = {.lex_state = 13, .external_lex_state = 7}, + [4286] = {.lex_state = 14, .external_lex_state = 7}, + [4287] = {.lex_state = 13, .external_lex_state = 7}, + [4288] = {.lex_state = 14, .external_lex_state = 7}, + [4289] = {.lex_state = 13, .external_lex_state = 7}, + [4290] = {.lex_state = 14, .external_lex_state = 7}, + [4291] = {.lex_state = 13, .external_lex_state = 7}, + [4292] = {.lex_state = 13, .external_lex_state = 6}, + [4293] = {.lex_state = 14, .external_lex_state = 7}, + [4294] = {.lex_state = 13, .external_lex_state = 7}, + [4295] = {.lex_state = 13, .external_lex_state = 7}, + [4296] = {.lex_state = 14, .external_lex_state = 7}, + [4297] = {.lex_state = 14, .external_lex_state = 7}, + [4298] = {.lex_state = 13, .external_lex_state = 7}, + [4299] = {.lex_state = 13, .external_lex_state = 7}, + [4300] = {.lex_state = 13, .external_lex_state = 7}, + [4301] = {.lex_state = 14, .external_lex_state = 6}, + [4302] = {.lex_state = 14, .external_lex_state = 6}, + [4303] = {.lex_state = 14, .external_lex_state = 6}, + [4304] = {.lex_state = 13, .external_lex_state = 7}, + [4305] = {.lex_state = 14, .external_lex_state = 6}, + [4306] = {.lex_state = 13, .external_lex_state = 7}, + [4307] = {.lex_state = 13, .external_lex_state = 7}, + [4308] = {.lex_state = 14, .external_lex_state = 6}, + [4309] = {.lex_state = 14, .external_lex_state = 6}, + [4310] = {.lex_state = 14, .external_lex_state = 6}, + [4311] = {.lex_state = 14, .external_lex_state = 6}, + [4312] = {.lex_state = 14, .external_lex_state = 6}, + [4313] = {.lex_state = 13, .external_lex_state = 7}, + [4314] = {.lex_state = 14, .external_lex_state = 6}, + [4315] = {.lex_state = 14, .external_lex_state = 6}, + [4316] = {.lex_state = 14, .external_lex_state = 6}, + [4317] = {.lex_state = 14, .external_lex_state = 6}, + [4318] = {.lex_state = 14, .external_lex_state = 6}, + [4319] = {.lex_state = 14, .external_lex_state = 6}, + [4320] = {.lex_state = 14, .external_lex_state = 6}, + [4321] = {.lex_state = 13, .external_lex_state = 7}, + [4322] = {.lex_state = 13, .external_lex_state = 7}, + [4323] = {.lex_state = 13, .external_lex_state = 7}, + [4324] = {.lex_state = 14, .external_lex_state = 6}, + [4325] = {.lex_state = 14, .external_lex_state = 7}, + [4326] = {.lex_state = 14, .external_lex_state = 7}, + [4327] = {.lex_state = 14, .external_lex_state = 7}, + [4328] = {.lex_state = 13, .external_lex_state = 6}, + [4329] = {.lex_state = 14, .external_lex_state = 7}, + [4330] = {.lex_state = 14, .external_lex_state = 7}, + [4331] = {.lex_state = 14, .external_lex_state = 7}, + [4332] = {.lex_state = 14, .external_lex_state = 7}, + [4333] = {.lex_state = 14, .external_lex_state = 7}, + [4334] = {.lex_state = 14, .external_lex_state = 7}, + [4335] = {.lex_state = 14, .external_lex_state = 7}, + [4336] = {.lex_state = 13, .external_lex_state = 6}, + [4337] = {.lex_state = 14, .external_lex_state = 7}, + [4338] = {.lex_state = 14, .external_lex_state = 7}, + [4339] = {.lex_state = 13, .external_lex_state = 6}, + [4340] = {.lex_state = 14, .external_lex_state = 7}, + [4341] = {.lex_state = 14, .external_lex_state = 7}, + [4342] = {.lex_state = 13, .external_lex_state = 6}, + [4343] = {.lex_state = 14, .external_lex_state = 7}, + [4344] = {.lex_state = 14, .external_lex_state = 7}, + [4345] = {.lex_state = 13, .external_lex_state = 6}, + [4346] = {.lex_state = 14, .external_lex_state = 7}, + [4347] = {.lex_state = 13, .external_lex_state = 6}, + [4348] = {.lex_state = 14, .external_lex_state = 6}, + [4349] = {.lex_state = 23, .external_lex_state = 8}, + [4350] = {.lex_state = 23, .external_lex_state = 8}, + [4351] = {.lex_state = 13, .external_lex_state = 7}, + [4352] = {.lex_state = 14, .external_lex_state = 6}, + [4353] = {.lex_state = 23, .external_lex_state = 8}, + [4354] = {.lex_state = 14, .external_lex_state = 6}, + [4355] = {.lex_state = 23, .external_lex_state = 8}, + [4356] = {.lex_state = 23, .external_lex_state = 8}, + [4357] = {.lex_state = 23, .external_lex_state = 8}, + [4358] = {.lex_state = 23, .external_lex_state = 8}, + [4359] = {.lex_state = 23, .external_lex_state = 8}, + [4360] = {.lex_state = 23, .external_lex_state = 8}, + [4361] = {.lex_state = 23, .external_lex_state = 8}, + [4362] = {.lex_state = 23, .external_lex_state = 8}, + [4363] = {.lex_state = 23, .external_lex_state = 8}, + [4364] = {.lex_state = 23, .external_lex_state = 8}, + [4365] = {.lex_state = 23, .external_lex_state = 8}, + [4366] = {.lex_state = 23, .external_lex_state = 8}, + [4367] = {.lex_state = 23, .external_lex_state = 8}, + [4368] = {.lex_state = 14, .external_lex_state = 6}, + [4369] = {.lex_state = 23, .external_lex_state = 8}, + [4370] = {.lex_state = 23, .external_lex_state = 8}, + [4371] = {.lex_state = 23, .external_lex_state = 8}, + [4372] = {.lex_state = 23, .external_lex_state = 8}, + [4373] = {.lex_state = 23, .external_lex_state = 8}, + [4374] = {.lex_state = 23, .external_lex_state = 8}, + [4375] = {.lex_state = 23, .external_lex_state = 8}, + [4376] = {.lex_state = 14, .external_lex_state = 6}, + [4377] = {.lex_state = 23, .external_lex_state = 8}, + [4378] = {.lex_state = 23, .external_lex_state = 8}, + [4379] = {.lex_state = 23, .external_lex_state = 8}, + [4380] = {.lex_state = 23, .external_lex_state = 8}, + [4381] = {.lex_state = 23, .external_lex_state = 8}, + [4382] = {.lex_state = 14, .external_lex_state = 6}, + [4383] = {.lex_state = 23, .external_lex_state = 8}, + [4384] = {.lex_state = 23, .external_lex_state = 8}, + [4385] = {.lex_state = 13, .external_lex_state = 7}, + [4386] = {.lex_state = 23, .external_lex_state = 8}, + [4387] = {.lex_state = 23, .external_lex_state = 8}, + [4388] = {.lex_state = 23, .external_lex_state = 8}, + [4389] = {.lex_state = 23, .external_lex_state = 8}, + [4390] = {.lex_state = 23, .external_lex_state = 8}, + [4391] = {.lex_state = 14, .external_lex_state = 6}, + [4392] = {.lex_state = 14, .external_lex_state = 6}, + [4393] = {.lex_state = 23, .external_lex_state = 8}, + [4394] = {.lex_state = 23, .external_lex_state = 8}, + [4395] = {.lex_state = 23, .external_lex_state = 8}, + [4396] = {.lex_state = 13, .external_lex_state = 7}, + [4397] = {.lex_state = 23, .external_lex_state = 8}, + [4398] = {.lex_state = 23, .external_lex_state = 8}, + [4399] = {.lex_state = 23, .external_lex_state = 8}, + [4400] = {.lex_state = 13, .external_lex_state = 7}, + [4401] = {.lex_state = 23, .external_lex_state = 8}, + [4402] = {.lex_state = 23, .external_lex_state = 8}, + [4403] = {.lex_state = 14, .external_lex_state = 6}, + [4404] = {.lex_state = 23, .external_lex_state = 8}, + [4405] = {.lex_state = 23, .external_lex_state = 8}, + [4406] = {.lex_state = 23, .external_lex_state = 8}, + [4407] = {.lex_state = 13, .external_lex_state = 7}, + [4408] = {.lex_state = 23, .external_lex_state = 8}, + [4409] = {.lex_state = 14, .external_lex_state = 6}, + [4410] = {.lex_state = 23, .external_lex_state = 8}, + [4411] = {.lex_state = 14, .external_lex_state = 6}, + [4412] = {.lex_state = 13, .external_lex_state = 7}, + [4413] = {.lex_state = 14, .external_lex_state = 6}, + [4414] = {.lex_state = 23, .external_lex_state = 8}, + [4415] = {.lex_state = 23, .external_lex_state = 8}, + [4416] = {.lex_state = 23, .external_lex_state = 8}, + [4417] = {.lex_state = 23, .external_lex_state = 8}, + [4418] = {.lex_state = 23, .external_lex_state = 8}, + [4419] = {.lex_state = 23, .external_lex_state = 8}, + [4420] = {.lex_state = 23, .external_lex_state = 8}, + [4421] = {.lex_state = 14, .external_lex_state = 6}, + [4422] = {.lex_state = 14, .external_lex_state = 6}, + [4423] = {.lex_state = 14, .external_lex_state = 6}, + [4424] = {.lex_state = 321, .external_lex_state = 2}, + [4425] = {.lex_state = 321, .external_lex_state = 2}, + [4426] = {.lex_state = 14, .external_lex_state = 6}, + [4427] = {.lex_state = 14, .external_lex_state = 6}, + [4428] = {.lex_state = 14, .external_lex_state = 6}, + [4429] = {.lex_state = 14, .external_lex_state = 6}, + [4430] = {.lex_state = 14, .external_lex_state = 6}, + [4431] = {.lex_state = 14, .external_lex_state = 6}, + [4432] = {.lex_state = 14, .external_lex_state = 6}, + [4433] = {.lex_state = 14, .external_lex_state = 6}, + [4434] = {.lex_state = 14, .external_lex_state = 6}, + [4435] = {.lex_state = 14, .external_lex_state = 6}, + [4436] = {.lex_state = 14, .external_lex_state = 6}, + [4437] = {.lex_state = 14, .external_lex_state = 6}, + [4438] = {.lex_state = 14, .external_lex_state = 6}, + [4439] = {.lex_state = 14, .external_lex_state = 6}, + [4440] = {.lex_state = 14, .external_lex_state = 6}, + [4441] = {.lex_state = 14, .external_lex_state = 6}, + [4442] = {.lex_state = 14, .external_lex_state = 6}, + [4443] = {.lex_state = 14, .external_lex_state = 6}, + [4444] = {.lex_state = 14, .external_lex_state = 6}, + [4445] = {.lex_state = 14, .external_lex_state = 6}, + [4446] = {.lex_state = 14, .external_lex_state = 6}, + [4447] = {.lex_state = 14, .external_lex_state = 6}, + [4448] = {.lex_state = 14, .external_lex_state = 6}, + [4449] = {.lex_state = 14, .external_lex_state = 6}, + [4450] = {.lex_state = 14, .external_lex_state = 6}, + [4451] = {.lex_state = 14, .external_lex_state = 6}, + [4452] = {.lex_state = 14, .external_lex_state = 6}, + [4453] = {.lex_state = 14, .external_lex_state = 6}, + [4454] = {.lex_state = 14, .external_lex_state = 6}, + [4455] = {.lex_state = 14, .external_lex_state = 6}, + [4456] = {.lex_state = 14, .external_lex_state = 6}, + [4457] = {.lex_state = 14, .external_lex_state = 6}, + [4458] = {.lex_state = 14, .external_lex_state = 6}, + [4459] = {.lex_state = 14, .external_lex_state = 6}, + [4460] = {.lex_state = 14, .external_lex_state = 6}, + [4461] = {.lex_state = 14, .external_lex_state = 6}, + [4462] = {.lex_state = 14, .external_lex_state = 6}, + [4463] = {.lex_state = 14, .external_lex_state = 6}, + [4464] = {.lex_state = 14, .external_lex_state = 6}, + [4465] = {.lex_state = 14, .external_lex_state = 6}, + [4466] = {.lex_state = 14, .external_lex_state = 6}, + [4467] = {.lex_state = 14, .external_lex_state = 6}, + [4468] = {.lex_state = 14, .external_lex_state = 6}, + [4469] = {.lex_state = 14, .external_lex_state = 6}, + [4470] = {.lex_state = 14, .external_lex_state = 6}, + [4471] = {.lex_state = 14, .external_lex_state = 6}, + [4472] = {.lex_state = 14, .external_lex_state = 6}, + [4473] = {.lex_state = 14, .external_lex_state = 6}, + [4474] = {.lex_state = 14, .external_lex_state = 6}, + [4475] = {.lex_state = 14, .external_lex_state = 6}, + [4476] = {.lex_state = 14, .external_lex_state = 6}, + [4477] = {.lex_state = 14, .external_lex_state = 6}, + [4478] = {.lex_state = 14, .external_lex_state = 6}, + [4479] = {.lex_state = 14, .external_lex_state = 6}, + [4480] = {.lex_state = 14, .external_lex_state = 6}, + [4481] = {.lex_state = 14, .external_lex_state = 6}, + [4482] = {.lex_state = 14, .external_lex_state = 6}, + [4483] = {.lex_state = 14, .external_lex_state = 6}, + [4484] = {.lex_state = 14, .external_lex_state = 6}, + [4485] = {.lex_state = 14, .external_lex_state = 6}, + [4486] = {.lex_state = 14, .external_lex_state = 6}, + [4487] = {.lex_state = 14, .external_lex_state = 6}, + [4488] = {.lex_state = 14, .external_lex_state = 6}, + [4489] = {.lex_state = 14, .external_lex_state = 6}, + [4490] = {.lex_state = 14, .external_lex_state = 6}, + [4491] = {.lex_state = 14, .external_lex_state = 6}, + [4492] = {.lex_state = 14, .external_lex_state = 6}, + [4493] = {.lex_state = 14, .external_lex_state = 6}, + [4494] = {.lex_state = 14, .external_lex_state = 6}, + [4495] = {.lex_state = 14, .external_lex_state = 6}, + [4496] = {.lex_state = 14, .external_lex_state = 6}, + [4497] = {.lex_state = 14, .external_lex_state = 6}, + [4498] = {.lex_state = 14, .external_lex_state = 6}, + [4499] = {.lex_state = 14, .external_lex_state = 6}, + [4500] = {.lex_state = 14, .external_lex_state = 6}, + [4501] = {.lex_state = 14, .external_lex_state = 6}, + [4502] = {.lex_state = 14, .external_lex_state = 6}, + [4503] = {.lex_state = 14, .external_lex_state = 6}, + [4504] = {.lex_state = 14, .external_lex_state = 6}, + [4505] = {.lex_state = 14, .external_lex_state = 6}, + [4506] = {.lex_state = 14, .external_lex_state = 6}, + [4507] = {.lex_state = 14, .external_lex_state = 6}, + [4508] = {.lex_state = 14, .external_lex_state = 6}, + [4509] = {.lex_state = 14, .external_lex_state = 6}, + [4510] = {.lex_state = 14, .external_lex_state = 6}, + [4511] = {.lex_state = 14, .external_lex_state = 6}, + [4512] = {.lex_state = 14, .external_lex_state = 6}, + [4513] = {.lex_state = 14, .external_lex_state = 6}, + [4514] = {.lex_state = 14, .external_lex_state = 6}, + [4515] = {.lex_state = 14, .external_lex_state = 6}, + [4516] = {.lex_state = 14, .external_lex_state = 6}, + [4517] = {.lex_state = 14, .external_lex_state = 6}, + [4518] = {.lex_state = 14, .external_lex_state = 6}, + [4519] = {.lex_state = 14, .external_lex_state = 6}, + [4520] = {.lex_state = 14, .external_lex_state = 6}, + [4521] = {.lex_state = 14, .external_lex_state = 6}, + [4522] = {.lex_state = 14, .external_lex_state = 6}, + [4523] = {.lex_state = 14, .external_lex_state = 6}, + [4524] = {.lex_state = 14, .external_lex_state = 6}, + [4525] = {.lex_state = 14, .external_lex_state = 6}, + [4526] = {.lex_state = 14, .external_lex_state = 6}, + [4527] = {.lex_state = 14, .external_lex_state = 6}, + [4528] = {.lex_state = 14, .external_lex_state = 6}, + [4529] = {.lex_state = 14, .external_lex_state = 6}, + [4530] = {.lex_state = 14, .external_lex_state = 6}, + [4531] = {.lex_state = 14, .external_lex_state = 6}, + [4532] = {.lex_state = 14, .external_lex_state = 6}, + [4533] = {.lex_state = 14, .external_lex_state = 6}, + [4534] = {.lex_state = 14, .external_lex_state = 6}, + [4535] = {.lex_state = 14, .external_lex_state = 6}, + [4536] = {.lex_state = 14, .external_lex_state = 6}, + [4537] = {.lex_state = 14, .external_lex_state = 6}, + [4538] = {.lex_state = 14, .external_lex_state = 6}, + [4539] = {.lex_state = 14, .external_lex_state = 6}, + [4540] = {.lex_state = 14, .external_lex_state = 6}, + [4541] = {.lex_state = 14, .external_lex_state = 6}, + [4542] = {.lex_state = 14, .external_lex_state = 6}, + [4543] = {.lex_state = 14, .external_lex_state = 6}, + [4544] = {.lex_state = 14, .external_lex_state = 6}, + [4545] = {.lex_state = 14, .external_lex_state = 6}, + [4546] = {.lex_state = 14, .external_lex_state = 6}, + [4547] = {.lex_state = 14, .external_lex_state = 6}, + [4548] = {.lex_state = 14, .external_lex_state = 6}, + [4549] = {.lex_state = 14, .external_lex_state = 6}, + [4550] = {.lex_state = 14, .external_lex_state = 6}, + [4551] = {.lex_state = 14, .external_lex_state = 6}, + [4552] = {.lex_state = 14, .external_lex_state = 6}, + [4553] = {.lex_state = 14, .external_lex_state = 6}, + [4554] = {.lex_state = 14, .external_lex_state = 6}, + [4555] = {.lex_state = 14, .external_lex_state = 6}, + [4556] = {.lex_state = 14, .external_lex_state = 6}, + [4557] = {.lex_state = 14, .external_lex_state = 6}, + [4558] = {.lex_state = 14, .external_lex_state = 6}, + [4559] = {.lex_state = 14, .external_lex_state = 6}, + [4560] = {.lex_state = 14, .external_lex_state = 6}, + [4561] = {.lex_state = 14, .external_lex_state = 6}, + [4562] = {.lex_state = 14, .external_lex_state = 6}, + [4563] = {.lex_state = 14, .external_lex_state = 6}, + [4564] = {.lex_state = 14, .external_lex_state = 6}, + [4565] = {.lex_state = 14, .external_lex_state = 6}, + [4566] = {.lex_state = 14, .external_lex_state = 6}, + [4567] = {.lex_state = 14, .external_lex_state = 6}, + [4568] = {.lex_state = 14, .external_lex_state = 6}, + [4569] = {.lex_state = 14, .external_lex_state = 6}, + [4570] = {.lex_state = 14, .external_lex_state = 6}, + [4571] = {.lex_state = 14, .external_lex_state = 6}, + [4572] = {.lex_state = 14, .external_lex_state = 6}, + [4573] = {.lex_state = 14, .external_lex_state = 6}, + [4574] = {.lex_state = 14, .external_lex_state = 6}, + [4575] = {.lex_state = 12, .external_lex_state = 5}, + [4576] = {.lex_state = 14, .external_lex_state = 6}, + [4577] = {.lex_state = 14, .external_lex_state = 6}, + [4578] = {.lex_state = 12, .external_lex_state = 5}, + [4579] = {.lex_state = 14, .external_lex_state = 6}, + [4580] = {.lex_state = 14, .external_lex_state = 6}, + [4581] = {.lex_state = 14, .external_lex_state = 6}, + [4582] = {.lex_state = 14, .external_lex_state = 6}, + [4583] = {.lex_state = 14, .external_lex_state = 6}, + [4584] = {.lex_state = 14, .external_lex_state = 6}, + [4585] = {.lex_state = 14, .external_lex_state = 6}, + [4586] = {.lex_state = 12, .external_lex_state = 5}, + [4587] = {.lex_state = 14, .external_lex_state = 6}, + [4588] = {.lex_state = 14, .external_lex_state = 6}, + [4589] = {.lex_state = 14, .external_lex_state = 6}, + [4590] = {.lex_state = 14, .external_lex_state = 6}, + [4591] = {.lex_state = 14, .external_lex_state = 6}, + [4592] = {.lex_state = 14, .external_lex_state = 6}, + [4593] = {.lex_state = 14, .external_lex_state = 6}, + [4594] = {.lex_state = 14, .external_lex_state = 6}, + [4595] = {.lex_state = 14, .external_lex_state = 6}, + [4596] = {.lex_state = 14, .external_lex_state = 7}, + [4597] = {.lex_state = 14, .external_lex_state = 6}, + [4598] = {.lex_state = 14, .external_lex_state = 6}, + [4599] = {.lex_state = 14, .external_lex_state = 6}, + [4600] = {.lex_state = 14, .external_lex_state = 6}, + [4601] = {.lex_state = 14, .external_lex_state = 6}, + [4602] = {.lex_state = 14, .external_lex_state = 6}, + [4603] = {.lex_state = 12, .external_lex_state = 5}, + [4604] = {.lex_state = 14, .external_lex_state = 6}, + [4605] = {.lex_state = 14, .external_lex_state = 6}, + [4606] = {.lex_state = 14, .external_lex_state = 6}, + [4607] = {.lex_state = 14, .external_lex_state = 6}, + [4608] = {.lex_state = 12, .external_lex_state = 5}, + [4609] = {.lex_state = 12, .external_lex_state = 5}, + [4610] = {.lex_state = 14, .external_lex_state = 7}, + [4611] = {.lex_state = 14, .external_lex_state = 6}, + [4612] = {.lex_state = 14, .external_lex_state = 6}, + [4613] = {.lex_state = 14, .external_lex_state = 6}, + [4614] = {.lex_state = 14, .external_lex_state = 6}, + [4615] = {.lex_state = 14, .external_lex_state = 6}, + [4616] = {.lex_state = 14, .external_lex_state = 7}, + [4617] = {.lex_state = 14, .external_lex_state = 6}, + [4618] = {.lex_state = 14, .external_lex_state = 6}, + [4619] = {.lex_state = 14, .external_lex_state = 6}, + [4620] = {.lex_state = 14, .external_lex_state = 7}, + [4621] = {.lex_state = 12, .external_lex_state = 5}, + [4622] = {.lex_state = 14, .external_lex_state = 6}, + [4623] = {.lex_state = 12, .external_lex_state = 5}, + [4624] = {.lex_state = 14, .external_lex_state = 6}, + [4625] = {.lex_state = 14, .external_lex_state = 6}, + [4626] = {.lex_state = 14, .external_lex_state = 6}, + [4627] = {.lex_state = 14, .external_lex_state = 6}, + [4628] = {.lex_state = 14, .external_lex_state = 7}, + [4629] = {.lex_state = 14, .external_lex_state = 6}, + [4630] = {.lex_state = 14, .external_lex_state = 6}, + [4631] = {.lex_state = 14, .external_lex_state = 6}, + [4632] = {.lex_state = 14, .external_lex_state = 6}, + [4633] = {.lex_state = 14, .external_lex_state = 6}, + [4634] = {.lex_state = 14, .external_lex_state = 6}, + [4635] = {.lex_state = 14, .external_lex_state = 6}, + [4636] = {.lex_state = 14, .external_lex_state = 6}, + [4637] = {.lex_state = 14, .external_lex_state = 6}, + [4638] = {.lex_state = 14, .external_lex_state = 6}, + [4639] = {.lex_state = 12, .external_lex_state = 5}, + [4640] = {.lex_state = 14, .external_lex_state = 6}, + [4641] = {.lex_state = 14, .external_lex_state = 6}, + [4642] = {.lex_state = 14, .external_lex_state = 6}, + [4643] = {.lex_state = 14, .external_lex_state = 6}, + [4644] = {.lex_state = 12, .external_lex_state = 5}, + [4645] = {.lex_state = 14, .external_lex_state = 6}, + [4646] = {.lex_state = 14, .external_lex_state = 7}, + [4647] = {.lex_state = 14, .external_lex_state = 6}, + [4648] = {.lex_state = 14, .external_lex_state = 6}, + [4649] = {.lex_state = 14, .external_lex_state = 6}, + [4650] = {.lex_state = 14, .external_lex_state = 6}, + [4651] = {.lex_state = 14, .external_lex_state = 6}, + [4652] = {.lex_state = 14, .external_lex_state = 6}, + [4653] = {.lex_state = 14, .external_lex_state = 6}, + [4654] = {.lex_state = 14, .external_lex_state = 6}, + [4655] = {.lex_state = 14, .external_lex_state = 6}, + [4656] = {.lex_state = 14, .external_lex_state = 6}, + [4657] = {.lex_state = 14, .external_lex_state = 7}, + [4658] = {.lex_state = 14, .external_lex_state = 6}, + [4659] = {.lex_state = 14, .external_lex_state = 6}, + [4660] = {.lex_state = 14, .external_lex_state = 6}, + [4661] = {.lex_state = 14, .external_lex_state = 6}, + [4662] = {.lex_state = 12, .external_lex_state = 5}, + [4663] = {.lex_state = 12, .external_lex_state = 5}, + [4664] = {.lex_state = 14, .external_lex_state = 6}, + [4665] = {.lex_state = 14, .external_lex_state = 7}, + [4666] = {.lex_state = 14, .external_lex_state = 7}, + [4667] = {.lex_state = 12, .external_lex_state = 5}, + [4668] = {.lex_state = 14, .external_lex_state = 7}, + [4669] = {.lex_state = 14, .external_lex_state = 7}, + [4670] = {.lex_state = 14, .external_lex_state = 7}, + [4671] = {.lex_state = 14, .external_lex_state = 6}, + [4672] = {.lex_state = 14, .external_lex_state = 6}, + [4673] = {.lex_state = 12, .external_lex_state = 5}, + [4674] = {.lex_state = 12, .external_lex_state = 5}, + [4675] = {.lex_state = 12, .external_lex_state = 5}, + [4676] = {.lex_state = 12, .external_lex_state = 5}, + [4677] = {.lex_state = 14, .external_lex_state = 6}, + [4678] = {.lex_state = 14, .external_lex_state = 6}, + [4679] = {.lex_state = 12, .external_lex_state = 5}, + [4680] = {.lex_state = 14, .external_lex_state = 7}, + [4681] = {.lex_state = 14, .external_lex_state = 6}, + [4682] = {.lex_state = 14, .external_lex_state = 6}, + [4683] = {.lex_state = 12, .external_lex_state = 5}, + [4684] = {.lex_state = 12, .external_lex_state = 5}, + [4685] = {.lex_state = 14, .external_lex_state = 6}, + [4686] = {.lex_state = 14, .external_lex_state = 6}, + [4687] = {.lex_state = 14, .external_lex_state = 6}, + [4688] = {.lex_state = 14, .external_lex_state = 6}, + [4689] = {.lex_state = 14, .external_lex_state = 6}, + [4690] = {.lex_state = 14, .external_lex_state = 6}, + [4691] = {.lex_state = 14, .external_lex_state = 6}, + [4692] = {.lex_state = 14, .external_lex_state = 7}, + [4693] = {.lex_state = 14, .external_lex_state = 6}, + [4694] = {.lex_state = 14, .external_lex_state = 7}, + [4695] = {.lex_state = 14, .external_lex_state = 6}, + [4696] = {.lex_state = 14, .external_lex_state = 6}, + [4697] = {.lex_state = 14, .external_lex_state = 6}, + [4698] = {.lex_state = 14, .external_lex_state = 6}, + [4699] = {.lex_state = 14, .external_lex_state = 6}, + [4700] = {.lex_state = 14, .external_lex_state = 6}, + [4701] = {.lex_state = 14, .external_lex_state = 6}, + [4702] = {.lex_state = 14, .external_lex_state = 6}, + [4703] = {.lex_state = 14, .external_lex_state = 6}, + [4704] = {.lex_state = 14, .external_lex_state = 6}, + [4705] = {.lex_state = 14, .external_lex_state = 6}, + [4706] = {.lex_state = 14, .external_lex_state = 6}, + [4707] = {.lex_state = 14, .external_lex_state = 6}, + [4708] = {.lex_state = 14, .external_lex_state = 6}, + [4709] = {.lex_state = 14, .external_lex_state = 6}, + [4710] = {.lex_state = 14, .external_lex_state = 6}, + [4711] = {.lex_state = 14, .external_lex_state = 6}, + [4712] = {.lex_state = 14, .external_lex_state = 6}, + [4713] = {.lex_state = 14, .external_lex_state = 6}, + [4714] = {.lex_state = 14, .external_lex_state = 6}, + [4715] = {.lex_state = 14, .external_lex_state = 6}, + [4716] = {.lex_state = 14, .external_lex_state = 6}, + [4717] = {.lex_state = 16, .external_lex_state = 6}, + [4718] = {.lex_state = 12, .external_lex_state = 5}, + [4719] = {.lex_state = 14, .external_lex_state = 6}, + [4720] = {.lex_state = 14, .external_lex_state = 6}, + [4721] = {.lex_state = 14, .external_lex_state = 7}, + [4722] = {.lex_state = 14, .external_lex_state = 6}, + [4723] = {.lex_state = 12, .external_lex_state = 5}, + [4724] = {.lex_state = 14, .external_lex_state = 6}, + [4725] = {.lex_state = 14, .external_lex_state = 6}, + [4726] = {.lex_state = 14, .external_lex_state = 6}, + [4727] = {.lex_state = 12, .external_lex_state = 5}, + [4728] = {.lex_state = 14, .external_lex_state = 6}, + [4729] = {.lex_state = 14, .external_lex_state = 6}, + [4730] = {.lex_state = 14, .external_lex_state = 6}, + [4731] = {.lex_state = 14, .external_lex_state = 6}, + [4732] = {.lex_state = 14, .external_lex_state = 7}, + [4733] = {.lex_state = 14, .external_lex_state = 6}, + [4734] = {.lex_state = 14, .external_lex_state = 6}, + [4735] = {.lex_state = 14, .external_lex_state = 6}, + [4736] = {.lex_state = 14, .external_lex_state = 6}, + [4737] = {.lex_state = 14, .external_lex_state = 6}, + [4738] = {.lex_state = 14, .external_lex_state = 6}, + [4739] = {.lex_state = 14, .external_lex_state = 6}, + [4740] = {.lex_state = 14, .external_lex_state = 6}, + [4741] = {.lex_state = 14, .external_lex_state = 6}, + [4742] = {.lex_state = 14, .external_lex_state = 6}, + [4743] = {.lex_state = 14, .external_lex_state = 6}, + [4744] = {.lex_state = 14, .external_lex_state = 6}, + [4745] = {.lex_state = 14, .external_lex_state = 7}, + [4746] = {.lex_state = 14, .external_lex_state = 6}, + [4747] = {.lex_state = 14, .external_lex_state = 6}, + [4748] = {.lex_state = 14, .external_lex_state = 6}, + [4749] = {.lex_state = 14, .external_lex_state = 6}, + [4750] = {.lex_state = 14, .external_lex_state = 6}, + [4751] = {.lex_state = 14, .external_lex_state = 7}, + [4752] = {.lex_state = 14, .external_lex_state = 6}, + [4753] = {.lex_state = 14, .external_lex_state = 6}, + [4754] = {.lex_state = 14, .external_lex_state = 6}, + [4755] = {.lex_state = 14, .external_lex_state = 6}, + [4756] = {.lex_state = 14, .external_lex_state = 6}, + [4757] = {.lex_state = 14, .external_lex_state = 6}, + [4758] = {.lex_state = 14, .external_lex_state = 6}, + [4759] = {.lex_state = 14, .external_lex_state = 6}, + [4760] = {.lex_state = 14, .external_lex_state = 6}, + [4761] = {.lex_state = 14, .external_lex_state = 7}, + [4762] = {.lex_state = 14, .external_lex_state = 6}, + [4763] = {.lex_state = 14, .external_lex_state = 6}, + [4764] = {.lex_state = 14, .external_lex_state = 6}, + [4765] = {.lex_state = 14, .external_lex_state = 6}, + [4766] = {.lex_state = 14, .external_lex_state = 6}, + [4767] = {.lex_state = 14, .external_lex_state = 6}, + [4768] = {.lex_state = 14, .external_lex_state = 6}, + [4769] = {.lex_state = 14, .external_lex_state = 6}, + [4770] = {.lex_state = 14, .external_lex_state = 6}, + [4771] = {.lex_state = 14, .external_lex_state = 7}, + [4772] = {.lex_state = 14, .external_lex_state = 6}, + [4773] = {.lex_state = 14, .external_lex_state = 6}, + [4774] = {.lex_state = 14, .external_lex_state = 6}, + [4775] = {.lex_state = 14, .external_lex_state = 6}, + [4776] = {.lex_state = 14, .external_lex_state = 6}, + [4777] = {.lex_state = 14, .external_lex_state = 6}, + [4778] = {.lex_state = 14, .external_lex_state = 6}, + [4779] = {.lex_state = 14, .external_lex_state = 6}, + [4780] = {.lex_state = 14, .external_lex_state = 6}, + [4781] = {.lex_state = 14, .external_lex_state = 6}, + [4782] = {.lex_state = 14, .external_lex_state = 6}, + [4783] = {.lex_state = 14, .external_lex_state = 6}, + [4784] = {.lex_state = 14, .external_lex_state = 6}, + [4785] = {.lex_state = 14, .external_lex_state = 6}, + [4786] = {.lex_state = 14, .external_lex_state = 6}, + [4787] = {.lex_state = 14, .external_lex_state = 6}, + [4788] = {.lex_state = 14, .external_lex_state = 6}, + [4789] = {.lex_state = 14, .external_lex_state = 6}, + [4790] = {.lex_state = 14, .external_lex_state = 6}, + [4791] = {.lex_state = 14, .external_lex_state = 6}, + [4792] = {.lex_state = 14, .external_lex_state = 6}, + [4793] = {.lex_state = 14, .external_lex_state = 6}, + [4794] = {.lex_state = 14, .external_lex_state = 6}, + [4795] = {.lex_state = 14, .external_lex_state = 6}, + [4796] = {.lex_state = 14, .external_lex_state = 6}, + [4797] = {.lex_state = 14, .external_lex_state = 6}, + [4798] = {.lex_state = 14, .external_lex_state = 6}, + [4799] = {.lex_state = 14, .external_lex_state = 7}, + [4800] = {.lex_state = 14, .external_lex_state = 6}, + [4801] = {.lex_state = 14, .external_lex_state = 6}, + [4802] = {.lex_state = 14, .external_lex_state = 7}, + [4803] = {.lex_state = 14, .external_lex_state = 6}, + [4804] = {.lex_state = 14, .external_lex_state = 6}, + [4805] = {.lex_state = 14, .external_lex_state = 6}, + [4806] = {.lex_state = 14, .external_lex_state = 6}, + [4807] = {.lex_state = 14, .external_lex_state = 6}, + [4808] = {.lex_state = 14, .external_lex_state = 6}, + [4809] = {.lex_state = 14, .external_lex_state = 7}, + [4810] = {.lex_state = 14, .external_lex_state = 6}, + [4811] = {.lex_state = 14, .external_lex_state = 7}, + [4812] = {.lex_state = 14, .external_lex_state = 6}, + [4813] = {.lex_state = 14, .external_lex_state = 6}, + [4814] = {.lex_state = 14, .external_lex_state = 6}, + [4815] = {.lex_state = 14, .external_lex_state = 6}, + [4816] = {.lex_state = 14, .external_lex_state = 7}, + [4817] = {.lex_state = 14, .external_lex_state = 6}, + [4818] = {.lex_state = 14, .external_lex_state = 6}, + [4819] = {.lex_state = 14, .external_lex_state = 6}, + [4820] = {.lex_state = 14, .external_lex_state = 6}, + [4821] = {.lex_state = 14, .external_lex_state = 6}, + [4822] = {.lex_state = 14, .external_lex_state = 6}, + [4823] = {.lex_state = 14, .external_lex_state = 6}, + [4824] = {.lex_state = 14, .external_lex_state = 6}, + [4825] = {.lex_state = 14, .external_lex_state = 6}, + [4826] = {.lex_state = 14, .external_lex_state = 6}, + [4827] = {.lex_state = 14, .external_lex_state = 6}, + [4828] = {.lex_state = 14, .external_lex_state = 7}, + [4829] = {.lex_state = 14, .external_lex_state = 6}, + [4830] = {.lex_state = 14, .external_lex_state = 7}, + [4831] = {.lex_state = 14, .external_lex_state = 6}, + [4832] = {.lex_state = 14, .external_lex_state = 6}, + [4833] = {.lex_state = 14, .external_lex_state = 6}, + [4834] = {.lex_state = 14, .external_lex_state = 6}, + [4835] = {.lex_state = 14, .external_lex_state = 6}, + [4836] = {.lex_state = 14, .external_lex_state = 6}, + [4837] = {.lex_state = 14, .external_lex_state = 6}, + [4838] = {.lex_state = 14, .external_lex_state = 7}, + [4839] = {.lex_state = 14, .external_lex_state = 6}, + [4840] = {.lex_state = 14, .external_lex_state = 6}, + [4841] = {.lex_state = 14, .external_lex_state = 6}, + [4842] = {.lex_state = 14, .external_lex_state = 6}, + [4843] = {.lex_state = 14, .external_lex_state = 6}, + [4844] = {.lex_state = 14, .external_lex_state = 6}, + [4845] = {.lex_state = 14, .external_lex_state = 6}, + [4846] = {.lex_state = 14, .external_lex_state = 6}, + [4847] = {.lex_state = 14, .external_lex_state = 6}, + [4848] = {.lex_state = 14, .external_lex_state = 6}, + [4849] = {.lex_state = 14, .external_lex_state = 7}, + [4850] = {.lex_state = 14, .external_lex_state = 6}, + [4851] = {.lex_state = 14, .external_lex_state = 6}, + [4852] = {.lex_state = 14, .external_lex_state = 6}, + [4853] = {.lex_state = 14, .external_lex_state = 6}, + [4854] = {.lex_state = 14, .external_lex_state = 6}, + [4855] = {.lex_state = 14, .external_lex_state = 6}, + [4856] = {.lex_state = 14, .external_lex_state = 7}, + [4857] = {.lex_state = 14, .external_lex_state = 6}, + [4858] = {.lex_state = 14, .external_lex_state = 6}, + [4859] = {.lex_state = 14, .external_lex_state = 7}, + [4860] = {.lex_state = 14, .external_lex_state = 6}, + [4861] = {.lex_state = 14, .external_lex_state = 6}, + [4862] = {.lex_state = 14, .external_lex_state = 6}, + [4863] = {.lex_state = 14, .external_lex_state = 6}, + [4864] = {.lex_state = 14, .external_lex_state = 6}, + [4865] = {.lex_state = 14, .external_lex_state = 6}, + [4866] = {.lex_state = 14, .external_lex_state = 6}, + [4867] = {.lex_state = 14, .external_lex_state = 6}, + [4868] = {.lex_state = 14, .external_lex_state = 6}, + [4869] = {.lex_state = 14, .external_lex_state = 6}, + [4870] = {.lex_state = 14, .external_lex_state = 6}, + [4871] = {.lex_state = 14, .external_lex_state = 7}, + [4872] = {.lex_state = 14, .external_lex_state = 6}, + [4873] = {.lex_state = 14, .external_lex_state = 6}, + [4874] = {.lex_state = 14, .external_lex_state = 6}, + [4875] = {.lex_state = 14, .external_lex_state = 6}, + [4876] = {.lex_state = 14, .external_lex_state = 6}, + [4877] = {.lex_state = 14, .external_lex_state = 6}, + [4878] = {.lex_state = 14, .external_lex_state = 6}, + [4879] = {.lex_state = 14, .external_lex_state = 6}, + [4880] = {.lex_state = 14, .external_lex_state = 6}, + [4881] = {.lex_state = 14, .external_lex_state = 6}, + [4882] = {.lex_state = 14, .external_lex_state = 6}, + [4883] = {.lex_state = 14, .external_lex_state = 6}, + [4884] = {.lex_state = 14, .external_lex_state = 6}, + [4885] = {.lex_state = 14, .external_lex_state = 6}, + [4886] = {.lex_state = 14, .external_lex_state = 6}, + [4887] = {.lex_state = 14, .external_lex_state = 6}, + [4888] = {.lex_state = 14, .external_lex_state = 7}, + [4889] = {.lex_state = 14, .external_lex_state = 6}, + [4890] = {.lex_state = 14, .external_lex_state = 6}, + [4891] = {.lex_state = 14, .external_lex_state = 6}, + [4892] = {.lex_state = 14, .external_lex_state = 6}, + [4893] = {.lex_state = 14, .external_lex_state = 6}, + [4894] = {.lex_state = 14, .external_lex_state = 6}, + [4895] = {.lex_state = 14, .external_lex_state = 6}, + [4896] = {.lex_state = 14, .external_lex_state = 6}, + [4897] = {.lex_state = 14, .external_lex_state = 6}, + [4898] = {.lex_state = 14, .external_lex_state = 7}, + [4899] = {.lex_state = 14, .external_lex_state = 6}, + [4900] = {.lex_state = 14, .external_lex_state = 6}, + [4901] = {.lex_state = 14, .external_lex_state = 7}, + [4902] = {.lex_state = 14, .external_lex_state = 6}, + [4903] = {.lex_state = 12, .external_lex_state = 5}, + [4904] = {.lex_state = 14, .external_lex_state = 6}, + [4905] = {.lex_state = 14, .external_lex_state = 6}, + [4906] = {.lex_state = 14, .external_lex_state = 6}, + [4907] = {.lex_state = 12, .external_lex_state = 5}, + [4908] = {.lex_state = 14, .external_lex_state = 6}, + [4909] = {.lex_state = 14, .external_lex_state = 6}, + [4910] = {.lex_state = 14, .external_lex_state = 6}, + [4911] = {.lex_state = 14, .external_lex_state = 6}, + [4912] = {.lex_state = 12, .external_lex_state = 5}, + [4913] = {.lex_state = 14, .external_lex_state = 6}, + [4914] = {.lex_state = 14, .external_lex_state = 6}, + [4915] = {.lex_state = 14, .external_lex_state = 7}, + [4916] = {.lex_state = 14, .external_lex_state = 6}, + [4917] = {.lex_state = 14, .external_lex_state = 6}, + [4918] = {.lex_state = 14, .external_lex_state = 7}, + [4919] = {.lex_state = 14, .external_lex_state = 6}, + [4920] = {.lex_state = 12, .external_lex_state = 5}, + [4921] = {.lex_state = 14, .external_lex_state = 7}, + [4922] = {.lex_state = 14, .external_lex_state = 6}, + [4923] = {.lex_state = 14, .external_lex_state = 6}, + [4924] = {.lex_state = 14, .external_lex_state = 7}, + [4925] = {.lex_state = 14, .external_lex_state = 7}, + [4926] = {.lex_state = 14, .external_lex_state = 7}, + [4927] = {.lex_state = 12, .external_lex_state = 5}, + [4928] = {.lex_state = 14, .external_lex_state = 7}, + [4929] = {.lex_state = 14, .external_lex_state = 6}, + [4930] = {.lex_state = 14, .external_lex_state = 7}, + [4931] = {.lex_state = 14, .external_lex_state = 7}, + [4932] = {.lex_state = 14, .external_lex_state = 7}, + [4933] = {.lex_state = 14, .external_lex_state = 7}, + [4934] = {.lex_state = 14, .external_lex_state = 6}, + [4935] = {.lex_state = 14, .external_lex_state = 7}, + [4936] = {.lex_state = 14, .external_lex_state = 7}, + [4937] = {.lex_state = 14, .external_lex_state = 6}, + [4938] = {.lex_state = 14, .external_lex_state = 6}, + [4939] = {.lex_state = 14, .external_lex_state = 7}, + [4940] = {.lex_state = 14, .external_lex_state = 7}, + [4941] = {.lex_state = 12, .external_lex_state = 5}, + [4942] = {.lex_state = 14, .external_lex_state = 7}, + [4943] = {.lex_state = 14, .external_lex_state = 7}, + [4944] = {.lex_state = 14, .external_lex_state = 7}, + [4945] = {.lex_state = 14, .external_lex_state = 7}, + [4946] = {.lex_state = 14, .external_lex_state = 7}, + [4947] = {.lex_state = 14, .external_lex_state = 7}, + [4948] = {.lex_state = 12, .external_lex_state = 5}, + [4949] = {.lex_state = 12, .external_lex_state = 5}, + [4950] = {.lex_state = 14, .external_lex_state = 7}, + [4951] = {.lex_state = 12, .external_lex_state = 5}, + [4952] = {.lex_state = 14, .external_lex_state = 7}, + [4953] = {.lex_state = 14, .external_lex_state = 6}, + [4954] = {.lex_state = 12, .external_lex_state = 5}, + [4955] = {.lex_state = 12, .external_lex_state = 5}, + [4956] = {.lex_state = 12, .external_lex_state = 5}, + [4957] = {.lex_state = 14, .external_lex_state = 6}, + [4958] = {.lex_state = 12, .external_lex_state = 5}, + [4959] = {.lex_state = 14, .external_lex_state = 7}, + [4960] = {.lex_state = 12, .external_lex_state = 5}, + [4961] = {.lex_state = 14, .external_lex_state = 6}, + [4962] = {.lex_state = 12, .external_lex_state = 5}, + [4963] = {.lex_state = 14, .external_lex_state = 7}, + [4964] = {.lex_state = 12, .external_lex_state = 5}, + [4965] = {.lex_state = 12, .external_lex_state = 5}, + [4966] = {.lex_state = 14, .external_lex_state = 6}, + [4967] = {.lex_state = 14, .external_lex_state = 7}, + [4968] = {.lex_state = 14, .external_lex_state = 7}, + [4969] = {.lex_state = 14, .external_lex_state = 6}, + [4970] = {.lex_state = 14, .external_lex_state = 7}, + [4971] = {.lex_state = 14, .external_lex_state = 7}, + [4972] = {.lex_state = 12, .external_lex_state = 5}, + [4973] = {.lex_state = 14, .external_lex_state = 7}, + [4974] = {.lex_state = 14, .external_lex_state = 7}, + [4975] = {.lex_state = 14, .external_lex_state = 6}, + [4976] = {.lex_state = 14, .external_lex_state = 6}, + [4977] = {.lex_state = 14, .external_lex_state = 6}, + [4978] = {.lex_state = 14, .external_lex_state = 6}, + [4979] = {.lex_state = 14, .external_lex_state = 7}, + [4980] = {.lex_state = 14, .external_lex_state = 7}, + [4981] = {.lex_state = 14, .external_lex_state = 7}, + [4982] = {.lex_state = 14, .external_lex_state = 7}, + [4983] = {.lex_state = 14, .external_lex_state = 7}, + [4984] = {.lex_state = 14, .external_lex_state = 7}, + [4985] = {.lex_state = 12, .external_lex_state = 5}, + [4986] = {.lex_state = 14, .external_lex_state = 7}, + [4987] = {.lex_state = 14, .external_lex_state = 7}, + [4988] = {.lex_state = 14, .external_lex_state = 7}, + [4989] = {.lex_state = 14, .external_lex_state = 7}, + [4990] = {.lex_state = 14, .external_lex_state = 7}, + [4991] = {.lex_state = 14, .external_lex_state = 7}, + [4992] = {.lex_state = 14, .external_lex_state = 7}, + [4993] = {.lex_state = 14, .external_lex_state = 7}, + [4994] = {.lex_state = 14, .external_lex_state = 7}, + [4995] = {.lex_state = 14, .external_lex_state = 7}, + [4996] = {.lex_state = 12, .external_lex_state = 5}, + [4997] = {.lex_state = 12, .external_lex_state = 5}, + [4998] = {.lex_state = 14, .external_lex_state = 7}, + [4999] = {.lex_state = 14, .external_lex_state = 7}, + [5000] = {.lex_state = 12, .external_lex_state = 5}, + [5001] = {.lex_state = 14, .external_lex_state = 7}, + [5002] = {.lex_state = 12, .external_lex_state = 5}, + [5003] = {.lex_state = 14, .external_lex_state = 7}, + [5004] = {.lex_state = 14, .external_lex_state = 7}, + [5005] = {.lex_state = 14, .external_lex_state = 7}, + [5006] = {.lex_state = 14, .external_lex_state = 7}, + [5007] = {.lex_state = 14, .external_lex_state = 7}, + [5008] = {.lex_state = 14, .external_lex_state = 7}, + [5009] = {.lex_state = 14, .external_lex_state = 7}, + [5010] = {.lex_state = 12, .external_lex_state = 5}, + [5011] = {.lex_state = 12, .external_lex_state = 5}, + [5012] = {.lex_state = 12, .external_lex_state = 5}, + [5013] = {.lex_state = 14, .external_lex_state = 7}, + [5014] = {.lex_state = 14, .external_lex_state = 7}, + [5015] = {.lex_state = 12, .external_lex_state = 5}, + [5016] = {.lex_state = 14, .external_lex_state = 7}, + [5017] = {.lex_state = 14, .external_lex_state = 7}, + [5018] = {.lex_state = 14, .external_lex_state = 7}, + [5019] = {.lex_state = 14, .external_lex_state = 7}, + [5020] = {.lex_state = 14, .external_lex_state = 7}, + [5021] = {.lex_state = 12, .external_lex_state = 5}, + [5022] = {.lex_state = 14, .external_lex_state = 7}, + [5023] = {.lex_state = 14, .external_lex_state = 7}, + [5024] = {.lex_state = 14, .external_lex_state = 7}, + [5025] = {.lex_state = 14, .external_lex_state = 7}, + [5026] = {.lex_state = 12, .external_lex_state = 5}, + [5027] = {.lex_state = 14, .external_lex_state = 7}, + [5028] = {.lex_state = 14, .external_lex_state = 7}, + [5029] = {.lex_state = 12, .external_lex_state = 5}, + [5030] = {.lex_state = 14, .external_lex_state = 7}, + [5031] = {.lex_state = 14, .external_lex_state = 7}, + [5032] = {.lex_state = 14, .external_lex_state = 7}, + [5033] = {.lex_state = 14, .external_lex_state = 7}, + [5034] = {.lex_state = 12, .external_lex_state = 5}, + [5035] = {.lex_state = 14, .external_lex_state = 7}, + [5036] = {.lex_state = 14, .external_lex_state = 7}, + [5037] = {.lex_state = 14, .external_lex_state = 7}, + [5038] = {.lex_state = 12, .external_lex_state = 5}, + [5039] = {.lex_state = 14, .external_lex_state = 7}, + [5040] = {.lex_state = 14, .external_lex_state = 7}, + [5041] = {.lex_state = 14, .external_lex_state = 7}, + [5042] = {.lex_state = 14, .external_lex_state = 7}, + [5043] = {.lex_state = 12, .external_lex_state = 5}, + [5044] = {.lex_state = 14, .external_lex_state = 7}, + [5045] = {.lex_state = 14, .external_lex_state = 7}, + [5046] = {.lex_state = 14, .external_lex_state = 6}, + [5047] = {.lex_state = 12, .external_lex_state = 5}, + [5048] = {.lex_state = 12, .external_lex_state = 5}, + [5049] = {.lex_state = 14, .external_lex_state = 6}, + [5050] = {.lex_state = 14, .external_lex_state = 6}, + [5051] = {.lex_state = 14, .external_lex_state = 6}, + [5052] = {.lex_state = 14, .external_lex_state = 6}, + [5053] = {.lex_state = 12, .external_lex_state = 5}, + [5054] = {.lex_state = 14, .external_lex_state = 6}, + [5055] = {.lex_state = 14, .external_lex_state = 6}, + [5056] = {.lex_state = 14, .external_lex_state = 6}, + [5057] = {.lex_state = 14, .external_lex_state = 6}, + [5058] = {.lex_state = 14, .external_lex_state = 7}, + [5059] = {.lex_state = 14, .external_lex_state = 6}, + [5060] = {.lex_state = 14, .external_lex_state = 6}, + [5061] = {.lex_state = 14, .external_lex_state = 7}, + [5062] = {.lex_state = 14, .external_lex_state = 7}, + [5063] = {.lex_state = 14, .external_lex_state = 7}, + [5064] = {.lex_state = 14, .external_lex_state = 7}, + [5065] = {.lex_state = 14, .external_lex_state = 6}, + [5066] = {.lex_state = 14, .external_lex_state = 7}, + [5067] = {.lex_state = 14, .external_lex_state = 7}, + [5068] = {.lex_state = 14, .external_lex_state = 7}, + [5069] = {.lex_state = 12, .external_lex_state = 5}, + [5070] = {.lex_state = 14, .external_lex_state = 7}, + [5071] = {.lex_state = 14, .external_lex_state = 6}, + [5072] = {.lex_state = 14, .external_lex_state = 7}, + [5073] = {.lex_state = 14, .external_lex_state = 7}, + [5074] = {.lex_state = 14, .external_lex_state = 6}, + [5075] = {.lex_state = 12, .external_lex_state = 5}, + [5076] = {.lex_state = 12, .external_lex_state = 5}, + [5077] = {.lex_state = 14, .external_lex_state = 7}, + [5078] = {.lex_state = 12, .external_lex_state = 5}, + [5079] = {.lex_state = 14, .external_lex_state = 7}, + [5080] = {.lex_state = 14, .external_lex_state = 7}, + [5081] = {.lex_state = 12, .external_lex_state = 5}, + [5082] = {.lex_state = 12, .external_lex_state = 5}, + [5083] = {.lex_state = 14, .external_lex_state = 7}, + [5084] = {.lex_state = 12, .external_lex_state = 5}, + [5085] = {.lex_state = 14, .external_lex_state = 6}, + [5086] = {.lex_state = 12, .external_lex_state = 5}, + [5087] = {.lex_state = 16, .external_lex_state = 7}, + [5088] = {.lex_state = 14, .external_lex_state = 7}, + [5089] = {.lex_state = 12, .external_lex_state = 5}, + [5090] = {.lex_state = 14, .external_lex_state = 7}, + [5091] = {.lex_state = 14, .external_lex_state = 7}, + [5092] = {.lex_state = 12, .external_lex_state = 5}, + [5093] = {.lex_state = 14, .external_lex_state = 6}, + [5094] = {.lex_state = 14, .external_lex_state = 6}, + [5095] = {.lex_state = 14, .external_lex_state = 7}, + [5096] = {.lex_state = 12, .external_lex_state = 5}, + [5097] = {.lex_state = 12, .external_lex_state = 5}, + [5098] = {.lex_state = 14, .external_lex_state = 6}, + [5099] = {.lex_state = 14, .external_lex_state = 6}, + [5100] = {.lex_state = 14, .external_lex_state = 7}, + [5101] = {.lex_state = 14, .external_lex_state = 7}, + [5102] = {.lex_state = 14, .external_lex_state = 7}, + [5103] = {.lex_state = 12, .external_lex_state = 5}, + [5104] = {.lex_state = 12, .external_lex_state = 5}, + [5105] = {.lex_state = 12, .external_lex_state = 5}, + [5106] = {.lex_state = 14, .external_lex_state = 7}, + [5107] = {.lex_state = 14, .external_lex_state = 7}, + [5108] = {.lex_state = 14, .external_lex_state = 7}, + [5109] = {.lex_state = 14, .external_lex_state = 6}, + [5110] = {.lex_state = 12, .external_lex_state = 5}, + [5111] = {.lex_state = 12, .external_lex_state = 5}, + [5112] = {.lex_state = 14, .external_lex_state = 7}, + [5113] = {.lex_state = 14, .external_lex_state = 7}, + [5114] = {.lex_state = 14, .external_lex_state = 7}, + [5115] = {.lex_state = 14, .external_lex_state = 7}, + [5116] = {.lex_state = 14, .external_lex_state = 7}, + [5117] = {.lex_state = 14, .external_lex_state = 6}, + [5118] = {.lex_state = 14, .external_lex_state = 6}, + [5119] = {.lex_state = 14, .external_lex_state = 7}, + [5120] = {.lex_state = 14, .external_lex_state = 7}, + [5121] = {.lex_state = 12, .external_lex_state = 5}, + [5122] = {.lex_state = 14, .external_lex_state = 7}, + [5123] = {.lex_state = 12, .external_lex_state = 5}, + [5124] = {.lex_state = 14, .external_lex_state = 7}, + [5125] = {.lex_state = 14, .external_lex_state = 6}, + [5126] = {.lex_state = 14, .external_lex_state = 7}, + [5127] = {.lex_state = 14, .external_lex_state = 7}, + [5128] = {.lex_state = 14, .external_lex_state = 7}, + [5129] = {.lex_state = 14, .external_lex_state = 6}, + [5130] = {.lex_state = 14, .external_lex_state = 6}, + [5131] = {.lex_state = 14, .external_lex_state = 7}, + [5132] = {.lex_state = 14, .external_lex_state = 7}, + [5133] = {.lex_state = 14, .external_lex_state = 7}, + [5134] = {.lex_state = 14, .external_lex_state = 7}, + [5135] = {.lex_state = 14, .external_lex_state = 7}, + [5136] = {.lex_state = 14, .external_lex_state = 7}, + [5137] = {.lex_state = 14, .external_lex_state = 7}, + [5138] = {.lex_state = 12, .external_lex_state = 5}, + [5139] = {.lex_state = 14, .external_lex_state = 7}, + [5140] = {.lex_state = 14, .external_lex_state = 7}, + [5141] = {.lex_state = 12, .external_lex_state = 5}, + [5142] = {.lex_state = 14, .external_lex_state = 7}, + [5143] = {.lex_state = 14, .external_lex_state = 7}, + [5144] = {.lex_state = 14, .external_lex_state = 7}, + [5145] = {.lex_state = 14, .external_lex_state = 7}, + [5146] = {.lex_state = 14, .external_lex_state = 7}, + [5147] = {.lex_state = 14, .external_lex_state = 7}, + [5148] = {.lex_state = 14, .external_lex_state = 7}, + [5149] = {.lex_state = 14, .external_lex_state = 7}, + [5150] = {.lex_state = 12, .external_lex_state = 5}, + [5151] = {.lex_state = 14, .external_lex_state = 7}, + [5152] = {.lex_state = 14, .external_lex_state = 7}, + [5153] = {.lex_state = 14, .external_lex_state = 7}, + [5154] = {.lex_state = 14, .external_lex_state = 6}, + [5155] = {.lex_state = 12, .external_lex_state = 5}, + [5156] = {.lex_state = 14, .external_lex_state = 7}, + [5157] = {.lex_state = 14, .external_lex_state = 7}, + [5158] = {.lex_state = 14, .external_lex_state = 7}, + [5159] = {.lex_state = 14, .external_lex_state = 7}, + [5160] = {.lex_state = 14, .external_lex_state = 7}, + [5161] = {.lex_state = 14, .external_lex_state = 7}, + [5162] = {.lex_state = 12, .external_lex_state = 5}, + [5163] = {.lex_state = 14, .external_lex_state = 7}, + [5164] = {.lex_state = 14, .external_lex_state = 7}, + [5165] = {.lex_state = 14, .external_lex_state = 7}, + [5166] = {.lex_state = 12, .external_lex_state = 5}, + [5167] = {.lex_state = 14, .external_lex_state = 7}, + [5168] = {.lex_state = 14, .external_lex_state = 7}, + [5169] = {.lex_state = 14, .external_lex_state = 6}, + [5170] = {.lex_state = 14, .external_lex_state = 7}, + [5171] = {.lex_state = 14, .external_lex_state = 7}, + [5172] = {.lex_state = 14, .external_lex_state = 7}, + [5173] = {.lex_state = 12, .external_lex_state = 5}, + [5174] = {.lex_state = 14, .external_lex_state = 7}, + [5175] = {.lex_state = 14, .external_lex_state = 6}, + [5176] = {.lex_state = 14, .external_lex_state = 7}, + [5177] = {.lex_state = 14, .external_lex_state = 7}, + [5178] = {.lex_state = 14, .external_lex_state = 7}, + [5179] = {.lex_state = 14, .external_lex_state = 7}, + [5180] = {.lex_state = 14, .external_lex_state = 7}, + [5181] = {.lex_state = 14, .external_lex_state = 7}, + [5182] = {.lex_state = 14, .external_lex_state = 6}, + [5183] = {.lex_state = 14, .external_lex_state = 7}, + [5184] = {.lex_state = 14, .external_lex_state = 7}, + [5185] = {.lex_state = 14, .external_lex_state = 7}, + [5186] = {.lex_state = 14, .external_lex_state = 7}, + [5187] = {.lex_state = 14, .external_lex_state = 7}, + [5188] = {.lex_state = 12, .external_lex_state = 5}, + [5189] = {.lex_state = 14, .external_lex_state = 7}, + [5190] = {.lex_state = 12, .external_lex_state = 5}, + [5191] = {.lex_state = 14, .external_lex_state = 6}, + [5192] = {.lex_state = 14, .external_lex_state = 7}, + [5193] = {.lex_state = 14, .external_lex_state = 7}, + [5194] = {.lex_state = 14, .external_lex_state = 7}, + [5195] = {.lex_state = 14, .external_lex_state = 7}, + [5196] = {.lex_state = 14, .external_lex_state = 7}, + [5197] = {.lex_state = 14, .external_lex_state = 7}, + [5198] = {.lex_state = 14, .external_lex_state = 7}, + [5199] = {.lex_state = 14, .external_lex_state = 6}, + [5200] = {.lex_state = 14, .external_lex_state = 7}, + [5201] = {.lex_state = 14, .external_lex_state = 7}, + [5202] = {.lex_state = 14, .external_lex_state = 7}, + [5203] = {.lex_state = 12, .external_lex_state = 5}, + [5204] = {.lex_state = 14, .external_lex_state = 7}, + [5205] = {.lex_state = 14, .external_lex_state = 6}, + [5206] = {.lex_state = 14, .external_lex_state = 7}, + [5207] = {.lex_state = 14, .external_lex_state = 7}, + [5208] = {.lex_state = 14, .external_lex_state = 7}, + [5209] = {.lex_state = 14, .external_lex_state = 7}, + [5210] = {.lex_state = 14, .external_lex_state = 7}, + [5211] = {.lex_state = 14, .external_lex_state = 7}, + [5212] = {.lex_state = 14, .external_lex_state = 6}, + [5213] = {.lex_state = 14, .external_lex_state = 7}, + [5214] = {.lex_state = 14, .external_lex_state = 7}, + [5215] = {.lex_state = 14, .external_lex_state = 7}, + [5216] = {.lex_state = 14, .external_lex_state = 7}, + [5217] = {.lex_state = 14, .external_lex_state = 7}, + [5218] = {.lex_state = 14, .external_lex_state = 7}, + [5219] = {.lex_state = 14, .external_lex_state = 7}, + [5220] = {.lex_state = 14, .external_lex_state = 7}, + [5221] = {.lex_state = 14, .external_lex_state = 7}, + [5222] = {.lex_state = 14, .external_lex_state = 6}, + [5223] = {.lex_state = 14, .external_lex_state = 7}, + [5224] = {.lex_state = 14, .external_lex_state = 7}, + [5225] = {.lex_state = 14, .external_lex_state = 7}, + [5226] = {.lex_state = 12, .external_lex_state = 5}, + [5227] = {.lex_state = 14, .external_lex_state = 7}, + [5228] = {.lex_state = 14, .external_lex_state = 7}, + [5229] = {.lex_state = 14, .external_lex_state = 7}, + [5230] = {.lex_state = 14, .external_lex_state = 7}, + [5231] = {.lex_state = 14, .external_lex_state = 7}, + [5232] = {.lex_state = 12, .external_lex_state = 5}, + [5233] = {.lex_state = 14, .external_lex_state = 7}, + [5234] = {.lex_state = 12, .external_lex_state = 5}, + [5235] = {.lex_state = 14, .external_lex_state = 7}, + [5236] = {.lex_state = 14, .external_lex_state = 6}, + [5237] = {.lex_state = 14, .external_lex_state = 7}, + [5238] = {.lex_state = 14, .external_lex_state = 7}, + [5239] = {.lex_state = 14, .external_lex_state = 7}, + [5240] = {.lex_state = 14, .external_lex_state = 7}, + [5241] = {.lex_state = 14, .external_lex_state = 7}, + [5242] = {.lex_state = 14, .external_lex_state = 7}, + [5243] = {.lex_state = 14, .external_lex_state = 7}, + [5244] = {.lex_state = 14, .external_lex_state = 7}, + [5245] = {.lex_state = 14, .external_lex_state = 7}, + [5246] = {.lex_state = 14, .external_lex_state = 7}, + [5247] = {.lex_state = 14, .external_lex_state = 7}, + [5248] = {.lex_state = 14, .external_lex_state = 7}, + [5249] = {.lex_state = 14, .external_lex_state = 7}, + [5250] = {.lex_state = 14, .external_lex_state = 7}, + [5251] = {.lex_state = 14, .external_lex_state = 7}, + [5252] = {.lex_state = 14, .external_lex_state = 7}, + [5253] = {.lex_state = 14, .external_lex_state = 7}, + [5254] = {.lex_state = 14, .external_lex_state = 7}, + [5255] = {.lex_state = 14, .external_lex_state = 7}, + [5256] = {.lex_state = 14, .external_lex_state = 7}, + [5257] = {.lex_state = 14, .external_lex_state = 7}, + [5258] = {.lex_state = 14, .external_lex_state = 7}, + [5259] = {.lex_state = 14, .external_lex_state = 7}, + [5260] = {.lex_state = 14, .external_lex_state = 7}, + [5261] = {.lex_state = 14, .external_lex_state = 7}, + [5262] = {.lex_state = 14, .external_lex_state = 7}, + [5263] = {.lex_state = 12, .external_lex_state = 5}, + [5264] = {.lex_state = 14, .external_lex_state = 7}, + [5265] = {.lex_state = 14, .external_lex_state = 7}, + [5266] = {.lex_state = 14, .external_lex_state = 7}, + [5267] = {.lex_state = 14, .external_lex_state = 7}, + [5268] = {.lex_state = 14, .external_lex_state = 7}, + [5269] = {.lex_state = 14, .external_lex_state = 7}, + [5270] = {.lex_state = 14, .external_lex_state = 7}, + [5271] = {.lex_state = 14, .external_lex_state = 7}, + [5272] = {.lex_state = 14, .external_lex_state = 7}, + [5273] = {.lex_state = 14, .external_lex_state = 7}, + [5274] = {.lex_state = 14, .external_lex_state = 7}, + [5275] = {.lex_state = 14, .external_lex_state = 7}, + [5276] = {.lex_state = 14, .external_lex_state = 7}, + [5277] = {.lex_state = 14, .external_lex_state = 7}, + [5278] = {.lex_state = 14, .external_lex_state = 7}, + [5279] = {.lex_state = 14, .external_lex_state = 7}, + [5280] = {.lex_state = 14, .external_lex_state = 7}, + [5281] = {.lex_state = 12, .external_lex_state = 5}, + [5282] = {.lex_state = 14, .external_lex_state = 7}, + [5283] = {.lex_state = 14, .external_lex_state = 7}, + [5284] = {.lex_state = 14, .external_lex_state = 7}, + [5285] = {.lex_state = 14, .external_lex_state = 7}, + [5286] = {.lex_state = 14, .external_lex_state = 7}, + [5287] = {.lex_state = 14, .external_lex_state = 7}, + [5288] = {.lex_state = 14, .external_lex_state = 7}, + [5289] = {.lex_state = 14, .external_lex_state = 7}, + [5290] = {.lex_state = 14, .external_lex_state = 7}, + [5291] = {.lex_state = 14, .external_lex_state = 7}, + [5292] = {.lex_state = 14, .external_lex_state = 7}, + [5293] = {.lex_state = 14, .external_lex_state = 7}, + [5294] = {.lex_state = 14, .external_lex_state = 7}, + [5295] = {.lex_state = 14, .external_lex_state = 7}, + [5296] = {.lex_state = 14, .external_lex_state = 7}, + [5297] = {.lex_state = 14, .external_lex_state = 7}, + [5298] = {.lex_state = 14, .external_lex_state = 7}, + [5299] = {.lex_state = 14, .external_lex_state = 7}, + [5300] = {.lex_state = 14, .external_lex_state = 6}, + [5301] = {.lex_state = 12, .external_lex_state = 5}, + [5302] = {.lex_state = 14, .external_lex_state = 7}, + [5303] = {.lex_state = 14, .external_lex_state = 6}, + [5304] = {.lex_state = 14, .external_lex_state = 7}, + [5305] = {.lex_state = 14, .external_lex_state = 7}, + [5306] = {.lex_state = 14, .external_lex_state = 7}, + [5307] = {.lex_state = 14, .external_lex_state = 7}, + [5308] = {.lex_state = 14, .external_lex_state = 7}, + [5309] = {.lex_state = 14, .external_lex_state = 7}, + [5310] = {.lex_state = 14, .external_lex_state = 7}, + [5311] = {.lex_state = 12, .external_lex_state = 5}, + [5312] = {.lex_state = 14, .external_lex_state = 6}, + [5313] = {.lex_state = 14, .external_lex_state = 7}, + [5314] = {.lex_state = 12, .external_lex_state = 5}, + [5315] = {.lex_state = 14, .external_lex_state = 7}, + [5316] = {.lex_state = 12, .external_lex_state = 5}, + [5317] = {.lex_state = 14, .external_lex_state = 6}, + [5318] = {.lex_state = 14, .external_lex_state = 7}, + [5319] = {.lex_state = 12, .external_lex_state = 5}, + [5320] = {.lex_state = 12, .external_lex_state = 5}, + [5321] = {.lex_state = 14, .external_lex_state = 7}, + [5322] = {.lex_state = 14, .external_lex_state = 7}, + [5323] = {.lex_state = 12, .external_lex_state = 5}, + [5324] = {.lex_state = 14, .external_lex_state = 7}, + [5325] = {.lex_state = 14, .external_lex_state = 7}, + [5326] = {.lex_state = 14, .external_lex_state = 6}, + [5327] = {.lex_state = 14, .external_lex_state = 6}, + [5328] = {.lex_state = 12, .external_lex_state = 5}, + [5329] = {.lex_state = 12, .external_lex_state = 5}, + [5330] = {.lex_state = 14, .external_lex_state = 7}, + [5331] = {.lex_state = 12, .external_lex_state = 5}, + [5332] = {.lex_state = 14, .external_lex_state = 6}, + [5333] = {.lex_state = 12, .external_lex_state = 5}, + [5334] = {.lex_state = 14, .external_lex_state = 6}, + [5335] = {.lex_state = 12, .external_lex_state = 5}, + [5336] = {.lex_state = 14, .external_lex_state = 6}, + [5337] = {.lex_state = 14, .external_lex_state = 6}, + [5338] = {.lex_state = 12, .external_lex_state = 5}, + [5339] = {.lex_state = 12, .external_lex_state = 5}, + [5340] = {.lex_state = 14, .external_lex_state = 6}, + [5341] = {.lex_state = 14, .external_lex_state = 6}, + [5342] = {.lex_state = 14, .external_lex_state = 6}, + [5343] = {.lex_state = 14, .external_lex_state = 6}, + [5344] = {.lex_state = 12, .external_lex_state = 5}, + [5345] = {.lex_state = 14, .external_lex_state = 6}, + [5346] = {.lex_state = 12, .external_lex_state = 5}, + [5347] = {.lex_state = 12, .external_lex_state = 5}, + [5348] = {.lex_state = 12, .external_lex_state = 5}, + [5349] = {.lex_state = 12, .external_lex_state = 5}, + [5350] = {.lex_state = 12, .external_lex_state = 5}, + [5351] = {.lex_state = 12, .external_lex_state = 5}, + [5352] = {.lex_state = 12, .external_lex_state = 5}, + [5353] = {.lex_state = 12, .external_lex_state = 5}, + [5354] = {.lex_state = 14, .external_lex_state = 6}, + [5355] = {.lex_state = 14, .external_lex_state = 6}, + [5356] = {.lex_state = 14, .external_lex_state = 6}, + [5357] = {.lex_state = 12, .external_lex_state = 5}, + [5358] = {.lex_state = 14, .external_lex_state = 6}, + [5359] = {.lex_state = 12, .external_lex_state = 5}, + [5360] = {.lex_state = 12, .external_lex_state = 5}, + [5361] = {.lex_state = 14, .external_lex_state = 6}, + [5362] = {.lex_state = 14, .external_lex_state = 6}, + [5363] = {.lex_state = 14, .external_lex_state = 7}, + [5364] = {.lex_state = 12, .external_lex_state = 5}, + [5365] = {.lex_state = 14, .external_lex_state = 7}, + [5366] = {.lex_state = 14, .external_lex_state = 7}, + [5367] = {.lex_state = 14, .external_lex_state = 7}, + [5368] = {.lex_state = 12, .external_lex_state = 5}, + [5369] = {.lex_state = 14, .external_lex_state = 7}, + [5370] = {.lex_state = 14, .external_lex_state = 7}, + [5371] = {.lex_state = 12, .external_lex_state = 5}, + [5372] = {.lex_state = 12, .external_lex_state = 5}, + [5373] = {.lex_state = 14, .external_lex_state = 7}, + [5374] = {.lex_state = 14, .external_lex_state = 7}, + [5375] = {.lex_state = 14, .external_lex_state = 7}, + [5376] = {.lex_state = 12, .external_lex_state = 5}, + [5377] = {.lex_state = 25, .external_lex_state = 9}, + [5378] = {.lex_state = 14, .external_lex_state = 7}, + [5379] = {.lex_state = 12, .external_lex_state = 5}, + [5380] = {.lex_state = 12, .external_lex_state = 5}, + [5381] = {.lex_state = 12, .external_lex_state = 5}, + [5382] = {.lex_state = 12, .external_lex_state = 5}, + [5383] = {.lex_state = 12, .external_lex_state = 5}, + [5384] = {.lex_state = 12, .external_lex_state = 5}, + [5385] = {.lex_state = 12, .external_lex_state = 5}, + [5386] = {.lex_state = 12, .external_lex_state = 5}, + [5387] = {.lex_state = 12, .external_lex_state = 5}, + [5388] = {.lex_state = 12, .external_lex_state = 5}, + [5389] = {.lex_state = 12, .external_lex_state = 5}, + [5390] = {.lex_state = 12, .external_lex_state = 5}, + [5391] = {.lex_state = 12, .external_lex_state = 5}, + [5392] = {.lex_state = 12, .external_lex_state = 5}, + [5393] = {.lex_state = 12, .external_lex_state = 5}, + [5394] = {.lex_state = 12, .external_lex_state = 5}, + [5395] = {.lex_state = 12, .external_lex_state = 5}, + [5396] = {.lex_state = 12, .external_lex_state = 5}, + [5397] = {.lex_state = 12, .external_lex_state = 5}, + [5398] = {.lex_state = 12, .external_lex_state = 5}, + [5399] = {.lex_state = 12, .external_lex_state = 5}, + [5400] = {.lex_state = 12, .external_lex_state = 5}, + [5401] = {.lex_state = 12, .external_lex_state = 5}, + [5402] = {.lex_state = 12, .external_lex_state = 5}, + [5403] = {.lex_state = 12, .external_lex_state = 5}, + [5404] = {.lex_state = 12, .external_lex_state = 5}, + [5405] = {.lex_state = 12, .external_lex_state = 5}, + [5406] = {.lex_state = 12, .external_lex_state = 5}, + [5407] = {.lex_state = 12, .external_lex_state = 5}, + [5408] = {.lex_state = 12, .external_lex_state = 5}, + [5409] = {.lex_state = 12, .external_lex_state = 5}, + [5410] = {.lex_state = 25, .external_lex_state = 9}, + [5411] = {.lex_state = 12, .external_lex_state = 5}, + [5412] = {.lex_state = 12, .external_lex_state = 5}, + [5413] = {.lex_state = 12, .external_lex_state = 5}, + [5414] = {.lex_state = 14, .external_lex_state = 7}, + [5415] = {.lex_state = 9, .external_lex_state = 2}, + [5416] = {.lex_state = 14, .external_lex_state = 7}, + [5417] = {.lex_state = 12, .external_lex_state = 5}, + [5418] = {.lex_state = 12, .external_lex_state = 5}, + [5419] = {.lex_state = 12, .external_lex_state = 5}, + [5420] = {.lex_state = 14, .external_lex_state = 6}, + [5421] = {.lex_state = 12, .external_lex_state = 5}, + [5422] = {.lex_state = 14, .external_lex_state = 6}, + [5423] = {.lex_state = 14, .external_lex_state = 6}, + [5424] = {.lex_state = 12, .external_lex_state = 5}, + [5425] = {.lex_state = 14, .external_lex_state = 6}, + [5426] = {.lex_state = 25, .external_lex_state = 9}, + [5427] = {.lex_state = 14, .external_lex_state = 6}, + [5428] = {.lex_state = 12, .external_lex_state = 5}, + [5429] = {.lex_state = 12, .external_lex_state = 5}, + [5430] = {.lex_state = 12, .external_lex_state = 5}, + [5431] = {.lex_state = 9, .external_lex_state = 2}, + [5432] = {.lex_state = 12, .external_lex_state = 5}, + [5433] = {.lex_state = 12, .external_lex_state = 5}, + [5434] = {.lex_state = 14, .external_lex_state = 6}, + [5435] = {.lex_state = 12, .external_lex_state = 5}, + [5436] = {.lex_state = 12, .external_lex_state = 5}, + [5437] = {.lex_state = 12, .external_lex_state = 5}, + [5438] = {.lex_state = 12, .external_lex_state = 5}, + [5439] = {.lex_state = 12, .external_lex_state = 5}, + [5440] = {.lex_state = 12, .external_lex_state = 5}, + [5441] = {.lex_state = 12, .external_lex_state = 5}, + [5442] = {.lex_state = 14, .external_lex_state = 6}, + [5443] = {.lex_state = 12, .external_lex_state = 5}, + [5444] = {.lex_state = 14, .external_lex_state = 6}, + [5445] = {.lex_state = 14, .external_lex_state = 7}, + [5446] = {.lex_state = 14, .external_lex_state = 7}, + [5447] = {.lex_state = 12, .external_lex_state = 5}, + [5448] = {.lex_state = 12, .external_lex_state = 5}, + [5449] = {.lex_state = 12, .external_lex_state = 5}, + [5450] = {.lex_state = 14, .external_lex_state = 7}, + [5451] = {.lex_state = 14, .external_lex_state = 7}, + [5452] = {.lex_state = 14, .external_lex_state = 7}, + [5453] = {.lex_state = 12, .external_lex_state = 5}, + [5454] = {.lex_state = 14, .external_lex_state = 7}, + [5455] = {.lex_state = 12, .external_lex_state = 5}, + [5456] = {.lex_state = 12, .external_lex_state = 5}, + [5457] = {.lex_state = 12, .external_lex_state = 5}, + [5458] = {.lex_state = 14, .external_lex_state = 7}, + [5459] = {.lex_state = 14, .external_lex_state = 7}, + [5460] = {.lex_state = 12, .external_lex_state = 5}, + [5461] = {.lex_state = 12, .external_lex_state = 5}, + [5462] = {.lex_state = 12, .external_lex_state = 5}, + [5463] = {.lex_state = 25, .external_lex_state = 9}, + [5464] = {.lex_state = 14, .external_lex_state = 7}, + [5465] = {.lex_state = 12, .external_lex_state = 5}, + [5466] = {.lex_state = 14, .external_lex_state = 7}, + [5467] = {.lex_state = 12, .external_lex_state = 5}, + [5468] = {.lex_state = 12, .external_lex_state = 5}, + [5469] = {.lex_state = 12, .external_lex_state = 5}, + [5470] = {.lex_state = 14, .external_lex_state = 7}, + [5471] = {.lex_state = 14, .external_lex_state = 7}, + [5472] = {.lex_state = 12, .external_lex_state = 5}, + [5473] = {.lex_state = 9, .external_lex_state = 2}, + [5474] = {.lex_state = 14, .external_lex_state = 6}, + [5475] = {.lex_state = 14, .external_lex_state = 7}, + [5476] = {.lex_state = 23, .external_lex_state = 8}, + [5477] = {.lex_state = 9, .external_lex_state = 2}, + [5478] = {.lex_state = 14, .external_lex_state = 6}, + [5479] = {.lex_state = 25, .external_lex_state = 8}, + [5480] = {.lex_state = 14, .external_lex_state = 6}, + [5481] = {.lex_state = 9, .external_lex_state = 2}, + [5482] = {.lex_state = 23, .external_lex_state = 8}, + [5483] = {.lex_state = 14, .external_lex_state = 6}, + [5484] = {.lex_state = 14, .external_lex_state = 6}, + [5485] = {.lex_state = 25, .external_lex_state = 8}, + [5486] = {.lex_state = 14, .external_lex_state = 6}, + [5487] = {.lex_state = 23, .external_lex_state = 9}, + [5488] = {.lex_state = 14, .external_lex_state = 6}, + [5489] = {.lex_state = 23, .external_lex_state = 8}, + [5490] = {.lex_state = 14, .external_lex_state = 6}, + [5491] = {.lex_state = 23, .external_lex_state = 9}, + [5492] = {.lex_state = 14, .external_lex_state = 6}, + [5493] = {.lex_state = 23, .external_lex_state = 8}, + [5494] = {.lex_state = 23, .external_lex_state = 9}, + [5495] = {.lex_state = 14, .external_lex_state = 6}, + [5496] = {.lex_state = 23, .external_lex_state = 8}, + [5497] = {.lex_state = 9, .external_lex_state = 2}, + [5498] = {.lex_state = 14, .external_lex_state = 7}, + [5499] = {.lex_state = 25, .external_lex_state = 8}, + [5500] = {.lex_state = 14, .external_lex_state = 7}, + [5501] = {.lex_state = 23, .external_lex_state = 8}, + [5502] = {.lex_state = 12, .external_lex_state = 2}, + [5503] = {.lex_state = 14, .external_lex_state = 7}, + [5504] = {.lex_state = 23, .external_lex_state = 8}, + [5505] = {.lex_state = 14, .external_lex_state = 7}, + [5506] = {.lex_state = 14, .external_lex_state = 7}, + [5507] = {.lex_state = 14, .external_lex_state = 7}, + [5508] = {.lex_state = 14, .external_lex_state = 7}, + [5509] = {.lex_state = 14, .external_lex_state = 7}, + [5510] = {.lex_state = 14, .external_lex_state = 7}, + [5511] = {.lex_state = 23, .external_lex_state = 8}, + [5512] = {.lex_state = 23, .external_lex_state = 9}, + [5513] = {.lex_state = 23, .external_lex_state = 8}, + [5514] = {.lex_state = 12, .external_lex_state = 2}, + [5515] = {.lex_state = 14, .external_lex_state = 7}, + [5516] = {.lex_state = 14, .external_lex_state = 6}, + [5517] = {.lex_state = 14, .external_lex_state = 7}, + [5518] = {.lex_state = 23, .external_lex_state = 9}, + [5519] = {.lex_state = 14, .external_lex_state = 6}, + [5520] = {.lex_state = 9, .external_lex_state = 2}, + [5521] = {.lex_state = 14, .external_lex_state = 7}, + [5522] = {.lex_state = 14, .external_lex_state = 7}, + [5523] = {.lex_state = 14, .external_lex_state = 7}, + [5524] = {.lex_state = 9, .external_lex_state = 2}, + [5525] = {.lex_state = 14, .external_lex_state = 7}, + [5526] = {.lex_state = 14, .external_lex_state = 6}, + [5527] = {.lex_state = 14, .external_lex_state = 6}, + [5528] = {.lex_state = 25, .external_lex_state = 8}, + [5529] = {.lex_state = 14, .external_lex_state = 7}, + [5530] = {.lex_state = 14, .external_lex_state = 7}, + [5531] = {.lex_state = 14, .external_lex_state = 7}, + [5532] = {.lex_state = 14, .external_lex_state = 7}, + [5533] = {.lex_state = 14, .external_lex_state = 6}, + [5534] = {.lex_state = 14, .external_lex_state = 6}, + [5535] = {.lex_state = 14, .external_lex_state = 7}, + [5536] = {.lex_state = 14, .external_lex_state = 7}, + [5537] = {.lex_state = 14, .external_lex_state = 6}, + [5538] = {.lex_state = 14, .external_lex_state = 7}, + [5539] = {.lex_state = 23, .external_lex_state = 8}, + [5540] = {.lex_state = 14, .external_lex_state = 7}, + [5541] = {.lex_state = 14, .external_lex_state = 7}, + [5542] = {.lex_state = 14, .external_lex_state = 7}, + [5543] = {.lex_state = 23, .external_lex_state = 8}, + [5544] = {.lex_state = 23, .external_lex_state = 8}, + [5545] = {.lex_state = 14, .external_lex_state = 6}, + [5546] = {.lex_state = 14, .external_lex_state = 7}, + [5547] = {.lex_state = 23, .external_lex_state = 8}, + [5548] = {.lex_state = 14, .external_lex_state = 6}, + [5549] = {.lex_state = 14, .external_lex_state = 6}, + [5550] = {.lex_state = 25, .external_lex_state = 9}, + [5551] = {.lex_state = 14, .external_lex_state = 6}, + [5552] = {.lex_state = 14, .external_lex_state = 7}, + [5553] = {.lex_state = 23, .external_lex_state = 8}, + [5554] = {.lex_state = 23, .external_lex_state = 8}, + [5555] = {.lex_state = 14, .external_lex_state = 7}, + [5556] = {.lex_state = 14, .external_lex_state = 6}, + [5557] = {.lex_state = 23, .external_lex_state = 8}, + [5558] = {.lex_state = 14, .external_lex_state = 6}, + [5559] = {.lex_state = 14, .external_lex_state = 7}, + [5560] = {.lex_state = 23, .external_lex_state = 8}, + [5561] = {.lex_state = 23, .external_lex_state = 8}, + [5562] = {.lex_state = 25, .external_lex_state = 9}, + [5563] = {.lex_state = 23, .external_lex_state = 8}, + [5564] = {.lex_state = 23, .external_lex_state = 8}, + [5565] = {.lex_state = 14, .external_lex_state = 6}, + [5566] = {.lex_state = 23, .external_lex_state = 8}, + [5567] = {.lex_state = 23, .external_lex_state = 8}, + [5568] = {.lex_state = 14, .external_lex_state = 6}, + [5569] = {.lex_state = 25, .external_lex_state = 9}, + [5570] = {.lex_state = 23, .external_lex_state = 8}, + [5571] = {.lex_state = 14, .external_lex_state = 7}, + [5572] = {.lex_state = 9, .external_lex_state = 2}, + [5573] = {.lex_state = 23, .external_lex_state = 8}, + [5574] = {.lex_state = 14, .external_lex_state = 6}, + [5575] = {.lex_state = 14, .external_lex_state = 7}, + [5576] = {.lex_state = 14, .external_lex_state = 7}, + [5577] = {.lex_state = 23, .external_lex_state = 8}, + [5578] = {.lex_state = 14, .external_lex_state = 6}, + [5579] = {.lex_state = 23, .external_lex_state = 8}, + [5580] = {.lex_state = 14, .external_lex_state = 7}, + [5581] = {.lex_state = 25, .external_lex_state = 9}, + [5582] = {.lex_state = 23, .external_lex_state = 8}, + [5583] = {.lex_state = 23, .external_lex_state = 8}, + [5584] = {.lex_state = 9, .external_lex_state = 2}, + [5585] = {.lex_state = 9, .external_lex_state = 2}, + [5586] = {.lex_state = 14, .external_lex_state = 6}, + [5587] = {.lex_state = 23, .external_lex_state = 8}, + [5588] = {.lex_state = 23, .external_lex_state = 8}, + [5589] = {.lex_state = 9, .external_lex_state = 2}, + [5590] = {.lex_state = 23, .external_lex_state = 8}, + [5591] = {.lex_state = 14, .external_lex_state = 7}, + [5592] = {.lex_state = 14, .external_lex_state = 7}, + [5593] = {.lex_state = 14, .external_lex_state = 7}, + [5594] = {.lex_state = 23, .external_lex_state = 8}, + [5595] = {.lex_state = 23, .external_lex_state = 8}, + [5596] = {.lex_state = 14, .external_lex_state = 7}, + [5597] = {.lex_state = 23, .external_lex_state = 8}, + [5598] = {.lex_state = 14, .external_lex_state = 6}, + [5599] = {.lex_state = 9, .external_lex_state = 2}, + [5600] = {.lex_state = 14, .external_lex_state = 7}, + [5601] = {.lex_state = 23, .external_lex_state = 8}, + [5602] = {.lex_state = 23, .external_lex_state = 9}, + [5603] = {.lex_state = 14, .external_lex_state = 6}, + [5604] = {.lex_state = 9, .external_lex_state = 2}, + [5605] = {.lex_state = 14, .external_lex_state = 7}, + [5606] = {.lex_state = 23, .external_lex_state = 8}, + [5607] = {.lex_state = 14, .external_lex_state = 7}, + [5608] = {.lex_state = 14, .external_lex_state = 7}, + [5609] = {.lex_state = 23, .external_lex_state = 9}, + [5610] = {.lex_state = 14, .external_lex_state = 6}, + [5611] = {.lex_state = 23, .external_lex_state = 8}, + [5612] = {.lex_state = 14, .external_lex_state = 7}, + [5613] = {.lex_state = 23, .external_lex_state = 8}, + [5614] = {.lex_state = 9, .external_lex_state = 2}, + [5615] = {.lex_state = 14, .external_lex_state = 6}, + [5616] = {.lex_state = 25, .external_lex_state = 8}, + [5617] = {.lex_state = 9, .external_lex_state = 2}, + [5618] = {.lex_state = 14, .external_lex_state = 7}, + [5619] = {.lex_state = 25, .external_lex_state = 8}, + [5620] = {.lex_state = 14, .external_lex_state = 7}, + [5621] = {.lex_state = 25, .external_lex_state = 8}, + [5622] = {.lex_state = 9, .external_lex_state = 2}, + [5623] = {.lex_state = 23, .external_lex_state = 8}, + [5624] = {.lex_state = 14, .external_lex_state = 6}, + [5625] = {.lex_state = 23, .external_lex_state = 8}, + [5626] = {.lex_state = 23, .external_lex_state = 8}, + [5627] = {.lex_state = 23, .external_lex_state = 8}, + [5628] = {.lex_state = 25, .external_lex_state = 8}, + [5629] = {.lex_state = 14, .external_lex_state = 6}, + [5630] = {.lex_state = 23, .external_lex_state = 9}, + [5631] = {.lex_state = 14, .external_lex_state = 7}, + [5632] = {.lex_state = 23, .external_lex_state = 8}, + [5633] = {.lex_state = 9, .external_lex_state = 2}, + [5634] = {.lex_state = 14, .external_lex_state = 7}, + [5635] = {.lex_state = 14, .external_lex_state = 6}, + [5636] = {.lex_state = 14, .external_lex_state = 7}, + [5637] = {.lex_state = 9, .external_lex_state = 2}, + [5638] = {.lex_state = 9, .external_lex_state = 2}, + [5639] = {.lex_state = 14, .external_lex_state = 7}, + [5640] = {.lex_state = 23, .external_lex_state = 8}, + [5641] = {.lex_state = 9, .external_lex_state = 2}, + [5642] = {.lex_state = 14, .external_lex_state = 7}, + [5643] = {.lex_state = 14, .external_lex_state = 7}, + [5644] = {.lex_state = 14, .external_lex_state = 7}, + [5645] = {.lex_state = 14, .external_lex_state = 7}, + [5646] = {.lex_state = 23, .external_lex_state = 9}, + [5647] = {.lex_state = 9, .external_lex_state = 2}, + [5648] = {.lex_state = 9, .external_lex_state = 2}, + [5649] = {.lex_state = 14, .external_lex_state = 7}, + [5650] = {.lex_state = 23, .external_lex_state = 9}, + [5651] = {.lex_state = 23, .external_lex_state = 8}, + [5652] = {.lex_state = 14, .external_lex_state = 7}, + [5653] = {.lex_state = 14, .external_lex_state = 7}, + [5654] = {.lex_state = 14, .external_lex_state = 7}, + [5655] = {.lex_state = 14, .external_lex_state = 7}, + [5656] = {.lex_state = 14, .external_lex_state = 7}, + [5657] = {.lex_state = 14, .external_lex_state = 7}, + [5658] = {.lex_state = 14, .external_lex_state = 7}, + [5659] = {.lex_state = 23, .external_lex_state = 8}, + [5660] = {.lex_state = 23, .external_lex_state = 8}, + [5661] = {.lex_state = 23, .external_lex_state = 8}, + [5662] = {.lex_state = 23, .external_lex_state = 8}, + [5663] = {.lex_state = 14, .external_lex_state = 7}, + [5664] = {.lex_state = 23, .external_lex_state = 8}, + [5665] = {.lex_state = 23, .external_lex_state = 8}, + [5666] = {.lex_state = 23, .external_lex_state = 8}, + [5667] = {.lex_state = 23, .external_lex_state = 8}, + [5668] = {.lex_state = 23, .external_lex_state = 8}, + [5669] = {.lex_state = 23, .external_lex_state = 8}, + [5670] = {.lex_state = 23, .external_lex_state = 8}, + [5671] = {.lex_state = 23, .external_lex_state = 8}, + [5672] = {.lex_state = 23, .external_lex_state = 8}, + [5673] = {.lex_state = 9, .external_lex_state = 5}, + [5674] = {.lex_state = 14, .external_lex_state = 6}, + [5675] = {.lex_state = 14, .external_lex_state = 6}, + [5676] = {.lex_state = 14, .external_lex_state = 6}, + [5677] = {.lex_state = 9, .external_lex_state = 5}, + [5678] = {.lex_state = 14, .external_lex_state = 6}, + [5679] = {.lex_state = 14, .external_lex_state = 6}, + [5680] = {.lex_state = 14, .external_lex_state = 6}, + [5681] = {.lex_state = 23, .external_lex_state = 8}, + [5682] = {.lex_state = 32, .external_lex_state = 9}, + [5683] = {.lex_state = 14, .external_lex_state = 7}, + [5684] = {.lex_state = 32, .external_lex_state = 9}, + [5685] = {.lex_state = 23, .external_lex_state = 8}, + [5686] = {.lex_state = 32, .external_lex_state = 9}, + [5687] = {.lex_state = 14, .external_lex_state = 7}, + [5688] = {.lex_state = 32, .external_lex_state = 9}, + [5689] = {.lex_state = 23, .external_lex_state = 8}, + [5690] = {.lex_state = 9, .external_lex_state = 2}, + [5691] = {.lex_state = 23, .external_lex_state = 8}, + [5692] = {.lex_state = 32, .external_lex_state = 9}, + [5693] = {.lex_state = 9, .external_lex_state = 2}, + [5694] = {.lex_state = 14, .external_lex_state = 7}, + [5695] = {.lex_state = 32, .external_lex_state = 9}, + [5696] = {.lex_state = 23, .external_lex_state = 8}, + [5697] = {.lex_state = 14, .external_lex_state = 7}, + [5698] = {.lex_state = 14, .external_lex_state = 7}, + [5699] = {.lex_state = 14, .external_lex_state = 7}, + [5700] = {.lex_state = 23, .external_lex_state = 8}, + [5701] = {.lex_state = 32, .external_lex_state = 9}, + [5702] = {.lex_state = 32, .external_lex_state = 9}, + [5703] = {.lex_state = 23, .external_lex_state = 8}, + [5704] = {.lex_state = 23, .external_lex_state = 8}, + [5705] = {.lex_state = 32, .external_lex_state = 9}, + [5706] = {.lex_state = 23, .external_lex_state = 8}, + [5707] = {.lex_state = 32, .external_lex_state = 9}, + [5708] = {.lex_state = 14, .external_lex_state = 6}, + [5709] = {.lex_state = 23, .external_lex_state = 8}, + [5710] = {.lex_state = 32, .external_lex_state = 9}, + [5711] = {.lex_state = 14, .external_lex_state = 6}, + [5712] = {.lex_state = 14, .external_lex_state = 6}, + [5713] = {.lex_state = 32, .external_lex_state = 9}, + [5714] = {.lex_state = 32, .external_lex_state = 9}, + [5715] = {.lex_state = 23, .external_lex_state = 8}, + [5716] = {.lex_state = 23, .external_lex_state = 8}, + [5717] = {.lex_state = 23, .external_lex_state = 8}, + [5718] = {.lex_state = 32, .external_lex_state = 9}, + [5719] = {.lex_state = 23, .external_lex_state = 8}, + [5720] = {.lex_state = 23, .external_lex_state = 8}, + [5721] = {.lex_state = 23, .external_lex_state = 8}, + [5722] = {.lex_state = 23, .external_lex_state = 8}, + [5723] = {.lex_state = 23, .external_lex_state = 8}, + [5724] = {.lex_state = 23, .external_lex_state = 8}, + [5725] = {.lex_state = 23, .external_lex_state = 8}, + [5726] = {.lex_state = 23, .external_lex_state = 8}, + [5727] = {.lex_state = 23, .external_lex_state = 8}, + [5728] = {.lex_state = 23, .external_lex_state = 8}, + [5729] = {.lex_state = 23, .external_lex_state = 8}, + [5730] = {.lex_state = 23, .external_lex_state = 8}, + [5731] = {.lex_state = 23, .external_lex_state = 8}, + [5732] = {.lex_state = 23, .external_lex_state = 8}, + [5733] = {.lex_state = 23, .external_lex_state = 9}, + [5734] = {.lex_state = 23, .external_lex_state = 9}, + [5735] = {.lex_state = 23, .external_lex_state = 8}, + [5736] = {.lex_state = 23, .external_lex_state = 8}, + [5737] = {.lex_state = 23, .external_lex_state = 9}, + [5738] = {.lex_state = 23, .external_lex_state = 8}, + [5739] = {.lex_state = 25, .external_lex_state = 9}, + [5740] = {.lex_state = 25, .external_lex_state = 9}, + [5741] = {.lex_state = 23, .external_lex_state = 8}, + [5742] = {.lex_state = 23, .external_lex_state = 8}, + [5743] = {.lex_state = 23, .external_lex_state = 9}, + [5744] = {.lex_state = 23, .external_lex_state = 9}, + [5745] = {.lex_state = 27, .external_lex_state = 8}, + [5746] = {.lex_state = 23, .external_lex_state = 8}, + [5747] = {.lex_state = 24, .external_lex_state = 8}, + [5748] = {.lex_state = 23, .external_lex_state = 9}, + [5749] = {.lex_state = 27, .external_lex_state = 8}, + [5750] = {.lex_state = 23, .external_lex_state = 8}, + [5751] = {.lex_state = 23, .external_lex_state = 9}, + [5752] = {.lex_state = 23, .external_lex_state = 9}, + [5753] = {.lex_state = 27, .external_lex_state = 8}, + [5754] = {.lex_state = 23, .external_lex_state = 9}, + [5755] = {.lex_state = 24, .external_lex_state = 8}, + [5756] = {.lex_state = 27, .external_lex_state = 8}, + [5757] = {.lex_state = 27, .external_lex_state = 8}, + [5758] = {.lex_state = 23, .external_lex_state = 8}, + [5759] = {.lex_state = 23, .external_lex_state = 8}, + [5760] = {.lex_state = 23, .external_lex_state = 8}, + [5761] = {.lex_state = 23, .external_lex_state = 8}, + [5762] = {.lex_state = 27, .external_lex_state = 8}, + [5763] = {.lex_state = 23, .external_lex_state = 9}, + [5764] = {.lex_state = 23, .external_lex_state = 8}, + [5765] = {.lex_state = 23, .external_lex_state = 9}, + [5766] = {.lex_state = 23, .external_lex_state = 9}, + [5767] = {.lex_state = 23, .external_lex_state = 9}, + [5768] = {.lex_state = 26, .external_lex_state = 8}, + [5769] = {.lex_state = 26, .external_lex_state = 8}, + [5770] = {.lex_state = 23, .external_lex_state = 8}, + [5771] = {.lex_state = 23, .external_lex_state = 8}, + [5772] = {.lex_state = 23, .external_lex_state = 8}, + [5773] = {.lex_state = 23, .external_lex_state = 8}, + [5774] = {.lex_state = 23, .external_lex_state = 8}, + [5775] = {.lex_state = 23, .external_lex_state = 9}, + [5776] = {.lex_state = 23, .external_lex_state = 9}, + [5777] = {.lex_state = 23, .external_lex_state = 8}, + [5778] = {.lex_state = 23, .external_lex_state = 9}, + [5779] = {.lex_state = 26, .external_lex_state = 8}, + [5780] = {.lex_state = 23, .external_lex_state = 8}, + [5781] = {.lex_state = 23, .external_lex_state = 9}, + [5782] = {.lex_state = 23, .external_lex_state = 8}, + [5783] = {.lex_state = 23, .external_lex_state = 8}, + [5784] = {.lex_state = 23, .external_lex_state = 8}, + [5785] = {.lex_state = 26, .external_lex_state = 8}, + [5786] = {.lex_state = 23, .external_lex_state = 8}, + [5787] = {.lex_state = 23, .external_lex_state = 8}, + [5788] = {.lex_state = 26, .external_lex_state = 8}, + [5789] = {.lex_state = 23, .external_lex_state = 8}, + [5790] = {.lex_state = 23, .external_lex_state = 8}, + [5791] = {.lex_state = 26, .external_lex_state = 8}, + [5792] = {.lex_state = 26, .external_lex_state = 8}, + [5793] = {.lex_state = 23, .external_lex_state = 9}, + [5794] = {.lex_state = 23, .external_lex_state = 8}, + [5795] = {.lex_state = 26, .external_lex_state = 8}, + [5796] = {.lex_state = 26, .external_lex_state = 8}, + [5797] = {.lex_state = 23, .external_lex_state = 8}, + [5798] = {.lex_state = 26, .external_lex_state = 8}, + [5799] = {.lex_state = 23, .external_lex_state = 8}, + [5800] = {.lex_state = 23, .external_lex_state = 8}, + [5801] = {.lex_state = 26, .external_lex_state = 8}, + [5802] = {.lex_state = 26, .external_lex_state = 8}, + [5803] = {.lex_state = 26, .external_lex_state = 8}, + [5804] = {.lex_state = 26, .external_lex_state = 8}, + [5805] = {.lex_state = 26, .external_lex_state = 8}, + [5806] = {.lex_state = 23, .external_lex_state = 8}, + [5807] = {.lex_state = 26, .external_lex_state = 8}, + [5808] = {.lex_state = 26, .external_lex_state = 8}, + [5809] = {.lex_state = 26, .external_lex_state = 8}, + [5810] = {.lex_state = 26, .external_lex_state = 8}, + [5811] = {.lex_state = 26, .external_lex_state = 8}, + [5812] = {.lex_state = 23, .external_lex_state = 8}, + [5813] = {.lex_state = 23, .external_lex_state = 8}, + [5814] = {.lex_state = 26, .external_lex_state = 8}, + [5815] = {.lex_state = 23, .external_lex_state = 9}, + [5816] = {.lex_state = 23, .external_lex_state = 9}, + [5817] = {.lex_state = 23, .external_lex_state = 9}, + [5818] = {.lex_state = 23, .external_lex_state = 8}, + [5819] = {.lex_state = 23, .external_lex_state = 8}, + [5820] = {.lex_state = 23, .external_lex_state = 8}, + [5821] = {.lex_state = 23, .external_lex_state = 8}, + [5822] = {.lex_state = 23, .external_lex_state = 9}, + [5823] = {.lex_state = 23, .external_lex_state = 8}, + [5824] = {.lex_state = 23, .external_lex_state = 9}, + [5825] = {.lex_state = 23, .external_lex_state = 9}, + [5826] = {.lex_state = 23, .external_lex_state = 8}, + [5827] = {.lex_state = 23, .external_lex_state = 8}, + [5828] = {.lex_state = 23, .external_lex_state = 8}, + [5829] = {.lex_state = 23, .external_lex_state = 8}, + [5830] = {.lex_state = 23, .external_lex_state = 8}, + [5831] = {.lex_state = 23, .external_lex_state = 8}, + [5832] = {.lex_state = 23, .external_lex_state = 8}, + [5833] = {.lex_state = 23, .external_lex_state = 8}, + [5834] = {.lex_state = 23, .external_lex_state = 8}, + [5835] = {.lex_state = 23, .external_lex_state = 8}, + [5836] = {.lex_state = 23, .external_lex_state = 8}, + [5837] = {.lex_state = 23, .external_lex_state = 8}, + [5838] = {.lex_state = 23, .external_lex_state = 9}, + [5839] = {.lex_state = 23, .external_lex_state = 9}, + [5840] = {.lex_state = 23, .external_lex_state = 9}, + [5841] = {.lex_state = 23, .external_lex_state = 8}, + [5842] = {.lex_state = 23, .external_lex_state = 8}, + [5843] = {.lex_state = 23, .external_lex_state = 8}, + [5844] = {.lex_state = 23, .external_lex_state = 8}, + [5845] = {.lex_state = 23, .external_lex_state = 8}, + [5846] = {.lex_state = 23, .external_lex_state = 8}, + [5847] = {.lex_state = 23, .external_lex_state = 8}, + [5848] = {.lex_state = 23, .external_lex_state = 9}, + [5849] = {.lex_state = 23, .external_lex_state = 8}, + [5850] = {.lex_state = 23, .external_lex_state = 9}, + [5851] = {.lex_state = 23, .external_lex_state = 9}, + [5852] = {.lex_state = 23, .external_lex_state = 8}, + [5853] = {.lex_state = 23, .external_lex_state = 9}, + [5854] = {.lex_state = 23, .external_lex_state = 9}, + [5855] = {.lex_state = 23, .external_lex_state = 8}, + [5856] = {.lex_state = 23, .external_lex_state = 8}, + [5857] = {.lex_state = 23, .external_lex_state = 9}, + [5858] = {.lex_state = 23, .external_lex_state = 9}, + [5859] = {.lex_state = 23, .external_lex_state = 8}, + [5860] = {.lex_state = 23, .external_lex_state = 9}, + [5861] = {.lex_state = 23, .external_lex_state = 9}, + [5862] = {.lex_state = 23, .external_lex_state = 9}, + [5863] = {.lex_state = 23, .external_lex_state = 8}, + [5864] = {.lex_state = 23, .external_lex_state = 8}, + [5865] = {.lex_state = 23, .external_lex_state = 8}, + [5866] = {.lex_state = 23, .external_lex_state = 8}, + [5867] = {.lex_state = 23, .external_lex_state = 8}, + [5868] = {.lex_state = 23, .external_lex_state = 8}, + [5869] = {.lex_state = 23, .external_lex_state = 8}, + [5870] = {.lex_state = 23, .external_lex_state = 8}, + [5871] = {.lex_state = 29, .external_lex_state = 8}, + [5872] = {.lex_state = 23, .external_lex_state = 8}, + [5873] = {.lex_state = 23, .external_lex_state = 8}, + [5874] = {.lex_state = 23, .external_lex_state = 9}, + [5875] = {.lex_state = 23, .external_lex_state = 9}, + [5876] = {.lex_state = 23, .external_lex_state = 9}, + [5877] = {.lex_state = 23, .external_lex_state = 8}, + [5878] = {.lex_state = 23, .external_lex_state = 8}, + [5879] = {.lex_state = 23, .external_lex_state = 8}, + [5880] = {.lex_state = 23, .external_lex_state = 8}, + [5881] = {.lex_state = 23, .external_lex_state = 8}, + [5882] = {.lex_state = 23, .external_lex_state = 8}, + [5883] = {.lex_state = 23, .external_lex_state = 8}, + [5884] = {.lex_state = 23, .external_lex_state = 8}, + [5885] = {.lex_state = 23, .external_lex_state = 8}, + [5886] = {.lex_state = 29, .external_lex_state = 8}, + [5887] = {.lex_state = 23, .external_lex_state = 8}, + [5888] = {.lex_state = 23, .external_lex_state = 8}, + [5889] = {.lex_state = 25, .external_lex_state = 9}, + [5890] = {.lex_state = 25, .external_lex_state = 9}, + [5891] = {.lex_state = 29, .external_lex_state = 8}, + [5892] = {.lex_state = 29, .external_lex_state = 8}, + [5893] = {.lex_state = 29, .external_lex_state = 8}, + [5894] = {.lex_state = 23, .external_lex_state = 8}, + [5895] = {.lex_state = 29, .external_lex_state = 8}, + [5896] = {.lex_state = 29, .external_lex_state = 8}, + [5897] = {.lex_state = 23, .external_lex_state = 8}, + [5898] = {.lex_state = 23, .external_lex_state = 8}, + [5899] = {.lex_state = 29, .external_lex_state = 8}, + [5900] = {.lex_state = 23, .external_lex_state = 8}, + [5901] = {.lex_state = 26, .external_lex_state = 8}, + [5902] = {.lex_state = 23, .external_lex_state = 8}, + [5903] = {.lex_state = 26, .external_lex_state = 8}, + [5904] = {.lex_state = 23, .external_lex_state = 8}, + [5905] = {.lex_state = 23, .external_lex_state = 8}, + [5906] = {.lex_state = 23, .external_lex_state = 8}, + [5907] = {.lex_state = 25, .external_lex_state = 8}, + [5908] = {.lex_state = 26, .external_lex_state = 8}, + [5909] = {.lex_state = 26, .external_lex_state = 8}, + [5910] = {.lex_state = 26, .external_lex_state = 8}, + [5911] = {.lex_state = 26, .external_lex_state = 8}, + [5912] = {.lex_state = 26, .external_lex_state = 8}, + [5913] = {.lex_state = 23, .external_lex_state = 8}, + [5914] = {.lex_state = 23, .external_lex_state = 8}, + [5915] = {.lex_state = 29, .external_lex_state = 8}, + [5916] = {.lex_state = 23, .external_lex_state = 8}, + [5917] = {.lex_state = 26, .external_lex_state = 8}, + [5918] = {.lex_state = 23, .external_lex_state = 8}, + [5919] = {.lex_state = 23, .external_lex_state = 8}, + [5920] = {.lex_state = 23, .external_lex_state = 8}, + [5921] = {.lex_state = 23, .external_lex_state = 8}, + [5922] = {.lex_state = 23, .external_lex_state = 8}, + [5923] = {.lex_state = 23, .external_lex_state = 8}, + [5924] = {.lex_state = 25, .external_lex_state = 8}, + [5925] = {.lex_state = 26, .external_lex_state = 8}, + [5926] = {.lex_state = 26, .external_lex_state = 8}, + [5927] = {.lex_state = 23, .external_lex_state = 8}, + [5928] = {.lex_state = 26, .external_lex_state = 8}, + [5929] = {.lex_state = 26, .external_lex_state = 8}, + [5930] = {.lex_state = 23, .external_lex_state = 8}, + [5931] = {.lex_state = 23, .external_lex_state = 8}, + [5932] = {.lex_state = 29, .external_lex_state = 8}, + [5933] = {.lex_state = 26, .external_lex_state = 8}, + [5934] = {.lex_state = 26, .external_lex_state = 8}, + [5935] = {.lex_state = 26, .external_lex_state = 8}, + [5936] = {.lex_state = 26, .external_lex_state = 8}, + [5937] = {.lex_state = 26, .external_lex_state = 8}, + [5938] = {.lex_state = 26, .external_lex_state = 8}, + [5939] = {.lex_state = 26, .external_lex_state = 8}, + [5940] = {.lex_state = 26, .external_lex_state = 8}, + [5941] = {.lex_state = 29, .external_lex_state = 8}, + [5942] = {.lex_state = 26, .external_lex_state = 8}, + [5943] = {.lex_state = 26, .external_lex_state = 8}, + [5944] = {.lex_state = 26, .external_lex_state = 8}, + [5945] = {.lex_state = 26, .external_lex_state = 8}, + [5946] = {.lex_state = 29, .external_lex_state = 8}, + [5947] = {.lex_state = 26, .external_lex_state = 8}, + [5948] = {.lex_state = 26, .external_lex_state = 8}, + [5949] = {.lex_state = 26, .external_lex_state = 8}, + [5950] = {.lex_state = 26, .external_lex_state = 8}, + [5951] = {.lex_state = 26, .external_lex_state = 8}, + [5952] = {.lex_state = 26, .external_lex_state = 8}, + [5953] = {.lex_state = 26, .external_lex_state = 8}, + [5954] = {.lex_state = 26, .external_lex_state = 8}, + [5955] = {.lex_state = 26, .external_lex_state = 8}, + [5956] = {.lex_state = 26, .external_lex_state = 8}, + [5957] = {.lex_state = 26, .external_lex_state = 8}, + [5958] = {.lex_state = 26, .external_lex_state = 8}, + [5959] = {.lex_state = 26, .external_lex_state = 8}, + [5960] = {.lex_state = 26, .external_lex_state = 8}, + [5961] = {.lex_state = 26, .external_lex_state = 8}, + [5962] = {.lex_state = 26, .external_lex_state = 8}, + [5963] = {.lex_state = 26, .external_lex_state = 8}, + [5964] = {.lex_state = 26, .external_lex_state = 8}, + [5965] = {.lex_state = 26, .external_lex_state = 8}, + [5966] = {.lex_state = 26, .external_lex_state = 8}, + [5967] = {.lex_state = 26, .external_lex_state = 8}, + [5968] = {.lex_state = 26, .external_lex_state = 8}, + [5969] = {.lex_state = 26, .external_lex_state = 8}, + [5970] = {.lex_state = 26, .external_lex_state = 8}, + [5971] = {.lex_state = 26, .external_lex_state = 8}, + [5972] = {.lex_state = 26, .external_lex_state = 8}, + [5973] = {.lex_state = 26, .external_lex_state = 8}, + [5974] = {.lex_state = 26, .external_lex_state = 8}, + [5975] = {.lex_state = 26, .external_lex_state = 8}, + [5976] = {.lex_state = 26, .external_lex_state = 8}, + [5977] = {.lex_state = 26, .external_lex_state = 8}, + [5978] = {.lex_state = 26, .external_lex_state = 8}, + [5979] = {.lex_state = 26, .external_lex_state = 8}, + [5980] = {.lex_state = 26, .external_lex_state = 8}, + [5981] = {.lex_state = 26, .external_lex_state = 8}, + [5982] = {.lex_state = 26, .external_lex_state = 8}, + [5983] = {.lex_state = 26, .external_lex_state = 8}, + [5984] = {.lex_state = 26, .external_lex_state = 8}, + [5985] = {.lex_state = 26, .external_lex_state = 8}, + [5986] = {.lex_state = 26, .external_lex_state = 8}, + [5987] = {.lex_state = 26, .external_lex_state = 8}, + [5988] = {.lex_state = 26, .external_lex_state = 8}, + [5989] = {.lex_state = 26, .external_lex_state = 8}, + [5990] = {.lex_state = 26, .external_lex_state = 8}, + [5991] = {.lex_state = 26, .external_lex_state = 8}, + [5992] = {.lex_state = 26, .external_lex_state = 8}, + [5993] = {.lex_state = 26, .external_lex_state = 8}, + [5994] = {.lex_state = 26, .external_lex_state = 8}, + [5995] = {.lex_state = 26, .external_lex_state = 8}, + [5996] = {.lex_state = 26, .external_lex_state = 8}, + [5997] = {.lex_state = 26, .external_lex_state = 8}, + [5998] = {.lex_state = 26, .external_lex_state = 8}, + [5999] = {.lex_state = 26, .external_lex_state = 8}, + [6000] = {.lex_state = 26, .external_lex_state = 8}, + [6001] = {.lex_state = 26, .external_lex_state = 8}, + [6002] = {.lex_state = 26, .external_lex_state = 8}, + [6003] = {.lex_state = 26, .external_lex_state = 8}, + [6004] = {.lex_state = 26, .external_lex_state = 8}, + [6005] = {.lex_state = 26, .external_lex_state = 8}, + [6006] = {.lex_state = 26, .external_lex_state = 8}, + [6007] = {.lex_state = 26, .external_lex_state = 8}, + [6008] = {.lex_state = 26, .external_lex_state = 8}, + [6009] = {.lex_state = 26, .external_lex_state = 8}, + [6010] = {.lex_state = 26, .external_lex_state = 8}, + [6011] = {.lex_state = 26, .external_lex_state = 8}, + [6012] = {.lex_state = 26, .external_lex_state = 8}, + [6013] = {.lex_state = 26, .external_lex_state = 8}, + [6014] = {.lex_state = 26, .external_lex_state = 8}, + [6015] = {.lex_state = 26, .external_lex_state = 8}, + [6016] = {.lex_state = 26, .external_lex_state = 8}, + [6017] = {.lex_state = 26, .external_lex_state = 8}, + [6018] = {.lex_state = 26, .external_lex_state = 8}, + [6019] = {.lex_state = 26, .external_lex_state = 8}, + [6020] = {.lex_state = 26, .external_lex_state = 8}, + [6021] = {.lex_state = 26, .external_lex_state = 8}, + [6022] = {.lex_state = 26, .external_lex_state = 8}, + [6023] = {.lex_state = 26, .external_lex_state = 8}, + [6024] = {.lex_state = 26, .external_lex_state = 8}, + [6025] = {.lex_state = 26, .external_lex_state = 8}, + [6026] = {.lex_state = 26, .external_lex_state = 8}, + [6027] = {.lex_state = 26, .external_lex_state = 8}, + [6028] = {.lex_state = 26, .external_lex_state = 8}, + [6029] = {.lex_state = 26, .external_lex_state = 8}, + [6030] = {.lex_state = 26, .external_lex_state = 8}, + [6031] = {.lex_state = 26, .external_lex_state = 8}, + [6032] = {.lex_state = 26, .external_lex_state = 8}, + [6033] = {.lex_state = 26, .external_lex_state = 8}, + [6034] = {.lex_state = 26, .external_lex_state = 8}, + [6035] = {.lex_state = 26, .external_lex_state = 8}, + [6036] = {.lex_state = 26, .external_lex_state = 8}, + [6037] = {.lex_state = 26, .external_lex_state = 8}, + [6038] = {.lex_state = 26, .external_lex_state = 8}, + [6039] = {.lex_state = 26, .external_lex_state = 8}, + [6040] = {.lex_state = 26, .external_lex_state = 8}, + [6041] = {.lex_state = 26, .external_lex_state = 8}, + [6042] = {.lex_state = 26, .external_lex_state = 8}, + [6043] = {.lex_state = 26, .external_lex_state = 8}, + [6044] = {.lex_state = 26, .external_lex_state = 8}, + [6045] = {.lex_state = 26, .external_lex_state = 8}, + [6046] = {.lex_state = 26, .external_lex_state = 8}, + [6047] = {.lex_state = 26, .external_lex_state = 8}, + [6048] = {.lex_state = 26, .external_lex_state = 8}, + [6049] = {.lex_state = 26, .external_lex_state = 8}, + [6050] = {.lex_state = 26, .external_lex_state = 8}, + [6051] = {.lex_state = 26, .external_lex_state = 8}, + [6052] = {.lex_state = 26, .external_lex_state = 8}, + [6053] = {.lex_state = 26, .external_lex_state = 8}, + [6054] = {.lex_state = 26, .external_lex_state = 8}, + [6055] = {.lex_state = 26, .external_lex_state = 8}, + [6056] = {.lex_state = 26, .external_lex_state = 8}, + [6057] = {.lex_state = 26, .external_lex_state = 8}, + [6058] = {.lex_state = 26, .external_lex_state = 8}, + [6059] = {.lex_state = 26, .external_lex_state = 8}, + [6060] = {.lex_state = 26, .external_lex_state = 8}, + [6061] = {.lex_state = 26, .external_lex_state = 8}, + [6062] = {.lex_state = 26, .external_lex_state = 8}, + [6063] = {.lex_state = 26, .external_lex_state = 8}, + [6064] = {.lex_state = 26, .external_lex_state = 8}, + [6065] = {.lex_state = 26, .external_lex_state = 8}, + [6066] = {.lex_state = 26, .external_lex_state = 8}, + [6067] = {.lex_state = 26, .external_lex_state = 8}, + [6068] = {.lex_state = 26, .external_lex_state = 8}, + [6069] = {.lex_state = 26, .external_lex_state = 8}, + [6070] = {.lex_state = 26, .external_lex_state = 8}, + [6071] = {.lex_state = 26, .external_lex_state = 8}, + [6072] = {.lex_state = 26, .external_lex_state = 8}, + [6073] = {.lex_state = 26, .external_lex_state = 8}, + [6074] = {.lex_state = 26, .external_lex_state = 8}, + [6075] = {.lex_state = 26, .external_lex_state = 8}, + [6076] = {.lex_state = 26, .external_lex_state = 8}, + [6077] = {.lex_state = 26, .external_lex_state = 8}, + [6078] = {.lex_state = 20, .external_lex_state = 8}, + [6079] = {.lex_state = 26, .external_lex_state = 8}, + [6080] = {.lex_state = 26, .external_lex_state = 8}, + [6081] = {.lex_state = 26, .external_lex_state = 8}, + [6082] = {.lex_state = 26, .external_lex_state = 8}, + [6083] = {.lex_state = 26, .external_lex_state = 8}, + [6084] = {.lex_state = 26, .external_lex_state = 8}, + [6085] = {.lex_state = 26, .external_lex_state = 8}, + [6086] = {.lex_state = 26, .external_lex_state = 8}, + [6087] = {.lex_state = 26, .external_lex_state = 8}, + [6088] = {.lex_state = 26, .external_lex_state = 8}, + [6089] = {.lex_state = 20, .external_lex_state = 8}, + [6090] = {.lex_state = 26, .external_lex_state = 8}, + [6091] = {.lex_state = 26, .external_lex_state = 8}, + [6092] = {.lex_state = 26, .external_lex_state = 8}, + [6093] = {.lex_state = 26, .external_lex_state = 8}, + [6094] = {.lex_state = 26, .external_lex_state = 8}, + [6095] = {.lex_state = 26, .external_lex_state = 8}, + [6096] = {.lex_state = 26, .external_lex_state = 8}, + [6097] = {.lex_state = 26, .external_lex_state = 8}, + [6098] = {.lex_state = 26, .external_lex_state = 8}, + [6099] = {.lex_state = 26, .external_lex_state = 8}, + [6100] = {.lex_state = 26, .external_lex_state = 8}, + [6101] = {.lex_state = 26, .external_lex_state = 8}, + [6102] = {.lex_state = 26, .external_lex_state = 8}, + [6103] = {.lex_state = 26, .external_lex_state = 8}, + [6104] = {.lex_state = 26, .external_lex_state = 8}, + [6105] = {.lex_state = 26, .external_lex_state = 8}, + [6106] = {.lex_state = 26, .external_lex_state = 8}, + [6107] = {.lex_state = 26, .external_lex_state = 8}, + [6108] = {.lex_state = 26, .external_lex_state = 8}, + [6109] = {.lex_state = 26, .external_lex_state = 8}, + [6110] = {.lex_state = 26, .external_lex_state = 8}, + [6111] = {.lex_state = 26, .external_lex_state = 8}, + [6112] = {.lex_state = 26, .external_lex_state = 8}, + [6113] = {.lex_state = 26, .external_lex_state = 8}, + [6114] = {.lex_state = 26, .external_lex_state = 8}, + [6115] = {.lex_state = 26, .external_lex_state = 8}, + [6116] = {.lex_state = 26, .external_lex_state = 8}, + [6117] = {.lex_state = 26, .external_lex_state = 8}, + [6118] = {.lex_state = 26, .external_lex_state = 8}, + [6119] = {.lex_state = 26, .external_lex_state = 8}, + [6120] = {.lex_state = 26, .external_lex_state = 8}, + [6121] = {.lex_state = 26, .external_lex_state = 8}, + [6122] = {.lex_state = 26, .external_lex_state = 8}, + [6123] = {.lex_state = 26, .external_lex_state = 8}, + [6124] = {.lex_state = 26, .external_lex_state = 8}, + [6125] = {.lex_state = 26, .external_lex_state = 8}, + [6126] = {.lex_state = 26, .external_lex_state = 8}, + [6127] = {.lex_state = 26, .external_lex_state = 8}, + [6128] = {.lex_state = 26, .external_lex_state = 8}, + [6129] = {.lex_state = 26, .external_lex_state = 8}, + [6130] = {.lex_state = 26, .external_lex_state = 8}, + [6131] = {.lex_state = 26, .external_lex_state = 8}, + [6132] = {.lex_state = 26, .external_lex_state = 8}, + [6133] = {.lex_state = 26, .external_lex_state = 8}, + [6134] = {.lex_state = 26, .external_lex_state = 8}, + [6135] = {.lex_state = 26, .external_lex_state = 8}, + [6136] = {.lex_state = 26, .external_lex_state = 8}, + [6137] = {.lex_state = 26, .external_lex_state = 8}, + [6138] = {.lex_state = 26, .external_lex_state = 8}, + [6139] = {.lex_state = 26, .external_lex_state = 8}, + [6140] = {.lex_state = 26, .external_lex_state = 8}, + [6141] = {.lex_state = 26, .external_lex_state = 8}, + [6142] = {.lex_state = 26, .external_lex_state = 8}, + [6143] = {.lex_state = 26, .external_lex_state = 8}, + [6144] = {.lex_state = 26, .external_lex_state = 8}, + [6145] = {.lex_state = 26, .external_lex_state = 8}, + [6146] = {.lex_state = 26, .external_lex_state = 8}, + [6147] = {.lex_state = 26, .external_lex_state = 8}, + [6148] = {.lex_state = 26, .external_lex_state = 8}, + [6149] = {.lex_state = 26, .external_lex_state = 8}, + [6150] = {.lex_state = 26, .external_lex_state = 8}, + [6151] = {.lex_state = 29, .external_lex_state = 8}, + [6152] = {.lex_state = 26, .external_lex_state = 8}, + [6153] = {.lex_state = 29, .external_lex_state = 8}, + [6154] = {.lex_state = 26, .external_lex_state = 8}, + [6155] = {.lex_state = 26, .external_lex_state = 8}, + [6156] = {.lex_state = 26, .external_lex_state = 8}, + [6157] = {.lex_state = 26, .external_lex_state = 8}, + [6158] = {.lex_state = 26, .external_lex_state = 8}, + [6159] = {.lex_state = 26, .external_lex_state = 8}, + [6160] = {.lex_state = 26, .external_lex_state = 8}, + [6161] = {.lex_state = 26, .external_lex_state = 8}, + [6162] = {.lex_state = 26, .external_lex_state = 8}, + [6163] = {.lex_state = 26, .external_lex_state = 8}, + [6164] = {.lex_state = 26, .external_lex_state = 8}, + [6165] = {.lex_state = 26, .external_lex_state = 8}, + [6166] = {.lex_state = 26, .external_lex_state = 8}, + [6167] = {.lex_state = 26, .external_lex_state = 8}, + [6168] = {.lex_state = 26, .external_lex_state = 8}, + [6169] = {.lex_state = 26, .external_lex_state = 8}, + [6170] = {.lex_state = 26, .external_lex_state = 8}, + [6171] = {.lex_state = 26, .external_lex_state = 8}, + [6172] = {.lex_state = 26, .external_lex_state = 8}, + [6173] = {.lex_state = 26, .external_lex_state = 8}, + [6174] = {.lex_state = 26, .external_lex_state = 8}, + [6175] = {.lex_state = 26, .external_lex_state = 8}, + [6176] = {.lex_state = 26, .external_lex_state = 8}, + [6177] = {.lex_state = 26, .external_lex_state = 8}, + [6178] = {.lex_state = 26, .external_lex_state = 8}, + [6179] = {.lex_state = 26, .external_lex_state = 8}, + [6180] = {.lex_state = 26, .external_lex_state = 8}, + [6181] = {.lex_state = 26, .external_lex_state = 8}, + [6182] = {.lex_state = 26, .external_lex_state = 8}, + [6183] = {.lex_state = 26, .external_lex_state = 8}, + [6184] = {.lex_state = 26, .external_lex_state = 8}, + [6185] = {.lex_state = 26, .external_lex_state = 8}, + [6186] = {.lex_state = 26, .external_lex_state = 8}, + [6187] = {.lex_state = 26, .external_lex_state = 8}, + [6188] = {.lex_state = 26, .external_lex_state = 8}, + [6189] = {.lex_state = 26, .external_lex_state = 8}, + [6190] = {.lex_state = 26, .external_lex_state = 8}, + [6191] = {.lex_state = 26, .external_lex_state = 8}, + [6192] = {.lex_state = 26, .external_lex_state = 8}, + [6193] = {.lex_state = 26, .external_lex_state = 8}, + [6194] = {.lex_state = 26, .external_lex_state = 8}, + [6195] = {.lex_state = 26, .external_lex_state = 8}, + [6196] = {.lex_state = 26, .external_lex_state = 8}, + [6197] = {.lex_state = 26, .external_lex_state = 8}, + [6198] = {.lex_state = 26, .external_lex_state = 8}, + [6199] = {.lex_state = 26, .external_lex_state = 8}, + [6200] = {.lex_state = 26, .external_lex_state = 8}, + [6201] = {.lex_state = 26, .external_lex_state = 8}, + [6202] = {.lex_state = 29, .external_lex_state = 8}, + [6203] = {.lex_state = 26, .external_lex_state = 8}, + [6204] = {.lex_state = 26, .external_lex_state = 8}, + [6205] = {.lex_state = 26, .external_lex_state = 8}, + [6206] = {.lex_state = 26, .external_lex_state = 8}, + [6207] = {.lex_state = 26, .external_lex_state = 8}, + [6208] = {.lex_state = 26, .external_lex_state = 8}, + [6209] = {.lex_state = 26, .external_lex_state = 8}, + [6210] = {.lex_state = 26, .external_lex_state = 8}, + [6211] = {.lex_state = 26, .external_lex_state = 8}, + [6212] = {.lex_state = 26, .external_lex_state = 8}, + [6213] = {.lex_state = 26, .external_lex_state = 8}, + [6214] = {.lex_state = 26, .external_lex_state = 8}, + [6215] = {.lex_state = 26, .external_lex_state = 8}, + [6216] = {.lex_state = 26, .external_lex_state = 8}, + [6217] = {.lex_state = 26, .external_lex_state = 8}, + [6218] = {.lex_state = 29, .external_lex_state = 8}, + [6219] = {.lex_state = 26, .external_lex_state = 8}, + [6220] = {.lex_state = 26, .external_lex_state = 8}, + [6221] = {.lex_state = 26, .external_lex_state = 8}, + [6222] = {.lex_state = 26, .external_lex_state = 8}, + [6223] = {.lex_state = 26, .external_lex_state = 8}, + [6224] = {.lex_state = 26, .external_lex_state = 8}, + [6225] = {.lex_state = 26, .external_lex_state = 8}, + [6226] = {.lex_state = 26, .external_lex_state = 8}, + [6227] = {.lex_state = 26, .external_lex_state = 8}, + [6228] = {.lex_state = 26, .external_lex_state = 8}, + [6229] = {.lex_state = 26, .external_lex_state = 8}, + [6230] = {.lex_state = 26, .external_lex_state = 8}, + [6231] = {.lex_state = 26, .external_lex_state = 8}, + [6232] = {.lex_state = 26, .external_lex_state = 8}, + [6233] = {.lex_state = 26, .external_lex_state = 8}, + [6234] = {.lex_state = 26, .external_lex_state = 8}, + [6235] = {.lex_state = 26, .external_lex_state = 8}, + [6236] = {.lex_state = 26, .external_lex_state = 8}, + [6237] = {.lex_state = 26, .external_lex_state = 8}, + [6238] = {.lex_state = 26, .external_lex_state = 8}, + [6239] = {.lex_state = 26, .external_lex_state = 8}, + [6240] = {.lex_state = 26, .external_lex_state = 8}, + [6241] = {.lex_state = 26, .external_lex_state = 8}, + [6242] = {.lex_state = 26, .external_lex_state = 8}, + [6243] = {.lex_state = 26, .external_lex_state = 8}, + [6244] = {.lex_state = 26, .external_lex_state = 8}, + [6245] = {.lex_state = 26, .external_lex_state = 8}, + [6246] = {.lex_state = 26, .external_lex_state = 8}, + [6247] = {.lex_state = 26, .external_lex_state = 8}, + [6248] = {.lex_state = 26, .external_lex_state = 8}, + [6249] = {.lex_state = 26, .external_lex_state = 8}, + [6250] = {.lex_state = 26, .external_lex_state = 8}, + [6251] = {.lex_state = 26, .external_lex_state = 8}, + [6252] = {.lex_state = 26, .external_lex_state = 8}, + [6253] = {.lex_state = 26, .external_lex_state = 8}, + [6254] = {.lex_state = 26, .external_lex_state = 8}, + [6255] = {.lex_state = 26, .external_lex_state = 8}, + [6256] = {.lex_state = 26, .external_lex_state = 8}, + [6257] = {.lex_state = 26, .external_lex_state = 8}, + [6258] = {.lex_state = 26, .external_lex_state = 8}, + [6259] = {.lex_state = 26, .external_lex_state = 8}, + [6260] = {.lex_state = 26, .external_lex_state = 8}, + [6261] = {.lex_state = 26, .external_lex_state = 8}, + [6262] = {.lex_state = 26, .external_lex_state = 8}, + [6263] = {.lex_state = 26, .external_lex_state = 8}, + [6264] = {.lex_state = 26, .external_lex_state = 8}, + [6265] = {.lex_state = 26, .external_lex_state = 8}, + [6266] = {.lex_state = 26, .external_lex_state = 8}, + [6267] = {.lex_state = 26, .external_lex_state = 8}, + [6268] = {.lex_state = 26, .external_lex_state = 8}, + [6269] = {.lex_state = 29, .external_lex_state = 8}, + [6270] = {.lex_state = 26, .external_lex_state = 8}, + [6271] = {.lex_state = 26, .external_lex_state = 8}, + [6272] = {.lex_state = 26, .external_lex_state = 8}, + [6273] = {.lex_state = 26, .external_lex_state = 8}, + [6274] = {.lex_state = 26, .external_lex_state = 8}, + [6275] = {.lex_state = 26, .external_lex_state = 8}, + [6276] = {.lex_state = 26, .external_lex_state = 8}, + [6277] = {.lex_state = 26, .external_lex_state = 8}, + [6278] = {.lex_state = 26, .external_lex_state = 8}, + [6279] = {.lex_state = 26, .external_lex_state = 8}, + [6280] = {.lex_state = 26, .external_lex_state = 8}, + [6281] = {.lex_state = 26, .external_lex_state = 8}, + [6282] = {.lex_state = 26, .external_lex_state = 8}, + [6283] = {.lex_state = 29, .external_lex_state = 8}, + [6284] = {.lex_state = 26, .external_lex_state = 8}, + [6285] = {.lex_state = 26, .external_lex_state = 8}, + [6286] = {.lex_state = 26, .external_lex_state = 8}, + [6287] = {.lex_state = 26, .external_lex_state = 8}, + [6288] = {.lex_state = 26, .external_lex_state = 8}, + [6289] = {.lex_state = 26, .external_lex_state = 8}, + [6290] = {.lex_state = 26, .external_lex_state = 8}, + [6291] = {.lex_state = 26, .external_lex_state = 8}, + [6292] = {.lex_state = 26, .external_lex_state = 8}, + [6293] = {.lex_state = 26, .external_lex_state = 8}, + [6294] = {.lex_state = 26, .external_lex_state = 8}, + [6295] = {.lex_state = 26, .external_lex_state = 8}, + [6296] = {.lex_state = 26, .external_lex_state = 8}, + [6297] = {.lex_state = 26, .external_lex_state = 8}, + [6298] = {.lex_state = 26, .external_lex_state = 8}, + [6299] = {.lex_state = 26, .external_lex_state = 8}, + [6300] = {.lex_state = 26, .external_lex_state = 8}, + [6301] = {.lex_state = 26, .external_lex_state = 8}, + [6302] = {.lex_state = 26, .external_lex_state = 8}, + [6303] = {.lex_state = 26, .external_lex_state = 8}, + [6304] = {.lex_state = 26, .external_lex_state = 8}, + [6305] = {.lex_state = 26, .external_lex_state = 8}, + [6306] = {.lex_state = 26, .external_lex_state = 8}, + [6307] = {.lex_state = 26, .external_lex_state = 8}, + [6308] = {.lex_state = 26, .external_lex_state = 8}, + [6309] = {.lex_state = 26, .external_lex_state = 8}, + [6310] = {.lex_state = 26, .external_lex_state = 8}, + [6311] = {.lex_state = 26, .external_lex_state = 8}, + [6312] = {.lex_state = 26, .external_lex_state = 8}, + [6313] = {.lex_state = 26, .external_lex_state = 8}, + [6314] = {.lex_state = 26, .external_lex_state = 8}, + [6315] = {.lex_state = 26, .external_lex_state = 8}, + [6316] = {.lex_state = 26, .external_lex_state = 8}, + [6317] = {.lex_state = 26, .external_lex_state = 8}, + [6318] = {.lex_state = 26, .external_lex_state = 8}, + [6319] = {.lex_state = 26, .external_lex_state = 8}, + [6320] = {.lex_state = 26, .external_lex_state = 8}, + [6321] = {.lex_state = 26, .external_lex_state = 8}, + [6322] = {.lex_state = 26, .external_lex_state = 8}, + [6323] = {.lex_state = 26, .external_lex_state = 8}, + [6324] = {.lex_state = 26, .external_lex_state = 8}, + [6325] = {.lex_state = 26, .external_lex_state = 8}, + [6326] = {.lex_state = 26, .external_lex_state = 8}, + [6327] = {.lex_state = 26, .external_lex_state = 8}, + [6328] = {.lex_state = 26, .external_lex_state = 8}, + [6329] = {.lex_state = 26, .external_lex_state = 8}, + [6330] = {.lex_state = 26, .external_lex_state = 8}, + [6331] = {.lex_state = 26, .external_lex_state = 8}, + [6332] = {.lex_state = 26, .external_lex_state = 8}, + [6333] = {.lex_state = 26, .external_lex_state = 8}, + [6334] = {.lex_state = 26, .external_lex_state = 8}, + [6335] = {.lex_state = 26, .external_lex_state = 8}, + [6336] = {.lex_state = 26, .external_lex_state = 8}, + [6337] = {.lex_state = 26, .external_lex_state = 8}, + [6338] = {.lex_state = 26, .external_lex_state = 8}, + [6339] = {.lex_state = 26, .external_lex_state = 8}, + [6340] = {.lex_state = 26, .external_lex_state = 8}, + [6341] = {.lex_state = 26, .external_lex_state = 8}, + [6342] = {.lex_state = 26, .external_lex_state = 8}, + [6343] = {.lex_state = 26, .external_lex_state = 8}, + [6344] = {.lex_state = 26, .external_lex_state = 8}, + [6345] = {.lex_state = 29, .external_lex_state = 8}, + [6346] = {.lex_state = 29, .external_lex_state = 8}, + [6347] = {.lex_state = 26, .external_lex_state = 8}, + [6348] = {.lex_state = 26, .external_lex_state = 8}, + [6349] = {.lex_state = 26, .external_lex_state = 8}, + [6350] = {.lex_state = 26, .external_lex_state = 8}, + [6351] = {.lex_state = 26, .external_lex_state = 8}, + [6352] = {.lex_state = 26, .external_lex_state = 8}, + [6353] = {.lex_state = 26, .external_lex_state = 8}, + [6354] = {.lex_state = 29, .external_lex_state = 8}, + [6355] = {.lex_state = 26, .external_lex_state = 8}, + [6356] = {.lex_state = 26, .external_lex_state = 8}, + [6357] = {.lex_state = 26, .external_lex_state = 8}, + [6358] = {.lex_state = 26, .external_lex_state = 8}, + [6359] = {.lex_state = 26, .external_lex_state = 8}, + [6360] = {.lex_state = 26, .external_lex_state = 8}, + [6361] = {.lex_state = 26, .external_lex_state = 8}, + [6362] = {.lex_state = 26, .external_lex_state = 8}, + [6363] = {.lex_state = 26, .external_lex_state = 8}, + [6364] = {.lex_state = 26, .external_lex_state = 8}, + [6365] = {.lex_state = 26, .external_lex_state = 8}, + [6366] = {.lex_state = 26, .external_lex_state = 8}, + [6367] = {.lex_state = 26, .external_lex_state = 8}, + [6368] = {.lex_state = 26, .external_lex_state = 8}, + [6369] = {.lex_state = 26, .external_lex_state = 8}, + [6370] = {.lex_state = 26, .external_lex_state = 8}, + [6371] = {.lex_state = 26, .external_lex_state = 8}, + [6372] = {.lex_state = 26, .external_lex_state = 8}, + [6373] = {.lex_state = 26, .external_lex_state = 8}, + [6374] = {.lex_state = 26, .external_lex_state = 8}, + [6375] = {.lex_state = 26, .external_lex_state = 8}, + [6376] = {.lex_state = 26, .external_lex_state = 8}, + [6377] = {.lex_state = 26, .external_lex_state = 8}, + [6378] = {.lex_state = 26, .external_lex_state = 8}, + [6379] = {.lex_state = 26, .external_lex_state = 8}, + [6380] = {.lex_state = 26, .external_lex_state = 8}, + [6381] = {.lex_state = 26, .external_lex_state = 8}, + [6382] = {.lex_state = 26, .external_lex_state = 8}, + [6383] = {.lex_state = 26, .external_lex_state = 8}, + [6384] = {.lex_state = 26, .external_lex_state = 8}, + [6385] = {.lex_state = 26, .external_lex_state = 8}, + [6386] = {.lex_state = 26, .external_lex_state = 8}, + [6387] = {.lex_state = 26, .external_lex_state = 8}, + [6388] = {.lex_state = 26, .external_lex_state = 8}, + [6389] = {.lex_state = 26, .external_lex_state = 8}, + [6390] = {.lex_state = 26, .external_lex_state = 8}, + [6391] = {.lex_state = 26, .external_lex_state = 8}, + [6392] = {.lex_state = 26, .external_lex_state = 8}, + [6393] = {.lex_state = 26, .external_lex_state = 8}, + [6394] = {.lex_state = 26, .external_lex_state = 8}, + [6395] = {.lex_state = 26, .external_lex_state = 8}, + [6396] = {.lex_state = 26, .external_lex_state = 8}, + [6397] = {.lex_state = 26, .external_lex_state = 8}, + [6398] = {.lex_state = 26, .external_lex_state = 8}, + [6399] = {.lex_state = 26, .external_lex_state = 8}, + [6400] = {.lex_state = 26, .external_lex_state = 8}, + [6401] = {.lex_state = 26, .external_lex_state = 8}, + [6402] = {.lex_state = 26, .external_lex_state = 8}, + [6403] = {.lex_state = 26, .external_lex_state = 8}, + [6404] = {.lex_state = 26, .external_lex_state = 8}, + [6405] = {.lex_state = 26, .external_lex_state = 8}, + [6406] = {.lex_state = 26, .external_lex_state = 8}, + [6407] = {.lex_state = 26, .external_lex_state = 8}, + [6408] = {.lex_state = 26, .external_lex_state = 8}, + [6409] = {.lex_state = 26, .external_lex_state = 8}, + [6410] = {.lex_state = 26, .external_lex_state = 8}, + [6411] = {.lex_state = 26, .external_lex_state = 8}, + [6412] = {.lex_state = 26, .external_lex_state = 8}, + [6413] = {.lex_state = 26, .external_lex_state = 8}, + [6414] = {.lex_state = 26, .external_lex_state = 8}, + [6415] = {.lex_state = 26, .external_lex_state = 8}, + [6416] = {.lex_state = 26, .external_lex_state = 8}, + [6417] = {.lex_state = 26, .external_lex_state = 8}, + [6418] = {.lex_state = 26, .external_lex_state = 8}, + [6419] = {.lex_state = 26, .external_lex_state = 8}, + [6420] = {.lex_state = 26, .external_lex_state = 8}, + [6421] = {.lex_state = 26, .external_lex_state = 8}, + [6422] = {.lex_state = 26, .external_lex_state = 8}, + [6423] = {.lex_state = 26, .external_lex_state = 8}, + [6424] = {.lex_state = 26, .external_lex_state = 8}, + [6425] = {.lex_state = 26, .external_lex_state = 8}, + [6426] = {.lex_state = 26, .external_lex_state = 8}, + [6427] = {.lex_state = 26, .external_lex_state = 8}, + [6428] = {.lex_state = 26, .external_lex_state = 8}, + [6429] = {.lex_state = 26, .external_lex_state = 8}, + [6430] = {.lex_state = 26, .external_lex_state = 8}, + [6431] = {.lex_state = 26, .external_lex_state = 8}, + [6432] = {.lex_state = 26, .external_lex_state = 8}, + [6433] = {.lex_state = 26, .external_lex_state = 8}, + [6434] = {.lex_state = 26, .external_lex_state = 8}, + [6435] = {.lex_state = 26, .external_lex_state = 8}, + [6436] = {.lex_state = 26, .external_lex_state = 8}, + [6437] = {.lex_state = 26, .external_lex_state = 8}, + [6438] = {.lex_state = 26, .external_lex_state = 8}, + [6439] = {.lex_state = 26, .external_lex_state = 8}, + [6440] = {.lex_state = 26, .external_lex_state = 8}, + [6441] = {.lex_state = 26, .external_lex_state = 8}, + [6442] = {.lex_state = 26, .external_lex_state = 8}, + [6443] = {.lex_state = 26, .external_lex_state = 8}, + [6444] = {.lex_state = 26, .external_lex_state = 8}, + [6445] = {.lex_state = 26, .external_lex_state = 8}, + [6446] = {.lex_state = 26, .external_lex_state = 8}, + [6447] = {.lex_state = 26, .external_lex_state = 8}, + [6448] = {.lex_state = 26, .external_lex_state = 8}, + [6449] = {.lex_state = 26, .external_lex_state = 8}, + [6450] = {.lex_state = 26, .external_lex_state = 8}, + [6451] = {.lex_state = 26, .external_lex_state = 8}, + [6452] = {.lex_state = 26, .external_lex_state = 8}, + [6453] = {.lex_state = 26, .external_lex_state = 8}, + [6454] = {.lex_state = 26, .external_lex_state = 8}, + [6455] = {.lex_state = 26, .external_lex_state = 8}, + [6456] = {.lex_state = 26, .external_lex_state = 8}, + [6457] = {.lex_state = 26, .external_lex_state = 8}, + [6458] = {.lex_state = 26, .external_lex_state = 8}, + [6459] = {.lex_state = 26, .external_lex_state = 8}, + [6460] = {.lex_state = 26, .external_lex_state = 8}, + [6461] = {.lex_state = 26, .external_lex_state = 8}, + [6462] = {.lex_state = 26, .external_lex_state = 8}, + [6463] = {.lex_state = 26, .external_lex_state = 8}, + [6464] = {.lex_state = 26, .external_lex_state = 8}, + [6465] = {.lex_state = 26, .external_lex_state = 8}, + [6466] = {.lex_state = 26, .external_lex_state = 8}, + [6467] = {.lex_state = 26, .external_lex_state = 8}, + [6468] = {.lex_state = 26, .external_lex_state = 8}, + [6469] = {.lex_state = 26, .external_lex_state = 8}, + [6470] = {.lex_state = 26, .external_lex_state = 8}, + [6471] = {.lex_state = 26, .external_lex_state = 8}, + [6472] = {.lex_state = 26, .external_lex_state = 8}, + [6473] = {.lex_state = 26, .external_lex_state = 8}, + [6474] = {.lex_state = 26, .external_lex_state = 8}, + [6475] = {.lex_state = 26, .external_lex_state = 8}, + [6476] = {.lex_state = 26, .external_lex_state = 8}, + [6477] = {.lex_state = 26, .external_lex_state = 8}, + [6478] = {.lex_state = 26, .external_lex_state = 8}, + [6479] = {.lex_state = 26, .external_lex_state = 8}, + [6480] = {.lex_state = 26, .external_lex_state = 8}, + [6481] = {.lex_state = 26, .external_lex_state = 8}, + [6482] = {.lex_state = 26, .external_lex_state = 8}, + [6483] = {.lex_state = 26, .external_lex_state = 8}, + [6484] = {.lex_state = 26, .external_lex_state = 8}, + [6485] = {.lex_state = 26, .external_lex_state = 8}, + [6486] = {.lex_state = 26, .external_lex_state = 8}, + [6487] = {.lex_state = 26, .external_lex_state = 8}, + [6488] = {.lex_state = 26, .external_lex_state = 8}, + [6489] = {.lex_state = 26, .external_lex_state = 8}, + [6490] = {.lex_state = 26, .external_lex_state = 8}, + [6491] = {.lex_state = 26, .external_lex_state = 8}, + [6492] = {.lex_state = 26, .external_lex_state = 8}, + [6493] = {.lex_state = 26, .external_lex_state = 8}, + [6494] = {.lex_state = 26, .external_lex_state = 8}, + [6495] = {.lex_state = 26, .external_lex_state = 8}, + [6496] = {.lex_state = 26, .external_lex_state = 8}, + [6497] = {.lex_state = 26, .external_lex_state = 8}, + [6498] = {.lex_state = 26, .external_lex_state = 8}, + [6499] = {.lex_state = 26, .external_lex_state = 8}, + [6500] = {.lex_state = 26, .external_lex_state = 8}, + [6501] = {.lex_state = 26, .external_lex_state = 8}, + [6502] = {.lex_state = 26, .external_lex_state = 8}, + [6503] = {.lex_state = 26, .external_lex_state = 8}, + [6504] = {.lex_state = 26, .external_lex_state = 8}, + [6505] = {.lex_state = 26, .external_lex_state = 8}, + [6506] = {.lex_state = 26, .external_lex_state = 8}, + [6507] = {.lex_state = 26, .external_lex_state = 8}, + [6508] = {.lex_state = 26, .external_lex_state = 8}, + [6509] = {.lex_state = 26, .external_lex_state = 8}, + [6510] = {.lex_state = 26, .external_lex_state = 8}, + [6511] = {.lex_state = 26, .external_lex_state = 8}, + [6512] = {.lex_state = 26, .external_lex_state = 8}, + [6513] = {.lex_state = 26, .external_lex_state = 8}, + [6514] = {.lex_state = 26, .external_lex_state = 8}, + [6515] = {.lex_state = 26, .external_lex_state = 8}, + [6516] = {.lex_state = 26, .external_lex_state = 8}, + [6517] = {.lex_state = 26, .external_lex_state = 8}, + [6518] = {.lex_state = 26, .external_lex_state = 8}, + [6519] = {.lex_state = 26, .external_lex_state = 8}, + [6520] = {.lex_state = 26, .external_lex_state = 8}, + [6521] = {.lex_state = 26, .external_lex_state = 8}, + [6522] = {.lex_state = 26, .external_lex_state = 8}, + [6523] = {.lex_state = 26, .external_lex_state = 8}, + [6524] = {.lex_state = 26, .external_lex_state = 8}, + [6525] = {.lex_state = 26, .external_lex_state = 8}, + [6526] = {.lex_state = 26, .external_lex_state = 8}, + [6527] = {.lex_state = 26, .external_lex_state = 8}, + [6528] = {.lex_state = 26, .external_lex_state = 8}, + [6529] = {.lex_state = 26, .external_lex_state = 8}, + [6530] = {.lex_state = 26, .external_lex_state = 8}, + [6531] = {.lex_state = 26, .external_lex_state = 8}, + [6532] = {.lex_state = 26, .external_lex_state = 8}, + [6533] = {.lex_state = 26, .external_lex_state = 8}, + [6534] = {.lex_state = 26, .external_lex_state = 8}, + [6535] = {.lex_state = 26, .external_lex_state = 8}, + [6536] = {.lex_state = 26, .external_lex_state = 8}, + [6537] = {.lex_state = 26, .external_lex_state = 8}, + [6538] = {.lex_state = 26, .external_lex_state = 8}, + [6539] = {.lex_state = 26, .external_lex_state = 8}, + [6540] = {.lex_state = 26, .external_lex_state = 8}, + [6541] = {.lex_state = 26, .external_lex_state = 8}, + [6542] = {.lex_state = 26, .external_lex_state = 8}, + [6543] = {.lex_state = 26, .external_lex_state = 8}, + [6544] = {.lex_state = 26, .external_lex_state = 8}, + [6545] = {.lex_state = 26, .external_lex_state = 8}, + [6546] = {.lex_state = 26, .external_lex_state = 8}, + [6547] = {.lex_state = 26, .external_lex_state = 8}, + [6548] = {.lex_state = 26, .external_lex_state = 8}, + [6549] = {.lex_state = 26, .external_lex_state = 8}, + [6550] = {.lex_state = 26, .external_lex_state = 8}, + [6551] = {.lex_state = 26, .external_lex_state = 8}, + [6552] = {.lex_state = 26, .external_lex_state = 8}, + [6553] = {.lex_state = 26, .external_lex_state = 8}, + [6554] = {.lex_state = 26, .external_lex_state = 8}, + [6555] = {.lex_state = 26, .external_lex_state = 8}, + [6556] = {.lex_state = 26, .external_lex_state = 8}, + [6557] = {.lex_state = 26, .external_lex_state = 8}, + [6558] = {.lex_state = 26, .external_lex_state = 8}, + [6559] = {.lex_state = 26, .external_lex_state = 8}, + [6560] = {.lex_state = 26, .external_lex_state = 8}, + [6561] = {.lex_state = 26, .external_lex_state = 8}, + [6562] = {.lex_state = 26, .external_lex_state = 8}, + [6563] = {.lex_state = 26, .external_lex_state = 8}, + [6564] = {.lex_state = 26, .external_lex_state = 8}, + [6565] = {.lex_state = 26, .external_lex_state = 8}, + [6566] = {.lex_state = 26, .external_lex_state = 8}, + [6567] = {.lex_state = 26, .external_lex_state = 8}, + [6568] = {.lex_state = 26, .external_lex_state = 8}, + [6569] = {.lex_state = 26, .external_lex_state = 8}, + [6570] = {.lex_state = 26, .external_lex_state = 8}, + [6571] = {.lex_state = 26, .external_lex_state = 8}, + [6572] = {.lex_state = 26, .external_lex_state = 8}, + [6573] = {.lex_state = 26, .external_lex_state = 8}, + [6574] = {.lex_state = 26, .external_lex_state = 8}, + [6575] = {.lex_state = 26, .external_lex_state = 8}, + [6576] = {.lex_state = 26, .external_lex_state = 8}, + [6577] = {.lex_state = 26, .external_lex_state = 8}, + [6578] = {.lex_state = 26, .external_lex_state = 8}, + [6579] = {.lex_state = 26, .external_lex_state = 8}, + [6580] = {.lex_state = 26, .external_lex_state = 8}, + [6581] = {.lex_state = 26, .external_lex_state = 8}, + [6582] = {.lex_state = 26, .external_lex_state = 8}, + [6583] = {.lex_state = 26, .external_lex_state = 8}, + [6584] = {.lex_state = 26, .external_lex_state = 8}, + [6585] = {.lex_state = 26, .external_lex_state = 8}, + [6586] = {.lex_state = 26, .external_lex_state = 8}, + [6587] = {.lex_state = 26, .external_lex_state = 8}, + [6588] = {.lex_state = 26, .external_lex_state = 8}, + [6589] = {.lex_state = 26, .external_lex_state = 8}, + [6590] = {.lex_state = 26, .external_lex_state = 8}, + [6591] = {.lex_state = 26, .external_lex_state = 8}, + [6592] = {.lex_state = 26, .external_lex_state = 8}, + [6593] = {.lex_state = 26, .external_lex_state = 8}, + [6594] = {.lex_state = 26, .external_lex_state = 8}, + [6595] = {.lex_state = 26, .external_lex_state = 8}, + [6596] = {.lex_state = 26, .external_lex_state = 8}, + [6597] = {.lex_state = 26, .external_lex_state = 8}, + [6598] = {.lex_state = 26, .external_lex_state = 8}, + [6599] = {.lex_state = 26, .external_lex_state = 8}, + [6600] = {.lex_state = 26, .external_lex_state = 8}, + [6601] = {.lex_state = 26, .external_lex_state = 8}, + [6602] = {.lex_state = 26, .external_lex_state = 8}, + [6603] = {.lex_state = 26, .external_lex_state = 8}, + [6604] = {.lex_state = 26, .external_lex_state = 8}, + [6605] = {.lex_state = 26, .external_lex_state = 8}, + [6606] = {.lex_state = 20, .external_lex_state = 8}, + [6607] = {.lex_state = 26, .external_lex_state = 8}, + [6608] = {.lex_state = 26, .external_lex_state = 8}, + [6609] = {.lex_state = 26, .external_lex_state = 8}, + [6610] = {.lex_state = 26, .external_lex_state = 8}, + [6611] = {.lex_state = 26, .external_lex_state = 8}, + [6612] = {.lex_state = 26, .external_lex_state = 8}, + [6613] = {.lex_state = 26, .external_lex_state = 8}, + [6614] = {.lex_state = 26, .external_lex_state = 8}, + [6615] = {.lex_state = 26, .external_lex_state = 8}, + [6616] = {.lex_state = 26, .external_lex_state = 8}, + [6617] = {.lex_state = 26, .external_lex_state = 8}, + [6618] = {.lex_state = 26, .external_lex_state = 8}, + [6619] = {.lex_state = 26, .external_lex_state = 8}, + [6620] = {.lex_state = 20, .external_lex_state = 8}, + [6621] = {.lex_state = 26, .external_lex_state = 8}, + [6622] = {.lex_state = 26, .external_lex_state = 8}, + [6623] = {.lex_state = 26, .external_lex_state = 8}, + [6624] = {.lex_state = 26, .external_lex_state = 8}, + [6625] = {.lex_state = 26, .external_lex_state = 8}, + [6626] = {.lex_state = 26, .external_lex_state = 8}, + [6627] = {.lex_state = 26, .external_lex_state = 8}, + [6628] = {.lex_state = 26, .external_lex_state = 8}, + [6629] = {.lex_state = 26, .external_lex_state = 8}, + [6630] = {.lex_state = 26, .external_lex_state = 8}, + [6631] = {.lex_state = 26, .external_lex_state = 8}, + [6632] = {.lex_state = 26, .external_lex_state = 8}, + [6633] = {.lex_state = 26, .external_lex_state = 8}, + [6634] = {.lex_state = 26, .external_lex_state = 8}, + [6635] = {.lex_state = 26, .external_lex_state = 8}, + [6636] = {.lex_state = 26, .external_lex_state = 8}, + [6637] = {.lex_state = 26, .external_lex_state = 8}, + [6638] = {.lex_state = 20, .external_lex_state = 8}, + [6639] = {.lex_state = 20, .external_lex_state = 8}, + [6640] = {.lex_state = 28, .external_lex_state = 8}, + [6641] = {.lex_state = 28, .external_lex_state = 8}, + [6642] = {.lex_state = 28, .external_lex_state = 8}, + [6643] = {.lex_state = 28, .external_lex_state = 8}, + [6644] = {.lex_state = 28, .external_lex_state = 8}, + [6645] = {.lex_state = 28, .external_lex_state = 8}, + [6646] = {.lex_state = 28, .external_lex_state = 8}, + [6647] = {.lex_state = 20, .external_lex_state = 8}, + [6648] = {.lex_state = 28, .external_lex_state = 8}, + [6649] = {.lex_state = 28, .external_lex_state = 8}, + [6650] = {.lex_state = 28, .external_lex_state = 8}, + [6651] = {.lex_state = 28, .external_lex_state = 8}, + [6652] = {.lex_state = 28, .external_lex_state = 8}, + [6653] = {.lex_state = 28, .external_lex_state = 8}, + [6654] = {.lex_state = 28, .external_lex_state = 8}, + [6655] = {.lex_state = 28, .external_lex_state = 8}, + [6656] = {.lex_state = 20, .external_lex_state = 8}, + [6657] = {.lex_state = 28, .external_lex_state = 8}, + [6658] = {.lex_state = 28, .external_lex_state = 8}, + [6659] = {.lex_state = 20, .external_lex_state = 8}, + [6660] = {.lex_state = 28, .external_lex_state = 8}, + [6661] = {.lex_state = 28, .external_lex_state = 8}, + [6662] = {.lex_state = 28, .external_lex_state = 8}, + [6663] = {.lex_state = 28, .external_lex_state = 8}, + [6664] = {.lex_state = 28, .external_lex_state = 8}, + [6665] = {.lex_state = 28, .external_lex_state = 8}, + [6666] = {.lex_state = 28, .external_lex_state = 8}, + [6667] = {.lex_state = 28, .external_lex_state = 8}, + [6668] = {.lex_state = 28, .external_lex_state = 8}, + [6669] = {.lex_state = 28, .external_lex_state = 8}, + [6670] = {.lex_state = 20, .external_lex_state = 8}, + [6671] = {.lex_state = 26, .external_lex_state = 8}, + [6672] = {.lex_state = 26, .external_lex_state = 8}, + [6673] = {.lex_state = 20, .external_lex_state = 8}, + [6674] = {.lex_state = 20, .external_lex_state = 8}, + [6675] = {.lex_state = 26, .external_lex_state = 8}, + [6676] = {.lex_state = 26, .external_lex_state = 8}, + [6677] = {.lex_state = 26, .external_lex_state = 8}, + [6678] = {.lex_state = 20, .external_lex_state = 8}, + [6679] = {.lex_state = 26, .external_lex_state = 8}, + [6680] = {.lex_state = 20, .external_lex_state = 8}, + [6681] = {.lex_state = 20, .external_lex_state = 8}, + [6682] = {.lex_state = 20, .external_lex_state = 8}, + [6683] = {.lex_state = 26, .external_lex_state = 8}, + [6684] = {.lex_state = 26, .external_lex_state = 8}, + [6685] = {.lex_state = 26, .external_lex_state = 8}, + [6686] = {.lex_state = 20, .external_lex_state = 8}, + [6687] = {.lex_state = 26, .external_lex_state = 8}, + [6688] = {.lex_state = 26, .external_lex_state = 8}, + [6689] = {.lex_state = 20, .external_lex_state = 8}, + [6690] = {.lex_state = 26, .external_lex_state = 8}, + [6691] = {.lex_state = 26, .external_lex_state = 8}, + [6692] = {.lex_state = 26, .external_lex_state = 8}, + [6693] = {.lex_state = 20, .external_lex_state = 8}, + [6694] = {.lex_state = 20, .external_lex_state = 8}, + [6695] = {.lex_state = 26, .external_lex_state = 8}, + [6696] = {.lex_state = 26, .external_lex_state = 8}, + [6697] = {.lex_state = 26, .external_lex_state = 8}, + [6698] = {.lex_state = 26, .external_lex_state = 8}, + [6699] = {.lex_state = 26, .external_lex_state = 8}, + [6700] = {.lex_state = 26, .external_lex_state = 8}, + [6701] = {.lex_state = 26, .external_lex_state = 8}, + [6702] = {.lex_state = 26, .external_lex_state = 8}, + [6703] = {.lex_state = 20, .external_lex_state = 8}, + [6704] = {.lex_state = 26, .external_lex_state = 8}, + [6705] = {.lex_state = 20, .external_lex_state = 8}, + [6706] = {.lex_state = 26, .external_lex_state = 8}, + [6707] = {.lex_state = 26, .external_lex_state = 8}, + [6708] = {.lex_state = 20, .external_lex_state = 8}, + [6709] = {.lex_state = 26, .external_lex_state = 8}, + [6710] = {.lex_state = 26, .external_lex_state = 8}, + [6711] = {.lex_state = 26, .external_lex_state = 8}, + [6712] = {.lex_state = 20, .external_lex_state = 8}, + [6713] = {.lex_state = 20, .external_lex_state = 8}, + [6714] = {.lex_state = 20, .external_lex_state = 8}, + [6715] = {.lex_state = 26, .external_lex_state = 8}, + [6716] = {.lex_state = 20, .external_lex_state = 8}, + [6717] = {.lex_state = 28, .external_lex_state = 8}, + [6718] = {.lex_state = 20, .external_lex_state = 8}, + [6719] = {.lex_state = 26, .external_lex_state = 8}, + [6720] = {.lex_state = 26, .external_lex_state = 8}, + [6721] = {.lex_state = 26, .external_lex_state = 8}, + [6722] = {.lex_state = 26, .external_lex_state = 8}, + [6723] = {.lex_state = 26, .external_lex_state = 8}, + [6724] = {.lex_state = 26, .external_lex_state = 8}, + [6725] = {.lex_state = 26, .external_lex_state = 8}, + [6726] = {.lex_state = 26, .external_lex_state = 8}, + [6727] = {.lex_state = 20, .external_lex_state = 8}, + [6728] = {.lex_state = 26, .external_lex_state = 8}, + [6729] = {.lex_state = 20, .external_lex_state = 8}, + [6730] = {.lex_state = 20, .external_lex_state = 8}, + [6731] = {.lex_state = 26, .external_lex_state = 8}, + [6732] = {.lex_state = 26, .external_lex_state = 8}, + [6733] = {.lex_state = 26, .external_lex_state = 8}, + [6734] = {.lex_state = 26, .external_lex_state = 8}, + [6735] = {.lex_state = 28, .external_lex_state = 8}, + [6736] = {.lex_state = 28, .external_lex_state = 8}, + [6737] = {.lex_state = 28, .external_lex_state = 8}, + [6738] = {.lex_state = 28, .external_lex_state = 8}, + [6739] = {.lex_state = 28, .external_lex_state = 8}, + [6740] = {.lex_state = 28, .external_lex_state = 8}, + [6741] = {.lex_state = 28, .external_lex_state = 8}, + [6742] = {.lex_state = 28, .external_lex_state = 8}, + [6743] = {.lex_state = 28, .external_lex_state = 8}, + [6744] = {.lex_state = 28, .external_lex_state = 8}, + [6745] = {.lex_state = 28, .external_lex_state = 8}, + [6746] = {.lex_state = 28, .external_lex_state = 8}, + [6747] = {.lex_state = 28, .external_lex_state = 8}, + [6748] = {.lex_state = 28, .external_lex_state = 8}, + [6749] = {.lex_state = 28, .external_lex_state = 8}, + [6750] = {.lex_state = 28, .external_lex_state = 8}, + [6751] = {.lex_state = 28, .external_lex_state = 8}, + [6752] = {.lex_state = 28, .external_lex_state = 8}, + [6753] = {.lex_state = 28, .external_lex_state = 8}, + [6754] = {.lex_state = 28, .external_lex_state = 8}, + [6755] = {.lex_state = 28, .external_lex_state = 8}, + [6756] = {.lex_state = 28, .external_lex_state = 8}, + [6757] = {.lex_state = 28, .external_lex_state = 8}, + [6758] = {.lex_state = 28, .external_lex_state = 8}, + [6759] = {.lex_state = 28, .external_lex_state = 8}, + [6760] = {.lex_state = 28, .external_lex_state = 8}, + [6761] = {.lex_state = 28, .external_lex_state = 8}, + [6762] = {.lex_state = 28, .external_lex_state = 8}, + [6763] = {.lex_state = 28, .external_lex_state = 8}, + [6764] = {.lex_state = 28, .external_lex_state = 8}, + [6765] = {.lex_state = 28, .external_lex_state = 8}, + [6766] = {.lex_state = 28, .external_lex_state = 8}, + [6767] = {.lex_state = 28, .external_lex_state = 8}, + [6768] = {.lex_state = 28, .external_lex_state = 8}, + [6769] = {.lex_state = 28, .external_lex_state = 8}, + [6770] = {.lex_state = 28, .external_lex_state = 8}, + [6771] = {.lex_state = 20, .external_lex_state = 8}, + [6772] = {.lex_state = 28, .external_lex_state = 8}, + [6773] = {.lex_state = 28, .external_lex_state = 8}, + [6774] = {.lex_state = 28, .external_lex_state = 8}, + [6775] = {.lex_state = 28, .external_lex_state = 8}, + [6776] = {.lex_state = 28, .external_lex_state = 8}, + [6777] = {.lex_state = 28, .external_lex_state = 8}, + [6778] = {.lex_state = 28, .external_lex_state = 8}, + [6779] = {.lex_state = 28, .external_lex_state = 8}, + [6780] = {.lex_state = 28, .external_lex_state = 8}, + [6781] = {.lex_state = 28, .external_lex_state = 8}, + [6782] = {.lex_state = 28, .external_lex_state = 8}, + [6783] = {.lex_state = 20, .external_lex_state = 8}, + [6784] = {.lex_state = 28, .external_lex_state = 8}, + [6785] = {.lex_state = 28, .external_lex_state = 8}, + [6786] = {.lex_state = 28, .external_lex_state = 8}, + [6787] = {.lex_state = 28, .external_lex_state = 8}, + [6788] = {.lex_state = 28, .external_lex_state = 8}, + [6789] = {.lex_state = 28, .external_lex_state = 8}, + [6790] = {.lex_state = 28, .external_lex_state = 8}, + [6791] = {.lex_state = 20, .external_lex_state = 8}, + [6792] = {.lex_state = 20, .external_lex_state = 8}, + [6793] = {.lex_state = 20, .external_lex_state = 8}, + [6794] = {.lex_state = 20, .external_lex_state = 8}, + [6795] = {.lex_state = 20, .external_lex_state = 8}, + [6796] = {.lex_state = 20, .external_lex_state = 8}, + [6797] = {.lex_state = 20, .external_lex_state = 8}, + [6798] = {.lex_state = 20, .external_lex_state = 8}, + [6799] = {.lex_state = 20, .external_lex_state = 8}, + [6800] = {.lex_state = 20, .external_lex_state = 8}, + [6801] = {.lex_state = 20, .external_lex_state = 8}, + [6802] = {.lex_state = 20, .external_lex_state = 8}, + [6803] = {.lex_state = 20, .external_lex_state = 8}, + [6804] = {.lex_state = 20, .external_lex_state = 8}, + [6805] = {.lex_state = 20, .external_lex_state = 8}, + [6806] = {.lex_state = 20, .external_lex_state = 8}, + [6807] = {.lex_state = 20, .external_lex_state = 8}, + [6808] = {.lex_state = 20, .external_lex_state = 8}, + [6809] = {.lex_state = 20, .external_lex_state = 8}, + [6810] = {.lex_state = 20, .external_lex_state = 8}, + [6811] = {.lex_state = 20, .external_lex_state = 8}, + [6812] = {.lex_state = 20, .external_lex_state = 8}, + [6813] = {.lex_state = 20, .external_lex_state = 8}, + [6814] = {.lex_state = 20, .external_lex_state = 8}, + [6815] = {.lex_state = 20, .external_lex_state = 8}, + [6816] = {.lex_state = 20, .external_lex_state = 8}, + [6817] = {.lex_state = 20, .external_lex_state = 8}, + [6818] = {.lex_state = 20, .external_lex_state = 8}, + [6819] = {.lex_state = 20, .external_lex_state = 8}, + [6820] = {.lex_state = 20, .external_lex_state = 8}, + [6821] = {.lex_state = 20, .external_lex_state = 8}, + [6822] = {.lex_state = 20, .external_lex_state = 8}, + [6823] = {.lex_state = 20, .external_lex_state = 8}, + [6824] = {.lex_state = 20, .external_lex_state = 8}, + [6825] = {.lex_state = 20, .external_lex_state = 8}, + [6826] = {.lex_state = 20, .external_lex_state = 8}, + [6827] = {.lex_state = 20, .external_lex_state = 8}, + [6828] = {.lex_state = 20, .external_lex_state = 8}, + [6829] = {.lex_state = 20, .external_lex_state = 8}, + [6830] = {.lex_state = 20, .external_lex_state = 8}, + [6831] = {.lex_state = 20, .external_lex_state = 8}, + [6832] = {.lex_state = 20, .external_lex_state = 8}, + [6833] = {.lex_state = 20, .external_lex_state = 8}, + [6834] = {.lex_state = 20, .external_lex_state = 8}, + [6835] = {.lex_state = 20, .external_lex_state = 8}, + [6836] = {.lex_state = 20, .external_lex_state = 8}, + [6837] = {.lex_state = 20, .external_lex_state = 8}, + [6838] = {.lex_state = 20, .external_lex_state = 8}, + [6839] = {.lex_state = 20, .external_lex_state = 8}, + [6840] = {.lex_state = 20, .external_lex_state = 8}, + [6841] = {.lex_state = 20, .external_lex_state = 8}, + [6842] = {.lex_state = 20, .external_lex_state = 8}, + [6843] = {.lex_state = 20, .external_lex_state = 8}, + [6844] = {.lex_state = 20, .external_lex_state = 8}, + [6845] = {.lex_state = 20, .external_lex_state = 8}, + [6846] = {.lex_state = 20, .external_lex_state = 8}, + [6847] = {.lex_state = 20, .external_lex_state = 8}, + [6848] = {.lex_state = 20, .external_lex_state = 8}, + [6849] = {.lex_state = 20, .external_lex_state = 8}, + [6850] = {.lex_state = 20, .external_lex_state = 8}, + [6851] = {.lex_state = 20, .external_lex_state = 8}, + [6852] = {.lex_state = 20, .external_lex_state = 8}, + [6853] = {.lex_state = 20, .external_lex_state = 8}, + [6854] = {.lex_state = 20, .external_lex_state = 8}, + [6855] = {.lex_state = 20, .external_lex_state = 8}, + [6856] = {.lex_state = 20, .external_lex_state = 8}, + [6857] = {.lex_state = 20, .external_lex_state = 8}, + [6858] = {.lex_state = 20, .external_lex_state = 8}, + [6859] = {.lex_state = 20, .external_lex_state = 8}, + [6860] = {.lex_state = 20, .external_lex_state = 8}, + [6861] = {.lex_state = 20, .external_lex_state = 8}, + [6862] = {.lex_state = 20, .external_lex_state = 8}, + [6863] = {.lex_state = 20, .external_lex_state = 8}, + [6864] = {.lex_state = 20, .external_lex_state = 8}, + [6865] = {.lex_state = 20, .external_lex_state = 8}, + [6866] = {.lex_state = 20, .external_lex_state = 8}, + [6867] = {.lex_state = 20, .external_lex_state = 8}, + [6868] = {.lex_state = 20, .external_lex_state = 8}, + [6869] = {.lex_state = 20, .external_lex_state = 8}, + [6870] = {.lex_state = 20, .external_lex_state = 8}, + [6871] = {.lex_state = 20, .external_lex_state = 8}, + [6872] = {.lex_state = 20, .external_lex_state = 8}, + [6873] = {.lex_state = 20, .external_lex_state = 8}, + [6874] = {.lex_state = 20, .external_lex_state = 8}, + [6875] = {.lex_state = 20, .external_lex_state = 8}, + [6876] = {.lex_state = 20, .external_lex_state = 8}, + [6877] = {.lex_state = 20, .external_lex_state = 8}, + [6878] = {.lex_state = 20, .external_lex_state = 8}, + [6879] = {.lex_state = 20, .external_lex_state = 8}, + [6880] = {.lex_state = 20, .external_lex_state = 8}, + [6881] = {.lex_state = 20, .external_lex_state = 8}, + [6882] = {.lex_state = 20, .external_lex_state = 8}, + [6883] = {.lex_state = 20, .external_lex_state = 8}, + [6884] = {.lex_state = 20, .external_lex_state = 8}, + [6885] = {.lex_state = 20, .external_lex_state = 8}, + [6886] = {.lex_state = 20, .external_lex_state = 8}, + [6887] = {.lex_state = 20, .external_lex_state = 8}, + [6888] = {.lex_state = 20, .external_lex_state = 8}, + [6889] = {.lex_state = 20, .external_lex_state = 8}, + [6890] = {.lex_state = 20, .external_lex_state = 8}, + [6891] = {.lex_state = 20, .external_lex_state = 8}, + [6892] = {.lex_state = 20, .external_lex_state = 8}, + [6893] = {.lex_state = 20, .external_lex_state = 8}, + [6894] = {.lex_state = 20, .external_lex_state = 8}, + [6895] = {.lex_state = 20, .external_lex_state = 8}, + [6896] = {.lex_state = 20, .external_lex_state = 8}, + [6897] = {.lex_state = 20, .external_lex_state = 8}, + [6898] = {.lex_state = 20, .external_lex_state = 8}, + [6899] = {.lex_state = 20, .external_lex_state = 8}, + [6900] = {.lex_state = 20, .external_lex_state = 8}, + [6901] = {.lex_state = 20, .external_lex_state = 8}, + [6902] = {.lex_state = 20, .external_lex_state = 8}, + [6903] = {.lex_state = 20, .external_lex_state = 8}, + [6904] = {.lex_state = 20, .external_lex_state = 8}, + [6905] = {.lex_state = 20, .external_lex_state = 8}, + [6906] = {.lex_state = 20, .external_lex_state = 8}, + [6907] = {.lex_state = 20, .external_lex_state = 8}, + [6908] = {.lex_state = 20, .external_lex_state = 8}, + [6909] = {.lex_state = 20, .external_lex_state = 8}, + [6910] = {.lex_state = 20, .external_lex_state = 8}, + [6911] = {.lex_state = 20, .external_lex_state = 8}, + [6912] = {.lex_state = 20, .external_lex_state = 8}, + [6913] = {.lex_state = 20, .external_lex_state = 8}, + [6914] = {.lex_state = 20, .external_lex_state = 8}, + [6915] = {.lex_state = 20, .external_lex_state = 8}, + [6916] = {.lex_state = 20, .external_lex_state = 8}, + [6917] = {.lex_state = 20, .external_lex_state = 8}, + [6918] = {.lex_state = 20, .external_lex_state = 8}, + [6919] = {.lex_state = 20, .external_lex_state = 8}, + [6920] = {.lex_state = 20, .external_lex_state = 8}, + [6921] = {.lex_state = 20, .external_lex_state = 8}, + [6922] = {.lex_state = 20, .external_lex_state = 8}, + [6923] = {.lex_state = 20, .external_lex_state = 8}, + [6924] = {.lex_state = 20, .external_lex_state = 8}, + [6925] = {.lex_state = 20, .external_lex_state = 8}, + [6926] = {.lex_state = 20, .external_lex_state = 8}, + [6927] = {.lex_state = 20, .external_lex_state = 8}, + [6928] = {.lex_state = 20, .external_lex_state = 8}, + [6929] = {.lex_state = 20, .external_lex_state = 8}, + [6930] = {.lex_state = 20, .external_lex_state = 8}, + [6931] = {.lex_state = 20, .external_lex_state = 8}, + [6932] = {.lex_state = 20, .external_lex_state = 8}, + [6933] = {.lex_state = 20, .external_lex_state = 8}, + [6934] = {.lex_state = 20, .external_lex_state = 8}, + [6935] = {.lex_state = 20, .external_lex_state = 8}, + [6936] = {.lex_state = 20, .external_lex_state = 8}, + [6937] = {.lex_state = 20, .external_lex_state = 8}, + [6938] = {.lex_state = 20, .external_lex_state = 8}, + [6939] = {.lex_state = 20, .external_lex_state = 8}, + [6940] = {.lex_state = 20, .external_lex_state = 8}, + [6941] = {.lex_state = 20, .external_lex_state = 8}, + [6942] = {.lex_state = 20, .external_lex_state = 8}, + [6943] = {.lex_state = 20, .external_lex_state = 8}, + [6944] = {.lex_state = 20, .external_lex_state = 8}, + [6945] = {.lex_state = 20, .external_lex_state = 8}, + [6946] = {.lex_state = 20, .external_lex_state = 8}, + [6947] = {.lex_state = 20, .external_lex_state = 8}, + [6948] = {.lex_state = 20, .external_lex_state = 8}, + [6949] = {.lex_state = 20, .external_lex_state = 8}, + [6950] = {.lex_state = 20, .external_lex_state = 8}, + [6951] = {.lex_state = 20, .external_lex_state = 8}, + [6952] = {.lex_state = 20, .external_lex_state = 8}, + [6953] = {.lex_state = 20, .external_lex_state = 8}, + [6954] = {.lex_state = 20, .external_lex_state = 8}, + [6955] = {.lex_state = 20, .external_lex_state = 8}, + [6956] = {.lex_state = 20, .external_lex_state = 8}, + [6957] = {.lex_state = 20, .external_lex_state = 8}, + [6958] = {.lex_state = 20, .external_lex_state = 8}, + [6959] = {.lex_state = 20, .external_lex_state = 8}, + [6960] = {.lex_state = 20, .external_lex_state = 8}, + [6961] = {.lex_state = 20, .external_lex_state = 8}, + [6962] = {.lex_state = 20, .external_lex_state = 8}, + [6963] = {.lex_state = 20, .external_lex_state = 8}, + [6964] = {.lex_state = 20, .external_lex_state = 8}, + [6965] = {.lex_state = 20, .external_lex_state = 8}, + [6966] = {.lex_state = 20, .external_lex_state = 8}, + [6967] = {.lex_state = 20, .external_lex_state = 8}, + [6968] = {.lex_state = 20, .external_lex_state = 8}, + [6969] = {.lex_state = 20, .external_lex_state = 8}, + [6970] = {.lex_state = 20, .external_lex_state = 8}, + [6971] = {.lex_state = 20, .external_lex_state = 8}, + [6972] = {.lex_state = 20, .external_lex_state = 8}, + [6973] = {.lex_state = 20, .external_lex_state = 8}, + [6974] = {.lex_state = 20, .external_lex_state = 8}, + [6975] = {.lex_state = 20, .external_lex_state = 8}, + [6976] = {.lex_state = 20, .external_lex_state = 8}, + [6977] = {.lex_state = 20, .external_lex_state = 8}, + [6978] = {.lex_state = 20, .external_lex_state = 8}, + [6979] = {.lex_state = 20, .external_lex_state = 8}, + [6980] = {.lex_state = 20, .external_lex_state = 8}, + [6981] = {.lex_state = 20, .external_lex_state = 8}, + [6982] = {.lex_state = 20, .external_lex_state = 8}, + [6983] = {.lex_state = 20, .external_lex_state = 8}, + [6984] = {.lex_state = 20, .external_lex_state = 8}, + [6985] = {.lex_state = 20, .external_lex_state = 8}, + [6986] = {.lex_state = 20, .external_lex_state = 8}, + [6987] = {.lex_state = 20, .external_lex_state = 8}, + [6988] = {.lex_state = 20, .external_lex_state = 8}, + [6989] = {.lex_state = 20, .external_lex_state = 8}, + [6990] = {.lex_state = 20, .external_lex_state = 8}, + [6991] = {.lex_state = 20, .external_lex_state = 8}, + [6992] = {.lex_state = 20, .external_lex_state = 8}, + [6993] = {.lex_state = 20, .external_lex_state = 8}, + [6994] = {.lex_state = 20, .external_lex_state = 8}, + [6995] = {.lex_state = 20, .external_lex_state = 8}, + [6996] = {.lex_state = 20, .external_lex_state = 8}, + [6997] = {.lex_state = 20, .external_lex_state = 8}, + [6998] = {.lex_state = 20, .external_lex_state = 8}, + [6999] = {.lex_state = 20, .external_lex_state = 8}, + [7000] = {.lex_state = 20, .external_lex_state = 8}, + [7001] = {.lex_state = 20, .external_lex_state = 8}, + [7002] = {.lex_state = 20, .external_lex_state = 8}, + [7003] = {.lex_state = 20, .external_lex_state = 8}, + [7004] = {.lex_state = 20, .external_lex_state = 8}, + [7005] = {.lex_state = 20, .external_lex_state = 8}, + [7006] = {.lex_state = 20, .external_lex_state = 8}, + [7007] = {.lex_state = 20, .external_lex_state = 8}, + [7008] = {.lex_state = 20, .external_lex_state = 8}, + [7009] = {.lex_state = 20, .external_lex_state = 8}, + [7010] = {.lex_state = 20, .external_lex_state = 8}, + [7011] = {.lex_state = 20, .external_lex_state = 8}, + [7012] = {.lex_state = 20, .external_lex_state = 8}, + [7013] = {.lex_state = 20, .external_lex_state = 8}, + [7014] = {.lex_state = 20, .external_lex_state = 8}, + [7015] = {.lex_state = 20, .external_lex_state = 8}, + [7016] = {.lex_state = 20, .external_lex_state = 8}, + [7017] = {.lex_state = 20, .external_lex_state = 8}, + [7018] = {.lex_state = 20, .external_lex_state = 8}, + [7019] = {.lex_state = 20, .external_lex_state = 8}, + [7020] = {.lex_state = 20, .external_lex_state = 8}, + [7021] = {.lex_state = 20, .external_lex_state = 8}, + [7022] = {.lex_state = 20, .external_lex_state = 8}, + [7023] = {.lex_state = 20, .external_lex_state = 8}, + [7024] = {.lex_state = 20, .external_lex_state = 8}, + [7025] = {.lex_state = 20, .external_lex_state = 8}, + [7026] = {.lex_state = 20, .external_lex_state = 8}, + [7027] = {.lex_state = 20, .external_lex_state = 8}, + [7028] = {.lex_state = 20, .external_lex_state = 8}, + [7029] = {.lex_state = 20, .external_lex_state = 8}, + [7030] = {.lex_state = 20, .external_lex_state = 8}, + [7031] = {.lex_state = 20, .external_lex_state = 8}, + [7032] = {.lex_state = 20, .external_lex_state = 8}, + [7033] = {.lex_state = 20, .external_lex_state = 8}, + [7034] = {.lex_state = 20, .external_lex_state = 8}, + [7035] = {.lex_state = 20, .external_lex_state = 8}, + [7036] = {.lex_state = 20, .external_lex_state = 8}, + [7037] = {.lex_state = 20, .external_lex_state = 8}, + [7038] = {.lex_state = 20, .external_lex_state = 8}, + [7039] = {.lex_state = 20, .external_lex_state = 8}, + [7040] = {.lex_state = 20, .external_lex_state = 8}, + [7041] = {.lex_state = 20, .external_lex_state = 8}, + [7042] = {.lex_state = 20, .external_lex_state = 8}, + [7043] = {.lex_state = 20, .external_lex_state = 8}, + [7044] = {.lex_state = 20, .external_lex_state = 8}, + [7045] = {.lex_state = 20, .external_lex_state = 8}, + [7046] = {.lex_state = 20, .external_lex_state = 8}, + [7047] = {.lex_state = 20, .external_lex_state = 8}, + [7048] = {.lex_state = 20, .external_lex_state = 8}, + [7049] = {.lex_state = 20, .external_lex_state = 8}, + [7050] = {.lex_state = 20, .external_lex_state = 8}, + [7051] = {.lex_state = 20, .external_lex_state = 8}, + [7052] = {.lex_state = 20, .external_lex_state = 8}, + [7053] = {.lex_state = 20, .external_lex_state = 8}, + [7054] = {.lex_state = 20, .external_lex_state = 8}, + [7055] = {.lex_state = 20, .external_lex_state = 8}, + [7056] = {.lex_state = 20, .external_lex_state = 8}, + [7057] = {.lex_state = 20, .external_lex_state = 8}, + [7058] = {.lex_state = 20, .external_lex_state = 8}, + [7059] = {.lex_state = 20, .external_lex_state = 8}, + [7060] = {.lex_state = 20, .external_lex_state = 8}, + [7061] = {.lex_state = 20, .external_lex_state = 8}, + [7062] = {.lex_state = 20, .external_lex_state = 8}, + [7063] = {.lex_state = 20, .external_lex_state = 8}, + [7064] = {.lex_state = 20, .external_lex_state = 8}, + [7065] = {.lex_state = 20, .external_lex_state = 8}, + [7066] = {.lex_state = 20, .external_lex_state = 8}, + [7067] = {.lex_state = 20, .external_lex_state = 8}, + [7068] = {.lex_state = 20, .external_lex_state = 8}, + [7069] = {.lex_state = 20, .external_lex_state = 8}, + [7070] = {.lex_state = 20, .external_lex_state = 8}, + [7071] = {.lex_state = 20, .external_lex_state = 8}, + [7072] = {.lex_state = 20, .external_lex_state = 8}, + [7073] = {.lex_state = 20, .external_lex_state = 8}, + [7074] = {.lex_state = 20, .external_lex_state = 8}, + [7075] = {.lex_state = 20, .external_lex_state = 8}, + [7076] = {.lex_state = 20, .external_lex_state = 8}, + [7077] = {.lex_state = 20, .external_lex_state = 8}, + [7078] = {.lex_state = 20, .external_lex_state = 8}, + [7079] = {.lex_state = 20, .external_lex_state = 8}, + [7080] = {.lex_state = 20, .external_lex_state = 8}, + [7081] = {.lex_state = 20, .external_lex_state = 8}, + [7082] = {.lex_state = 20, .external_lex_state = 8}, + [7083] = {.lex_state = 20, .external_lex_state = 8}, + [7084] = {.lex_state = 20, .external_lex_state = 8}, + [7085] = {.lex_state = 20, .external_lex_state = 8}, + [7086] = {.lex_state = 20, .external_lex_state = 8}, + [7087] = {.lex_state = 20, .external_lex_state = 8}, + [7088] = {.lex_state = 20, .external_lex_state = 8}, + [7089] = {.lex_state = 20, .external_lex_state = 8}, + [7090] = {.lex_state = 20, .external_lex_state = 8}, + [7091] = {.lex_state = 20, .external_lex_state = 8}, + [7092] = {.lex_state = 20, .external_lex_state = 8}, + [7093] = {.lex_state = 20, .external_lex_state = 8}, + [7094] = {.lex_state = 20, .external_lex_state = 8}, + [7095] = {.lex_state = 20, .external_lex_state = 8}, + [7096] = {.lex_state = 20, .external_lex_state = 8}, + [7097] = {.lex_state = 20, .external_lex_state = 8}, + [7098] = {.lex_state = 20, .external_lex_state = 8}, + [7099] = {.lex_state = 20, .external_lex_state = 8}, + [7100] = {.lex_state = 20, .external_lex_state = 8}, + [7101] = {.lex_state = 20, .external_lex_state = 8}, + [7102] = {.lex_state = 20, .external_lex_state = 8}, + [7103] = {.lex_state = 20, .external_lex_state = 8}, + [7104] = {.lex_state = 20, .external_lex_state = 8}, + [7105] = {.lex_state = 20, .external_lex_state = 8}, + [7106] = {.lex_state = 20, .external_lex_state = 8}, + [7107] = {.lex_state = 20, .external_lex_state = 8}, + [7108] = {.lex_state = 20, .external_lex_state = 8}, + [7109] = {.lex_state = 20, .external_lex_state = 8}, + [7110] = {.lex_state = 20, .external_lex_state = 8}, + [7111] = {.lex_state = 20, .external_lex_state = 8}, + [7112] = {.lex_state = 20, .external_lex_state = 8}, + [7113] = {.lex_state = 20, .external_lex_state = 8}, + [7114] = {.lex_state = 20, .external_lex_state = 8}, + [7115] = {.lex_state = 20, .external_lex_state = 8}, + [7116] = {.lex_state = 20, .external_lex_state = 8}, + [7117] = {.lex_state = 20, .external_lex_state = 8}, + [7118] = {.lex_state = 20, .external_lex_state = 8}, + [7119] = {.lex_state = 20, .external_lex_state = 8}, + [7120] = {.lex_state = 20, .external_lex_state = 8}, + [7121] = {.lex_state = 20, .external_lex_state = 8}, + [7122] = {.lex_state = 20, .external_lex_state = 8}, + [7123] = {.lex_state = 20, .external_lex_state = 8}, + [7124] = {.lex_state = 20, .external_lex_state = 8}, + [7125] = {.lex_state = 20, .external_lex_state = 8}, + [7126] = {.lex_state = 20, .external_lex_state = 8}, + [7127] = {.lex_state = 20, .external_lex_state = 8}, + [7128] = {.lex_state = 20, .external_lex_state = 8}, + [7129] = {.lex_state = 20, .external_lex_state = 8}, + [7130] = {.lex_state = 20, .external_lex_state = 8}, + [7131] = {.lex_state = 20, .external_lex_state = 8}, + [7132] = {.lex_state = 20, .external_lex_state = 8}, + [7133] = {.lex_state = 20, .external_lex_state = 8}, + [7134] = {.lex_state = 20, .external_lex_state = 8}, + [7135] = {.lex_state = 20, .external_lex_state = 8}, + [7136] = {.lex_state = 20, .external_lex_state = 8}, + [7137] = {.lex_state = 20, .external_lex_state = 8}, + [7138] = {.lex_state = 20, .external_lex_state = 8}, + [7139] = {.lex_state = 20, .external_lex_state = 8}, + [7140] = {.lex_state = 20, .external_lex_state = 8}, + [7141] = {.lex_state = 20, .external_lex_state = 8}, + [7142] = {.lex_state = 20, .external_lex_state = 8}, + [7143] = {.lex_state = 20, .external_lex_state = 8}, + [7144] = {.lex_state = 20, .external_lex_state = 8}, + [7145] = {.lex_state = 20, .external_lex_state = 8}, + [7146] = {.lex_state = 20, .external_lex_state = 8}, + [7147] = {.lex_state = 20, .external_lex_state = 8}, + [7148] = {.lex_state = 20, .external_lex_state = 8}, + [7149] = {.lex_state = 20, .external_lex_state = 8}, + [7150] = {.lex_state = 20, .external_lex_state = 8}, + [7151] = {.lex_state = 20, .external_lex_state = 8}, + [7152] = {.lex_state = 20, .external_lex_state = 8}, + [7153] = {.lex_state = 20, .external_lex_state = 8}, + [7154] = {.lex_state = 20, .external_lex_state = 8}, + [7155] = {.lex_state = 20, .external_lex_state = 8}, + [7156] = {.lex_state = 20, .external_lex_state = 8}, + [7157] = {.lex_state = 20, .external_lex_state = 8}, + [7158] = {.lex_state = 20, .external_lex_state = 8}, + [7159] = {.lex_state = 20, .external_lex_state = 8}, + [7160] = {.lex_state = 20, .external_lex_state = 8}, + [7161] = {.lex_state = 20, .external_lex_state = 8}, + [7162] = {.lex_state = 20, .external_lex_state = 8}, + [7163] = {.lex_state = 20, .external_lex_state = 8}, + [7164] = {.lex_state = 20, .external_lex_state = 8}, + [7165] = {.lex_state = 20, .external_lex_state = 8}, + [7166] = {.lex_state = 20, .external_lex_state = 8}, + [7167] = {.lex_state = 20, .external_lex_state = 8}, + [7168] = {.lex_state = 20, .external_lex_state = 8}, + [7169] = {.lex_state = 20, .external_lex_state = 8}, + [7170] = {.lex_state = 20, .external_lex_state = 8}, + [7171] = {.lex_state = 20, .external_lex_state = 8}, + [7172] = {.lex_state = 20, .external_lex_state = 8}, + [7173] = {.lex_state = 20, .external_lex_state = 8}, + [7174] = {.lex_state = 20, .external_lex_state = 8}, + [7175] = {.lex_state = 20, .external_lex_state = 8}, + [7176] = {.lex_state = 20, .external_lex_state = 8}, + [7177] = {.lex_state = 20, .external_lex_state = 8}, + [7178] = {.lex_state = 20, .external_lex_state = 8}, + [7179] = {.lex_state = 20, .external_lex_state = 8}, + [7180] = {.lex_state = 20, .external_lex_state = 8}, + [7181] = {.lex_state = 20, .external_lex_state = 8}, + [7182] = {.lex_state = 20, .external_lex_state = 8}, + [7183] = {.lex_state = 20, .external_lex_state = 8}, + [7184] = {.lex_state = 20, .external_lex_state = 8}, + [7185] = {.lex_state = 20, .external_lex_state = 8}, + [7186] = {.lex_state = 20, .external_lex_state = 8}, + [7187] = {.lex_state = 1, .external_lex_state = 6}, + [7188] = {.lex_state = 20, .external_lex_state = 8}, + [7189] = {.lex_state = 20, .external_lex_state = 8}, + [7190] = {.lex_state = 20, .external_lex_state = 8}, + [7191] = {.lex_state = 20, .external_lex_state = 8}, + [7192] = {.lex_state = 20, .external_lex_state = 8}, + [7193] = {.lex_state = 20, .external_lex_state = 8}, + [7194] = {.lex_state = 20, .external_lex_state = 8}, + [7195] = {.lex_state = 20, .external_lex_state = 8}, + [7196] = {.lex_state = 20, .external_lex_state = 8}, + [7197] = {.lex_state = 20, .external_lex_state = 8}, + [7198] = {.lex_state = 20, .external_lex_state = 8}, + [7199] = {.lex_state = 20, .external_lex_state = 8}, + [7200] = {.lex_state = 20, .external_lex_state = 8}, + [7201] = {.lex_state = 20, .external_lex_state = 8}, + [7202] = {.lex_state = 20, .external_lex_state = 8}, + [7203] = {.lex_state = 27, .external_lex_state = 8}, + [7204] = {.lex_state = 20, .external_lex_state = 8}, + [7205] = {.lex_state = 20, .external_lex_state = 8}, + [7206] = {.lex_state = 20, .external_lex_state = 8}, + [7207] = {.lex_state = 20, .external_lex_state = 8}, + [7208] = {.lex_state = 27, .external_lex_state = 8}, + [7209] = {.lex_state = 20, .external_lex_state = 8}, + [7210] = {.lex_state = 20, .external_lex_state = 8}, + [7211] = {.lex_state = 20, .external_lex_state = 8}, + [7212] = {.lex_state = 20, .external_lex_state = 8}, + [7213] = {.lex_state = 20, .external_lex_state = 8}, + [7214] = {.lex_state = 20, .external_lex_state = 8}, + [7215] = {.lex_state = 20, .external_lex_state = 8}, + [7216] = {.lex_state = 20, .external_lex_state = 8}, + [7217] = {.lex_state = 20, .external_lex_state = 8}, + [7218] = {.lex_state = 20, .external_lex_state = 8}, + [7219] = {.lex_state = 20, .external_lex_state = 8}, + [7220] = {.lex_state = 20, .external_lex_state = 8}, + [7221] = {.lex_state = 20, .external_lex_state = 8}, + [7222] = {.lex_state = 20, .external_lex_state = 8}, + [7223] = {.lex_state = 20, .external_lex_state = 8}, + [7224] = {.lex_state = 20, .external_lex_state = 8}, + [7225] = {.lex_state = 20, .external_lex_state = 8}, + [7226] = {.lex_state = 20, .external_lex_state = 8}, + [7227] = {.lex_state = 20, .external_lex_state = 8}, + [7228] = {.lex_state = 20, .external_lex_state = 8}, + [7229] = {.lex_state = 20, .external_lex_state = 8}, + [7230] = {.lex_state = 20, .external_lex_state = 8}, + [7231] = {.lex_state = 20, .external_lex_state = 8}, + [7232] = {.lex_state = 20, .external_lex_state = 8}, + [7233] = {.lex_state = 20, .external_lex_state = 8}, + [7234] = {.lex_state = 20, .external_lex_state = 8}, + [7235] = {.lex_state = 20, .external_lex_state = 8}, + [7236] = {.lex_state = 20, .external_lex_state = 8}, + [7237] = {.lex_state = 20, .external_lex_state = 8}, + [7238] = {.lex_state = 20, .external_lex_state = 8}, + [7239] = {.lex_state = 1, .external_lex_state = 6}, + [7240] = {.lex_state = 20, .external_lex_state = 8}, + [7241] = {.lex_state = 20, .external_lex_state = 8}, + [7242] = {.lex_state = 20, .external_lex_state = 8}, + [7243] = {.lex_state = 20, .external_lex_state = 8}, + [7244] = {.lex_state = 20, .external_lex_state = 8}, + [7245] = {.lex_state = 20, .external_lex_state = 8}, + [7246] = {.lex_state = 20, .external_lex_state = 8}, + [7247] = {.lex_state = 20, .external_lex_state = 8}, + [7248] = {.lex_state = 20, .external_lex_state = 8}, + [7249] = {.lex_state = 20, .external_lex_state = 8}, + [7250] = {.lex_state = 20, .external_lex_state = 8}, + [7251] = {.lex_state = 20, .external_lex_state = 8}, + [7252] = {.lex_state = 20, .external_lex_state = 8}, + [7253] = {.lex_state = 20, .external_lex_state = 8}, + [7254] = {.lex_state = 20, .external_lex_state = 8}, + [7255] = {.lex_state = 20, .external_lex_state = 8}, + [7256] = {.lex_state = 20, .external_lex_state = 8}, + [7257] = {.lex_state = 20, .external_lex_state = 8}, + [7258] = {.lex_state = 20, .external_lex_state = 8}, + [7259] = {.lex_state = 26, .external_lex_state = 8}, + [7260] = {.lex_state = 20, .external_lex_state = 8}, + [7261] = {.lex_state = 26, .external_lex_state = 8}, + [7262] = {.lex_state = 26, .external_lex_state = 8}, + [7263] = {.lex_state = 27, .external_lex_state = 8}, + [7264] = {.lex_state = 28, .external_lex_state = 8}, + [7265] = {.lex_state = 27, .external_lex_state = 8}, + [7266] = {.lex_state = 26, .external_lex_state = 8}, + [7267] = {.lex_state = 26, .external_lex_state = 8}, + [7268] = {.lex_state = 28, .external_lex_state = 8}, + [7269] = {.lex_state = 27, .external_lex_state = 8}, + [7270] = {.lex_state = 27, .external_lex_state = 8}, + [7271] = {.lex_state = 27, .external_lex_state = 8}, + [7272] = {.lex_state = 20, .external_lex_state = 8}, + [7273] = {.lex_state = 20, .external_lex_state = 8}, + [7274] = {.lex_state = 20, .external_lex_state = 8}, + [7275] = {.lex_state = 20, .external_lex_state = 8}, + [7276] = {.lex_state = 20, .external_lex_state = 8}, + [7277] = {.lex_state = 20, .external_lex_state = 8}, + [7278] = {.lex_state = 20, .external_lex_state = 8}, + [7279] = {.lex_state = 20, .external_lex_state = 8}, + [7280] = {.lex_state = 20, .external_lex_state = 8}, + [7281] = {.lex_state = 20, .external_lex_state = 8}, + [7282] = {.lex_state = 20, .external_lex_state = 8}, + [7283] = {.lex_state = 20, .external_lex_state = 8}, + [7284] = {.lex_state = 20, .external_lex_state = 8}, + [7285] = {.lex_state = 20, .external_lex_state = 8}, + [7286] = {.lex_state = 20, .external_lex_state = 8}, + [7287] = {.lex_state = 28, .external_lex_state = 8}, + [7288] = {.lex_state = 20, .external_lex_state = 8}, + [7289] = {.lex_state = 20, .external_lex_state = 8}, + [7290] = {.lex_state = 27, .external_lex_state = 8}, + [7291] = {.lex_state = 27, .external_lex_state = 8}, + [7292] = {.lex_state = 20, .external_lex_state = 8}, + [7293] = {.lex_state = 20, .external_lex_state = 8}, + [7294] = {.lex_state = 20, .external_lex_state = 8}, + [7295] = {.lex_state = 20, .external_lex_state = 8}, + [7296] = {.lex_state = 20, .external_lex_state = 8}, + [7297] = {.lex_state = 20, .external_lex_state = 8}, + [7298] = {.lex_state = 20, .external_lex_state = 8}, + [7299] = {.lex_state = 20, .external_lex_state = 8}, + [7300] = {.lex_state = 20, .external_lex_state = 8}, + [7301] = {.lex_state = 20, .external_lex_state = 8}, + [7302] = {.lex_state = 20, .external_lex_state = 8}, + [7303] = {.lex_state = 20, .external_lex_state = 8}, + [7304] = {.lex_state = 20, .external_lex_state = 8}, + [7305] = {.lex_state = 20, .external_lex_state = 8}, + [7306] = {.lex_state = 20, .external_lex_state = 8}, + [7307] = {.lex_state = 20, .external_lex_state = 8}, + [7308] = {.lex_state = 20, .external_lex_state = 8}, + [7309] = {.lex_state = 27, .external_lex_state = 8}, + [7310] = {.lex_state = 20, .external_lex_state = 8}, + [7311] = {.lex_state = 20, .external_lex_state = 8}, + [7312] = {.lex_state = 27, .external_lex_state = 8}, + [7313] = {.lex_state = 27, .external_lex_state = 8}, + [7314] = {.lex_state = 28, .external_lex_state = 8}, + [7315] = {.lex_state = 20, .external_lex_state = 8}, + [7316] = {.lex_state = 20, .external_lex_state = 8}, + [7317] = {.lex_state = 20, .external_lex_state = 8}, + [7318] = {.lex_state = 20, .external_lex_state = 8}, + [7319] = {.lex_state = 20, .external_lex_state = 8}, + [7320] = {.lex_state = 20, .external_lex_state = 8}, + [7321] = {.lex_state = 20, .external_lex_state = 8}, + [7322] = {.lex_state = 20, .external_lex_state = 8}, + [7323] = {.lex_state = 20, .external_lex_state = 8}, + [7324] = {.lex_state = 20, .external_lex_state = 8}, + [7325] = {.lex_state = 20, .external_lex_state = 8}, + [7326] = {.lex_state = 20, .external_lex_state = 8}, + [7327] = {.lex_state = 20, .external_lex_state = 8}, + [7328] = {.lex_state = 20, .external_lex_state = 8}, + [7329] = {.lex_state = 26, .external_lex_state = 8}, + [7330] = {.lex_state = 20, .external_lex_state = 8}, + [7331] = {.lex_state = 20, .external_lex_state = 8}, + [7332] = {.lex_state = 20, .external_lex_state = 8}, + [7333] = {.lex_state = 20, .external_lex_state = 8}, + [7334] = {.lex_state = 20, .external_lex_state = 8}, + [7335] = {.lex_state = 20, .external_lex_state = 8}, + [7336] = {.lex_state = 20, .external_lex_state = 8}, + [7337] = {.lex_state = 20, .external_lex_state = 8}, + [7338] = {.lex_state = 20, .external_lex_state = 8}, + [7339] = {.lex_state = 20, .external_lex_state = 8}, + [7340] = {.lex_state = 27, .external_lex_state = 8}, + [7341] = {.lex_state = 20, .external_lex_state = 8}, + [7342] = {.lex_state = 20, .external_lex_state = 8}, + [7343] = {.lex_state = 20, .external_lex_state = 8}, + [7344] = {.lex_state = 20, .external_lex_state = 8}, + [7345] = {.lex_state = 20, .external_lex_state = 8}, + [7346] = {.lex_state = 20, .external_lex_state = 8}, + [7347] = {.lex_state = 20, .external_lex_state = 8}, + [7348] = {.lex_state = 28, .external_lex_state = 8}, + [7349] = {.lex_state = 20, .external_lex_state = 8}, + [7350] = {.lex_state = 28, .external_lex_state = 8}, + [7351] = {.lex_state = 20, .external_lex_state = 8}, + [7352] = {.lex_state = 20, .external_lex_state = 8}, + [7353] = {.lex_state = 20, .external_lex_state = 8}, + [7354] = {.lex_state = 28, .external_lex_state = 8}, + [7355] = {.lex_state = 27, .external_lex_state = 8}, + [7356] = {.lex_state = 28, .external_lex_state = 8}, + [7357] = {.lex_state = 27, .external_lex_state = 8}, + [7358] = {.lex_state = 20, .external_lex_state = 8}, + [7359] = {.lex_state = 20, .external_lex_state = 8}, + [7360] = {.lex_state = 26, .external_lex_state = 8}, + [7361] = {.lex_state = 20, .external_lex_state = 8}, + [7362] = {.lex_state = 20, .external_lex_state = 8}, + [7363] = {.lex_state = 20, .external_lex_state = 8}, + [7364] = {.lex_state = 27, .external_lex_state = 8}, + [7365] = {.lex_state = 20, .external_lex_state = 8}, + [7366] = {.lex_state = 27, .external_lex_state = 8}, + [7367] = {.lex_state = 27, .external_lex_state = 8}, + [7368] = {.lex_state = 20, .external_lex_state = 8}, + [7369] = {.lex_state = 20, .external_lex_state = 8}, + [7370] = {.lex_state = 27, .external_lex_state = 8}, + [7371] = {.lex_state = 27, .external_lex_state = 8}, + [7372] = {.lex_state = 20, .external_lex_state = 8}, + [7373] = {.lex_state = 20, .external_lex_state = 8}, + [7374] = {.lex_state = 20, .external_lex_state = 8}, + [7375] = {.lex_state = 27, .external_lex_state = 8}, + [7376] = {.lex_state = 27, .external_lex_state = 8}, + [7377] = {.lex_state = 20, .external_lex_state = 8}, + [7378] = {.lex_state = 20, .external_lex_state = 8}, + [7379] = {.lex_state = 20, .external_lex_state = 8}, + [7380] = {.lex_state = 20, .external_lex_state = 8}, + [7381] = {.lex_state = 28, .external_lex_state = 8}, + [7382] = {.lex_state = 20, .external_lex_state = 8}, + [7383] = {.lex_state = 20, .external_lex_state = 8}, + [7384] = {.lex_state = 20, .external_lex_state = 8}, + [7385] = {.lex_state = 20, .external_lex_state = 8}, + [7386] = {.lex_state = 20, .external_lex_state = 8}, + [7387] = {.lex_state = 20, .external_lex_state = 8}, + [7388] = {.lex_state = 20, .external_lex_state = 8}, + [7389] = {.lex_state = 20, .external_lex_state = 8}, + [7390] = {.lex_state = 20, .external_lex_state = 8}, + [7391] = {.lex_state = 20, .external_lex_state = 8}, + [7392] = {.lex_state = 20, .external_lex_state = 8}, + [7393] = {.lex_state = 20, .external_lex_state = 8}, + [7394] = {.lex_state = 20, .external_lex_state = 8}, + [7395] = {.lex_state = 20, .external_lex_state = 8}, + [7396] = {.lex_state = 20, .external_lex_state = 8}, + [7397] = {.lex_state = 20, .external_lex_state = 8}, + [7398] = {.lex_state = 20, .external_lex_state = 8}, + [7399] = {.lex_state = 20, .external_lex_state = 8}, + [7400] = {.lex_state = 27, .external_lex_state = 8}, + [7401] = {.lex_state = 20, .external_lex_state = 8}, + [7402] = {.lex_state = 20, .external_lex_state = 8}, + [7403] = {.lex_state = 20, .external_lex_state = 8}, + [7404] = {.lex_state = 20, .external_lex_state = 8}, + [7405] = {.lex_state = 20, .external_lex_state = 8}, + [7406] = {.lex_state = 20, .external_lex_state = 8}, + [7407] = {.lex_state = 20, .external_lex_state = 8}, + [7408] = {.lex_state = 20, .external_lex_state = 8}, + [7409] = {.lex_state = 20, .external_lex_state = 8}, + [7410] = {.lex_state = 20, .external_lex_state = 8}, + [7411] = {.lex_state = 20, .external_lex_state = 8}, + [7412] = {.lex_state = 20, .external_lex_state = 8}, + [7413] = {.lex_state = 20, .external_lex_state = 8}, + [7414] = {.lex_state = 20, .external_lex_state = 8}, + [7415] = {.lex_state = 20, .external_lex_state = 8}, + [7416] = {.lex_state = 20, .external_lex_state = 8}, + [7417] = {.lex_state = 20, .external_lex_state = 8}, + [7418] = {.lex_state = 20, .external_lex_state = 8}, + [7419] = {.lex_state = 20, .external_lex_state = 8}, + [7420] = {.lex_state = 20, .external_lex_state = 8}, + [7421] = {.lex_state = 20, .external_lex_state = 8}, + [7422] = {.lex_state = 20, .external_lex_state = 8}, + [7423] = {.lex_state = 20, .external_lex_state = 8}, + [7424] = {.lex_state = 20, .external_lex_state = 8}, + [7425] = {.lex_state = 20, .external_lex_state = 8}, + [7426] = {.lex_state = 20, .external_lex_state = 8}, + [7427] = {.lex_state = 20, .external_lex_state = 8}, + [7428] = {.lex_state = 20, .external_lex_state = 8}, + [7429] = {.lex_state = 20, .external_lex_state = 8}, + [7430] = {.lex_state = 20, .external_lex_state = 8}, + [7431] = {.lex_state = 20, .external_lex_state = 8}, + [7432] = {.lex_state = 20, .external_lex_state = 8}, + [7433] = {.lex_state = 20, .external_lex_state = 8}, + [7434] = {.lex_state = 20, .external_lex_state = 8}, + [7435] = {.lex_state = 20, .external_lex_state = 8}, + [7436] = {.lex_state = 20, .external_lex_state = 8}, + [7437] = {.lex_state = 20, .external_lex_state = 8}, + [7438] = {.lex_state = 20, .external_lex_state = 8}, + [7439] = {.lex_state = 20, .external_lex_state = 8}, + [7440] = {.lex_state = 20, .external_lex_state = 8}, + [7441] = {.lex_state = 20, .external_lex_state = 8}, + [7442] = {.lex_state = 20, .external_lex_state = 8}, + [7443] = {.lex_state = 20, .external_lex_state = 8}, + [7444] = {.lex_state = 20, .external_lex_state = 8}, + [7445] = {.lex_state = 20, .external_lex_state = 8}, + [7446] = {.lex_state = 20, .external_lex_state = 8}, + [7447] = {.lex_state = 20, .external_lex_state = 8}, + [7448] = {.lex_state = 20, .external_lex_state = 8}, + [7449] = {.lex_state = 20, .external_lex_state = 8}, + [7450] = {.lex_state = 20, .external_lex_state = 8}, + [7451] = {.lex_state = 20, .external_lex_state = 8}, + [7452] = {.lex_state = 20, .external_lex_state = 8}, + [7453] = {.lex_state = 20, .external_lex_state = 8}, + [7454] = {.lex_state = 20, .external_lex_state = 8}, + [7455] = {.lex_state = 20, .external_lex_state = 8}, + [7456] = {.lex_state = 20, .external_lex_state = 8}, + [7457] = {.lex_state = 20, .external_lex_state = 8}, + [7458] = {.lex_state = 20, .external_lex_state = 8}, + [7459] = {.lex_state = 20, .external_lex_state = 8}, + [7460] = {.lex_state = 20, .external_lex_state = 8}, + [7461] = {.lex_state = 20, .external_lex_state = 8}, + [7462] = {.lex_state = 20, .external_lex_state = 8}, + [7463] = {.lex_state = 20, .external_lex_state = 8}, + [7464] = {.lex_state = 20, .external_lex_state = 8}, + [7465] = {.lex_state = 20, .external_lex_state = 8}, + [7466] = {.lex_state = 20, .external_lex_state = 8}, + [7467] = {.lex_state = 20, .external_lex_state = 8}, + [7468] = {.lex_state = 20, .external_lex_state = 8}, + [7469] = {.lex_state = 20, .external_lex_state = 8}, + [7470] = {.lex_state = 20, .external_lex_state = 8}, + [7471] = {.lex_state = 20, .external_lex_state = 8}, + [7472] = {.lex_state = 20, .external_lex_state = 8}, + [7473] = {.lex_state = 20, .external_lex_state = 8}, + [7474] = {.lex_state = 20, .external_lex_state = 8}, + [7475] = {.lex_state = 20, .external_lex_state = 8}, + [7476] = {.lex_state = 20, .external_lex_state = 8}, + [7477] = {.lex_state = 20, .external_lex_state = 8}, + [7478] = {.lex_state = 20, .external_lex_state = 8}, + [7479] = {.lex_state = 20, .external_lex_state = 8}, + [7480] = {.lex_state = 20, .external_lex_state = 8}, + [7481] = {.lex_state = 20, .external_lex_state = 8}, + [7482] = {.lex_state = 20, .external_lex_state = 8}, + [7483] = {.lex_state = 20, .external_lex_state = 8}, + [7484] = {.lex_state = 20, .external_lex_state = 8}, + [7485] = {.lex_state = 26, .external_lex_state = 8}, + [7486] = {.lex_state = 20, .external_lex_state = 8}, + [7487] = {.lex_state = 20, .external_lex_state = 8}, + [7488] = {.lex_state = 20, .external_lex_state = 8}, + [7489] = {.lex_state = 20, .external_lex_state = 8}, + [7490] = {.lex_state = 20, .external_lex_state = 8}, + [7491] = {.lex_state = 20, .external_lex_state = 8}, + [7492] = {.lex_state = 20, .external_lex_state = 8}, + [7493] = {.lex_state = 20, .external_lex_state = 8}, + [7494] = {.lex_state = 20, .external_lex_state = 8}, + [7495] = {.lex_state = 26, .external_lex_state = 8}, + [7496] = {.lex_state = 20, .external_lex_state = 9}, + [7497] = {.lex_state = 20, .external_lex_state = 8}, + [7498] = {.lex_state = 20, .external_lex_state = 8}, + [7499] = {.lex_state = 20, .external_lex_state = 8}, + [7500] = {.lex_state = 20, .external_lex_state = 8}, + [7501] = {.lex_state = 20, .external_lex_state = 8}, + [7502] = {.lex_state = 20, .external_lex_state = 8}, + [7503] = {.lex_state = 20, .external_lex_state = 8}, + [7504] = {.lex_state = 20, .external_lex_state = 8}, + [7505] = {.lex_state = 20, .external_lex_state = 8}, + [7506] = {.lex_state = 20, .external_lex_state = 8}, + [7507] = {.lex_state = 20, .external_lex_state = 8}, + [7508] = {.lex_state = 20, .external_lex_state = 8}, + [7509] = {.lex_state = 20, .external_lex_state = 8}, + [7510] = {.lex_state = 20, .external_lex_state = 8}, + [7511] = {.lex_state = 20, .external_lex_state = 8}, + [7512] = {.lex_state = 20, .external_lex_state = 8}, + [7513] = {.lex_state = 20, .external_lex_state = 8}, + [7514] = {.lex_state = 20, .external_lex_state = 8}, + [7515] = {.lex_state = 20, .external_lex_state = 8}, + [7516] = {.lex_state = 20, .external_lex_state = 8}, + [7517] = {.lex_state = 20, .external_lex_state = 8}, + [7518] = {.lex_state = 20, .external_lex_state = 8}, + [7519] = {.lex_state = 20, .external_lex_state = 8}, + [7520] = {.lex_state = 20, .external_lex_state = 8}, + [7521] = {.lex_state = 20, .external_lex_state = 8}, + [7522] = {.lex_state = 20, .external_lex_state = 8}, + [7523] = {.lex_state = 20, .external_lex_state = 8}, + [7524] = {.lex_state = 20, .external_lex_state = 8}, + [7525] = {.lex_state = 20, .external_lex_state = 8}, + [7526] = {.lex_state = 20, .external_lex_state = 8}, + [7527] = {.lex_state = 20, .external_lex_state = 8}, + [7528] = {.lex_state = 20, .external_lex_state = 8}, + [7529] = {.lex_state = 20, .external_lex_state = 8}, + [7530] = {.lex_state = 20, .external_lex_state = 8}, + [7531] = {.lex_state = 20, .external_lex_state = 8}, + [7532] = {.lex_state = 20, .external_lex_state = 8}, + [7533] = {.lex_state = 20, .external_lex_state = 8}, + [7534] = {.lex_state = 20, .external_lex_state = 8}, + [7535] = {.lex_state = 20, .external_lex_state = 8}, + [7536] = {.lex_state = 20, .external_lex_state = 8}, + [7537] = {.lex_state = 20, .external_lex_state = 8}, + [7538] = {.lex_state = 20, .external_lex_state = 8}, + [7539] = {.lex_state = 20, .external_lex_state = 8}, + [7540] = {.lex_state = 28, .external_lex_state = 8}, + [7541] = {.lex_state = 20, .external_lex_state = 8}, + [7542] = {.lex_state = 20, .external_lex_state = 8}, + [7543] = {.lex_state = 20, .external_lex_state = 8}, + [7544] = {.lex_state = 20, .external_lex_state = 8}, + [7545] = {.lex_state = 20, .external_lex_state = 8}, + [7546] = {.lex_state = 20, .external_lex_state = 8}, + [7547] = {.lex_state = 20, .external_lex_state = 8}, + [7548] = {.lex_state = 26, .external_lex_state = 8}, + [7549] = {.lex_state = 28, .external_lex_state = 8}, + [7550] = {.lex_state = 20, .external_lex_state = 8}, + [7551] = {.lex_state = 20, .external_lex_state = 8}, + [7552] = {.lex_state = 20, .external_lex_state = 8}, + [7553] = {.lex_state = 20, .external_lex_state = 8}, + [7554] = {.lex_state = 20, .external_lex_state = 8}, + [7555] = {.lex_state = 20, .external_lex_state = 8}, + [7556] = {.lex_state = 20, .external_lex_state = 8}, + [7557] = {.lex_state = 20, .external_lex_state = 8}, + [7558] = {.lex_state = 20, .external_lex_state = 8}, + [7559] = {.lex_state = 20, .external_lex_state = 8}, + [7560] = {.lex_state = 20, .external_lex_state = 8}, + [7561] = {.lex_state = 20, .external_lex_state = 8}, + [7562] = {.lex_state = 20, .external_lex_state = 8}, + [7563] = {.lex_state = 20, .external_lex_state = 8}, + [7564] = {.lex_state = 20, .external_lex_state = 8}, + [7565] = {.lex_state = 20, .external_lex_state = 8}, + [7566] = {.lex_state = 20, .external_lex_state = 8}, + [7567] = {.lex_state = 20, .external_lex_state = 8}, + [7568] = {.lex_state = 20, .external_lex_state = 8}, + [7569] = {.lex_state = 28, .external_lex_state = 8}, + [7570] = {.lex_state = 20, .external_lex_state = 8}, + [7571] = {.lex_state = 28, .external_lex_state = 8}, + [7572] = {.lex_state = 20, .external_lex_state = 8}, + [7573] = {.lex_state = 20, .external_lex_state = 8}, + [7574] = {.lex_state = 20, .external_lex_state = 8}, + [7575] = {.lex_state = 20, .external_lex_state = 8}, + [7576] = {.lex_state = 20, .external_lex_state = 8}, + [7577] = {.lex_state = 20, .external_lex_state = 8}, + [7578] = {.lex_state = 20, .external_lex_state = 8}, + [7579] = {.lex_state = 20, .external_lex_state = 8}, + [7580] = {.lex_state = 20, .external_lex_state = 8}, + [7581] = {.lex_state = 20, .external_lex_state = 8}, + [7582] = {.lex_state = 20, .external_lex_state = 8}, + [7583] = {.lex_state = 20, .external_lex_state = 8}, + [7584] = {.lex_state = 20, .external_lex_state = 8}, + [7585] = {.lex_state = 20, .external_lex_state = 8}, + [7586] = {.lex_state = 20, .external_lex_state = 8}, + [7587] = {.lex_state = 20, .external_lex_state = 8}, + [7588] = {.lex_state = 20, .external_lex_state = 8}, + [7589] = {.lex_state = 20, .external_lex_state = 8}, + [7590] = {.lex_state = 20, .external_lex_state = 8}, + [7591] = {.lex_state = 20, .external_lex_state = 8}, + [7592] = {.lex_state = 20, .external_lex_state = 8}, + [7593] = {.lex_state = 20, .external_lex_state = 8}, + [7594] = {.lex_state = 20, .external_lex_state = 8}, + [7595] = {.lex_state = 20, .external_lex_state = 8}, + [7596] = {.lex_state = 20, .external_lex_state = 8}, + [7597] = {.lex_state = 20, .external_lex_state = 8}, + [7598] = {.lex_state = 20, .external_lex_state = 8}, + [7599] = {.lex_state = 20, .external_lex_state = 8}, + [7600] = {.lex_state = 20, .external_lex_state = 8}, + [7601] = {.lex_state = 20, .external_lex_state = 8}, + [7602] = {.lex_state = 20, .external_lex_state = 8}, + [7603] = {.lex_state = 20, .external_lex_state = 8}, + [7604] = {.lex_state = 20, .external_lex_state = 8}, + [7605] = {.lex_state = 20, .external_lex_state = 8}, + [7606] = {.lex_state = 20, .external_lex_state = 8}, + [7607] = {.lex_state = 20, .external_lex_state = 8}, + [7608] = {.lex_state = 20, .external_lex_state = 8}, + [7609] = {.lex_state = 20, .external_lex_state = 8}, + [7610] = {.lex_state = 20, .external_lex_state = 8}, + [7611] = {.lex_state = 20, .external_lex_state = 8}, + [7612] = {.lex_state = 20, .external_lex_state = 8}, + [7613] = {.lex_state = 20, .external_lex_state = 8}, + [7614] = {.lex_state = 20, .external_lex_state = 8}, + [7615] = {.lex_state = 20, .external_lex_state = 8}, + [7616] = {.lex_state = 20, .external_lex_state = 8}, + [7617] = {.lex_state = 20, .external_lex_state = 8}, + [7618] = {.lex_state = 20, .external_lex_state = 8}, + [7619] = {.lex_state = 20, .external_lex_state = 8}, + [7620] = {.lex_state = 20, .external_lex_state = 8}, + [7621] = {.lex_state = 20, .external_lex_state = 8}, + [7622] = {.lex_state = 20, .external_lex_state = 8}, + [7623] = {.lex_state = 20, .external_lex_state = 8}, + [7624] = {.lex_state = 28, .external_lex_state = 8}, + [7625] = {.lex_state = 20, .external_lex_state = 8}, + [7626] = {.lex_state = 20, .external_lex_state = 8}, + [7627] = {.lex_state = 20, .external_lex_state = 8}, + [7628] = {.lex_state = 20, .external_lex_state = 8}, + [7629] = {.lex_state = 20, .external_lex_state = 8}, + [7630] = {.lex_state = 20, .external_lex_state = 8}, + [7631] = {.lex_state = 26, .external_lex_state = 8}, + [7632] = {.lex_state = 20, .external_lex_state = 8}, + [7633] = {.lex_state = 20, .external_lex_state = 8}, + [7634] = {.lex_state = 20, .external_lex_state = 8}, + [7635] = {.lex_state = 20, .external_lex_state = 8}, + [7636] = {.lex_state = 20, .external_lex_state = 8}, + [7637] = {.lex_state = 20, .external_lex_state = 8}, + [7638] = {.lex_state = 20, .external_lex_state = 8}, + [7639] = {.lex_state = 20, .external_lex_state = 8}, + [7640] = {.lex_state = 20, .external_lex_state = 8}, + [7641] = {.lex_state = 26, .external_lex_state = 8}, + [7642] = {.lex_state = 26, .external_lex_state = 8}, + [7643] = {.lex_state = 20, .external_lex_state = 8}, + [7644] = {.lex_state = 20, .external_lex_state = 8}, + [7645] = {.lex_state = 20, .external_lex_state = 8}, + [7646] = {.lex_state = 20, .external_lex_state = 8}, + [7647] = {.lex_state = 20, .external_lex_state = 8}, + [7648] = {.lex_state = 20, .external_lex_state = 9}, + [7649] = {.lex_state = 20, .external_lex_state = 8}, + [7650] = {.lex_state = 20, .external_lex_state = 8}, + [7651] = {.lex_state = 20, .external_lex_state = 8}, + [7652] = {.lex_state = 20, .external_lex_state = 8}, + [7653] = {.lex_state = 20, .external_lex_state = 8}, + [7654] = {.lex_state = 20, .external_lex_state = 8}, + [7655] = {.lex_state = 20, .external_lex_state = 8}, + [7656] = {.lex_state = 20, .external_lex_state = 8}, + [7657] = {.lex_state = 20, .external_lex_state = 8}, + [7658] = {.lex_state = 20, .external_lex_state = 8}, + [7659] = {.lex_state = 20, .external_lex_state = 8}, + [7660] = {.lex_state = 20, .external_lex_state = 8}, + [7661] = {.lex_state = 20, .external_lex_state = 8}, + [7662] = {.lex_state = 20, .external_lex_state = 8}, + [7663] = {.lex_state = 20, .external_lex_state = 8}, + [7664] = {.lex_state = 20, .external_lex_state = 8}, + [7665] = {.lex_state = 20, .external_lex_state = 8}, + [7666] = {.lex_state = 20, .external_lex_state = 8}, + [7667] = {.lex_state = 20, .external_lex_state = 8}, + [7668] = {.lex_state = 20, .external_lex_state = 8}, + [7669] = {.lex_state = 20, .external_lex_state = 8}, + [7670] = {.lex_state = 20, .external_lex_state = 8}, + [7671] = {.lex_state = 20, .external_lex_state = 8}, + [7672] = {.lex_state = 20, .external_lex_state = 8}, + [7673] = {.lex_state = 20, .external_lex_state = 8}, + [7674] = {.lex_state = 20, .external_lex_state = 8}, + [7675] = {.lex_state = 20, .external_lex_state = 8}, + [7676] = {.lex_state = 20, .external_lex_state = 8}, + [7677] = {.lex_state = 20, .external_lex_state = 8}, + [7678] = {.lex_state = 20, .external_lex_state = 8}, + [7679] = {.lex_state = 20, .external_lex_state = 8}, + [7680] = {.lex_state = 20, .external_lex_state = 8}, + [7681] = {.lex_state = 20, .external_lex_state = 8}, + [7682] = {.lex_state = 20, .external_lex_state = 8}, + [7683] = {.lex_state = 20, .external_lex_state = 8}, + [7684] = {.lex_state = 20, .external_lex_state = 8}, + [7685] = {.lex_state = 20, .external_lex_state = 8}, + [7686] = {.lex_state = 20, .external_lex_state = 8}, + [7687] = {.lex_state = 20, .external_lex_state = 8}, + [7688] = {.lex_state = 20, .external_lex_state = 8}, + [7689] = {.lex_state = 20, .external_lex_state = 8}, + [7690] = {.lex_state = 20, .external_lex_state = 8}, + [7691] = {.lex_state = 20, .external_lex_state = 8}, + [7692] = {.lex_state = 20, .external_lex_state = 8}, + [7693] = {.lex_state = 20, .external_lex_state = 8}, + [7694] = {.lex_state = 26, .external_lex_state = 8}, + [7695] = {.lex_state = 20, .external_lex_state = 8}, + [7696] = {.lex_state = 20, .external_lex_state = 8}, + [7697] = {.lex_state = 20, .external_lex_state = 8}, + [7698] = {.lex_state = 20, .external_lex_state = 8}, + [7699] = {.lex_state = 20, .external_lex_state = 8}, + [7700] = {.lex_state = 20, .external_lex_state = 8}, + [7701] = {.lex_state = 20, .external_lex_state = 8}, + [7702] = {.lex_state = 20, .external_lex_state = 8}, + [7703] = {.lex_state = 20, .external_lex_state = 8}, + [7704] = {.lex_state = 20, .external_lex_state = 8}, + [7705] = {.lex_state = 20, .external_lex_state = 8}, + [7706] = {.lex_state = 20, .external_lex_state = 8}, + [7707] = {.lex_state = 20, .external_lex_state = 8}, + [7708] = {.lex_state = 20, .external_lex_state = 8}, + [7709] = {.lex_state = 20, .external_lex_state = 8}, + [7710] = {.lex_state = 20, .external_lex_state = 8}, + [7711] = {.lex_state = 20, .external_lex_state = 8}, + [7712] = {.lex_state = 20, .external_lex_state = 8}, + [7713] = {.lex_state = 20, .external_lex_state = 8}, + [7714] = {.lex_state = 20, .external_lex_state = 8}, + [7715] = {.lex_state = 20, .external_lex_state = 8}, + [7716] = {.lex_state = 20, .external_lex_state = 8}, + [7717] = {.lex_state = 20, .external_lex_state = 8}, + [7718] = {.lex_state = 20, .external_lex_state = 8}, + [7719] = {.lex_state = 20, .external_lex_state = 8}, + [7720] = {.lex_state = 20, .external_lex_state = 8}, + [7721] = {.lex_state = 20, .external_lex_state = 8}, + [7722] = {.lex_state = 20, .external_lex_state = 8}, + [7723] = {.lex_state = 20, .external_lex_state = 8}, + [7724] = {.lex_state = 20, .external_lex_state = 8}, + [7725] = {.lex_state = 20, .external_lex_state = 8}, + [7726] = {.lex_state = 20, .external_lex_state = 8}, + [7727] = {.lex_state = 20, .external_lex_state = 8}, + [7728] = {.lex_state = 20, .external_lex_state = 8}, + [7729] = {.lex_state = 20, .external_lex_state = 8}, + [7730] = {.lex_state = 20, .external_lex_state = 8}, + [7731] = {.lex_state = 20, .external_lex_state = 8}, + [7732] = {.lex_state = 20, .external_lex_state = 8}, + [7733] = {.lex_state = 20, .external_lex_state = 8}, + [7734] = {.lex_state = 20, .external_lex_state = 8}, + [7735] = {.lex_state = 20, .external_lex_state = 8}, + [7736] = {.lex_state = 20, .external_lex_state = 8}, + [7737] = {.lex_state = 20, .external_lex_state = 8}, + [7738] = {.lex_state = 20, .external_lex_state = 8}, + [7739] = {.lex_state = 20, .external_lex_state = 8}, + [7740] = {.lex_state = 20, .external_lex_state = 8}, + [7741] = {.lex_state = 20, .external_lex_state = 8}, + [7742] = {.lex_state = 20, .external_lex_state = 8}, + [7743] = {.lex_state = 20, .external_lex_state = 8}, + [7744] = {.lex_state = 20, .external_lex_state = 8}, + [7745] = {.lex_state = 20, .external_lex_state = 8}, + [7746] = {.lex_state = 20, .external_lex_state = 8}, + [7747] = {.lex_state = 26, .external_lex_state = 8}, + [7748] = {.lex_state = 20, .external_lex_state = 8}, + [7749] = {.lex_state = 20, .external_lex_state = 8}, + [7750] = {.lex_state = 20, .external_lex_state = 8}, + [7751] = {.lex_state = 20, .external_lex_state = 8}, + [7752] = {.lex_state = 20, .external_lex_state = 8}, + [7753] = {.lex_state = 20, .external_lex_state = 8}, + [7754] = {.lex_state = 20, .external_lex_state = 8}, + [7755] = {.lex_state = 20, .external_lex_state = 8}, + [7756] = {.lex_state = 20, .external_lex_state = 8}, + [7757] = {.lex_state = 20, .external_lex_state = 8}, + [7758] = {.lex_state = 20, .external_lex_state = 8}, + [7759] = {.lex_state = 20, .external_lex_state = 8}, + [7760] = {.lex_state = 26, .external_lex_state = 8}, + [7761] = {.lex_state = 20, .external_lex_state = 8}, + [7762] = {.lex_state = 20, .external_lex_state = 8}, + [7763] = {.lex_state = 20, .external_lex_state = 8}, + [7764] = {.lex_state = 20, .external_lex_state = 8}, + [7765] = {.lex_state = 20, .external_lex_state = 8}, + [7766] = {.lex_state = 20, .external_lex_state = 8}, + [7767] = {.lex_state = 20, .external_lex_state = 8}, + [7768] = {.lex_state = 20, .external_lex_state = 8}, + [7769] = {.lex_state = 20, .external_lex_state = 8}, + [7770] = {.lex_state = 20, .external_lex_state = 8}, + [7771] = {.lex_state = 20, .external_lex_state = 8}, + [7772] = {.lex_state = 20, .external_lex_state = 8}, + [7773] = {.lex_state = 20, .external_lex_state = 8}, + [7774] = {.lex_state = 26, .external_lex_state = 8}, + [7775] = {.lex_state = 20, .external_lex_state = 8}, + [7776] = {.lex_state = 20, .external_lex_state = 8}, + [7777] = {.lex_state = 20, .external_lex_state = 8}, + [7778] = {.lex_state = 20, .external_lex_state = 8}, + [7779] = {.lex_state = 20, .external_lex_state = 8}, + [7780] = {.lex_state = 20, .external_lex_state = 8}, + [7781] = {.lex_state = 20, .external_lex_state = 8}, + [7782] = {.lex_state = 20, .external_lex_state = 8}, + [7783] = {.lex_state = 20, .external_lex_state = 8}, + [7784] = {.lex_state = 20, .external_lex_state = 8}, + [7785] = {.lex_state = 20, .external_lex_state = 8}, + [7786] = {.lex_state = 20, .external_lex_state = 8}, + [7787] = {.lex_state = 20, .external_lex_state = 8}, + [7788] = {.lex_state = 20, .external_lex_state = 8}, + [7789] = {.lex_state = 20, .external_lex_state = 8}, + [7790] = {.lex_state = 20, .external_lex_state = 8}, + [7791] = {.lex_state = 20, .external_lex_state = 8}, + [7792] = {.lex_state = 20, .external_lex_state = 8}, + [7793] = {.lex_state = 20, .external_lex_state = 8}, + [7794] = {.lex_state = 20, .external_lex_state = 8}, + [7795] = {.lex_state = 20, .external_lex_state = 8}, + [7796] = {.lex_state = 20, .external_lex_state = 8}, + [7797] = {.lex_state = 20, .external_lex_state = 8}, + [7798] = {.lex_state = 20, .external_lex_state = 8}, + [7799] = {.lex_state = 20, .external_lex_state = 8}, + [7800] = {.lex_state = 20, .external_lex_state = 8}, + [7801] = {.lex_state = 20, .external_lex_state = 8}, + [7802] = {.lex_state = 20, .external_lex_state = 8}, + [7803] = {.lex_state = 20, .external_lex_state = 8}, + [7804] = {.lex_state = 20, .external_lex_state = 8}, + [7805] = {.lex_state = 26, .external_lex_state = 8}, + [7806] = {.lex_state = 20, .external_lex_state = 8}, + [7807] = {.lex_state = 20, .external_lex_state = 8}, + [7808] = {.lex_state = 20, .external_lex_state = 8}, + [7809] = {.lex_state = 20, .external_lex_state = 8}, + [7810] = {.lex_state = 20, .external_lex_state = 8}, + [7811] = {.lex_state = 20, .external_lex_state = 8}, + [7812] = {.lex_state = 20, .external_lex_state = 8}, + [7813] = {.lex_state = 20, .external_lex_state = 8}, + [7814] = {.lex_state = 20, .external_lex_state = 8}, + [7815] = {.lex_state = 20, .external_lex_state = 8}, + [7816] = {.lex_state = 20, .external_lex_state = 8}, + [7817] = {.lex_state = 20, .external_lex_state = 8}, + [7818] = {.lex_state = 20, .external_lex_state = 8}, + [7819] = {.lex_state = 20, .external_lex_state = 8}, + [7820] = {.lex_state = 20, .external_lex_state = 8}, + [7821] = {.lex_state = 20, .external_lex_state = 8}, + [7822] = {.lex_state = 20, .external_lex_state = 8}, + [7823] = {.lex_state = 20, .external_lex_state = 8}, + [7824] = {.lex_state = 20, .external_lex_state = 8}, + [7825] = {.lex_state = 26, .external_lex_state = 8}, + [7826] = {.lex_state = 20, .external_lex_state = 8}, + [7827] = {.lex_state = 20, .external_lex_state = 8}, + [7828] = {.lex_state = 20, .external_lex_state = 8}, + [7829] = {.lex_state = 20, .external_lex_state = 8}, + [7830] = {.lex_state = 20, .external_lex_state = 8}, + [7831] = {.lex_state = 20, .external_lex_state = 8}, + [7832] = {.lex_state = 20, .external_lex_state = 8}, + [7833] = {.lex_state = 20, .external_lex_state = 8}, + [7834] = {.lex_state = 20, .external_lex_state = 8}, + [7835] = {.lex_state = 20, .external_lex_state = 8}, + [7836] = {.lex_state = 20, .external_lex_state = 8}, + [7837] = {.lex_state = 20, .external_lex_state = 8}, + [7838] = {.lex_state = 20, .external_lex_state = 8}, + [7839] = {.lex_state = 20, .external_lex_state = 8}, + [7840] = {.lex_state = 20, .external_lex_state = 8}, + [7841] = {.lex_state = 20, .external_lex_state = 8}, + [7842] = {.lex_state = 20, .external_lex_state = 8}, + [7843] = {.lex_state = 20, .external_lex_state = 8}, + [7844] = {.lex_state = 20, .external_lex_state = 8}, + [7845] = {.lex_state = 20, .external_lex_state = 8}, + [7846] = {.lex_state = 20, .external_lex_state = 8}, + [7847] = {.lex_state = 26, .external_lex_state = 8}, + [7848] = {.lex_state = 20, .external_lex_state = 8}, + [7849] = {.lex_state = 20, .external_lex_state = 8}, + [7850] = {.lex_state = 20, .external_lex_state = 8}, + [7851] = {.lex_state = 20, .external_lex_state = 8}, + [7852] = {.lex_state = 20, .external_lex_state = 8}, + [7853] = {.lex_state = 20, .external_lex_state = 8}, + [7854] = {.lex_state = 20, .external_lex_state = 8}, + [7855] = {.lex_state = 20, .external_lex_state = 8}, + [7856] = {.lex_state = 20, .external_lex_state = 8}, + [7857] = {.lex_state = 20, .external_lex_state = 8}, + [7858] = {.lex_state = 20, .external_lex_state = 8}, + [7859] = {.lex_state = 20, .external_lex_state = 8}, + [7860] = {.lex_state = 20, .external_lex_state = 8}, + [7861] = {.lex_state = 20, .external_lex_state = 8}, + [7862] = {.lex_state = 20, .external_lex_state = 8}, + [7863] = {.lex_state = 20, .external_lex_state = 8}, + [7864] = {.lex_state = 20, .external_lex_state = 8}, + [7865] = {.lex_state = 20, .external_lex_state = 8}, + [7866] = {.lex_state = 20, .external_lex_state = 8}, + [7867] = {.lex_state = 20, .external_lex_state = 8}, + [7868] = {.lex_state = 20, .external_lex_state = 8}, + [7869] = {.lex_state = 20, .external_lex_state = 8}, + [7870] = {.lex_state = 20, .external_lex_state = 8}, + [7871] = {.lex_state = 20, .external_lex_state = 8}, + [7872] = {.lex_state = 20, .external_lex_state = 8}, + [7873] = {.lex_state = 20, .external_lex_state = 8}, + [7874] = {.lex_state = 20, .external_lex_state = 8}, + [7875] = {.lex_state = 20, .external_lex_state = 8}, + [7876] = {.lex_state = 20, .external_lex_state = 8}, + [7877] = {.lex_state = 20, .external_lex_state = 8}, + [7878] = {.lex_state = 20, .external_lex_state = 8}, + [7879] = {.lex_state = 20, .external_lex_state = 8}, + [7880] = {.lex_state = 20, .external_lex_state = 8}, + [7881] = {.lex_state = 20, .external_lex_state = 8}, + [7882] = {.lex_state = 20, .external_lex_state = 8}, + [7883] = {.lex_state = 20, .external_lex_state = 8}, + [7884] = {.lex_state = 26, .external_lex_state = 8}, + [7885] = {.lex_state = 20, .external_lex_state = 8}, + [7886] = {.lex_state = 20, .external_lex_state = 8}, + [7887] = {.lex_state = 20, .external_lex_state = 8}, + [7888] = {.lex_state = 20, .external_lex_state = 8}, + [7889] = {.lex_state = 20, .external_lex_state = 8}, + [7890] = {.lex_state = 28, .external_lex_state = 8}, + [7891] = {.lex_state = 26, .external_lex_state = 8}, + [7892] = {.lex_state = 26, .external_lex_state = 8}, + [7893] = {.lex_state = 26, .external_lex_state = 8}, + [7894] = {.lex_state = 28, .external_lex_state = 8}, + [7895] = {.lex_state = 28, .external_lex_state = 8}, + [7896] = {.lex_state = 26, .external_lex_state = 8}, + [7897] = {.lex_state = 28, .external_lex_state = 8}, + [7898] = {.lex_state = 28, .external_lex_state = 8}, + [7899] = {.lex_state = 26, .external_lex_state = 8}, + [7900] = {.lex_state = 28, .external_lex_state = 8}, + [7901] = {.lex_state = 26, .external_lex_state = 8}, + [7902] = {.lex_state = 26, .external_lex_state = 8}, + [7903] = {.lex_state = 28, .external_lex_state = 8}, + [7904] = {.lex_state = 28, .external_lex_state = 8}, + [7905] = {.lex_state = 20, .external_lex_state = 8}, + [7906] = {.lex_state = 28, .external_lex_state = 8}, + [7907] = {.lex_state = 20, .external_lex_state = 8}, + [7908] = {.lex_state = 26, .external_lex_state = 8}, + [7909] = {.lex_state = 28, .external_lex_state = 8}, + [7910] = {.lex_state = 20, .external_lex_state = 8}, + [7911] = {.lex_state = 28, .external_lex_state = 8}, + [7912] = {.lex_state = 20, .external_lex_state = 8}, + [7913] = {.lex_state = 26, .external_lex_state = 8}, + [7914] = {.lex_state = 20, .external_lex_state = 8}, + [7915] = {.lex_state = 26, .external_lex_state = 8}, + [7916] = {.lex_state = 33, .external_lex_state = 8}, + [7917] = {.lex_state = 20, .external_lex_state = 8}, + [7918] = {.lex_state = 20, .external_lex_state = 8}, + [7919] = {.lex_state = 20, .external_lex_state = 8}, + [7920] = {.lex_state = 20, .external_lex_state = 8}, + [7921] = {.lex_state = 20, .external_lex_state = 8}, + [7922] = {.lex_state = 20, .external_lex_state = 8}, + [7923] = {.lex_state = 20, .external_lex_state = 8}, + [7924] = {.lex_state = 20, .external_lex_state = 8}, + [7925] = {.lex_state = 20, .external_lex_state = 8}, + [7926] = {.lex_state = 20, .external_lex_state = 8}, + [7927] = {.lex_state = 20, .external_lex_state = 8}, + [7928] = {.lex_state = 20, .external_lex_state = 8}, + [7929] = {.lex_state = 20, .external_lex_state = 8}, + [7930] = {.lex_state = 20, .external_lex_state = 8}, + [7931] = {.lex_state = 20, .external_lex_state = 8}, + [7932] = {.lex_state = 20, .external_lex_state = 8}, + [7933] = {.lex_state = 20, .external_lex_state = 8}, + [7934] = {.lex_state = 20, .external_lex_state = 8}, + [7935] = {.lex_state = 20, .external_lex_state = 8}, + [7936] = {.lex_state = 20, .external_lex_state = 8}, + [7937] = {.lex_state = 20, .external_lex_state = 8}, + [7938] = {.lex_state = 20, .external_lex_state = 8}, + [7939] = {.lex_state = 20, .external_lex_state = 8}, + [7940] = {.lex_state = 20, .external_lex_state = 8}, + [7941] = {.lex_state = 20, .external_lex_state = 8}, + [7942] = {.lex_state = 20, .external_lex_state = 8}, + [7943] = {.lex_state = 20, .external_lex_state = 8}, + [7944] = {.lex_state = 20, .external_lex_state = 8}, + [7945] = {.lex_state = 20, .external_lex_state = 8}, + [7946] = {.lex_state = 20, .external_lex_state = 8}, + [7947] = {.lex_state = 22, .external_lex_state = 9}, + [7948] = {.lex_state = 20, .external_lex_state = 8}, + [7949] = {.lex_state = 20, .external_lex_state = 8}, + [7950] = {.lex_state = 20, .external_lex_state = 8}, + [7951] = {.lex_state = 20, .external_lex_state = 8}, + [7952] = {.lex_state = 20, .external_lex_state = 8}, + [7953] = {.lex_state = 20, .external_lex_state = 8}, + [7954] = {.lex_state = 20, .external_lex_state = 8}, + [7955] = {.lex_state = 20, .external_lex_state = 8}, + [7956] = {.lex_state = 20, .external_lex_state = 8}, + [7957] = {.lex_state = 20, .external_lex_state = 8}, + [7958] = {.lex_state = 20, .external_lex_state = 8}, + [7959] = {.lex_state = 20, .external_lex_state = 8}, + [7960] = {.lex_state = 20, .external_lex_state = 8}, + [7961] = {.lex_state = 20, .external_lex_state = 8}, + [7962] = {.lex_state = 20, .external_lex_state = 8}, + [7963] = {.lex_state = 22, .external_lex_state = 8}, + [7964] = {.lex_state = 22, .external_lex_state = 9}, + [7965] = {.lex_state = 20, .external_lex_state = 8}, + [7966] = {.lex_state = 20, .external_lex_state = 8}, + [7967] = {.lex_state = 20, .external_lex_state = 8}, + [7968] = {.lex_state = 20, .external_lex_state = 8}, + [7969] = {.lex_state = 20, .external_lex_state = 8}, + [7970] = {.lex_state = 20, .external_lex_state = 8}, + [7971] = {.lex_state = 20, .external_lex_state = 8}, + [7972] = {.lex_state = 20, .external_lex_state = 8}, + [7973] = {.lex_state = 20, .external_lex_state = 8}, + [7974] = {.lex_state = 20, .external_lex_state = 8}, + [7975] = {.lex_state = 20, .external_lex_state = 8}, + [7976] = {.lex_state = 22, .external_lex_state = 9}, + [7977] = {.lex_state = 20, .external_lex_state = 8}, + [7978] = {.lex_state = 20, .external_lex_state = 8}, + [7979] = {.lex_state = 20, .external_lex_state = 8}, + [7980] = {.lex_state = 20, .external_lex_state = 8}, + [7981] = {.lex_state = 20, .external_lex_state = 8}, + [7982] = {.lex_state = 20, .external_lex_state = 8}, + [7983] = {.lex_state = 20, .external_lex_state = 8}, + [7984] = {.lex_state = 20, .external_lex_state = 8}, + [7985] = {.lex_state = 20, .external_lex_state = 8}, + [7986] = {.lex_state = 20, .external_lex_state = 8}, + [7987] = {.lex_state = 20, .external_lex_state = 8}, + [7988] = {.lex_state = 20, .external_lex_state = 8}, + [7989] = {.lex_state = 20, .external_lex_state = 8}, + [7990] = {.lex_state = 20, .external_lex_state = 8}, + [7991] = {.lex_state = 20, .external_lex_state = 8}, + [7992] = {.lex_state = 20, .external_lex_state = 8}, + [7993] = {.lex_state = 20, .external_lex_state = 8}, + [7994] = {.lex_state = 20, .external_lex_state = 8}, + [7995] = {.lex_state = 20, .external_lex_state = 8}, + [7996] = {.lex_state = 20, .external_lex_state = 8}, + [7997] = {.lex_state = 20, .external_lex_state = 8}, + [7998] = {.lex_state = 20, .external_lex_state = 8}, + [7999] = {.lex_state = 20, .external_lex_state = 8}, + [8000] = {.lex_state = 20, .external_lex_state = 8}, + [8001] = {.lex_state = 20, .external_lex_state = 8}, + [8002] = {.lex_state = 20, .external_lex_state = 8}, + [8003] = {.lex_state = 20, .external_lex_state = 8}, + [8004] = {.lex_state = 20, .external_lex_state = 8}, + [8005] = {.lex_state = 20, .external_lex_state = 8}, + [8006] = {.lex_state = 20, .external_lex_state = 8}, + [8007] = {.lex_state = 20, .external_lex_state = 8}, + [8008] = {.lex_state = 20, .external_lex_state = 8}, + [8009] = {.lex_state = 20, .external_lex_state = 8}, + [8010] = {.lex_state = 20, .external_lex_state = 8}, + [8011] = {.lex_state = 20, .external_lex_state = 8}, + [8012] = {.lex_state = 20, .external_lex_state = 8}, + [8013] = {.lex_state = 20, .external_lex_state = 8}, + [8014] = {.lex_state = 20, .external_lex_state = 8}, + [8015] = {.lex_state = 20, .external_lex_state = 8}, + [8016] = {.lex_state = 20, .external_lex_state = 8}, + [8017] = {.lex_state = 20, .external_lex_state = 8}, + [8018] = {.lex_state = 20, .external_lex_state = 8}, + [8019] = {.lex_state = 20, .external_lex_state = 8}, + [8020] = {.lex_state = 20, .external_lex_state = 8}, + [8021] = {.lex_state = 20, .external_lex_state = 8}, + [8022] = {.lex_state = 20, .external_lex_state = 8}, + [8023] = {.lex_state = 20, .external_lex_state = 8}, + [8024] = {.lex_state = 20, .external_lex_state = 8}, + [8025] = {.lex_state = 20, .external_lex_state = 8}, + [8026] = {.lex_state = 20, .external_lex_state = 8}, + [8027] = {.lex_state = 20, .external_lex_state = 8}, + [8028] = {.lex_state = 20, .external_lex_state = 8}, + [8029] = {.lex_state = 20, .external_lex_state = 8}, + [8030] = {.lex_state = 20, .external_lex_state = 8}, + [8031] = {.lex_state = 20, .external_lex_state = 8}, + [8032] = {.lex_state = 20, .external_lex_state = 8}, + [8033] = {.lex_state = 20, .external_lex_state = 8}, + [8034] = {.lex_state = 20, .external_lex_state = 8}, + [8035] = {.lex_state = 20, .external_lex_state = 8}, + [8036] = {.lex_state = 20, .external_lex_state = 8}, + [8037] = {.lex_state = 20, .external_lex_state = 8}, + [8038] = {.lex_state = 20, .external_lex_state = 8}, + [8039] = {.lex_state = 20, .external_lex_state = 8}, + [8040] = {.lex_state = 20, .external_lex_state = 8}, + [8041] = {.lex_state = 20, .external_lex_state = 8}, + [8042] = {.lex_state = 20, .external_lex_state = 8}, + [8043] = {.lex_state = 20, .external_lex_state = 8}, + [8044] = {.lex_state = 20, .external_lex_state = 8}, + [8045] = {.lex_state = 20, .external_lex_state = 8}, + [8046] = {.lex_state = 20, .external_lex_state = 8}, + [8047] = {.lex_state = 20, .external_lex_state = 8}, + [8048] = {.lex_state = 20, .external_lex_state = 8}, + [8049] = {.lex_state = 20, .external_lex_state = 8}, + [8050] = {.lex_state = 20, .external_lex_state = 8}, + [8051] = {.lex_state = 20, .external_lex_state = 8}, + [8052] = {.lex_state = 20, .external_lex_state = 8}, + [8053] = {.lex_state = 20, .external_lex_state = 8}, + [8054] = {.lex_state = 20, .external_lex_state = 8}, + [8055] = {.lex_state = 20, .external_lex_state = 8}, + [8056] = {.lex_state = 20, .external_lex_state = 8}, + [8057] = {.lex_state = 20, .external_lex_state = 8}, + [8058] = {.lex_state = 20, .external_lex_state = 8}, + [8059] = {.lex_state = 20, .external_lex_state = 8}, + [8060] = {.lex_state = 20, .external_lex_state = 8}, + [8061] = {.lex_state = 20, .external_lex_state = 8}, + [8062] = {.lex_state = 20, .external_lex_state = 8}, + [8063] = {.lex_state = 20, .external_lex_state = 8}, + [8064] = {.lex_state = 20, .external_lex_state = 8}, + [8065] = {.lex_state = 20, .external_lex_state = 8}, + [8066] = {.lex_state = 20, .external_lex_state = 8}, + [8067] = {.lex_state = 20, .external_lex_state = 8}, + [8068] = {.lex_state = 20, .external_lex_state = 8}, + [8069] = {.lex_state = 20, .external_lex_state = 8}, + [8070] = {.lex_state = 20, .external_lex_state = 8}, + [8071] = {.lex_state = 20, .external_lex_state = 8}, + [8072] = {.lex_state = 20, .external_lex_state = 8}, + [8073] = {.lex_state = 20, .external_lex_state = 8}, + [8074] = {.lex_state = 20, .external_lex_state = 8}, + [8075] = {.lex_state = 20, .external_lex_state = 8}, + [8076] = {.lex_state = 20, .external_lex_state = 8}, + [8077] = {.lex_state = 33, .external_lex_state = 8}, + [8078] = {.lex_state = 20, .external_lex_state = 8}, + [8079] = {.lex_state = 22, .external_lex_state = 8}, + [8080] = {.lex_state = 20, .external_lex_state = 8}, + [8081] = {.lex_state = 20, .external_lex_state = 8}, + [8082] = {.lex_state = 20, .external_lex_state = 8}, + [8083] = {.lex_state = 20, .external_lex_state = 8}, + [8084] = {.lex_state = 20, .external_lex_state = 8}, + [8085] = {.lex_state = 20, .external_lex_state = 8}, + [8086] = {.lex_state = 20, .external_lex_state = 8}, + [8087] = {.lex_state = 20, .external_lex_state = 8}, + [8088] = {.lex_state = 33, .external_lex_state = 8}, + [8089] = {.lex_state = 22, .external_lex_state = 8}, + [8090] = {.lex_state = 20, .external_lex_state = 8}, + [8091] = {.lex_state = 20, .external_lex_state = 8}, + [8092] = {.lex_state = 20, .external_lex_state = 8}, + [8093] = {.lex_state = 22, .external_lex_state = 8}, + [8094] = {.lex_state = 20, .external_lex_state = 8}, + [8095] = {.lex_state = 20, .external_lex_state = 8}, + [8096] = {.lex_state = 33, .external_lex_state = 8}, + [8097] = {.lex_state = 20, .external_lex_state = 8}, + [8098] = {.lex_state = 20, .external_lex_state = 8}, + [8099] = {.lex_state = 20, .external_lex_state = 8}, + [8100] = {.lex_state = 20, .external_lex_state = 8}, + [8101] = {.lex_state = 20, .external_lex_state = 8}, + [8102] = {.lex_state = 20, .external_lex_state = 8}, + [8103] = {.lex_state = 33, .external_lex_state = 8}, + [8104] = {.lex_state = 20, .external_lex_state = 8}, + [8105] = {.lex_state = 20, .external_lex_state = 8}, + [8106] = {.lex_state = 33, .external_lex_state = 8}, + [8107] = {.lex_state = 20, .external_lex_state = 8}, + [8108] = {.lex_state = 20, .external_lex_state = 8}, + [8109] = {.lex_state = 20, .external_lex_state = 8}, + [8110] = {.lex_state = 33, .external_lex_state = 8}, + [8111] = {.lex_state = 20, .external_lex_state = 8}, + [8112] = {.lex_state = 20, .external_lex_state = 8}, + [8113] = {.lex_state = 20, .external_lex_state = 8}, + [8114] = {.lex_state = 20, .external_lex_state = 8}, + [8115] = {.lex_state = 20, .external_lex_state = 8}, + [8116] = {.lex_state = 20, .external_lex_state = 8}, + [8117] = {.lex_state = 20, .external_lex_state = 8}, + [8118] = {.lex_state = 20, .external_lex_state = 8}, + [8119] = {.lex_state = 20, .external_lex_state = 8}, + [8120] = {.lex_state = 20, .external_lex_state = 8}, + [8121] = {.lex_state = 33, .external_lex_state = 8}, + [8122] = {.lex_state = 33, .external_lex_state = 8}, + [8123] = {.lex_state = 20, .external_lex_state = 8}, + [8124] = {.lex_state = 20, .external_lex_state = 8}, + [8125] = {.lex_state = 13, .external_lex_state = 8}, + [8126] = {.lex_state = 20, .external_lex_state = 8}, + [8127] = {.lex_state = 20, .external_lex_state = 8}, + [8128] = {.lex_state = 20, .external_lex_state = 8}, + [8129] = {.lex_state = 20, .external_lex_state = 8}, + [8130] = {.lex_state = 20, .external_lex_state = 8}, + [8131] = {.lex_state = 20, .external_lex_state = 8}, + [8132] = {.lex_state = 20, .external_lex_state = 8}, + [8133] = {.lex_state = 20, .external_lex_state = 8}, + [8134] = {.lex_state = 20, .external_lex_state = 8}, + [8135] = {.lex_state = 20, .external_lex_state = 8}, + [8136] = {.lex_state = 20, .external_lex_state = 8}, + [8137] = {.lex_state = 33, .external_lex_state = 8}, + [8138] = {.lex_state = 20, .external_lex_state = 8}, + [8139] = {.lex_state = 20, .external_lex_state = 8}, + [8140] = {.lex_state = 20, .external_lex_state = 8}, + [8141] = {.lex_state = 20, .external_lex_state = 8}, + [8142] = {.lex_state = 20, .external_lex_state = 8}, + [8143] = {.lex_state = 20, .external_lex_state = 8}, + [8144] = {.lex_state = 20, .external_lex_state = 8}, + [8145] = {.lex_state = 20, .external_lex_state = 8}, + [8146] = {.lex_state = 20, .external_lex_state = 8}, + [8147] = {.lex_state = 13, .external_lex_state = 8}, + [8148] = {.lex_state = 20, .external_lex_state = 8}, + [8149] = {.lex_state = 20, .external_lex_state = 8}, + [8150] = {.lex_state = 33, .external_lex_state = 8}, + [8151] = {.lex_state = 20, .external_lex_state = 8}, + [8152] = {.lex_state = 13, .external_lex_state = 8}, + [8153] = {.lex_state = 20, .external_lex_state = 8}, + [8154] = {.lex_state = 20, .external_lex_state = 8}, + [8155] = {.lex_state = 20, .external_lex_state = 8}, + [8156] = {.lex_state = 20, .external_lex_state = 8}, + [8157] = {.lex_state = 20, .external_lex_state = 8}, + [8158] = {.lex_state = 20, .external_lex_state = 8}, + [8159] = {.lex_state = 20, .external_lex_state = 8}, + [8160] = {.lex_state = 22, .external_lex_state = 8}, + [8161] = {.lex_state = 20, .external_lex_state = 8}, + [8162] = {.lex_state = 20, .external_lex_state = 8}, + [8163] = {.lex_state = 20, .external_lex_state = 8}, + [8164] = {.lex_state = 20, .external_lex_state = 8}, + [8165] = {.lex_state = 20, .external_lex_state = 8}, + [8166] = {.lex_state = 20, .external_lex_state = 8}, + [8167] = {.lex_state = 20, .external_lex_state = 8}, + [8168] = {.lex_state = 20, .external_lex_state = 8}, + [8169] = {.lex_state = 20, .external_lex_state = 8}, + [8170] = {.lex_state = 20, .external_lex_state = 8}, + [8171] = {.lex_state = 20, .external_lex_state = 8}, + [8172] = {.lex_state = 20, .external_lex_state = 8}, + [8173] = {.lex_state = 33, .external_lex_state = 8}, + [8174] = {.lex_state = 20, .external_lex_state = 8}, + [8175] = {.lex_state = 20, .external_lex_state = 8}, + [8176] = {.lex_state = 20, .external_lex_state = 8}, + [8177] = {.lex_state = 22, .external_lex_state = 8}, + [8178] = {.lex_state = 20, .external_lex_state = 8}, + [8179] = {.lex_state = 20, .external_lex_state = 8}, + [8180] = {.lex_state = 20, .external_lex_state = 8}, + [8181] = {.lex_state = 20, .external_lex_state = 8}, + [8182] = {.lex_state = 20, .external_lex_state = 8}, + [8183] = {.lex_state = 20, .external_lex_state = 8}, + [8184] = {.lex_state = 20, .external_lex_state = 8}, + [8185] = {.lex_state = 20, .external_lex_state = 8}, + [8186] = {.lex_state = 20, .external_lex_state = 8}, + [8187] = {.lex_state = 20, .external_lex_state = 8}, + [8188] = {.lex_state = 20, .external_lex_state = 8}, + [8189] = {.lex_state = 20, .external_lex_state = 8}, + [8190] = {.lex_state = 20, .external_lex_state = 8}, + [8191] = {.lex_state = 20, .external_lex_state = 8}, + [8192] = {.lex_state = 20, .external_lex_state = 8}, + [8193] = {.lex_state = 20, .external_lex_state = 8}, + [8194] = {.lex_state = 20, .external_lex_state = 8}, + [8195] = {.lex_state = 20, .external_lex_state = 8}, + [8196] = {.lex_state = 20, .external_lex_state = 8}, + [8197] = {.lex_state = 20, .external_lex_state = 8}, + [8198] = {.lex_state = 20, .external_lex_state = 8}, + [8199] = {.lex_state = 20, .external_lex_state = 8}, + [8200] = {.lex_state = 20, .external_lex_state = 8}, + [8201] = {.lex_state = 20, .external_lex_state = 8}, + [8202] = {.lex_state = 20, .external_lex_state = 8}, + [8203] = {.lex_state = 20, .external_lex_state = 8}, + [8204] = {.lex_state = 20, .external_lex_state = 8}, + [8205] = {.lex_state = 20, .external_lex_state = 8}, + [8206] = {.lex_state = 13, .external_lex_state = 8}, + [8207] = {.lex_state = 20, .external_lex_state = 8}, + [8208] = {.lex_state = 33, .external_lex_state = 8}, + [8209] = {.lex_state = 20, .external_lex_state = 8}, + [8210] = {.lex_state = 33, .external_lex_state = 8}, + [8211] = {.lex_state = 33, .external_lex_state = 8}, + [8212] = {.lex_state = 20, .external_lex_state = 8}, + [8213] = {.lex_state = 20, .external_lex_state = 8}, + [8214] = {.lex_state = 20, .external_lex_state = 8}, + [8215] = {.lex_state = 20, .external_lex_state = 8}, + [8216] = {.lex_state = 20, .external_lex_state = 8}, + [8217] = {.lex_state = 20, .external_lex_state = 8}, + [8218] = {.lex_state = 20, .external_lex_state = 8}, + [8219] = {.lex_state = 20, .external_lex_state = 8}, + [8220] = {.lex_state = 20, .external_lex_state = 8}, + [8221] = {.lex_state = 20, .external_lex_state = 8}, + [8222] = {.lex_state = 20, .external_lex_state = 8}, + [8223] = {.lex_state = 20, .external_lex_state = 8}, + [8224] = {.lex_state = 20, .external_lex_state = 8}, + [8225] = {.lex_state = 20, .external_lex_state = 8}, + [8226] = {.lex_state = 33, .external_lex_state = 8}, + [8227] = {.lex_state = 20, .external_lex_state = 8}, + [8228] = {.lex_state = 20, .external_lex_state = 8}, + [8229] = {.lex_state = 20, .external_lex_state = 8}, + [8230] = {.lex_state = 20, .external_lex_state = 8}, + [8231] = {.lex_state = 20, .external_lex_state = 8}, + [8232] = {.lex_state = 20, .external_lex_state = 8}, + [8233] = {.lex_state = 20, .external_lex_state = 8}, + [8234] = {.lex_state = 20, .external_lex_state = 8}, + [8235] = {.lex_state = 20, .external_lex_state = 8}, + [8236] = {.lex_state = 20, .external_lex_state = 8}, + [8237] = {.lex_state = 20, .external_lex_state = 8}, + [8238] = {.lex_state = 20, .external_lex_state = 8}, + [8239] = {.lex_state = 20, .external_lex_state = 8}, + [8240] = {.lex_state = 20, .external_lex_state = 8}, + [8241] = {.lex_state = 20, .external_lex_state = 8}, + [8242] = {.lex_state = 20, .external_lex_state = 8}, + [8243] = {.lex_state = 20, .external_lex_state = 8}, + [8244] = {.lex_state = 20, .external_lex_state = 8}, + [8245] = {.lex_state = 20, .external_lex_state = 8}, + [8246] = {.lex_state = 20, .external_lex_state = 8}, + [8247] = {.lex_state = 20, .external_lex_state = 8}, + [8248] = {.lex_state = 20, .external_lex_state = 8}, + [8249] = {.lex_state = 20, .external_lex_state = 8}, + [8250] = {.lex_state = 20, .external_lex_state = 8}, + [8251] = {.lex_state = 20, .external_lex_state = 8}, + [8252] = {.lex_state = 33, .external_lex_state = 8}, + [8253] = {.lex_state = 20, .external_lex_state = 8}, + [8254] = {.lex_state = 20, .external_lex_state = 8}, + [8255] = {.lex_state = 20, .external_lex_state = 8}, + [8256] = {.lex_state = 20, .external_lex_state = 8}, + [8257] = {.lex_state = 20, .external_lex_state = 8}, + [8258] = {.lex_state = 20, .external_lex_state = 8}, + [8259] = {.lex_state = 33, .external_lex_state = 8}, + [8260] = {.lex_state = 33, .external_lex_state = 8}, + [8261] = {.lex_state = 20, .external_lex_state = 8}, + [8262] = {.lex_state = 20, .external_lex_state = 8}, + [8263] = {.lex_state = 20, .external_lex_state = 8}, + [8264] = {.lex_state = 20, .external_lex_state = 8}, + [8265] = {.lex_state = 20, .external_lex_state = 8}, + [8266] = {.lex_state = 33, .external_lex_state = 8}, + [8267] = {.lex_state = 20, .external_lex_state = 8}, + [8268] = {.lex_state = 20, .external_lex_state = 8}, + [8269] = {.lex_state = 20, .external_lex_state = 8}, + [8270] = {.lex_state = 20, .external_lex_state = 8}, + [8271] = {.lex_state = 20, .external_lex_state = 8}, + [8272] = {.lex_state = 20, .external_lex_state = 8}, + [8273] = {.lex_state = 20, .external_lex_state = 8}, + [8274] = {.lex_state = 20, .external_lex_state = 8}, + [8275] = {.lex_state = 20, .external_lex_state = 8}, + [8276] = {.lex_state = 20, .external_lex_state = 8}, + [8277] = {.lex_state = 20, .external_lex_state = 8}, + [8278] = {.lex_state = 20, .external_lex_state = 8}, + [8279] = {.lex_state = 20, .external_lex_state = 8}, + [8280] = {.lex_state = 20, .external_lex_state = 8}, + [8281] = {.lex_state = 20, .external_lex_state = 8}, + [8282] = {.lex_state = 20, .external_lex_state = 8}, + [8283] = {.lex_state = 20, .external_lex_state = 8}, + [8284] = {.lex_state = 20, .external_lex_state = 8}, + [8285] = {.lex_state = 20, .external_lex_state = 8}, + [8286] = {.lex_state = 20, .external_lex_state = 8}, + [8287] = {.lex_state = 20, .external_lex_state = 8}, + [8288] = {.lex_state = 20, .external_lex_state = 8}, + [8289] = {.lex_state = 20, .external_lex_state = 8}, + [8290] = {.lex_state = 20, .external_lex_state = 8}, + [8291] = {.lex_state = 20, .external_lex_state = 8}, + [8292] = {.lex_state = 20, .external_lex_state = 8}, + [8293] = {.lex_state = 20, .external_lex_state = 8}, + [8294] = {.lex_state = 33, .external_lex_state = 8}, + [8295] = {.lex_state = 20, .external_lex_state = 8}, + [8296] = {.lex_state = 20, .external_lex_state = 8}, + [8297] = {.lex_state = 20, .external_lex_state = 8}, + [8298] = {.lex_state = 20, .external_lex_state = 8}, + [8299] = {.lex_state = 33, .external_lex_state = 8}, + [8300] = {.lex_state = 20, .external_lex_state = 8}, + [8301] = {.lex_state = 20, .external_lex_state = 8}, + [8302] = {.lex_state = 20, .external_lex_state = 8}, + [8303] = {.lex_state = 20, .external_lex_state = 8}, + [8304] = {.lex_state = 20, .external_lex_state = 8}, + [8305] = {.lex_state = 20, .external_lex_state = 8}, + [8306] = {.lex_state = 20, .external_lex_state = 8}, + [8307] = {.lex_state = 20, .external_lex_state = 8}, + [8308] = {.lex_state = 33, .external_lex_state = 8}, + [8309] = {.lex_state = 20, .external_lex_state = 8}, + [8310] = {.lex_state = 20, .external_lex_state = 8}, + [8311] = {.lex_state = 20, .external_lex_state = 8}, + [8312] = {.lex_state = 20, .external_lex_state = 8}, + [8313] = {.lex_state = 20, .external_lex_state = 8}, + [8314] = {.lex_state = 22, .external_lex_state = 8}, + [8315] = {.lex_state = 13, .external_lex_state = 8}, + [8316] = {.lex_state = 20, .external_lex_state = 8}, + [8317] = {.lex_state = 20, .external_lex_state = 8}, + [8318] = {.lex_state = 13, .external_lex_state = 8}, + [8319] = {.lex_state = 20, .external_lex_state = 8}, + [8320] = {.lex_state = 20, .external_lex_state = 8}, + [8321] = {.lex_state = 20, .external_lex_state = 8}, + [8322] = {.lex_state = 20, .external_lex_state = 8}, + [8323] = {.lex_state = 33, .external_lex_state = 8}, + [8324] = {.lex_state = 20, .external_lex_state = 8}, + [8325] = {.lex_state = 20, .external_lex_state = 8}, + [8326] = {.lex_state = 33, .external_lex_state = 8}, + [8327] = {.lex_state = 20, .external_lex_state = 8}, + [8328] = {.lex_state = 20, .external_lex_state = 8}, + [8329] = {.lex_state = 20, .external_lex_state = 8}, + [8330] = {.lex_state = 20, .external_lex_state = 8}, + [8331] = {.lex_state = 20, .external_lex_state = 8}, + [8332] = {.lex_state = 20, .external_lex_state = 8}, + [8333] = {.lex_state = 20, .external_lex_state = 8}, + [8334] = {.lex_state = 20, .external_lex_state = 8}, + [8335] = {.lex_state = 20, .external_lex_state = 8}, + [8336] = {.lex_state = 20, .external_lex_state = 8}, + [8337] = {.lex_state = 20, .external_lex_state = 8}, + [8338] = {.lex_state = 20, .external_lex_state = 8}, + [8339] = {.lex_state = 20, .external_lex_state = 8}, + [8340] = {.lex_state = 20, .external_lex_state = 8}, + [8341] = {.lex_state = 20, .external_lex_state = 8}, + [8342] = {.lex_state = 20, .external_lex_state = 8}, + [8343] = {.lex_state = 22, .external_lex_state = 8}, + [8344] = {.lex_state = 20, .external_lex_state = 8}, + [8345] = {.lex_state = 20, .external_lex_state = 8}, + [8346] = {.lex_state = 20, .external_lex_state = 8}, + [8347] = {.lex_state = 20, .external_lex_state = 8}, + [8348] = {.lex_state = 20, .external_lex_state = 8}, + [8349] = {.lex_state = 20, .external_lex_state = 8}, + [8350] = {.lex_state = 20, .external_lex_state = 8}, + [8351] = {.lex_state = 22, .external_lex_state = 8}, + [8352] = {.lex_state = 20, .external_lex_state = 8}, + [8353] = {.lex_state = 20, .external_lex_state = 8}, + [8354] = {.lex_state = 20, .external_lex_state = 8}, + [8355] = {.lex_state = 33, .external_lex_state = 8}, + [8356] = {.lex_state = 33, .external_lex_state = 8}, + [8357] = {.lex_state = 20, .external_lex_state = 8}, + [8358] = {.lex_state = 33, .external_lex_state = 8}, + [8359] = {.lex_state = 20, .external_lex_state = 8}, + [8360] = {.lex_state = 20, .external_lex_state = 8}, + [8361] = {.lex_state = 22, .external_lex_state = 9}, + [8362] = {.lex_state = 22, .external_lex_state = 8}, + [8363] = {.lex_state = 22, .external_lex_state = 8}, + [8364] = {.lex_state = 22, .external_lex_state = 8}, + [8365] = {.lex_state = 22, .external_lex_state = 8}, + [8366] = {.lex_state = 20, .external_lex_state = 8}, + [8367] = {.lex_state = 22, .external_lex_state = 8}, + [8368] = {.lex_state = 22, .external_lex_state = 8}, + [8369] = {.lex_state = 22, .external_lex_state = 8}, + [8370] = {.lex_state = 22, .external_lex_state = 8}, + [8371] = {.lex_state = 22, .external_lex_state = 8}, + [8372] = {.lex_state = 20, .external_lex_state = 8}, + [8373] = {.lex_state = 22, .external_lex_state = 8}, + [8374] = {.lex_state = 22, .external_lex_state = 9}, + [8375] = {.lex_state = 22, .external_lex_state = 9}, + [8376] = {.lex_state = 22, .external_lex_state = 9}, + [8377] = {.lex_state = 22, .external_lex_state = 9}, + [8378] = {.lex_state = 22, .external_lex_state = 8}, + [8379] = {.lex_state = 22, .external_lex_state = 8}, + [8380] = {.lex_state = 22, .external_lex_state = 9}, + [8381] = {.lex_state = 22, .external_lex_state = 9}, + [8382] = {.lex_state = 22, .external_lex_state = 8}, + [8383] = {.lex_state = 22, .external_lex_state = 8}, + [8384] = {.lex_state = 22, .external_lex_state = 9}, + [8385] = {.lex_state = 13, .external_lex_state = 8}, + [8386] = {.lex_state = 22, .external_lex_state = 8}, + [8387] = {.lex_state = 22, .external_lex_state = 9}, + [8388] = {.lex_state = 22, .external_lex_state = 8}, + [8389] = {.lex_state = 13, .external_lex_state = 8}, + [8390] = {.lex_state = 22, .external_lex_state = 9}, + [8391] = {.lex_state = 22, .external_lex_state = 8}, + [8392] = {.lex_state = 321, .external_lex_state = 8}, + [8393] = {.lex_state = 22, .external_lex_state = 8}, + [8394] = {.lex_state = 321, .external_lex_state = 8}, + [8395] = {.lex_state = 13, .external_lex_state = 8}, + [8396] = {.lex_state = 22, .external_lex_state = 9}, + [8397] = {.lex_state = 22, .external_lex_state = 8}, + [8398] = {.lex_state = 22, .external_lex_state = 9}, + [8399] = {.lex_state = 22, .external_lex_state = 8}, + [8400] = {.lex_state = 13, .external_lex_state = 8}, + [8401] = {.lex_state = 13, .external_lex_state = 8}, + [8402] = {.lex_state = 22, .external_lex_state = 9}, + [8403] = {.lex_state = 22, .external_lex_state = 8}, + [8404] = {.lex_state = 22, .external_lex_state = 8}, + [8405] = {.lex_state = 22, .external_lex_state = 8}, + [8406] = {.lex_state = 13, .external_lex_state = 8}, + [8407] = {.lex_state = 22, .external_lex_state = 9}, + [8408] = {.lex_state = 22, .external_lex_state = 9}, + [8409] = {.lex_state = 22, .external_lex_state = 8}, + [8410] = {.lex_state = 0, .external_lex_state = 8}, + [8411] = {.lex_state = 22, .external_lex_state = 8}, + [8412] = {.lex_state = 22, .external_lex_state = 8}, + [8413] = {.lex_state = 13, .external_lex_state = 8}, + [8414] = {.lex_state = 321, .external_lex_state = 8}, + [8415] = {.lex_state = 22, .external_lex_state = 9}, + [8416] = {.lex_state = 22, .external_lex_state = 9}, + [8417] = {.lex_state = 321, .external_lex_state = 8}, + [8418] = {.lex_state = 321, .external_lex_state = 8}, + [8419] = {.lex_state = 22, .external_lex_state = 9}, + [8420] = {.lex_state = 22, .external_lex_state = 8}, + [8421] = {.lex_state = 321, .external_lex_state = 8}, + [8422] = {.lex_state = 321, .external_lex_state = 8}, + [8423] = {.lex_state = 321, .external_lex_state = 8}, + [8424] = {.lex_state = 321, .external_lex_state = 8}, + [8425] = {.lex_state = 321, .external_lex_state = 8}, + [8426] = {.lex_state = 321, .external_lex_state = 8}, + [8427] = {.lex_state = 321, .external_lex_state = 8}, + [8428] = {.lex_state = 321, .external_lex_state = 8}, + [8429] = {.lex_state = 321, .external_lex_state = 8}, + [8430] = {.lex_state = 321, .external_lex_state = 8}, + [8431] = {.lex_state = 22, .external_lex_state = 8}, + [8432] = {.lex_state = 0, .external_lex_state = 8}, + [8433] = {.lex_state = 22, .external_lex_state = 9}, + [8434] = {.lex_state = 321, .external_lex_state = 8}, + [8435] = {.lex_state = 22, .external_lex_state = 8}, + [8436] = {.lex_state = 321, .external_lex_state = 8}, + [8437] = {.lex_state = 321, .external_lex_state = 8}, + [8438] = {.lex_state = 321, .external_lex_state = 8}, + [8439] = {.lex_state = 22, .external_lex_state = 8}, + [8440] = {.lex_state = 22, .external_lex_state = 8}, + [8441] = {.lex_state = 321, .external_lex_state = 8}, + [8442] = {.lex_state = 22, .external_lex_state = 9}, + [8443] = {.lex_state = 22, .external_lex_state = 9}, + [8444] = {.lex_state = 321, .external_lex_state = 8}, + [8445] = {.lex_state = 321, .external_lex_state = 8}, + [8446] = {.lex_state = 22, .external_lex_state = 8}, + [8447] = {.lex_state = 22, .external_lex_state = 9}, + [8448] = {.lex_state = 321, .external_lex_state = 8}, + [8449] = {.lex_state = 321, .external_lex_state = 8}, + [8450] = {.lex_state = 22, .external_lex_state = 8}, + [8451] = {.lex_state = 321, .external_lex_state = 8}, + [8452] = {.lex_state = 321, .external_lex_state = 8}, + [8453] = {.lex_state = 0, .external_lex_state = 9}, + [8454] = {.lex_state = 22, .external_lex_state = 8}, + [8455] = {.lex_state = 22, .external_lex_state = 8}, + [8456] = {.lex_state = 0, .external_lex_state = 10}, + [8457] = {.lex_state = 0, .external_lex_state = 9}, + [8458] = {.lex_state = 22, .external_lex_state = 9}, + [8459] = {.lex_state = 0, .external_lex_state = 9}, + [8460] = {.lex_state = 0, .external_lex_state = 10}, + [8461] = {.lex_state = 22, .external_lex_state = 9}, + [8462] = {.lex_state = 0, .external_lex_state = 10}, + [8463] = {.lex_state = 22, .external_lex_state = 8}, + [8464] = {.lex_state = 22, .external_lex_state = 8}, + [8465] = {.lex_state = 22, .external_lex_state = 8}, + [8466] = {.lex_state = 0, .external_lex_state = 9}, + [8467] = {.lex_state = 0, .external_lex_state = 9}, + [8468] = {.lex_state = 0, .external_lex_state = 10}, + [8469] = {.lex_state = 22, .external_lex_state = 9}, + [8470] = {.lex_state = 22, .external_lex_state = 9}, + [8471] = {.lex_state = 0, .external_lex_state = 10}, + [8472] = {.lex_state = 0, .external_lex_state = 10}, + [8473] = {.lex_state = 0, .external_lex_state = 9}, + [8474] = {.lex_state = 22, .external_lex_state = 9}, + [8475] = {.lex_state = 22, .external_lex_state = 9}, + [8476] = {.lex_state = 22, .external_lex_state = 9}, + [8477] = {.lex_state = 0, .external_lex_state = 9}, + [8478] = {.lex_state = 0, .external_lex_state = 10}, + [8479] = {.lex_state = 22, .external_lex_state = 9}, + [8480] = {.lex_state = 0, .external_lex_state = 10}, + [8481] = {.lex_state = 0, .external_lex_state = 10}, + [8482] = {.lex_state = 22, .external_lex_state = 9}, + [8483] = {.lex_state = 22, .external_lex_state = 9}, + [8484] = {.lex_state = 22, .external_lex_state = 9}, + [8485] = {.lex_state = 0, .external_lex_state = 9}, + [8486] = {.lex_state = 22, .external_lex_state = 9}, + [8487] = {.lex_state = 22, .external_lex_state = 8}, + [8488] = {.lex_state = 22, .external_lex_state = 8}, + [8489] = {.lex_state = 0, .external_lex_state = 10}, + [8490] = {.lex_state = 22, .external_lex_state = 8}, + [8491] = {.lex_state = 22, .external_lex_state = 9}, + [8492] = {.lex_state = 22, .external_lex_state = 8}, + [8493] = {.lex_state = 22, .external_lex_state = 9}, + [8494] = {.lex_state = 0, .external_lex_state = 10}, + [8495] = {.lex_state = 0, .external_lex_state = 10}, + [8496] = {.lex_state = 22, .external_lex_state = 9}, + [8497] = {.lex_state = 22, .external_lex_state = 9}, + [8498] = {.lex_state = 22, .external_lex_state = 9}, + [8499] = {.lex_state = 22, .external_lex_state = 9}, + [8500] = {.lex_state = 0, .external_lex_state = 9}, + [8501] = {.lex_state = 0, .external_lex_state = 9}, + [8502] = {.lex_state = 321, .external_lex_state = 8}, + [8503] = {.lex_state = 22, .external_lex_state = 8}, + [8504] = {.lex_state = 22, .external_lex_state = 9}, + [8505] = {.lex_state = 0, .external_lex_state = 10}, + [8506] = {.lex_state = 22, .external_lex_state = 9}, + [8507] = {.lex_state = 22, .external_lex_state = 8}, + [8508] = {.lex_state = 22, .external_lex_state = 8}, + [8509] = {.lex_state = 0, .external_lex_state = 8}, + [8510] = {.lex_state = 0, .external_lex_state = 8}, + [8511] = {.lex_state = 0, .external_lex_state = 8}, + [8512] = {.lex_state = 22, .external_lex_state = 8}, + [8513] = {.lex_state = 34, .external_lex_state = 8}, + [8514] = {.lex_state = 22, .external_lex_state = 9}, + [8515] = {.lex_state = 22, .external_lex_state = 8}, + [8516] = {.lex_state = 22, .external_lex_state = 9}, + [8517] = {.lex_state = 34, .external_lex_state = 8}, + [8518] = {.lex_state = 0, .external_lex_state = 8}, + [8519] = {.lex_state = 22, .external_lex_state = 8}, + [8520] = {.lex_state = 22, .external_lex_state = 8}, + [8521] = {.lex_state = 34, .external_lex_state = 8}, + [8522] = {.lex_state = 22, .external_lex_state = 9}, + [8523] = {.lex_state = 0, .external_lex_state = 8}, + [8524] = {.lex_state = 0, .external_lex_state = 8}, + [8525] = {.lex_state = 0, .external_lex_state = 8}, + [8526] = {.lex_state = 0, .external_lex_state = 8}, + [8527] = {.lex_state = 22, .external_lex_state = 9}, + [8528] = {.lex_state = 34, .external_lex_state = 8}, + [8529] = {.lex_state = 22, .external_lex_state = 8}, + [8530] = {.lex_state = 22, .external_lex_state = 9}, + [8531] = {.lex_state = 0, .external_lex_state = 8}, + [8532] = {.lex_state = 0, .external_lex_state = 8}, + [8533] = {.lex_state = 0, .external_lex_state = 8}, + [8534] = {.lex_state = 0, .external_lex_state = 8}, + [8535] = {.lex_state = 0, .external_lex_state = 8}, + [8536] = {.lex_state = 0, .external_lex_state = 8}, + [8537] = {.lex_state = 0, .external_lex_state = 8}, + [8538] = {.lex_state = 22, .external_lex_state = 9}, + [8539] = {.lex_state = 0, .external_lex_state = 8}, + [8540] = {.lex_state = 0, .external_lex_state = 8}, + [8541] = {.lex_state = 0, .external_lex_state = 9}, + [8542] = {.lex_state = 0, .external_lex_state = 8}, + [8543] = {.lex_state = 0, .external_lex_state = 8}, + [8544] = {.lex_state = 0, .external_lex_state = 8}, + [8545] = {.lex_state = 0, .external_lex_state = 8}, + [8546] = {.lex_state = 0, .external_lex_state = 8}, + [8547] = {.lex_state = 0, .external_lex_state = 8}, + [8548] = {.lex_state = 22, .external_lex_state = 9}, + [8549] = {.lex_state = 0, .external_lex_state = 8}, + [8550] = {.lex_state = 0, .external_lex_state = 8}, + [8551] = {.lex_state = 0, .external_lex_state = 8}, + [8552] = {.lex_state = 22, .external_lex_state = 9}, + [8553] = {.lex_state = 22, .external_lex_state = 9}, + [8554] = {.lex_state = 0, .external_lex_state = 8}, + [8555] = {.lex_state = 34, .external_lex_state = 8}, + [8556] = {.lex_state = 0, .external_lex_state = 8}, + [8557] = {.lex_state = 0, .external_lex_state = 8}, + [8558] = {.lex_state = 22, .external_lex_state = 8}, + [8559] = {.lex_state = 0, .external_lex_state = 8}, + [8560] = {.lex_state = 0, .external_lex_state = 8}, + [8561] = {.lex_state = 0, .external_lex_state = 8}, + [8562] = {.lex_state = 0, .external_lex_state = 8}, + [8563] = {.lex_state = 0, .external_lex_state = 8}, + [8564] = {.lex_state = 0, .external_lex_state = 8}, + [8565] = {.lex_state = 0, .external_lex_state = 8}, + [8566] = {.lex_state = 22, .external_lex_state = 8}, + [8567] = {.lex_state = 0, .external_lex_state = 8}, + [8568] = {.lex_state = 0, .external_lex_state = 8}, + [8569] = {.lex_state = 0, .external_lex_state = 8}, + [8570] = {.lex_state = 0, .external_lex_state = 8}, + [8571] = {.lex_state = 0, .external_lex_state = 8}, + [8572] = {.lex_state = 0, .external_lex_state = 8}, + [8573] = {.lex_state = 0, .external_lex_state = 8}, + [8574] = {.lex_state = 22, .external_lex_state = 9}, + [8575] = {.lex_state = 22, .external_lex_state = 8}, + [8576] = {.lex_state = 0, .external_lex_state = 8}, + [8577] = {.lex_state = 22, .external_lex_state = 8}, + [8578] = {.lex_state = 0, .external_lex_state = 8}, + [8579] = {.lex_state = 22, .external_lex_state = 8}, + [8580] = {.lex_state = 22, .external_lex_state = 8}, + [8581] = {.lex_state = 0, .external_lex_state = 8}, + [8582] = {.lex_state = 22, .external_lex_state = 8}, + [8583] = {.lex_state = 22, .external_lex_state = 8}, + [8584] = {.lex_state = 0, .external_lex_state = 8}, + [8585] = {.lex_state = 22, .external_lex_state = 8}, + [8586] = {.lex_state = 0, .external_lex_state = 8}, + [8587] = {.lex_state = 22, .external_lex_state = 8}, + [8588] = {.lex_state = 0, .external_lex_state = 8}, + [8589] = {.lex_state = 0, .external_lex_state = 8}, + [8590] = {.lex_state = 0, .external_lex_state = 8}, + [8591] = {.lex_state = 0, .external_lex_state = 8}, + [8592] = {.lex_state = 0, .external_lex_state = 8}, + [8593] = {.lex_state = 0, .external_lex_state = 8}, + [8594] = {.lex_state = 0, .external_lex_state = 8}, + [8595] = {.lex_state = 0, .external_lex_state = 8}, + [8596] = {.lex_state = 22, .external_lex_state = 8}, + [8597] = {.lex_state = 0, .external_lex_state = 8}, + [8598] = {.lex_state = 0, .external_lex_state = 8}, + [8599] = {.lex_state = 0, .external_lex_state = 8}, + [8600] = {.lex_state = 0, .external_lex_state = 8}, + [8601] = {.lex_state = 0, .external_lex_state = 8}, + [8602] = {.lex_state = 22, .external_lex_state = 8}, + [8603] = {.lex_state = 0, .external_lex_state = 9}, + [8604] = {.lex_state = 22, .external_lex_state = 8}, + [8605] = {.lex_state = 22, .external_lex_state = 8}, + [8606] = {.lex_state = 0, .external_lex_state = 8}, + [8607] = {.lex_state = 0, .external_lex_state = 8}, + [8608] = {.lex_state = 22, .external_lex_state = 9}, + [8609] = {.lex_state = 0, .external_lex_state = 8}, + [8610] = {.lex_state = 0, .external_lex_state = 8}, + [8611] = {.lex_state = 22, .external_lex_state = 9}, + [8612] = {.lex_state = 0, .external_lex_state = 8}, + [8613] = {.lex_state = 0, .external_lex_state = 8}, + [8614] = {.lex_state = 0, .external_lex_state = 8}, + [8615] = {.lex_state = 0, .external_lex_state = 8}, + [8616] = {.lex_state = 0, .external_lex_state = 8}, + [8617] = {.lex_state = 22, .external_lex_state = 8}, + [8618] = {.lex_state = 34, .external_lex_state = 8}, + [8619] = {.lex_state = 22, .external_lex_state = 9}, + [8620] = {.lex_state = 22, .external_lex_state = 8}, + [8621] = {.lex_state = 22, .external_lex_state = 8}, + [8622] = {.lex_state = 0, .external_lex_state = 8}, + [8623] = {.lex_state = 0, .external_lex_state = 8}, + [8624] = {.lex_state = 22, .external_lex_state = 9}, + [8625] = {.lex_state = 0, .external_lex_state = 8}, + [8626] = {.lex_state = 0, .external_lex_state = 8}, + [8627] = {.lex_state = 0, .external_lex_state = 8}, + [8628] = {.lex_state = 0, .external_lex_state = 8}, + [8629] = {.lex_state = 0, .external_lex_state = 8}, + [8630] = {.lex_state = 0, .external_lex_state = 8}, + [8631] = {.lex_state = 0, .external_lex_state = 8}, + [8632] = {.lex_state = 22, .external_lex_state = 8}, + [8633] = {.lex_state = 0, .external_lex_state = 8}, + [8634] = {.lex_state = 0, .external_lex_state = 8}, + [8635] = {.lex_state = 0, .external_lex_state = 8}, + [8636] = {.lex_state = 22, .external_lex_state = 8}, + [8637] = {.lex_state = 22, .external_lex_state = 9}, + [8638] = {.lex_state = 22, .external_lex_state = 8}, + [8639] = {.lex_state = 0, .external_lex_state = 8}, + [8640] = {.lex_state = 0, .external_lex_state = 8}, + [8641] = {.lex_state = 0, .external_lex_state = 8}, + [8642] = {.lex_state = 22, .external_lex_state = 8}, + [8643] = {.lex_state = 22, .external_lex_state = 8}, + [8644] = {.lex_state = 22, .external_lex_state = 8}, + [8645] = {.lex_state = 0, .external_lex_state = 8}, + [8646] = {.lex_state = 0, .external_lex_state = 8}, + [8647] = {.lex_state = 22, .external_lex_state = 8}, + [8648] = {.lex_state = 0, .external_lex_state = 8}, + [8649] = {.lex_state = 0, .external_lex_state = 8}, + [8650] = {.lex_state = 22, .external_lex_state = 8}, + [8651] = {.lex_state = 0, .external_lex_state = 8}, + [8652] = {.lex_state = 0, .external_lex_state = 8}, + [8653] = {.lex_state = 0, .external_lex_state = 8}, + [8654] = {.lex_state = 22, .external_lex_state = 8}, + [8655] = {.lex_state = 0, .external_lex_state = 8}, + [8656] = {.lex_state = 0, .external_lex_state = 8}, + [8657] = {.lex_state = 0, .external_lex_state = 8}, + [8658] = {.lex_state = 0, .external_lex_state = 8}, + [8659] = {.lex_state = 0, .external_lex_state = 8}, + [8660] = {.lex_state = 0, .external_lex_state = 8}, + [8661] = {.lex_state = 22, .external_lex_state = 8}, + [8662] = {.lex_state = 22, .external_lex_state = 8}, + [8663] = {.lex_state = 22, .external_lex_state = 8}, + [8664] = {.lex_state = 0, .external_lex_state = 8}, + [8665] = {.lex_state = 22, .external_lex_state = 8}, + [8666] = {.lex_state = 22, .external_lex_state = 8}, + [8667] = {.lex_state = 22, .external_lex_state = 8}, + [8668] = {.lex_state = 0, .external_lex_state = 8}, + [8669] = {.lex_state = 0, .external_lex_state = 8}, + [8670] = {.lex_state = 0, .external_lex_state = 8}, + [8671] = {.lex_state = 0, .external_lex_state = 8}, + [8672] = {.lex_state = 0, .external_lex_state = 8}, + [8673] = {.lex_state = 0, .external_lex_state = 8}, + [8674] = {.lex_state = 0, .external_lex_state = 8}, + [8675] = {.lex_state = 0, .external_lex_state = 8}, + [8676] = {.lex_state = 0, .external_lex_state = 8}, + [8677] = {.lex_state = 0, .external_lex_state = 8}, + [8678] = {.lex_state = 22, .external_lex_state = 8}, + [8679] = {.lex_state = 0, .external_lex_state = 8}, + [8680] = {.lex_state = 0, .external_lex_state = 8}, + [8681] = {.lex_state = 0, .external_lex_state = 10}, + [8682] = {.lex_state = 0, .external_lex_state = 8}, + [8683] = {.lex_state = 0, .external_lex_state = 10}, + [8684] = {.lex_state = 0, .external_lex_state = 9}, + [8685] = {.lex_state = 22, .external_lex_state = 8}, + [8686] = {.lex_state = 0, .external_lex_state = 8}, + [8687] = {.lex_state = 0, .external_lex_state = 8}, + [8688] = {.lex_state = 0, .external_lex_state = 8}, + [8689] = {.lex_state = 0, .external_lex_state = 8}, + [8690] = {.lex_state = 0, .external_lex_state = 8}, + [8691] = {.lex_state = 0, .external_lex_state = 9}, + [8692] = {.lex_state = 22, .external_lex_state = 8}, + [8693] = {.lex_state = 0, .external_lex_state = 8}, + [8694] = {.lex_state = 0, .external_lex_state = 8}, + [8695] = {.lex_state = 0, .external_lex_state = 8}, + [8696] = {.lex_state = 0, .external_lex_state = 8}, + [8697] = {.lex_state = 0, .external_lex_state = 8}, + [8698] = {.lex_state = 0, .external_lex_state = 8}, + [8699] = {.lex_state = 0, .external_lex_state = 8}, + [8700] = {.lex_state = 0, .external_lex_state = 8}, + [8701] = {.lex_state = 0, .external_lex_state = 8}, + [8702] = {.lex_state = 0, .external_lex_state = 8}, + [8703] = {.lex_state = 0, .external_lex_state = 8}, + [8704] = {.lex_state = 0, .external_lex_state = 8}, + [8705] = {.lex_state = 22, .external_lex_state = 8}, + [8706] = {.lex_state = 0, .external_lex_state = 9}, + [8707] = {.lex_state = 0, .external_lex_state = 8}, + [8708] = {.lex_state = 0, .external_lex_state = 8}, + [8709] = {.lex_state = 0, .external_lex_state = 8}, + [8710] = {.lex_state = 0, .external_lex_state = 9}, + [8711] = {.lex_state = 0, .external_lex_state = 9}, + [8712] = {.lex_state = 0, .external_lex_state = 8}, + [8713] = {.lex_state = 0, .external_lex_state = 9}, + [8714] = {.lex_state = 0, .external_lex_state = 8}, + [8715] = {.lex_state = 0, .external_lex_state = 8}, + [8716] = {.lex_state = 0, .external_lex_state = 8}, + [8717] = {.lex_state = 22, .external_lex_state = 8}, + [8718] = {.lex_state = 0, .external_lex_state = 8}, + [8719] = {.lex_state = 0, .external_lex_state = 8}, + [8720] = {.lex_state = 0, .external_lex_state = 8}, + [8721] = {.lex_state = 0, .external_lex_state = 8}, + [8722] = {.lex_state = 0, .external_lex_state = 8}, + [8723] = {.lex_state = 0, .external_lex_state = 8}, + [8724] = {.lex_state = 0, .external_lex_state = 8}, + [8725] = {.lex_state = 0, .external_lex_state = 8}, + [8726] = {.lex_state = 0, .external_lex_state = 8}, + [8727] = {.lex_state = 0, .external_lex_state = 8}, + [8728] = {.lex_state = 0, .external_lex_state = 8}, + [8729] = {.lex_state = 0, .external_lex_state = 8}, + [8730] = {.lex_state = 0, .external_lex_state = 9}, + [8731] = {.lex_state = 0, .external_lex_state = 8}, + [8732] = {.lex_state = 0, .external_lex_state = 9}, + [8733] = {.lex_state = 0, .external_lex_state = 9}, + [8734] = {.lex_state = 0, .external_lex_state = 8}, + [8735] = {.lex_state = 0, .external_lex_state = 8}, + [8736] = {.lex_state = 0, .external_lex_state = 8}, + [8737] = {.lex_state = 0, .external_lex_state = 8}, + [8738] = {.lex_state = 0, .external_lex_state = 8}, + [8739] = {.lex_state = 0, .external_lex_state = 8}, + [8740] = {.lex_state = 0, .external_lex_state = 9}, + [8741] = {.lex_state = 0, .external_lex_state = 8}, + [8742] = {.lex_state = 0, .external_lex_state = 8}, + [8743] = {.lex_state = 0, .external_lex_state = 8}, + [8744] = {.lex_state = 22, .external_lex_state = 8}, + [8745] = {.lex_state = 0, .external_lex_state = 8}, + [8746] = {.lex_state = 0, .external_lex_state = 8}, + [8747] = {.lex_state = 0, .external_lex_state = 8}, + [8748] = {.lex_state = 22, .external_lex_state = 8}, + [8749] = {.lex_state = 0, .external_lex_state = 8}, + [8750] = {.lex_state = 0, .external_lex_state = 8}, + [8751] = {.lex_state = 0, .external_lex_state = 8}, + [8752] = {.lex_state = 0, .external_lex_state = 8}, + [8753] = {.lex_state = 0, .external_lex_state = 8}, + [8754] = {.lex_state = 0, .external_lex_state = 8}, + [8755] = {.lex_state = 0, .external_lex_state = 9}, + [8756] = {.lex_state = 0, .external_lex_state = 8}, + [8757] = {.lex_state = 0, .external_lex_state = 9}, + [8758] = {.lex_state = 0, .external_lex_state = 8}, + [8759] = {.lex_state = 0, .external_lex_state = 9}, + [8760] = {.lex_state = 0, .external_lex_state = 8}, + [8761] = {.lex_state = 0, .external_lex_state = 8}, + [8762] = {.lex_state = 0, .external_lex_state = 8}, + [8763] = {.lex_state = 0, .external_lex_state = 8}, + [8764] = {.lex_state = 0, .external_lex_state = 8}, + [8765] = {.lex_state = 0, .external_lex_state = 8}, + [8766] = {.lex_state = 0, .external_lex_state = 8}, + [8767] = {.lex_state = 0, .external_lex_state = 8}, + [8768] = {.lex_state = 22, .external_lex_state = 8}, + [8769] = {.lex_state = 22, .external_lex_state = 8}, + [8770] = {.lex_state = 0, .external_lex_state = 9}, + [8771] = {.lex_state = 0, .external_lex_state = 8}, + [8772] = {.lex_state = 22, .external_lex_state = 8}, + [8773] = {.lex_state = 0, .external_lex_state = 9}, + [8774] = {.lex_state = 0, .external_lex_state = 8}, + [8775] = {.lex_state = 0, .external_lex_state = 9}, + [8776] = {.lex_state = 22, .external_lex_state = 8}, + [8777] = {.lex_state = 0, .external_lex_state = 8}, + [8778] = {.lex_state = 0, .external_lex_state = 8}, + [8779] = {.lex_state = 22, .external_lex_state = 11}, + [8780] = {.lex_state = 0, .external_lex_state = 8}, + [8781] = {.lex_state = 0, .external_lex_state = 8}, + [8782] = {.lex_state = 0, .external_lex_state = 8}, + [8783] = {.lex_state = 0, .external_lex_state = 8}, + [8784] = {.lex_state = 0, .external_lex_state = 8}, + [8785] = {.lex_state = 0, .external_lex_state = 10}, + [8786] = {.lex_state = 0, .external_lex_state = 9}, + [8787] = {.lex_state = 22, .external_lex_state = 8}, + [8788] = {.lex_state = 0, .external_lex_state = 9}, + [8789] = {.lex_state = 0, .external_lex_state = 8}, + [8790] = {.lex_state = 0, .external_lex_state = 8}, + [8791] = {.lex_state = 0, .external_lex_state = 8}, + [8792] = {.lex_state = 0, .external_lex_state = 8}, + [8793] = {.lex_state = 0, .external_lex_state = 9}, + [8794] = {.lex_state = 22, .external_lex_state = 11}, + [8795] = {.lex_state = 0, .external_lex_state = 8}, + [8796] = {.lex_state = 0, .external_lex_state = 8}, + [8797] = {.lex_state = 0, .external_lex_state = 8}, + [8798] = {.lex_state = 0, .external_lex_state = 8}, + [8799] = {.lex_state = 0, .external_lex_state = 9}, + [8800] = {.lex_state = 0, .external_lex_state = 8}, + [8801] = {.lex_state = 321, .external_lex_state = 8}, + [8802] = {.lex_state = 0, .external_lex_state = 8}, + [8803] = {.lex_state = 0, .external_lex_state = 9}, + [8804] = {.lex_state = 0, .external_lex_state = 8}, + [8805] = {.lex_state = 0, .external_lex_state = 8}, + [8806] = {.lex_state = 0, .external_lex_state = 8}, + [8807] = {.lex_state = 0, .external_lex_state = 8}, + [8808] = {.lex_state = 0, .external_lex_state = 8}, + [8809] = {.lex_state = 0, .external_lex_state = 9}, + [8810] = {.lex_state = 22, .external_lex_state = 8}, + [8811] = {.lex_state = 0, .external_lex_state = 9}, + [8812] = {.lex_state = 0, .external_lex_state = 8}, + [8813] = {.lex_state = 0, .external_lex_state = 8}, + [8814] = {.lex_state = 0, .external_lex_state = 8}, + [8815] = {.lex_state = 0, .external_lex_state = 8}, + [8816] = {.lex_state = 0, .external_lex_state = 8}, + [8817] = {.lex_state = 0, .external_lex_state = 8}, + [8818] = {.lex_state = 0, .external_lex_state = 8}, + [8819] = {.lex_state = 0, .external_lex_state = 8}, + [8820] = {.lex_state = 0, .external_lex_state = 8}, + [8821] = {.lex_state = 22, .external_lex_state = 8}, + [8822] = {.lex_state = 0, .external_lex_state = 8}, + [8823] = {.lex_state = 0, .external_lex_state = 9}, + [8824] = {.lex_state = 0, .external_lex_state = 8}, + [8825] = {.lex_state = 0, .external_lex_state = 9}, + [8826] = {.lex_state = 0, .external_lex_state = 9}, + [8827] = {.lex_state = 0, .external_lex_state = 8}, + [8828] = {.lex_state = 0, .external_lex_state = 9}, + [8829] = {.lex_state = 0, .external_lex_state = 9}, + [8830] = {.lex_state = 0, .external_lex_state = 8}, + [8831] = {.lex_state = 0, .external_lex_state = 8}, + [8832] = {.lex_state = 22, .external_lex_state = 8}, + [8833] = {.lex_state = 0, .external_lex_state = 9}, + [8834] = {.lex_state = 0, .external_lex_state = 8}, + [8835] = {.lex_state = 0, .external_lex_state = 10}, + [8836] = {.lex_state = 0, .external_lex_state = 8}, + [8837] = {.lex_state = 0, .external_lex_state = 8}, + [8838] = {.lex_state = 0, .external_lex_state = 8}, + [8839] = {.lex_state = 0, .external_lex_state = 8}, + [8840] = {.lex_state = 0, .external_lex_state = 8}, + [8841] = {.lex_state = 0, .external_lex_state = 8}, + [8842] = {.lex_state = 0, .external_lex_state = 9}, + [8843] = {.lex_state = 22, .external_lex_state = 8}, + [8844] = {.lex_state = 22, .external_lex_state = 8}, + [8845] = {.lex_state = 0, .external_lex_state = 8}, + [8846] = {.lex_state = 22, .external_lex_state = 8}, + [8847] = {.lex_state = 0, .external_lex_state = 8}, + [8848] = {.lex_state = 22, .external_lex_state = 8}, + [8849] = {.lex_state = 0, .external_lex_state = 8}, + [8850] = {.lex_state = 0, .external_lex_state = 8}, + [8851] = {.lex_state = 0, .external_lex_state = 8}, + [8852] = {.lex_state = 321, .external_lex_state = 8}, + [8853] = {.lex_state = 0, .external_lex_state = 8}, + [8854] = {.lex_state = 321, .external_lex_state = 8}, + [8855] = {.lex_state = 0, .external_lex_state = 8}, + [8856] = {.lex_state = 321, .external_lex_state = 8}, + [8857] = {.lex_state = 0, .external_lex_state = 8}, + [8858] = {.lex_state = 22, .external_lex_state = 8}, + [8859] = {.lex_state = 0, .external_lex_state = 8}, + [8860] = {.lex_state = 321, .external_lex_state = 8}, + [8861] = {.lex_state = 0, .external_lex_state = 8}, + [8862] = {.lex_state = 0, .external_lex_state = 9}, + [8863] = {.lex_state = 0, .external_lex_state = 8}, + [8864] = {.lex_state = 22, .external_lex_state = 9}, + [8865] = {.lex_state = 22, .external_lex_state = 8}, + [8866] = {.lex_state = 0, .external_lex_state = 8}, + [8867] = {.lex_state = 0, .external_lex_state = 8}, + [8868] = {.lex_state = 0, .external_lex_state = 8}, + [8869] = {.lex_state = 0, .external_lex_state = 8}, + [8870] = {.lex_state = 0, .external_lex_state = 8}, + [8871] = {.lex_state = 0, .external_lex_state = 8}, + [8872] = {.lex_state = 0, .external_lex_state = 8}, + [8873] = {.lex_state = 0, .external_lex_state = 8}, + [8874] = {.lex_state = 321, .external_lex_state = 8}, + [8875] = {.lex_state = 0, .external_lex_state = 8}, + [8876] = {.lex_state = 0, .external_lex_state = 8}, + [8877] = {.lex_state = 0, .external_lex_state = 9}, + [8878] = {.lex_state = 0, .external_lex_state = 8}, + [8879] = {.lex_state = 22, .external_lex_state = 8}, + [8880] = {.lex_state = 0, .external_lex_state = 8}, + [8881] = {.lex_state = 0, .external_lex_state = 8}, + [8882] = {.lex_state = 22, .external_lex_state = 8}, + [8883] = {.lex_state = 22, .external_lex_state = 8}, + [8884] = {.lex_state = 321, .external_lex_state = 8}, + [8885] = {.lex_state = 0, .external_lex_state = 8}, + [8886] = {.lex_state = 321, .external_lex_state = 8}, + [8887] = {.lex_state = 22, .external_lex_state = 8}, + [8888] = {.lex_state = 0, .external_lex_state = 8}, + [8889] = {.lex_state = 22, .external_lex_state = 8}, + [8890] = {.lex_state = 0, .external_lex_state = 8}, + [8891] = {.lex_state = 0, .external_lex_state = 8}, + [8892] = {.lex_state = 0, .external_lex_state = 8}, + [8893] = {.lex_state = 0, .external_lex_state = 8}, + [8894] = {.lex_state = 0, .external_lex_state = 8}, + [8895] = {.lex_state = 321, .external_lex_state = 8}, + [8896] = {.lex_state = 22, .external_lex_state = 8}, + [8897] = {.lex_state = 22, .external_lex_state = 8}, + [8898] = {.lex_state = 0, .external_lex_state = 8}, + [8899] = {.lex_state = 321, .external_lex_state = 8}, + [8900] = {.lex_state = 22, .external_lex_state = 8}, + [8901] = {.lex_state = 22, .external_lex_state = 8}, + [8902] = {.lex_state = 0, .external_lex_state = 8}, + [8903] = {.lex_state = 321, .external_lex_state = 8}, + [8904] = {.lex_state = 0, .external_lex_state = 8}, + [8905] = {.lex_state = 22, .external_lex_state = 8}, + [8906] = {.lex_state = 22, .external_lex_state = 8}, + [8907] = {.lex_state = 0, .external_lex_state = 8}, + [8908] = {.lex_state = 0, .external_lex_state = 8}, + [8909] = {.lex_state = 0, .external_lex_state = 8}, + [8910] = {.lex_state = 0, .external_lex_state = 8}, + [8911] = {.lex_state = 0, .external_lex_state = 8}, + [8912] = {.lex_state = 0, .external_lex_state = 8}, + [8913] = {.lex_state = 0, .external_lex_state = 8}, + [8914] = {.lex_state = 321, .external_lex_state = 8}, + [8915] = {.lex_state = 321, .external_lex_state = 8}, + [8916] = {.lex_state = 0, .external_lex_state = 8}, + [8917] = {.lex_state = 0, .external_lex_state = 9}, + [8918] = {.lex_state = 0, .external_lex_state = 9}, + [8919] = {.lex_state = 321, .external_lex_state = 8}, + [8920] = {.lex_state = 0, .external_lex_state = 8}, + [8921] = {.lex_state = 0, .external_lex_state = 8}, + [8922] = {.lex_state = 0, .external_lex_state = 8}, + [8923] = {.lex_state = 0, .external_lex_state = 8}, + [8924] = {.lex_state = 0, .external_lex_state = 8}, + [8925] = {.lex_state = 0, .external_lex_state = 9}, + [8926] = {.lex_state = 0, .external_lex_state = 8}, + [8927] = {.lex_state = 0, .external_lex_state = 9}, + [8928] = {.lex_state = 0, .external_lex_state = 8}, + [8929] = {.lex_state = 0, .external_lex_state = 8}, + [8930] = {.lex_state = 0, .external_lex_state = 8}, + [8931] = {.lex_state = 0, .external_lex_state = 8}, + [8932] = {.lex_state = 0, .external_lex_state = 8}, + [8933] = {.lex_state = 0, .external_lex_state = 8}, + [8934] = {.lex_state = 0, .external_lex_state = 8}, + [8935] = {.lex_state = 0, .external_lex_state = 8}, + [8936] = {.lex_state = 22, .external_lex_state = 8}, + [8937] = {.lex_state = 0, .external_lex_state = 8}, + [8938] = {.lex_state = 22, .external_lex_state = 8}, + [8939] = {.lex_state = 0, .external_lex_state = 9}, + [8940] = {.lex_state = 0, .external_lex_state = 8}, + [8941] = {.lex_state = 0, .external_lex_state = 8}, + [8942] = {.lex_state = 0, .external_lex_state = 8}, + [8943] = {.lex_state = 0, .external_lex_state = 8}, + [8944] = {.lex_state = 321, .external_lex_state = 8}, + [8945] = {.lex_state = 0, .external_lex_state = 8}, + [8946] = {.lex_state = 0, .external_lex_state = 8}, + [8947] = {.lex_state = 0, .external_lex_state = 8}, + [8948] = {.lex_state = 321, .external_lex_state = 8}, + [8949] = {.lex_state = 321, .external_lex_state = 8}, + [8950] = {.lex_state = 0, .external_lex_state = 9}, + [8951] = {.lex_state = 0, .external_lex_state = 8}, + [8952] = {.lex_state = 0, .external_lex_state = 8}, + [8953] = {.lex_state = 22, .external_lex_state = 8}, + [8954] = {.lex_state = 321, .external_lex_state = 8}, + [8955] = {.lex_state = 22, .external_lex_state = 8}, + [8956] = {.lex_state = 0, .external_lex_state = 8}, + [8957] = {.lex_state = 0, .external_lex_state = 9}, + [8958] = {.lex_state = 22, .external_lex_state = 9}, + [8959] = {.lex_state = 0, .external_lex_state = 8}, + [8960] = {.lex_state = 0, .external_lex_state = 9}, + [8961] = {.lex_state = 0, .external_lex_state = 8}, + [8962] = {.lex_state = 0, .external_lex_state = 8}, + [8963] = {.lex_state = 321, .external_lex_state = 8}, + [8964] = {.lex_state = 0, .external_lex_state = 8}, + [8965] = {.lex_state = 22, .external_lex_state = 8}, + [8966] = {.lex_state = 0, .external_lex_state = 8}, + [8967] = {.lex_state = 22, .external_lex_state = 8}, + [8968] = {.lex_state = 22, .external_lex_state = 8}, + [8969] = {.lex_state = 0, .external_lex_state = 8}, + [8970] = {.lex_state = 22, .external_lex_state = 8}, + [8971] = {.lex_state = 0, .external_lex_state = 8}, + [8972] = {.lex_state = 22, .external_lex_state = 8}, + [8973] = {.lex_state = 22, .external_lex_state = 8}, + [8974] = {.lex_state = 0, .external_lex_state = 8}, + [8975] = {.lex_state = 0, .external_lex_state = 8}, + [8976] = {.lex_state = 22, .external_lex_state = 8}, + [8977] = {.lex_state = 321, .external_lex_state = 8}, + [8978] = {.lex_state = 0, .external_lex_state = 8}, + [8979] = {.lex_state = 22, .external_lex_state = 8}, + [8980] = {.lex_state = 0, .external_lex_state = 8}, + [8981] = {.lex_state = 0, .external_lex_state = 8}, + [8982] = {.lex_state = 0, .external_lex_state = 8}, + [8983] = {.lex_state = 321, .external_lex_state = 8}, + [8984] = {.lex_state = 0, .external_lex_state = 8}, + [8985] = {.lex_state = 321, .external_lex_state = 8}, + [8986] = {.lex_state = 22, .external_lex_state = 8}, + [8987] = {.lex_state = 0, .external_lex_state = 8}, + [8988] = {.lex_state = 0, .external_lex_state = 8}, + [8989] = {.lex_state = 321, .external_lex_state = 8}, + [8990] = {.lex_state = 0, .external_lex_state = 8}, + [8991] = {.lex_state = 0, .external_lex_state = 8}, + [8992] = {.lex_state = 22, .external_lex_state = 8}, + [8993] = {.lex_state = 321, .external_lex_state = 8}, + [8994] = {.lex_state = 321, .external_lex_state = 8}, + [8995] = {.lex_state = 0, .external_lex_state = 8}, + [8996] = {.lex_state = 321, .external_lex_state = 8}, + [8997] = {.lex_state = 0, .external_lex_state = 8}, + [8998] = {.lex_state = 0, .external_lex_state = 8}, + [8999] = {.lex_state = 321, .external_lex_state = 8}, + [9000] = {.lex_state = 0, .external_lex_state = 8}, + [9001] = {.lex_state = 0, .external_lex_state = 8}, + [9002] = {.lex_state = 0, .external_lex_state = 8}, + [9003] = {.lex_state = 0, .external_lex_state = 8}, + [9004] = {.lex_state = 22, .external_lex_state = 8}, + [9005] = {.lex_state = 0, .external_lex_state = 8}, + [9006] = {.lex_state = 0, .external_lex_state = 8}, + [9007] = {.lex_state = 321, .external_lex_state = 8}, + [9008] = {.lex_state = 0, .external_lex_state = 8}, + [9009] = {.lex_state = 0, .external_lex_state = 8}, + [9010] = {.lex_state = 321, .external_lex_state = 8}, + [9011] = {.lex_state = 22, .external_lex_state = 8}, + [9012] = {.lex_state = 22, .external_lex_state = 8}, + [9013] = {.lex_state = 0, .external_lex_state = 8}, + [9014] = {.lex_state = 0, .external_lex_state = 8}, + [9015] = {.lex_state = 0, .external_lex_state = 9}, + [9016] = {.lex_state = 0, .external_lex_state = 9}, + [9017] = {.lex_state = 0, .external_lex_state = 8}, + [9018] = {.lex_state = 321, .external_lex_state = 8}, + [9019] = {.lex_state = 0, .external_lex_state = 8}, + [9020] = {.lex_state = 0, .external_lex_state = 8}, + [9021] = {.lex_state = 0, .external_lex_state = 8}, + [9022] = {.lex_state = 0, .external_lex_state = 8}, + [9023] = {.lex_state = 0, .external_lex_state = 8}, + [9024] = {.lex_state = 0, .external_lex_state = 8}, + [9025] = {.lex_state = 0, .external_lex_state = 8}, + [9026] = {.lex_state = 0, .external_lex_state = 8}, + [9027] = {.lex_state = 0, .external_lex_state = 8}, + [9028] = {.lex_state = 321, .external_lex_state = 8}, + [9029] = {.lex_state = 0, .external_lex_state = 8}, + [9030] = {.lex_state = 0, .external_lex_state = 8}, + [9031] = {.lex_state = 0, .external_lex_state = 8}, + [9032] = {.lex_state = 0, .external_lex_state = 8}, + [9033] = {.lex_state = 0, .external_lex_state = 8}, + [9034] = {.lex_state = 0, .external_lex_state = 8}, + [9035] = {.lex_state = 0, .external_lex_state = 8}, + [9036] = {.lex_state = 0, .external_lex_state = 8}, + [9037] = {.lex_state = 0, .external_lex_state = 8}, + [9038] = {.lex_state = 22, .external_lex_state = 8}, + [9039] = {.lex_state = 0, .external_lex_state = 8}, + [9040] = {.lex_state = 0, .external_lex_state = 8}, + [9041] = {.lex_state = 0, .external_lex_state = 8}, + [9042] = {.lex_state = 0, .external_lex_state = 8}, + [9043] = {.lex_state = 0, .external_lex_state = 8}, + [9044] = {.lex_state = 22, .external_lex_state = 8}, + [9045] = {.lex_state = 0, .external_lex_state = 8}, + [9046] = {.lex_state = 321, .external_lex_state = 8}, + [9047] = {.lex_state = 321, .external_lex_state = 8}, + [9048] = {.lex_state = 321, .external_lex_state = 8}, + [9049] = {.lex_state = 321, .external_lex_state = 8}, + [9050] = {.lex_state = 0, .external_lex_state = 8}, + [9051] = {.lex_state = 0, .external_lex_state = 8}, + [9052] = {.lex_state = 321, .external_lex_state = 8}, + [9053] = {.lex_state = 0, .external_lex_state = 8}, + [9054] = {.lex_state = 22, .external_lex_state = 8}, + [9055] = {.lex_state = 0, .external_lex_state = 8}, + [9056] = {.lex_state = 321, .external_lex_state = 8}, + [9057] = {.lex_state = 0, .external_lex_state = 8}, + [9058] = {.lex_state = 0, .external_lex_state = 8}, + [9059] = {.lex_state = 22, .external_lex_state = 8}, + [9060] = {.lex_state = 0, .external_lex_state = 8}, + [9061] = {.lex_state = 0, .external_lex_state = 8}, + [9062] = {.lex_state = 0, .external_lex_state = 8}, + [9063] = {.lex_state = 321, .external_lex_state = 8}, + [9064] = {.lex_state = 0, .external_lex_state = 8}, + [9065] = {.lex_state = 22, .external_lex_state = 8}, + [9066] = {.lex_state = 0, .external_lex_state = 8}, + [9067] = {.lex_state = 321, .external_lex_state = 8}, + [9068] = {.lex_state = 22, .external_lex_state = 8}, + [9069] = {.lex_state = 321, .external_lex_state = 8}, + [9070] = {.lex_state = 0, .external_lex_state = 8}, + [9071] = {.lex_state = 22, .external_lex_state = 8}, + [9072] = {.lex_state = 321, .external_lex_state = 8}, + [9073] = {.lex_state = 321, .external_lex_state = 8}, + [9074] = {.lex_state = 22, .external_lex_state = 8}, + [9075] = {.lex_state = 0, .external_lex_state = 8}, + [9076] = {.lex_state = 22, .external_lex_state = 8}, + [9077] = {.lex_state = 321, .external_lex_state = 8}, + [9078] = {.lex_state = 321, .external_lex_state = 8}, + [9079] = {.lex_state = 22, .external_lex_state = 8}, + [9080] = {.lex_state = 0, .external_lex_state = 8}, + [9081] = {.lex_state = 0, .external_lex_state = 8}, + [9082] = {.lex_state = 22, .external_lex_state = 8}, + [9083] = {.lex_state = 321, .external_lex_state = 8}, + [9084] = {.lex_state = 0, .external_lex_state = 8}, + [9085] = {.lex_state = 0, .external_lex_state = 8}, + [9086] = {.lex_state = 321, .external_lex_state = 8}, + [9087] = {.lex_state = 0, .external_lex_state = 8}, + [9088] = {.lex_state = 22, .external_lex_state = 8}, + [9089] = {.lex_state = 321, .external_lex_state = 8}, + [9090] = {.lex_state = 0, .external_lex_state = 8}, + [9091] = {.lex_state = 22, .external_lex_state = 8}, + [9092] = {.lex_state = 22, .external_lex_state = 8}, + [9093] = {.lex_state = 0, .external_lex_state = 8}, + [9094] = {.lex_state = 321, .external_lex_state = 8}, + [9095] = {.lex_state = 22, .external_lex_state = 8}, + [9096] = {.lex_state = 0, .external_lex_state = 8}, + [9097] = {.lex_state = 321, .external_lex_state = 8}, + [9098] = {.lex_state = 22, .external_lex_state = 8}, + [9099] = {.lex_state = 321, .external_lex_state = 8}, + [9100] = {.lex_state = 22, .external_lex_state = 8}, + [9101] = {.lex_state = 22, .external_lex_state = 8}, + [9102] = {.lex_state = 22, .external_lex_state = 8}, + [9103] = {.lex_state = 0, .external_lex_state = 8}, + [9104] = {.lex_state = 0, .external_lex_state = 8}, + [9105] = {.lex_state = 0, .external_lex_state = 8}, + [9106] = {.lex_state = 22, .external_lex_state = 8}, + [9107] = {.lex_state = 22, .external_lex_state = 8}, + [9108] = {.lex_state = 0, .external_lex_state = 8}, + [9109] = {.lex_state = 0, .external_lex_state = 8}, + [9110] = {.lex_state = 22, .external_lex_state = 8}, + [9111] = {.lex_state = 0, .external_lex_state = 8}, + [9112] = {.lex_state = 321, .external_lex_state = 8}, + [9113] = {.lex_state = 0, .external_lex_state = 8}, + [9114] = {.lex_state = 0, .external_lex_state = 8}, + [9115] = {.lex_state = 22, .external_lex_state = 8}, + [9116] = {.lex_state = 321, .external_lex_state = 8}, + [9117] = {.lex_state = 0, .external_lex_state = 8}, + [9118] = {.lex_state = 22, .external_lex_state = 8}, + [9119] = {.lex_state = 0, .external_lex_state = 8}, + [9120] = {.lex_state = 0, .external_lex_state = 8}, + [9121] = {.lex_state = 22, .external_lex_state = 8}, + [9122] = {.lex_state = 0, .external_lex_state = 8}, + [9123] = {.lex_state = 0, .external_lex_state = 8}, + [9124] = {.lex_state = 0, .external_lex_state = 8}, + [9125] = {.lex_state = 22, .external_lex_state = 8}, + [9126] = {.lex_state = 321, .external_lex_state = 8}, + [9127] = {.lex_state = 0, .external_lex_state = 8}, + [9128] = {.lex_state = 22, .external_lex_state = 8}, + [9129] = {.lex_state = 321, .external_lex_state = 8}, + [9130] = {.lex_state = 0, .external_lex_state = 8}, + [9131] = {.lex_state = 0, .external_lex_state = 8}, + [9132] = {.lex_state = 321, .external_lex_state = 8}, + [9133] = {.lex_state = 22, .external_lex_state = 8}, + [9134] = {.lex_state = 0, .external_lex_state = 8}, + [9135] = {.lex_state = 22, .external_lex_state = 8}, + [9136] = {.lex_state = 0, .external_lex_state = 8}, + [9137] = {.lex_state = 321, .external_lex_state = 8}, + [9138] = {.lex_state = 0, .external_lex_state = 8}, + [9139] = {.lex_state = 321, .external_lex_state = 8}, + [9140] = {.lex_state = 22, .external_lex_state = 8}, + [9141] = {.lex_state = 321, .external_lex_state = 8}, + [9142] = {.lex_state = 0, .external_lex_state = 8}, + [9143] = {.lex_state = 22, .external_lex_state = 8}, + [9144] = {.lex_state = 321, .external_lex_state = 8}, + [9145] = {.lex_state = 22, .external_lex_state = 8}, + [9146] = {.lex_state = 0, .external_lex_state = 9}, + [9147] = {.lex_state = 22, .external_lex_state = 8}, + [9148] = {.lex_state = 22, .external_lex_state = 8}, + [9149] = {.lex_state = 0, .external_lex_state = 8}, + [9150] = {.lex_state = 0, .external_lex_state = 8}, + [9151] = {.lex_state = 0, .external_lex_state = 8}, + [9152] = {.lex_state = 0, .external_lex_state = 8}, + [9153] = {.lex_state = 0, .external_lex_state = 9}, + [9154] = {.lex_state = 0, .external_lex_state = 8}, + [9155] = {.lex_state = 0, .external_lex_state = 9}, + [9156] = {.lex_state = 0, .external_lex_state = 8}, + [9157] = {.lex_state = 0, .external_lex_state = 9}, + [9158] = {.lex_state = 0, .external_lex_state = 9}, + [9159] = {.lex_state = 0, .external_lex_state = 9}, + [9160] = {.lex_state = 0, .external_lex_state = 8}, + [9161] = {.lex_state = 0, .external_lex_state = 8}, + [9162] = {.lex_state = 0, .external_lex_state = 8}, + [9163] = {.lex_state = 0, .external_lex_state = 9}, + [9164] = {.lex_state = 0, .external_lex_state = 9}, + [9165] = {.lex_state = 22, .external_lex_state = 8}, + [9166] = {.lex_state = 0, .external_lex_state = 8}, + [9167] = {.lex_state = 0, .external_lex_state = 8}, + [9168] = {.lex_state = 0, .external_lex_state = 8}, + [9169] = {.lex_state = 0, .external_lex_state = 8}, + [9170] = {.lex_state = 0, .external_lex_state = 8}, + [9171] = {.lex_state = 0, .external_lex_state = 8}, + [9172] = {.lex_state = 0, .external_lex_state = 8}, + [9173] = {.lex_state = 32, .external_lex_state = 8}, + [9174] = {.lex_state = 321, .external_lex_state = 8}, + [9175] = {.lex_state = 0, .external_lex_state = 9}, + [9176] = {.lex_state = 0, .external_lex_state = 9}, + [9177] = {.lex_state = 0, .external_lex_state = 8}, + [9178] = {.lex_state = 0, .external_lex_state = 9}, + [9179] = {.lex_state = 0, .external_lex_state = 8}, + [9180] = {.lex_state = 0, .external_lex_state = 8}, + [9181] = {.lex_state = 22, .external_lex_state = 8}, + [9182] = {.lex_state = 32, .external_lex_state = 8}, + [9183] = {.lex_state = 0, .external_lex_state = 9}, + [9184] = {.lex_state = 0, .external_lex_state = 8}, + [9185] = {.lex_state = 22, .external_lex_state = 8}, + [9186] = {.lex_state = 0, .external_lex_state = 9}, + [9187] = {.lex_state = 0, .external_lex_state = 9}, + [9188] = {.lex_state = 0, .external_lex_state = 9}, + [9189] = {.lex_state = 0, .external_lex_state = 8}, + [9190] = {.lex_state = 0, .external_lex_state = 9}, + [9191] = {.lex_state = 32, .external_lex_state = 8}, + [9192] = {.lex_state = 0, .external_lex_state = 9}, + [9193] = {.lex_state = 0, .external_lex_state = 9}, + [9194] = {.lex_state = 0, .external_lex_state = 9}, + [9195] = {.lex_state = 0, .external_lex_state = 9}, + [9196] = {.lex_state = 22, .external_lex_state = 8}, + [9197] = {.lex_state = 0, .external_lex_state = 9}, + [9198] = {.lex_state = 22, .external_lex_state = 8}, + [9199] = {.lex_state = 22, .external_lex_state = 8}, + [9200] = {.lex_state = 32, .external_lex_state = 8}, + [9201] = {.lex_state = 22, .external_lex_state = 8}, + [9202] = {.lex_state = 0, .external_lex_state = 9}, + [9203] = {.lex_state = 22, .external_lex_state = 8}, + [9204] = {.lex_state = 0, .external_lex_state = 9}, + [9205] = {.lex_state = 0, .external_lex_state = 9}, + [9206] = {.lex_state = 0, .external_lex_state = 8}, + [9207] = {.lex_state = 0, .external_lex_state = 8}, + [9208] = {.lex_state = 22, .external_lex_state = 8}, + [9209] = {.lex_state = 0, .external_lex_state = 8}, + [9210] = {.lex_state = 0, .external_lex_state = 9}, + [9211] = {.lex_state = 0, .external_lex_state = 8}, + [9212] = {.lex_state = 0, .external_lex_state = 9}, + [9213] = {.lex_state = 22, .external_lex_state = 8}, + [9214] = {.lex_state = 0, .external_lex_state = 9}, + [9215] = {.lex_state = 0, .external_lex_state = 9}, + [9216] = {.lex_state = 32, .external_lex_state = 8}, + [9217] = {.lex_state = 0, .external_lex_state = 9}, + [9218] = {.lex_state = 0, .external_lex_state = 8}, + [9219] = {.lex_state = 0, .external_lex_state = 8}, + [9220] = {.lex_state = 0, .external_lex_state = 9}, + [9221] = {.lex_state = 0, .external_lex_state = 9}, + [9222] = {.lex_state = 0, .external_lex_state = 9}, + [9223] = {.lex_state = 0, .external_lex_state = 8}, + [9224] = {.lex_state = 0, .external_lex_state = 8}, + [9225] = {.lex_state = 0, .external_lex_state = 8}, + [9226] = {.lex_state = 0, .external_lex_state = 9}, + [9227] = {.lex_state = 0, .external_lex_state = 9}, + [9228] = {.lex_state = 0, .external_lex_state = 8}, + [9229] = {.lex_state = 0, .external_lex_state = 9}, + [9230] = {.lex_state = 0, .external_lex_state = 8}, + [9231] = {.lex_state = 0, .external_lex_state = 9}, + [9232] = {.lex_state = 0, .external_lex_state = 8}, + [9233] = {.lex_state = 0, .external_lex_state = 8}, + [9234] = {.lex_state = 0, .external_lex_state = 9}, + [9235] = {.lex_state = 0, .external_lex_state = 8}, + [9236] = {.lex_state = 0, .external_lex_state = 8}, + [9237] = {.lex_state = 0, .external_lex_state = 8}, + [9238] = {.lex_state = 0, .external_lex_state = 9}, + [9239] = {.lex_state = 0, .external_lex_state = 9}, + [9240] = {.lex_state = 0, .external_lex_state = 8}, + [9241] = {.lex_state = 0, .external_lex_state = 9}, + [9242] = {.lex_state = 0, .external_lex_state = 9}, + [9243] = {.lex_state = 0, .external_lex_state = 9}, + [9244] = {.lex_state = 32, .external_lex_state = 8}, + [9245] = {.lex_state = 0, .external_lex_state = 9}, + [9246] = {.lex_state = 0, .external_lex_state = 9}, + [9247] = {.lex_state = 0, .external_lex_state = 9}, + [9248] = {.lex_state = 0, .external_lex_state = 8}, + [9249] = {.lex_state = 0, .external_lex_state = 8}, + [9250] = {.lex_state = 0, .external_lex_state = 8}, + [9251] = {.lex_state = 0, .external_lex_state = 8}, + [9252] = {.lex_state = 32, .external_lex_state = 8}, + [9253] = {.lex_state = 0, .external_lex_state = 8}, + [9254] = {.lex_state = 32, .external_lex_state = 8}, + [9255] = {.lex_state = 32, .external_lex_state = 8}, + [9256] = {.lex_state = 32, .external_lex_state = 8}, + [9257] = {.lex_state = 0, .external_lex_state = 8}, + [9258] = {.lex_state = 0, .external_lex_state = 8}, + [9259] = {.lex_state = 0, .external_lex_state = 8}, + [9260] = {.lex_state = 0, .external_lex_state = 8}, + [9261] = {.lex_state = 0, .external_lex_state = 9}, + [9262] = {.lex_state = 0, .external_lex_state = 8}, + [9263] = {.lex_state = 0, .external_lex_state = 8}, + [9264] = {.lex_state = 0, .external_lex_state = 8}, + [9265] = {.lex_state = 0, .external_lex_state = 8}, + [9266] = {.lex_state = 0, .external_lex_state = 8}, + [9267] = {.lex_state = 32, .external_lex_state = 8}, + [9268] = {.lex_state = 0, .external_lex_state = 8}, + [9269] = {.lex_state = 0, .external_lex_state = 8}, + [9270] = {.lex_state = 32, .external_lex_state = 8}, + [9271] = {.lex_state = 0, .external_lex_state = 8}, + [9272] = {.lex_state = 0, .external_lex_state = 8}, + [9273] = {.lex_state = 0, .external_lex_state = 8}, + [9274] = {.lex_state = 0, .external_lex_state = 8}, + [9275] = {.lex_state = 0, .external_lex_state = 8}, + [9276] = {.lex_state = 0, .external_lex_state = 8}, + [9277] = {.lex_state = 0, .external_lex_state = 8}, + [9278] = {.lex_state = 0, .external_lex_state = 9}, + [9279] = {.lex_state = 0, .external_lex_state = 8}, + [9280] = {.lex_state = 0, .external_lex_state = 8}, + [9281] = {.lex_state = 0, .external_lex_state = 8}, + [9282] = {.lex_state = 0, .external_lex_state = 8}, + [9283] = {.lex_state = 0, .external_lex_state = 8}, + [9284] = {.lex_state = 32, .external_lex_state = 8}, + [9285] = {.lex_state = 0, .external_lex_state = 8}, + [9286] = {.lex_state = 0, .external_lex_state = 8}, + [9287] = {.lex_state = 0, .external_lex_state = 8}, + [9288] = {.lex_state = 0, .external_lex_state = 8}, + [9289] = {.lex_state = 321, .external_lex_state = 8}, + [9290] = {.lex_state = 0, .external_lex_state = 9}, + [9291] = {.lex_state = 22, .external_lex_state = 11}, + [9292] = {.lex_state = 0, .external_lex_state = 8}, + [9293] = {.lex_state = 0, .external_lex_state = 8}, + [9294] = {.lex_state = 0, .external_lex_state = 8}, + [9295] = {.lex_state = 0, .external_lex_state = 9}, + [9296] = {.lex_state = 0, .external_lex_state = 8}, + [9297] = {.lex_state = 0, .external_lex_state = 9}, + [9298] = {.lex_state = 0, .external_lex_state = 8}, + [9299] = {.lex_state = 32, .external_lex_state = 8}, + [9300] = {.lex_state = 0, .external_lex_state = 8}, + [9301] = {.lex_state = 0, .external_lex_state = 8}, + [9302] = {.lex_state = 0, .external_lex_state = 8}, + [9303] = {.lex_state = 0, .external_lex_state = 8}, + [9304] = {.lex_state = 0, .external_lex_state = 8}, + [9305] = {.lex_state = 0, .external_lex_state = 9}, + [9306] = {.lex_state = 0, .external_lex_state = 9}, + [9307] = {.lex_state = 0, .external_lex_state = 8}, + [9308] = {.lex_state = 32, .external_lex_state = 8}, + [9309] = {.lex_state = 0, .external_lex_state = 8}, + [9310] = {.lex_state = 0, .external_lex_state = 8}, + [9311] = {.lex_state = 32, .external_lex_state = 8}, + [9312] = {.lex_state = 0, .external_lex_state = 9}, + [9313] = {.lex_state = 0, .external_lex_state = 8}, + [9314] = {.lex_state = 22, .external_lex_state = 8}, + [9315] = {.lex_state = 0, .external_lex_state = 8}, + [9316] = {.lex_state = 0, .external_lex_state = 8}, + [9317] = {.lex_state = 0, .external_lex_state = 9}, + [9318] = {.lex_state = 22, .external_lex_state = 8}, + [9319] = {.lex_state = 0, .external_lex_state = 8}, + [9320] = {.lex_state = 0, .external_lex_state = 8}, + [9321] = {.lex_state = 0, .external_lex_state = 8}, + [9322] = {.lex_state = 0, .external_lex_state = 8}, + [9323] = {.lex_state = 0, .external_lex_state = 8}, + [9324] = {.lex_state = 0, .external_lex_state = 9}, + [9325] = {.lex_state = 0, .external_lex_state = 8}, + [9326] = {.lex_state = 0, .external_lex_state = 8}, + [9327] = {.lex_state = 0, .external_lex_state = 8}, + [9328] = {.lex_state = 0, .external_lex_state = 8}, + [9329] = {.lex_state = 321, .external_lex_state = 8}, + [9330] = {.lex_state = 0, .external_lex_state = 8}, + [9331] = {.lex_state = 0, .external_lex_state = 8}, + [9332] = {.lex_state = 0, .external_lex_state = 8}, + [9333] = {.lex_state = 321, .external_lex_state = 8}, + [9334] = {.lex_state = 0, .external_lex_state = 8}, + [9335] = {.lex_state = 0, .external_lex_state = 8}, + [9336] = {.lex_state = 0, .external_lex_state = 8}, + [9337] = {.lex_state = 0, .external_lex_state = 8}, + [9338] = {.lex_state = 0, .external_lex_state = 8}, + [9339] = {.lex_state = 32, .external_lex_state = 8}, + [9340] = {.lex_state = 0, .external_lex_state = 8}, + [9341] = {.lex_state = 0, .external_lex_state = 8}, + [9342] = {.lex_state = 0, .external_lex_state = 8}, + [9343] = {.lex_state = 0, .external_lex_state = 8}, + [9344] = {.lex_state = 0, .external_lex_state = 8}, + [9345] = {.lex_state = 0, .external_lex_state = 8}, + [9346] = {.lex_state = 0, .external_lex_state = 8}, + [9347] = {.lex_state = 0, .external_lex_state = 9}, + [9348] = {.lex_state = 0, .external_lex_state = 8}, + [9349] = {.lex_state = 22, .external_lex_state = 8}, + [9350] = {.lex_state = 22, .external_lex_state = 8}, + [9351] = {.lex_state = 0, .external_lex_state = 8}, + [9352] = {.lex_state = 22, .external_lex_state = 8}, + [9353] = {.lex_state = 0, .external_lex_state = 8}, + [9354] = {.lex_state = 0, .external_lex_state = 8}, + [9355] = {.lex_state = 32, .external_lex_state = 8}, + [9356] = {.lex_state = 0, .external_lex_state = 8}, + [9357] = {.lex_state = 0, .external_lex_state = 8}, + [9358] = {.lex_state = 0, .external_lex_state = 8}, + [9359] = {.lex_state = 0, .external_lex_state = 8}, + [9360] = {.lex_state = 0, .external_lex_state = 8}, + [9361] = {.lex_state = 0, .external_lex_state = 8}, + [9362] = {.lex_state = 0, .external_lex_state = 8}, + [9363] = {.lex_state = 0, .external_lex_state = 8}, + [9364] = {.lex_state = 0, .external_lex_state = 8}, + [9365] = {.lex_state = 0, .external_lex_state = 8}, + [9366] = {.lex_state = 0, .external_lex_state = 8}, + [9367] = {.lex_state = 0, .external_lex_state = 8}, + [9368] = {.lex_state = 0, .external_lex_state = 8}, + [9369] = {.lex_state = 0, .external_lex_state = 8}, + [9370] = {.lex_state = 0, .external_lex_state = 8}, + [9371] = {.lex_state = 0, .external_lex_state = 8}, + [9372] = {.lex_state = 0, .external_lex_state = 8}, + [9373] = {.lex_state = 0, .external_lex_state = 8}, + [9374] = {.lex_state = 0, .external_lex_state = 8}, + [9375] = {.lex_state = 0, .external_lex_state = 8}, + [9376] = {.lex_state = 0, .external_lex_state = 8}, + [9377] = {.lex_state = 0, .external_lex_state = 8}, + [9378] = {.lex_state = 0, .external_lex_state = 9}, + [9379] = {.lex_state = 0, .external_lex_state = 8}, + [9380] = {.lex_state = 0, .external_lex_state = 8}, + [9381] = {.lex_state = 0, .external_lex_state = 8}, + [9382] = {.lex_state = 0, .external_lex_state = 8}, + [9383] = {.lex_state = 0, .external_lex_state = 8}, + [9384] = {.lex_state = 0, .external_lex_state = 8}, + [9385] = {.lex_state = 0, .external_lex_state = 9}, + [9386] = {.lex_state = 32, .external_lex_state = 8}, + [9387] = {.lex_state = 0, .external_lex_state = 8}, + [9388] = {.lex_state = 0, .external_lex_state = 8}, + [9389] = {.lex_state = 0, .external_lex_state = 8}, + [9390] = {.lex_state = 321, .external_lex_state = 8}, + [9391] = {.lex_state = 0, .external_lex_state = 8}, + [9392] = {.lex_state = 0, .external_lex_state = 8}, + [9393] = {.lex_state = 0, .external_lex_state = 8}, + [9394] = {.lex_state = 0, .external_lex_state = 8}, + [9395] = {.lex_state = 0, .external_lex_state = 8}, + [9396] = {.lex_state = 0, .external_lex_state = 8}, + [9397] = {.lex_state = 0, .external_lex_state = 8}, + [9398] = {.lex_state = 32, .external_lex_state = 8}, + [9399] = {.lex_state = 0, .external_lex_state = 8}, + [9400] = {.lex_state = 0, .external_lex_state = 9}, + [9401] = {.lex_state = 0, .external_lex_state = 8}, + [9402] = {.lex_state = 0, .external_lex_state = 8}, + [9403] = {.lex_state = 0, .external_lex_state = 8}, + [9404] = {.lex_state = 0, .external_lex_state = 8}, + [9405] = {.lex_state = 0, .external_lex_state = 8}, + [9406] = {.lex_state = 0, .external_lex_state = 8}, + [9407] = {.lex_state = 0, .external_lex_state = 8}, + [9408] = {.lex_state = 0, .external_lex_state = 8}, + [9409] = {.lex_state = 0, .external_lex_state = 8}, + [9410] = {.lex_state = 0, .external_lex_state = 8}, + [9411] = {.lex_state = 32, .external_lex_state = 8}, + [9412] = {.lex_state = 0, .external_lex_state = 8}, + [9413] = {.lex_state = 0, .external_lex_state = 9}, + [9414] = {.lex_state = 0, .external_lex_state = 8}, + [9415] = {.lex_state = 0, .external_lex_state = 8}, + [9416] = {.lex_state = 0, .external_lex_state = 8}, + [9417] = {.lex_state = 0, .external_lex_state = 8}, + [9418] = {.lex_state = 0, .external_lex_state = 8}, + [9419] = {.lex_state = 0, .external_lex_state = 9}, + [9420] = {.lex_state = 0, .external_lex_state = 8}, + [9421] = {.lex_state = 22, .external_lex_state = 11}, + [9422] = {.lex_state = 0, .external_lex_state = 9}, + [9423] = {.lex_state = 0, .external_lex_state = 8}, + [9424] = {.lex_state = 0, .external_lex_state = 8}, + [9425] = {.lex_state = 0, .external_lex_state = 8}, + [9426] = {.lex_state = 0, .external_lex_state = 8}, + [9427] = {.lex_state = 0, .external_lex_state = 8}, + [9428] = {.lex_state = 0, .external_lex_state = 8}, + [9429] = {.lex_state = 32, .external_lex_state = 8}, + [9430] = {.lex_state = 0, .external_lex_state = 9}, + [9431] = {.lex_state = 0, .external_lex_state = 8}, + [9432] = {.lex_state = 0, .external_lex_state = 9}, + [9433] = {.lex_state = 0, .external_lex_state = 8}, + [9434] = {.lex_state = 0, .external_lex_state = 8}, + [9435] = {.lex_state = 0, .external_lex_state = 9}, + [9436] = {.lex_state = 0, .external_lex_state = 8}, + [9437] = {.lex_state = 0, .external_lex_state = 8}, + [9438] = {.lex_state = 0, .external_lex_state = 8}, + [9439] = {.lex_state = 0, .external_lex_state = 9}, + [9440] = {.lex_state = 0, .external_lex_state = 9}, + [9441] = {.lex_state = 0, .external_lex_state = 8}, + [9442] = {.lex_state = 0, .external_lex_state = 8}, + [9443] = {.lex_state = 0, .external_lex_state = 8}, + [9444] = {.lex_state = 0, .external_lex_state = 8}, + [9445] = {.lex_state = 0, .external_lex_state = 8}, + [9446] = {.lex_state = 0, .external_lex_state = 8}, + [9447] = {.lex_state = 0, .external_lex_state = 8}, + [9448] = {.lex_state = 0, .external_lex_state = 8}, + [9449] = {.lex_state = 32, .external_lex_state = 8}, + [9450] = {.lex_state = 0, .external_lex_state = 8}, + [9451] = {.lex_state = 0, .external_lex_state = 8}, + [9452] = {.lex_state = 0, .external_lex_state = 8}, + [9453] = {.lex_state = 0, .external_lex_state = 8}, + [9454] = {.lex_state = 0, .external_lex_state = 8}, + [9455] = {.lex_state = 0, .external_lex_state = 8}, + [9456] = {.lex_state = 0, .external_lex_state = 8}, + [9457] = {.lex_state = 0, .external_lex_state = 8}, + [9458] = {.lex_state = 0, .external_lex_state = 8}, + [9459] = {.lex_state = 0, .external_lex_state = 8}, + [9460] = {.lex_state = 0, .external_lex_state = 8}, + [9461] = {.lex_state = 0, .external_lex_state = 8}, + [9462] = {.lex_state = 0, .external_lex_state = 9}, + [9463] = {.lex_state = 0, .external_lex_state = 8}, + [9464] = {.lex_state = 0, .external_lex_state = 8}, + [9465] = {.lex_state = 0, .external_lex_state = 8}, + [9466] = {.lex_state = 0, .external_lex_state = 8}, + [9467] = {.lex_state = 0, .external_lex_state = 8}, + [9468] = {.lex_state = 0, .external_lex_state = 9}, + [9469] = {.lex_state = 0, .external_lex_state = 8}, + [9470] = {.lex_state = 0, .external_lex_state = 8}, + [9471] = {.lex_state = 0, .external_lex_state = 8}, + [9472] = {.lex_state = 22, .external_lex_state = 11}, + [9473] = {.lex_state = 32, .external_lex_state = 8}, + [9474] = {.lex_state = 0, .external_lex_state = 8}, + [9475] = {.lex_state = 0, .external_lex_state = 8}, + [9476] = {.lex_state = 0, .external_lex_state = 8}, + [9477] = {.lex_state = 0, .external_lex_state = 8}, + [9478] = {.lex_state = 0, .external_lex_state = 8}, + [9479] = {.lex_state = 0, .external_lex_state = 8}, + [9480] = {.lex_state = 0, .external_lex_state = 9}, + [9481] = {.lex_state = 0, .external_lex_state = 8}, + [9482] = {.lex_state = 0, .external_lex_state = 8}, + [9483] = {.lex_state = 0, .external_lex_state = 9}, + [9484] = {.lex_state = 0, .external_lex_state = 8}, + [9485] = {.lex_state = 0, .external_lex_state = 8}, + [9486] = {.lex_state = 32, .external_lex_state = 8}, + [9487] = {.lex_state = 0, .external_lex_state = 8}, + [9488] = {.lex_state = 0, .external_lex_state = 8}, + [9489] = {.lex_state = 0, .external_lex_state = 9}, + [9490] = {.lex_state = 0, .external_lex_state = 8}, + [9491] = {.lex_state = 0, .external_lex_state = 8}, + [9492] = {.lex_state = 0, .external_lex_state = 9}, + [9493] = {.lex_state = 0, .external_lex_state = 8}, + [9494] = {.lex_state = 0, .external_lex_state = 9}, + [9495] = {.lex_state = 0, .external_lex_state = 8}, + [9496] = {.lex_state = 0, .external_lex_state = 9}, + [9497] = {.lex_state = 0, .external_lex_state = 8}, + [9498] = {.lex_state = 32, .external_lex_state = 8}, + [9499] = {.lex_state = 0, .external_lex_state = 8}, + [9500] = {.lex_state = 0, .external_lex_state = 8}, + [9501] = {.lex_state = 321, .external_lex_state = 8}, + [9502] = {.lex_state = 0, .external_lex_state = 8}, + [9503] = {.lex_state = 0, .external_lex_state = 8}, + [9504] = {.lex_state = 32, .external_lex_state = 8}, + [9505] = {.lex_state = 0, .external_lex_state = 8}, + [9506] = {.lex_state = 0, .external_lex_state = 8}, + [9507] = {.lex_state = 0, .external_lex_state = 9}, + [9508] = {.lex_state = 0, .external_lex_state = 8}, + [9509] = {.lex_state = 0, .external_lex_state = 8}, + [9510] = {.lex_state = 0, .external_lex_state = 8}, + [9511] = {.lex_state = 0, .external_lex_state = 8}, + [9512] = {.lex_state = 0, .external_lex_state = 8}, + [9513] = {.lex_state = 0, .external_lex_state = 8}, + [9514] = {.lex_state = 0, .external_lex_state = 9}, + [9515] = {.lex_state = 0, .external_lex_state = 8}, + [9516] = {.lex_state = 0, .external_lex_state = 8}, + [9517] = {.lex_state = 0, .external_lex_state = 8}, + [9518] = {.lex_state = 0, .external_lex_state = 8}, + [9519] = {.lex_state = 22, .external_lex_state = 8}, + [9520] = {.lex_state = 22, .external_lex_state = 8}, + [9521] = {.lex_state = 22, .external_lex_state = 8}, + [9522] = {.lex_state = 22, .external_lex_state = 8}, + [9523] = {.lex_state = 0, .external_lex_state = 8}, + [9524] = {.lex_state = 0, .external_lex_state = 8}, + [9525] = {.lex_state = 0, .external_lex_state = 8}, + [9526] = {.lex_state = 0, .external_lex_state = 8}, + [9527] = {.lex_state = 22, .external_lex_state = 8}, + [9528] = {.lex_state = 0, .external_lex_state = 8}, + [9529] = {.lex_state = 0, .external_lex_state = 8}, + [9530] = {.lex_state = 22, .external_lex_state = 8}, + [9531] = {.lex_state = 22, .external_lex_state = 8}, + [9532] = {.lex_state = 0, .external_lex_state = 8}, + [9533] = {.lex_state = 0, .external_lex_state = 8}, + [9534] = {.lex_state = 0, .external_lex_state = 8}, + [9535] = {.lex_state = 0, .external_lex_state = 8}, + [9536] = {.lex_state = 0, .external_lex_state = 8}, + [9537] = {.lex_state = 0, .external_lex_state = 8}, + [9538] = {.lex_state = 0, .external_lex_state = 8}, + [9539] = {.lex_state = 22, .external_lex_state = 8}, + [9540] = {.lex_state = 0, .external_lex_state = 8}, + [9541] = {.lex_state = 0, .external_lex_state = 8}, + [9542] = {.lex_state = 0, .external_lex_state = 8}, + [9543] = {.lex_state = 22, .external_lex_state = 8}, + [9544] = {.lex_state = 0, .external_lex_state = 8}, + [9545] = {.lex_state = 0, .external_lex_state = 8}, + [9546] = {.lex_state = 0, .external_lex_state = 8}, + [9547] = {.lex_state = 321, .external_lex_state = 8}, + [9548] = {.lex_state = 22, .external_lex_state = 8}, + [9549] = {.lex_state = 0, .external_lex_state = 8}, + [9550] = {.lex_state = 22, .external_lex_state = 8}, + [9551] = {.lex_state = 22, .external_lex_state = 8}, + [9552] = {.lex_state = 0, .external_lex_state = 8}, + [9553] = {.lex_state = 0, .external_lex_state = 8}, + [9554] = {.lex_state = 0, .external_lex_state = 8}, + [9555] = {.lex_state = 0, .external_lex_state = 8}, + [9556] = {.lex_state = 0, .external_lex_state = 8}, + [9557] = {.lex_state = 22, .external_lex_state = 8}, + [9558] = {.lex_state = 0, .external_lex_state = 8}, + [9559] = {.lex_state = 22, .external_lex_state = 8}, + [9560] = {.lex_state = 0, .external_lex_state = 8}, + [9561] = {.lex_state = 0, .external_lex_state = 8}, + [9562] = {.lex_state = 0, .external_lex_state = 8}, + [9563] = {.lex_state = 0, .external_lex_state = 8}, + [9564] = {.lex_state = 0, .external_lex_state = 8}, + [9565] = {.lex_state = 0, .external_lex_state = 8}, + [9566] = {.lex_state = 22, .external_lex_state = 8}, + [9567] = {.lex_state = 0, .external_lex_state = 8}, + [9568] = {.lex_state = 0, .external_lex_state = 8}, + [9569] = {.lex_state = 0, .external_lex_state = 8}, + [9570] = {.lex_state = 0, .external_lex_state = 8}, + [9571] = {.lex_state = 0, .external_lex_state = 8}, + [9572] = {.lex_state = 0, .external_lex_state = 8}, + [9573] = {.lex_state = 0, .external_lex_state = 8}, + [9574] = {.lex_state = 321, .external_lex_state = 8}, + [9575] = {.lex_state = 0, .external_lex_state = 8}, + [9576] = {.lex_state = 0, .external_lex_state = 8}, + [9577] = {.lex_state = 0, .external_lex_state = 8}, + [9578] = {.lex_state = 0, .external_lex_state = 8}, + [9579] = {.lex_state = 0, .external_lex_state = 8}, + [9580] = {.lex_state = 0, .external_lex_state = 8}, + [9581] = {.lex_state = 0, .external_lex_state = 8}, + [9582] = {.lex_state = 0, .external_lex_state = 8}, + [9583] = {.lex_state = 0, .external_lex_state = 8}, + [9584] = {.lex_state = 0, .external_lex_state = 8}, + [9585] = {.lex_state = 0, .external_lex_state = 8}, + [9586] = {.lex_state = 22, .external_lex_state = 8}, + [9587] = {.lex_state = 0, .external_lex_state = 8}, + [9588] = {.lex_state = 0, .external_lex_state = 8}, + [9589] = {.lex_state = 0, .external_lex_state = 8}, + [9590] = {.lex_state = 0, .external_lex_state = 8}, + [9591] = {.lex_state = 0, .external_lex_state = 8}, + [9592] = {.lex_state = 0, .external_lex_state = 9}, + [9593] = {.lex_state = 22, .external_lex_state = 8}, + [9594] = {.lex_state = 0, .external_lex_state = 8}, + [9595] = {.lex_state = 22, .external_lex_state = 8}, + [9596] = {.lex_state = 22, .external_lex_state = 8}, + [9597] = {.lex_state = 0, .external_lex_state = 8}, + [9598] = {.lex_state = 0, .external_lex_state = 8}, + [9599] = {.lex_state = 22, .external_lex_state = 8}, + [9600] = {.lex_state = 22, .external_lex_state = 8}, + [9601] = {.lex_state = 0, .external_lex_state = 8}, + [9602] = {.lex_state = 0, .external_lex_state = 8}, + [9603] = {.lex_state = 0, .external_lex_state = 8}, + [9604] = {.lex_state = 0, .external_lex_state = 8}, + [9605] = {.lex_state = 0, .external_lex_state = 8}, + [9606] = {.lex_state = 22, .external_lex_state = 8}, + [9607] = {.lex_state = 22, .external_lex_state = 8}, + [9608] = {.lex_state = 0, .external_lex_state = 8}, + [9609] = {.lex_state = 0, .external_lex_state = 8}, + [9610] = {.lex_state = 321, .external_lex_state = 8}, + [9611] = {.lex_state = 0, .external_lex_state = 8}, + [9612] = {.lex_state = 22, .external_lex_state = 8}, + [9613] = {.lex_state = 0, .external_lex_state = 8}, + [9614] = {.lex_state = 22, .external_lex_state = 8}, + [9615] = {.lex_state = 0, .external_lex_state = 8}, + [9616] = {.lex_state = 0, .external_lex_state = 8}, + [9617] = {.lex_state = 22, .external_lex_state = 8}, + [9618] = {.lex_state = 22, .external_lex_state = 8}, + [9619] = {.lex_state = 22, .external_lex_state = 8}, + [9620] = {.lex_state = 22, .external_lex_state = 8}, + [9621] = {.lex_state = 0, .external_lex_state = 8}, + [9622] = {.lex_state = 22, .external_lex_state = 8}, + [9623] = {.lex_state = 22, .external_lex_state = 8}, + [9624] = {.lex_state = 22, .external_lex_state = 8}, + [9625] = {.lex_state = 0, .external_lex_state = 8}, + [9626] = {.lex_state = 22, .external_lex_state = 8}, + [9627] = {.lex_state = 0, .external_lex_state = 8}, + [9628] = {.lex_state = 22, .external_lex_state = 8}, + [9629] = {.lex_state = 22, .external_lex_state = 8}, + [9630] = {.lex_state = 0, .external_lex_state = 8}, + [9631] = {.lex_state = 0, .external_lex_state = 8}, + [9632] = {.lex_state = 0, .external_lex_state = 8}, + [9633] = {.lex_state = 22, .external_lex_state = 8}, + [9634] = {.lex_state = 22, .external_lex_state = 8}, + [9635] = {.lex_state = 0, .external_lex_state = 8}, + [9636] = {.lex_state = 22, .external_lex_state = 8}, + [9637] = {.lex_state = 22, .external_lex_state = 8}, + [9638] = {.lex_state = 0, .external_lex_state = 9}, + [9639] = {.lex_state = 22, .external_lex_state = 8}, + [9640] = {.lex_state = 0, .external_lex_state = 8}, + [9641] = {.lex_state = 22, .external_lex_state = 8}, + [9642] = {.lex_state = 22, .external_lex_state = 8}, + [9643] = {.lex_state = 0, .external_lex_state = 8}, + [9644] = {.lex_state = 22, .external_lex_state = 8}, + [9645] = {.lex_state = 0, .external_lex_state = 8}, + [9646] = {.lex_state = 22, .external_lex_state = 8}, + [9647] = {.lex_state = 0, .external_lex_state = 8}, + [9648] = {.lex_state = 22, .external_lex_state = 8}, + [9649] = {.lex_state = 22, .external_lex_state = 8}, + [9650] = {.lex_state = 0, .external_lex_state = 8}, + [9651] = {.lex_state = 22, .external_lex_state = 8}, + [9652] = {.lex_state = 22, .external_lex_state = 8}, + [9653] = {.lex_state = 22, .external_lex_state = 8}, + [9654] = {.lex_state = 22, .external_lex_state = 8}, + [9655] = {.lex_state = 22, .external_lex_state = 8}, + [9656] = {.lex_state = 22, .external_lex_state = 8}, + [9657] = {.lex_state = 22, .external_lex_state = 8}, + [9658] = {.lex_state = 0, .external_lex_state = 8}, + [9659] = {.lex_state = 0, .external_lex_state = 8}, + [9660] = {.lex_state = 22, .external_lex_state = 8}, + [9661] = {.lex_state = 0, .external_lex_state = 8}, + [9662] = {.lex_state = 0, .external_lex_state = 8}, + [9663] = {.lex_state = 22, .external_lex_state = 8}, + [9664] = {.lex_state = 0, .external_lex_state = 8}, + [9665] = {.lex_state = 0, .external_lex_state = 8}, + [9666] = {.lex_state = 22, .external_lex_state = 8}, + [9667] = {.lex_state = 22, .external_lex_state = 8}, + [9668] = {.lex_state = 22, .external_lex_state = 8}, + [9669] = {.lex_state = 22, .external_lex_state = 8}, + [9670] = {.lex_state = 0, .external_lex_state = 8}, + [9671] = {.lex_state = 0, .external_lex_state = 8}, + [9672] = {.lex_state = 22, .external_lex_state = 8}, + [9673] = {.lex_state = 0, .external_lex_state = 8}, + [9674] = {.lex_state = 22, .external_lex_state = 8}, + [9675] = {.lex_state = 0, .external_lex_state = 8}, + [9676] = {.lex_state = 0, .external_lex_state = 8}, + [9677] = {.lex_state = 22, .external_lex_state = 8}, + [9678] = {.lex_state = 22, .external_lex_state = 8}, + [9679] = {.lex_state = 0, .external_lex_state = 8}, + [9680] = {.lex_state = 22, .external_lex_state = 8}, + [9681] = {.lex_state = 0, .external_lex_state = 8}, + [9682] = {.lex_state = 22, .external_lex_state = 8}, + [9683] = {.lex_state = 0, .external_lex_state = 8}, + [9684] = {.lex_state = 0, .external_lex_state = 8}, + [9685] = {.lex_state = 22, .external_lex_state = 8}, + [9686] = {.lex_state = 0, .external_lex_state = 8}, + [9687] = {.lex_state = 22, .external_lex_state = 8}, + [9688] = {.lex_state = 0, .external_lex_state = 8}, + [9689] = {.lex_state = 0, .external_lex_state = 8}, + [9690] = {.lex_state = 0, .external_lex_state = 8}, + [9691] = {.lex_state = 0, .external_lex_state = 8}, + [9692] = {.lex_state = 0, .external_lex_state = 8}, + [9693] = {.lex_state = 22, .external_lex_state = 8}, + [9694] = {.lex_state = 0, .external_lex_state = 8}, + [9695] = {.lex_state = 0, .external_lex_state = 8}, + [9696] = {.lex_state = 0, .external_lex_state = 8}, + [9697] = {.lex_state = 0, .external_lex_state = 8}, + [9698] = {.lex_state = 0, .external_lex_state = 8}, + [9699] = {.lex_state = 0, .external_lex_state = 8}, + [9700] = {.lex_state = 0, .external_lex_state = 8}, + [9701] = {.lex_state = 0, .external_lex_state = 8}, + [9702] = {.lex_state = 0, .external_lex_state = 8}, + [9703] = {.lex_state = 0, .external_lex_state = 8}, + [9704] = {.lex_state = 22, .external_lex_state = 8}, + [9705] = {.lex_state = 0, .external_lex_state = 8}, + [9706] = {.lex_state = 0, .external_lex_state = 8}, + [9707] = {.lex_state = 0, .external_lex_state = 8}, + [9708] = {.lex_state = 0, .external_lex_state = 8}, + [9709] = {.lex_state = 0, .external_lex_state = 8}, + [9710] = {.lex_state = 22, .external_lex_state = 8}, + [9711] = {.lex_state = 321, .external_lex_state = 8}, + [9712] = {.lex_state = 22, .external_lex_state = 8}, + [9713] = {.lex_state = 0, .external_lex_state = 8}, + [9714] = {.lex_state = 0, .external_lex_state = 8}, + [9715] = {.lex_state = 0, .external_lex_state = 8}, + [9716] = {.lex_state = 22, .external_lex_state = 8}, + [9717] = {.lex_state = 22, .external_lex_state = 8}, + [9718] = {.lex_state = 0, .external_lex_state = 8}, + [9719] = {.lex_state = 22, .external_lex_state = 8}, + [9720] = {.lex_state = 321, .external_lex_state = 8}, + [9721] = {.lex_state = 0, .external_lex_state = 8}, + [9722] = {.lex_state = 22, .external_lex_state = 8}, + [9723] = {.lex_state = 0, .external_lex_state = 8}, + [9724] = {.lex_state = 22, .external_lex_state = 8}, + [9725] = {.lex_state = 0, .external_lex_state = 8}, + [9726] = {.lex_state = 22, .external_lex_state = 8}, + [9727] = {.lex_state = 0, .external_lex_state = 8}, + [9728] = {.lex_state = 0, .external_lex_state = 8}, + [9729] = {.lex_state = 0, .external_lex_state = 8}, + [9730] = {.lex_state = 0, .external_lex_state = 8}, + [9731] = {.lex_state = 0, .external_lex_state = 8}, + [9732] = {.lex_state = 0, .external_lex_state = 8}, + [9733] = {.lex_state = 0, .external_lex_state = 8}, + [9734] = {.lex_state = 22, .external_lex_state = 8}, + [9735] = {.lex_state = 0, .external_lex_state = 8}, + [9736] = {.lex_state = 0, .external_lex_state = 8}, + [9737] = {.lex_state = 0, .external_lex_state = 8}, + [9738] = {.lex_state = 0, .external_lex_state = 8}, + [9739] = {.lex_state = 22, .external_lex_state = 8}, + [9740] = {.lex_state = 0, .external_lex_state = 8}, + [9741] = {.lex_state = 0, .external_lex_state = 8}, + [9742] = {.lex_state = 22, .external_lex_state = 8}, + [9743] = {.lex_state = 22, .external_lex_state = 8}, + [9744] = {.lex_state = 0, .external_lex_state = 8}, + [9745] = {.lex_state = 0, .external_lex_state = 8}, + [9746] = {.lex_state = 22, .external_lex_state = 8}, + [9747] = {.lex_state = 0, .external_lex_state = 8}, + [9748] = {.lex_state = 0, .external_lex_state = 8}, + [9749] = {.lex_state = 0, .external_lex_state = 8}, + [9750] = {.lex_state = 0, .external_lex_state = 8}, + [9751] = {.lex_state = 0, .external_lex_state = 8}, + [9752] = {.lex_state = 0, .external_lex_state = 8}, + [9753] = {.lex_state = 22, .external_lex_state = 8}, + [9754] = {.lex_state = 0, .external_lex_state = 8}, + [9755] = {.lex_state = 0, .external_lex_state = 8}, + [9756] = {.lex_state = 0, .external_lex_state = 9}, + [9757] = {.lex_state = 0, .external_lex_state = 9}, + [9758] = {.lex_state = 0, .external_lex_state = 8}, + [9759] = {.lex_state = 22, .external_lex_state = 8}, + [9760] = {.lex_state = 0, .external_lex_state = 8}, + [9761] = {.lex_state = 0, .external_lex_state = 8}, + [9762] = {.lex_state = 22, .external_lex_state = 8}, + [9763] = {.lex_state = 0, .external_lex_state = 8}, + [9764] = {.lex_state = 0, .external_lex_state = 8}, + [9765] = {.lex_state = 0, .external_lex_state = 8}, + [9766] = {.lex_state = 0, .external_lex_state = 8}, + [9767] = {.lex_state = 0, .external_lex_state = 8}, + [9768] = {.lex_state = 0, .external_lex_state = 8}, + [9769] = {.lex_state = 0, .external_lex_state = 8}, + [9770] = {.lex_state = 0, .external_lex_state = 8}, + [9771] = {.lex_state = 0, .external_lex_state = 8}, + [9772] = {.lex_state = 0, .external_lex_state = 8}, + [9773] = {.lex_state = 0, .external_lex_state = 8}, + [9774] = {.lex_state = 0, .external_lex_state = 8}, + [9775] = {.lex_state = 0, .external_lex_state = 8}, + [9776] = {.lex_state = 0, .external_lex_state = 8}, + [9777] = {.lex_state = 0, .external_lex_state = 8}, + [9778] = {.lex_state = 0, .external_lex_state = 8}, + [9779] = {.lex_state = 0, .external_lex_state = 8}, + [9780] = {.lex_state = 0, .external_lex_state = 8}, + [9781] = {.lex_state = 0, .external_lex_state = 8}, + [9782] = {.lex_state = 0, .external_lex_state = 8}, + [9783] = {.lex_state = 0, .external_lex_state = 8}, + [9784] = {.lex_state = 0, .external_lex_state = 8}, + [9785] = {.lex_state = 0, .external_lex_state = 8}, + [9786] = {.lex_state = 0, .external_lex_state = 8}, + [9787] = {.lex_state = 0, .external_lex_state = 8}, + [9788] = {.lex_state = 0, .external_lex_state = 8}, + [9789] = {.lex_state = 0, .external_lex_state = 8}, + [9790] = {.lex_state = 0, .external_lex_state = 8}, + [9791] = {.lex_state = 0, .external_lex_state = 8}, + [9792] = {.lex_state = 22, .external_lex_state = 8}, + [9793] = {.lex_state = 22, .external_lex_state = 8}, + [9794] = {.lex_state = 0, .external_lex_state = 8}, + [9795] = {.lex_state = 321, .external_lex_state = 8}, + [9796] = {.lex_state = 0, .external_lex_state = 8}, + [9797] = {.lex_state = 0, .external_lex_state = 8}, + [9798] = {.lex_state = 22, .external_lex_state = 8}, + [9799] = {.lex_state = 0, .external_lex_state = 8}, + [9800] = {.lex_state = 22, .external_lex_state = 8}, + [9801] = {.lex_state = 0, .external_lex_state = 8}, + [9802] = {.lex_state = 0, .external_lex_state = 8}, + [9803] = {.lex_state = 22, .external_lex_state = 8}, + [9804] = {.lex_state = 22, .external_lex_state = 8}, + [9805] = {.lex_state = 0, .external_lex_state = 8}, + [9806] = {.lex_state = 0, .external_lex_state = 8}, + [9807] = {.lex_state = 22, .external_lex_state = 8}, + [9808] = {.lex_state = 22, .external_lex_state = 8}, + [9809] = {.lex_state = 0, .external_lex_state = 8}, + [9810] = {.lex_state = 22, .external_lex_state = 8}, + [9811] = {.lex_state = 22, .external_lex_state = 8}, + [9812] = {.lex_state = 0, .external_lex_state = 8}, + [9813] = {.lex_state = 0, .external_lex_state = 8}, + [9814] = {.lex_state = 22, .external_lex_state = 8}, + [9815] = {.lex_state = 22, .external_lex_state = 8}, + [9816] = {.lex_state = 0, .external_lex_state = 8}, + [9817] = {.lex_state = 22, .external_lex_state = 8}, + [9818] = {.lex_state = 22, .external_lex_state = 8}, + [9819] = {.lex_state = 0, .external_lex_state = 8}, + [9820] = {.lex_state = 22, .external_lex_state = 8}, + [9821] = {.lex_state = 22, .external_lex_state = 8}, + [9822] = {.lex_state = 0, .external_lex_state = 8}, + [9823] = {.lex_state = 22, .external_lex_state = 8}, + [9824] = {.lex_state = 22, .external_lex_state = 8}, + [9825] = {.lex_state = 22, .external_lex_state = 8}, + [9826] = {.lex_state = 0, .external_lex_state = 8}, + [9827] = {.lex_state = 22, .external_lex_state = 8}, + [9828] = {.lex_state = 22, .external_lex_state = 8}, + [9829] = {.lex_state = 0, .external_lex_state = 8}, + [9830] = {.lex_state = 0, .external_lex_state = 8}, + [9831] = {.lex_state = 0, .external_lex_state = 8}, + [9832] = {.lex_state = 22, .external_lex_state = 8}, + [9833] = {.lex_state = 0, .external_lex_state = 8}, + [9834] = {.lex_state = 22, .external_lex_state = 8}, + [9835] = {.lex_state = 0, .external_lex_state = 8}, + [9836] = {.lex_state = 0, .external_lex_state = 8}, + [9837] = {.lex_state = 0, .external_lex_state = 8}, + [9838] = {.lex_state = 0, .external_lex_state = 8}, + [9839] = {.lex_state = 22, .external_lex_state = 8}, + [9840] = {.lex_state = 0, .external_lex_state = 8}, + [9841] = {.lex_state = 22, .external_lex_state = 8}, + [9842] = {.lex_state = 0, .external_lex_state = 8}, + [9843] = {.lex_state = 0, .external_lex_state = 8}, + [9844] = {.lex_state = 22, .external_lex_state = 8}, + [9845] = {.lex_state = 0, .external_lex_state = 8}, + [9846] = {.lex_state = 22, .external_lex_state = 8}, + [9847] = {.lex_state = 22, .external_lex_state = 8}, + [9848] = {.lex_state = 0, .external_lex_state = 8}, + [9849] = {.lex_state = 22, .external_lex_state = 8}, + [9850] = {.lex_state = 0, .external_lex_state = 8}, + [9851] = {.lex_state = 0, .external_lex_state = 8}, + [9852] = {.lex_state = 0, .external_lex_state = 8}, + [9853] = {.lex_state = 0, .external_lex_state = 8}, + [9854] = {.lex_state = 22, .external_lex_state = 8}, + [9855] = {.lex_state = 22, .external_lex_state = 8}, + [9856] = {.lex_state = 0, .external_lex_state = 8}, + [9857] = {.lex_state = 0, .external_lex_state = 8}, + [9858] = {.lex_state = 0, .external_lex_state = 8}, + [9859] = {.lex_state = 0, .external_lex_state = 8}, + [9860] = {.lex_state = 22, .external_lex_state = 8}, + [9861] = {.lex_state = 0, .external_lex_state = 8}, + [9862] = {.lex_state = 0, .external_lex_state = 8}, + [9863] = {.lex_state = 22, .external_lex_state = 8}, + [9864] = {.lex_state = 22, .external_lex_state = 8}, + [9865] = {.lex_state = 0, .external_lex_state = 8}, + [9866] = {.lex_state = 0, .external_lex_state = 8}, + [9867] = {.lex_state = 0, .external_lex_state = 8}, + [9868] = {.lex_state = 0, .external_lex_state = 8}, + [9869] = {.lex_state = 22, .external_lex_state = 8}, + [9870] = {.lex_state = 22, .external_lex_state = 8}, + [9871] = {.lex_state = 0, .external_lex_state = 8}, + [9872] = {.lex_state = 22, .external_lex_state = 8}, + [9873] = {.lex_state = 0, .external_lex_state = 8}, + [9874] = {.lex_state = 22, .external_lex_state = 8}, + [9875] = {.lex_state = 22, .external_lex_state = 8}, + [9876] = {.lex_state = 0, .external_lex_state = 8}, + [9877] = {.lex_state = 0, .external_lex_state = 8}, + [9878] = {.lex_state = 0, .external_lex_state = 8}, + [9879] = {.lex_state = 22, .external_lex_state = 8}, + [9880] = {.lex_state = 0, .external_lex_state = 8}, + [9881] = {.lex_state = 22, .external_lex_state = 8}, + [9882] = {.lex_state = 0, .external_lex_state = 8}, + [9883] = {.lex_state = 0, .external_lex_state = 8}, + [9884] = {.lex_state = 0, .external_lex_state = 8}, + [9885] = {.lex_state = 0, .external_lex_state = 8}, + [9886] = {.lex_state = 0, .external_lex_state = 8}, + [9887] = {.lex_state = 0, .external_lex_state = 8}, + [9888] = {.lex_state = 22, .external_lex_state = 8}, + [9889] = {.lex_state = 22, .external_lex_state = 8}, + [9890] = {.lex_state = 0, .external_lex_state = 8}, + [9891] = {.lex_state = 0, .external_lex_state = 8}, + [9892] = {.lex_state = 22, .external_lex_state = 8}, + [9893] = {.lex_state = 0, .external_lex_state = 8}, + [9894] = {.lex_state = 0, .external_lex_state = 8}, + [9895] = {.lex_state = 22, .external_lex_state = 8}, + [9896] = {.lex_state = 0, .external_lex_state = 8}, + [9897] = {.lex_state = 0, .external_lex_state = 8}, + [9898] = {.lex_state = 22, .external_lex_state = 8}, + [9899] = {.lex_state = 0, .external_lex_state = 8}, + [9900] = {.lex_state = 22, .external_lex_state = 8}, + [9901] = {.lex_state = 0, .external_lex_state = 8}, + [9902] = {.lex_state = 0, .external_lex_state = 8}, + [9903] = {.lex_state = 22, .external_lex_state = 8}, + [9904] = {.lex_state = 0, .external_lex_state = 8}, + [9905] = {.lex_state = 22, .external_lex_state = 8}, + [9906] = {.lex_state = 0, .external_lex_state = 8}, + [9907] = {.lex_state = 0, .external_lex_state = 8}, + [9908] = {.lex_state = 0, .external_lex_state = 8}, + [9909] = {.lex_state = 0, .external_lex_state = 8}, + [9910] = {.lex_state = 22, .external_lex_state = 8}, + [9911] = {.lex_state = 0, .external_lex_state = 8}, + [9912] = {.lex_state = 22, .external_lex_state = 8}, + [9913] = {.lex_state = 0, .external_lex_state = 8}, + [9914] = {.lex_state = 0, .external_lex_state = 8}, + [9915] = {.lex_state = 0, .external_lex_state = 8}, + [9916] = {.lex_state = 22, .external_lex_state = 8}, + [9917] = {.lex_state = 0, .external_lex_state = 8}, + [9918] = {.lex_state = 22, .external_lex_state = 8}, + [9919] = {.lex_state = 22, .external_lex_state = 8}, + [9920] = {.lex_state = 0, .external_lex_state = 8}, + [9921] = {.lex_state = 0, .external_lex_state = 8}, + [9922] = {.lex_state = 0, .external_lex_state = 8}, + [9923] = {.lex_state = 22, .external_lex_state = 8}, + [9924] = {.lex_state = 0, .external_lex_state = 8}, + [9925] = {.lex_state = 22, .external_lex_state = 8}, + [9926] = {.lex_state = 0, .external_lex_state = 8}, + [9927] = {.lex_state = 22, .external_lex_state = 8}, + [9928] = {.lex_state = 0, .external_lex_state = 8}, + [9929] = {.lex_state = 0, .external_lex_state = 8}, + [9930] = {.lex_state = 22, .external_lex_state = 8}, + [9931] = {.lex_state = 0, .external_lex_state = 8}, + [9932] = {.lex_state = 22, .external_lex_state = 8}, + [9933] = {.lex_state = 0, .external_lex_state = 8}, + [9934] = {.lex_state = 0, .external_lex_state = 8}, + [9935] = {.lex_state = 0, .external_lex_state = 8}, + [9936] = {.lex_state = 0, .external_lex_state = 8}, + [9937] = {.lex_state = 0, .external_lex_state = 8}, + [9938] = {.lex_state = 0, .external_lex_state = 8}, + [9939] = {.lex_state = 0, .external_lex_state = 8}, + [9940] = {.lex_state = 22, .external_lex_state = 8}, + [9941] = {.lex_state = 0, .external_lex_state = 8}, + [9942] = {.lex_state = 32, .external_lex_state = 8}, + [9943] = {.lex_state = 0, .external_lex_state = 8}, + [9944] = {.lex_state = 0, .external_lex_state = 8}, + [9945] = {.lex_state = 22, .external_lex_state = 8}, + [9946] = {.lex_state = 0, .external_lex_state = 8}, + [9947] = {.lex_state = 0, .external_lex_state = 8}, + [9948] = {.lex_state = 0, .external_lex_state = 8}, + [9949] = {.lex_state = 0, .external_lex_state = 8}, + [9950] = {.lex_state = 0, .external_lex_state = 8}, + [9951] = {.lex_state = 0, .external_lex_state = 8}, + [9952] = {.lex_state = 22, .external_lex_state = 8}, + [9953] = {.lex_state = 0, .external_lex_state = 8}, + [9954] = {.lex_state = 22, .external_lex_state = 8}, + [9955] = {.lex_state = 22, .external_lex_state = 8}, + [9956] = {.lex_state = 22, .external_lex_state = 8}, + [9957] = {.lex_state = 22, .external_lex_state = 8}, + [9958] = {.lex_state = 0, .external_lex_state = 8}, + [9959] = {.lex_state = 22, .external_lex_state = 8}, + [9960] = {.lex_state = 22, .external_lex_state = 8}, + [9961] = {.lex_state = 22, .external_lex_state = 8}, + [9962] = {.lex_state = 22, .external_lex_state = 8}, + [9963] = {.lex_state = 22, .external_lex_state = 8}, + [9964] = {.lex_state = 22, .external_lex_state = 8}, + [9965] = {.lex_state = 22, .external_lex_state = 8}, + [9966] = {.lex_state = 0, .external_lex_state = 8}, + [9967] = {.lex_state = 0, .external_lex_state = 8}, + [9968] = {.lex_state = 0, .external_lex_state = 8}, + [9969] = {.lex_state = 0, .external_lex_state = 8}, + [9970] = {.lex_state = 22, .external_lex_state = 8}, + [9971] = {.lex_state = 0, .external_lex_state = 8}, + [9972] = {.lex_state = 0, .external_lex_state = 8}, + [9973] = {.lex_state = 0, .external_lex_state = 8}, + [9974] = {.lex_state = 22, .external_lex_state = 8}, + [9975] = {.lex_state = 22, .external_lex_state = 8}, + [9976] = {.lex_state = 0, .external_lex_state = 8}, + [9977] = {.lex_state = 22, .external_lex_state = 8}, + [9978] = {.lex_state = 0, .external_lex_state = 8}, + [9979] = {.lex_state = 0, .external_lex_state = 8}, + [9980] = {.lex_state = 0, .external_lex_state = 8}, + [9981] = {.lex_state = 0, .external_lex_state = 8}, + [9982] = {.lex_state = 22, .external_lex_state = 8}, + [9983] = {.lex_state = 22, .external_lex_state = 8}, + [9984] = {.lex_state = 22, .external_lex_state = 8}, + [9985] = {.lex_state = 22, .external_lex_state = 8}, + [9986] = {.lex_state = 22, .external_lex_state = 8}, + [9987] = {.lex_state = 22, .external_lex_state = 8}, + [9988] = {.lex_state = 22, .external_lex_state = 8}, + [9989] = {.lex_state = 0, .external_lex_state = 8}, + [9990] = {.lex_state = 0, .external_lex_state = 8}, + [9991] = {.lex_state = 0, .external_lex_state = 8}, + [9992] = {.lex_state = 0, .external_lex_state = 8}, + [9993] = {.lex_state = 22, .external_lex_state = 8}, + [9994] = {.lex_state = 0, .external_lex_state = 8}, + [9995] = {.lex_state = 22, .external_lex_state = 8}, + [9996] = {.lex_state = 0, .external_lex_state = 8}, + [9997] = {.lex_state = 0, .external_lex_state = 8}, + [9998] = {.lex_state = 0, .external_lex_state = 8}, + [9999] = {.lex_state = 0, .external_lex_state = 8}, + [10000] = {.lex_state = 0, .external_lex_state = 8}, + [10001] = {.lex_state = 0, .external_lex_state = 8}, + [10002] = {.lex_state = 0, .external_lex_state = 8}, + [10003] = {.lex_state = 0, .external_lex_state = 8}, + [10004] = {.lex_state = 0, .external_lex_state = 8}, + [10005] = {.lex_state = 0, .external_lex_state = 8}, + [10006] = {.lex_state = 0, .external_lex_state = 8}, + [10007] = {.lex_state = 0, .external_lex_state = 8}, + [10008] = {.lex_state = 0, .external_lex_state = 8}, + [10009] = {.lex_state = 0, .external_lex_state = 8}, + [10010] = {.lex_state = 0, .external_lex_state = 8}, + [10011] = {.lex_state = 0, .external_lex_state = 8}, + [10012] = {.lex_state = 0, .external_lex_state = 8}, + [10013] = {.lex_state = 0, .external_lex_state = 8}, + [10014] = {.lex_state = 0, .external_lex_state = 8}, + [10015] = {.lex_state = 0, .external_lex_state = 8}, + [10016] = {.lex_state = 0, .external_lex_state = 8}, + [10017] = {.lex_state = 0, .external_lex_state = 8}, + [10018] = {.lex_state = 0, .external_lex_state = 8}, + [10019] = {.lex_state = 0, .external_lex_state = 8}, + [10020] = {.lex_state = 22, .external_lex_state = 8}, + [10021] = {.lex_state = 22, .external_lex_state = 8}, + [10022] = {.lex_state = 0, .external_lex_state = 8}, + [10023] = {.lex_state = 0, .external_lex_state = 8}, + [10024] = {.lex_state = 22, .external_lex_state = 8}, + [10025] = {.lex_state = 0, .external_lex_state = 8}, + [10026] = {.lex_state = 0, .external_lex_state = 8}, + [10027] = {.lex_state = 0, .external_lex_state = 8}, + [10028] = {.lex_state = 0, .external_lex_state = 8}, + [10029] = {.lex_state = 0, .external_lex_state = 8}, + [10030] = {.lex_state = 22, .external_lex_state = 8}, + [10031] = {.lex_state = 22, .external_lex_state = 8}, + [10032] = {.lex_state = 0, .external_lex_state = 8}, + [10033] = {.lex_state = 0, .external_lex_state = 8}, + [10034] = {.lex_state = 0, .external_lex_state = 8}, + [10035] = {.lex_state = 0, .external_lex_state = 8}, + [10036] = {.lex_state = 0, .external_lex_state = 8}, + [10037] = {.lex_state = 22, .external_lex_state = 8}, + [10038] = {.lex_state = 22, .external_lex_state = 8}, + [10039] = {.lex_state = 22, .external_lex_state = 8}, + [10040] = {.lex_state = 0, .external_lex_state = 8}, + [10041] = {.lex_state = 0, .external_lex_state = 8}, + [10042] = {.lex_state = 0, .external_lex_state = 8}, + [10043] = {.lex_state = 0, .external_lex_state = 8}, + [10044] = {.lex_state = 0, .external_lex_state = 8}, + [10045] = {.lex_state = 0, .external_lex_state = 8}, + [10046] = {.lex_state = 22, .external_lex_state = 8}, + [10047] = {.lex_state = 0, .external_lex_state = 8}, + [10048] = {.lex_state = 22, .external_lex_state = 8}, + [10049] = {.lex_state = 22, .external_lex_state = 8}, + [10050] = {.lex_state = 22, .external_lex_state = 8}, + [10051] = {.lex_state = 0, .external_lex_state = 8}, + [10052] = {.lex_state = 0, .external_lex_state = 8}, + [10053] = {.lex_state = 0, .external_lex_state = 8}, + [10054] = {.lex_state = 0, .external_lex_state = 8}, + [10055] = {.lex_state = 0, .external_lex_state = 8}, + [10056] = {.lex_state = 0, .external_lex_state = 8}, + [10057] = {.lex_state = 0, .external_lex_state = 8}, + [10058] = {.lex_state = 22, .external_lex_state = 8}, + [10059] = {.lex_state = 0, .external_lex_state = 8}, + [10060] = {.lex_state = 0, .external_lex_state = 8}, + [10061] = {.lex_state = 22, .external_lex_state = 8}, + [10062] = {.lex_state = 0, .external_lex_state = 8}, + [10063] = {.lex_state = 22, .external_lex_state = 8}, + [10064] = {.lex_state = 0, .external_lex_state = 8}, + [10065] = {.lex_state = 0, .external_lex_state = 8}, + [10066] = {.lex_state = 0, .external_lex_state = 8}, + [10067] = {.lex_state = 0, .external_lex_state = 8}, + [10068] = {.lex_state = 0, .external_lex_state = 8}, + [10069] = {.lex_state = 0, .external_lex_state = 8}, + [10070] = {.lex_state = 0, .external_lex_state = 8}, + [10071] = {.lex_state = 0, .external_lex_state = 8}, + [10072] = {.lex_state = 0, .external_lex_state = 8}, + [10073] = {.lex_state = 0, .external_lex_state = 8}, + [10074] = {.lex_state = 22, .external_lex_state = 8}, + [10075] = {.lex_state = 0, .external_lex_state = 8}, + [10076] = {.lex_state = 0, .external_lex_state = 8}, + [10077] = {.lex_state = 22, .external_lex_state = 8}, + [10078] = {.lex_state = 0, .external_lex_state = 8}, + [10079] = {.lex_state = 0, .external_lex_state = 8}, + [10080] = {.lex_state = 0, .external_lex_state = 8}, + [10081] = {.lex_state = 0, .external_lex_state = 8}, + [10082] = {.lex_state = 0, .external_lex_state = 8}, + [10083] = {.lex_state = 0, .external_lex_state = 8}, + [10084] = {.lex_state = 22, .external_lex_state = 8}, + [10085] = {.lex_state = 0, .external_lex_state = 8}, + [10086] = {.lex_state = 0, .external_lex_state = 8}, + [10087] = {.lex_state = 0, .external_lex_state = 9}, + [10088] = {.lex_state = 0, .external_lex_state = 8}, + [10089] = {.lex_state = 0, .external_lex_state = 8}, + [10090] = {.lex_state = 0, .external_lex_state = 8}, + [10091] = {.lex_state = 0, .external_lex_state = 8}, + [10092] = {.lex_state = 0, .external_lex_state = 8}, + [10093] = {.lex_state = 0, .external_lex_state = 8}, + [10094] = {.lex_state = 0, .external_lex_state = 8}, + [10095] = {.lex_state = 0, .external_lex_state = 8}, + [10096] = {.lex_state = 0, .external_lex_state = 8}, + [10097] = {.lex_state = 0, .external_lex_state = 8}, + [10098] = {.lex_state = 22, .external_lex_state = 8}, + [10099] = {.lex_state = 0, .external_lex_state = 8}, + [10100] = {.lex_state = 0, .external_lex_state = 9}, + [10101] = {.lex_state = 22, .external_lex_state = 8}, + [10102] = {.lex_state = 0, .external_lex_state = 8}, + [10103] = {.lex_state = 0, .external_lex_state = 8}, + [10104] = {.lex_state = 0, .external_lex_state = 8}, + [10105] = {.lex_state = 22, .external_lex_state = 8}, + [10106] = {.lex_state = 0, .external_lex_state = 8}, + [10107] = {.lex_state = 0, .external_lex_state = 8}, + [10108] = {.lex_state = 0, .external_lex_state = 8}, + [10109] = {.lex_state = 0, .external_lex_state = 8}, + [10110] = {.lex_state = 0, .external_lex_state = 8}, + [10111] = {.lex_state = 0, .external_lex_state = 8}, + [10112] = {.lex_state = 0, .external_lex_state = 8}, + [10113] = {.lex_state = 0, .external_lex_state = 8}, + [10114] = {.lex_state = 0, .external_lex_state = 8}, + [10115] = {.lex_state = 22, .external_lex_state = 8}, + [10116] = {.lex_state = 0, .external_lex_state = 8}, + [10117] = {.lex_state = 22, .external_lex_state = 8}, + [10118] = {.lex_state = 0, .external_lex_state = 8}, + [10119] = {.lex_state = 0, .external_lex_state = 8}, + [10120] = {.lex_state = 22, .external_lex_state = 8}, + [10121] = {.lex_state = 0, .external_lex_state = 8}, + [10122] = {.lex_state = 0, .external_lex_state = 8}, + [10123] = {.lex_state = 0, .external_lex_state = 8}, + [10124] = {.lex_state = 22, .external_lex_state = 8}, + [10125] = {.lex_state = 0, .external_lex_state = 8}, + [10126] = {.lex_state = 0, .external_lex_state = 8}, + [10127] = {.lex_state = 22, .external_lex_state = 8}, + [10128] = {.lex_state = 0, .external_lex_state = 8}, + [10129] = {.lex_state = 0, .external_lex_state = 8}, + [10130] = {.lex_state = 0, .external_lex_state = 8}, + [10131] = {.lex_state = 0, .external_lex_state = 8}, + [10132] = {.lex_state = 0, .external_lex_state = 9}, + [10133] = {.lex_state = 0, .external_lex_state = 8}, + [10134] = {.lex_state = 0, .external_lex_state = 8}, + [10135] = {.lex_state = 0, .external_lex_state = 9}, + [10136] = {.lex_state = 0, .external_lex_state = 8}, + [10137] = {.lex_state = 0, .external_lex_state = 8}, + [10138] = {.lex_state = 0, .external_lex_state = 8}, + [10139] = {.lex_state = 22, .external_lex_state = 8}, + [10140] = {.lex_state = 0, .external_lex_state = 8}, + [10141] = {.lex_state = 0, .external_lex_state = 8}, + [10142] = {.lex_state = 22, .external_lex_state = 8}, + [10143] = {.lex_state = 0, .external_lex_state = 8}, + [10144] = {.lex_state = 0, .external_lex_state = 8}, + [10145] = {.lex_state = 22, .external_lex_state = 8}, + [10146] = {.lex_state = 0, .external_lex_state = 8}, + [10147] = {.lex_state = 0, .external_lex_state = 8}, + [10148] = {.lex_state = 22, .external_lex_state = 8}, + [10149] = {.lex_state = 0, .external_lex_state = 8}, + [10150] = {.lex_state = 0, .external_lex_state = 8}, + [10151] = {.lex_state = 325, .external_lex_state = 8}, + [10152] = {.lex_state = 0, .external_lex_state = 9}, + [10153] = {.lex_state = 0, .external_lex_state = 9}, + [10154] = {.lex_state = 0, .external_lex_state = 8}, + [10155] = {.lex_state = 0, .external_lex_state = 8}, + [10156] = {.lex_state = 22, .external_lex_state = 8}, + [10157] = {.lex_state = 0, .external_lex_state = 9}, + [10158] = {.lex_state = 0, .external_lex_state = 8}, + [10159] = {.lex_state = 0, .external_lex_state = 8}, + [10160] = {.lex_state = 0, .external_lex_state = 8}, + [10161] = {.lex_state = 0, .external_lex_state = 8}, + [10162] = {.lex_state = 22, .external_lex_state = 8}, + [10163] = {.lex_state = 0, .external_lex_state = 8}, + [10164] = {.lex_state = 0, .external_lex_state = 8}, + [10165] = {.lex_state = 0, .external_lex_state = 8}, + [10166] = {.lex_state = 0, .external_lex_state = 8}, + [10167] = {.lex_state = 0, .external_lex_state = 8}, + [10168] = {.lex_state = 0, .external_lex_state = 8}, + [10169] = {.lex_state = 0, .external_lex_state = 8}, + [10170] = {.lex_state = 0, .external_lex_state = 8}, + [10171] = {.lex_state = 0, .external_lex_state = 8}, + [10172] = {.lex_state = 0, .external_lex_state = 8}, + [10173] = {.lex_state = 0, .external_lex_state = 8}, + [10174] = {.lex_state = 0, .external_lex_state = 8}, + [10175] = {.lex_state = 0, .external_lex_state = 8}, + [10176] = {.lex_state = 22, .external_lex_state = 8}, + [10177] = {.lex_state = 0, .external_lex_state = 8}, + [10178] = {.lex_state = 22, .external_lex_state = 8}, + [10179] = {.lex_state = 0, .external_lex_state = 8}, + [10180] = {.lex_state = 0, .external_lex_state = 8}, + [10181] = {.lex_state = 22, .external_lex_state = 8}, + [10182] = {.lex_state = 0, .external_lex_state = 8}, + [10183] = {.lex_state = 0, .external_lex_state = 8}, + [10184] = {.lex_state = 0, .external_lex_state = 9}, + [10185] = {.lex_state = 0, .external_lex_state = 8}, + [10186] = {.lex_state = 0, .external_lex_state = 9}, + [10187] = {.lex_state = 0, .external_lex_state = 9}, + [10188] = {.lex_state = 22, .external_lex_state = 8}, + [10189] = {.lex_state = 22, .external_lex_state = 8}, + [10190] = {.lex_state = 22, .external_lex_state = 8}, + [10191] = {.lex_state = 22, .external_lex_state = 8}, + [10192] = {.lex_state = 22, .external_lex_state = 8}, + [10193] = {.lex_state = 22, .external_lex_state = 8}, + [10194] = {.lex_state = 22, .external_lex_state = 8}, + [10195] = {.lex_state = 22, .external_lex_state = 8}, + [10196] = {.lex_state = 22, .external_lex_state = 8}, + [10197] = {.lex_state = 0, .external_lex_state = 8}, + [10198] = {.lex_state = 0, .external_lex_state = 8}, + [10199] = {.lex_state = 0, .external_lex_state = 8}, + [10200] = {.lex_state = 0, .external_lex_state = 8}, + [10201] = {.lex_state = 0, .external_lex_state = 8}, + [10202] = {.lex_state = 0, .external_lex_state = 8}, + [10203] = {.lex_state = 0, .external_lex_state = 8}, + [10204] = {.lex_state = 0, .external_lex_state = 8}, + [10205] = {.lex_state = 0, .external_lex_state = 8}, + [10206] = {.lex_state = 0, .external_lex_state = 8}, + [10207] = {.lex_state = 0, .external_lex_state = 8}, + [10208] = {.lex_state = 0, .external_lex_state = 8}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym__alpha_identifier] = ACTIONS(1), + [anon_sym_POUND_BANG] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_file] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_package] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [sym_wildcard_import] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_typealias] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_interface] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_constructor] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_val] = ACTIONS(1), + [anon_sym_var] = ACTIONS(1), + [anon_sym_by] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_where] = ACTIONS(1), + [anon_sym_init] = ACTIONS(1), + [anon_sym_companion] = ACTIONS(1), + [anon_sym_object] = ACTIONS(1), + [anon_sym_fun] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_get] = ACTIONS(1), + [anon_sym_set] = ACTIONS(1), + [anon_sym_this] = ACTIONS(1), + [anon_sym_super] = ACTIONS(1), + [anon_sym_dynamic] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [sym__quest] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_QMARK_COLON] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_when] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_throw] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_BANGin] = ACTIONS(1), + [anon_sym_is] = ACTIONS(1), + [anon_sym_BANGis] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_as_QMARK] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_BANG_BANG] = ACTIONS(1), + [anon_sym_suspend] = ACTIONS(1), + [anon_sym_sealed] = ACTIONS(1), + [anon_sym_annotation] = ACTIONS(1), + [anon_sym_data] = ACTIONS(1), + [anon_sym_inner] = ACTIONS(1), + [anon_sym_value] = ACTIONS(1), + [anon_sym_override] = ACTIONS(1), + [anon_sym_lateinit] = ACTIONS(1), + [anon_sym_public] = ACTIONS(1), + [anon_sym_private] = ACTIONS(1), + [anon_sym_internal] = ACTIONS(1), + [anon_sym_protected] = ACTIONS(1), + [anon_sym_out] = ACTIONS(1), + [anon_sym_tailrec] = ACTIONS(1), + [anon_sym_operator] = ACTIONS(1), + [anon_sym_infix] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_external] = ACTIONS(1), + [sym_property_modifier] = ACTIONS(1), + [anon_sym_abstract] = ACTIONS(1), + [anon_sym_final] = ACTIONS(1), + [anon_sym_open] = ACTIONS(1), + [anon_sym_vararg] = ACTIONS(1), + [anon_sym_noinline] = ACTIONS(1), + [anon_sym_crossinline] = ACTIONS(1), + [sym_reification_modifier] = ACTIONS(1), + [anon_sym_expect] = ACTIONS(1), + [anon_sym_actual] = ACTIONS(1), + [anon_sym_field] = ACTIONS(1), + [anon_sym_property] = ACTIONS(1), + [anon_sym_receiver] = ACTIONS(1), + [anon_sym_param] = ACTIONS(1), + [anon_sym_setparam] = ACTIONS(1), + [anon_sym_delegate] = ACTIONS(1), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1), + [anon_sym_continue_AT] = ACTIONS(1), + [anon_sym_break_AT] = ACTIONS(1), + [anon_sym_this_AT] = ACTIONS(1), + [anon_sym_super_AT] = ACTIONS(1), + [anon_sym_AT2] = ACTIONS(1), + [sym_real_literal] = ACTIONS(1), + [sym_integer_literal] = ACTIONS(1), + [sym_hex_literal] = ACTIONS(1), + [sym_bin_literal] = ACTIONS(1), + [aux_sym_unsigned_literal_token1] = ACTIONS(1), + [anon_sym_L] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [sym_null_literal] = ACTIONS(1), + [sym__backtick_identifier] = ACTIONS(1), + [anon_sym_BSLASHu] = ACTIONS(1), + [sym__escaped_identifier] = ACTIONS(1), + [sym__automatic_semicolon] = ACTIONS(1), + [sym__import_list_delimiter] = ACTIONS(1), + [sym_safe_nav] = ACTIONS(1), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1), + [sym__string_end] = ACTIONS(1), + [sym_string_content] = ACTIONS(1), + }, + [1] = { + [sym_source_file] = STATE(10114), + [sym_shebang_line] = STATE(52), + [sym_file_annotation] = STATE(54), + [sym_package_header] = STATE(73), + [sym_import_list] = STATE(67), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat1] = STATE(54), + [aux_sym_source_file_repeat2] = STATE(67), + [aux_sym_source_file_repeat3] = STATE(248), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(5), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_POUND_BANG] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3431), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [3] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3402), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [4] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4773), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [5] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4749), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [6] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9746), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(295), + [anon_sym_as] = ACTIONS(295), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_where] = ACTIONS(295), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_DASH_GT] = ACTIONS(293), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(295), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_QMARK_COLON] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(295), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(293), + [anon_sym_DASH_EQ] = ACTIONS(293), + [anon_sym_STAR_EQ] = ACTIONS(293), + [anon_sym_SLASH_EQ] = ACTIONS(293), + [anon_sym_PERCENT_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_BANGin] = ACTIONS(293), + [anon_sym_is] = ACTIONS(295), + [anon_sym_BANGis] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_as_QMARK] = ACTIONS(293), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_BANG_BANG] = ACTIONS(293), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [7] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1172), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [8] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4024), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(449), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [9] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3936), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(449), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [10] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5131), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(521), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [11] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5156), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(521), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [12] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9746), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(295), + [anon_sym_as] = ACTIONS(295), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_where] = ACTIONS(295), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(315), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(295), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_QMARK_COLON] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(295), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(293), + [anon_sym_DASH_EQ] = ACTIONS(293), + [anon_sym_STAR_EQ] = ACTIONS(293), + [anon_sym_SLASH_EQ] = ACTIONS(293), + [anon_sym_PERCENT_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_BANGin] = ACTIONS(293), + [anon_sym_is] = ACTIONS(295), + [anon_sym_BANGis] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_as_QMARK] = ACTIONS(293), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_BANG_BANG] = ACTIONS(293), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym__automatic_semicolon] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [13] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3197), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [14] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [15] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3157), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [16] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5156), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(639), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [17] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3936), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(663), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [18] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4024), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(663), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [19] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3402), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(693), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [20] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1172), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(723), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [21] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5131), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(639), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [22] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3431), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(693), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [23] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4749), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(753), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [24] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4773), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(753), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [25] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3197), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [26] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(723), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [27] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3157), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [28] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3402), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [29] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4749), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [30] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4773), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [31] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3431), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [32] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [33] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1172), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [34] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5156), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [35] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3197), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [36] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3936), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [37] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5131), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [38] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3157), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [39] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4024), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [40] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3197), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [41] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4749), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [42] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5131), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [43] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3431), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [44] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4024), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [45] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3936), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [46] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1193), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [47] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3402), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [48] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3157), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [49] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4773), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [50] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5156), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [51] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1172), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(205), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [52] = { + [sym_file_annotation] = STATE(53), + [sym_package_header] = STATE(65), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat1] = STATE(53), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(240), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [53] = { + [sym_file_annotation] = STATE(3090), + [sym_package_header] = STATE(77), + [sym_import_list] = STATE(82), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat1] = STATE(3090), + [aux_sym_source_file_repeat2] = STATE(82), + [aux_sym_source_file_repeat3] = STATE(263), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [54] = { + [sym_file_annotation] = STATE(3090), + [sym_package_header] = STATE(65), + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat1] = STATE(3090), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(240), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_package] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [55] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9746), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(295), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(295), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(293), + [anon_sym_is] = ACTIONS(295), + [anon_sym_BANGis] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym__automatic_semicolon] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [56] = { + [sym_type_alias] = STATE(5468), + [sym__declaration] = STATE(5468), + [sym_class_declaration] = STATE(5468), + [sym_binding_pattern_kind] = STATE(6449), + [sym_function_declaration] = STATE(5468), + [sym_property_declaration] = STATE(5468), + [sym_getter] = STATE(5468), + [sym_setter] = STATE(5468), + [sym_object_declaration] = STATE(5468), + [sym__statement] = STATE(5468), + [sym_control_structure_body] = STATE(5443), + [sym__block] = STATE(5468), + [sym__loop_statement] = STATE(5468), + [sym_for_statement] = STATE(5468), + [sym_while_statement] = STATE(5468), + [sym_do_while_statement] = STATE(5468), + [sym_assignment] = STATE(5468), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8323), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [57] = { + [sym_type_alias] = STATE(5468), + [sym__declaration] = STATE(5468), + [sym_class_declaration] = STATE(5468), + [sym_binding_pattern_kind] = STATE(6449), + [sym_function_declaration] = STATE(5468), + [sym_property_declaration] = STATE(5468), + [sym_getter] = STATE(5468), + [sym_setter] = STATE(5468), + [sym_object_declaration] = STATE(5468), + [sym__statement] = STATE(5468), + [sym_control_structure_body] = STATE(5379), + [sym__block] = STATE(5468), + [sym__loop_statement] = STATE(5468), + [sym_for_statement] = STATE(5468), + [sym_while_statement] = STATE(5468), + [sym_do_while_statement] = STATE(5468), + [sym_assignment] = STATE(5468), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8323), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [58] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10200), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10122), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1127), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [59] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9968), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10185), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1131), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [60] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9788), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10185), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1131), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [61] = { + [sym_import_list] = STATE(3075), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(3075), + [aux_sym_source_file_repeat3] = STATE(275), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1135), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [62] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9576), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10185), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1131), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [63] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9562), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10103), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1141), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [64] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10080), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10078), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1145), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [65] = { + [sym_import_list] = STATE(82), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(82), + [aux_sym_source_file_repeat3] = STATE(263), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [66] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9676), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10146), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1149), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [67] = { + [sym_import_list] = STATE(3075), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(3075), + [aux_sym_source_file_repeat3] = STATE(240), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [68] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10033), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10103), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1141), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [69] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10164), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10146), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1149), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [70] = { + [sym_import_list] = STATE(3075), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(3075), + [aux_sym_source_file_repeat3] = STATE(263), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [71] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9577), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10078), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1145), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [72] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10207), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10082), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1159), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [73] = { + [sym_import_list] = STATE(70), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(240), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [74] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9630), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10082), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1159), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [75] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9971), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10103), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1141), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [76] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9602), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10078), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1145), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [77] = { + [sym_import_list] = STATE(61), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(61), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [78] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9718), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10103), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1141), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [79] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9948), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10122), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1127), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [80] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10198), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10082), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1159), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [81] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9767), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10122), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1127), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [82] = { + [sym_import_list] = STATE(3075), + [sym_import_header] = STATE(8794), + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat2] = STATE(3075), + [aux_sym_source_file_repeat3] = STATE(251), + [aux_sym_import_list_repeat1] = STATE(8794), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [83] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9778), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10146), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1149), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [84] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9748), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10185), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1131), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [85] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_variable_declaration] = STATE(8984), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9713), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_multi_variable_declaration] = STATE(8984), + [sym_lambda_parameters] = STATE(10078), + [sym__lambda_parameter] = STATE(8984), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5321), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1145), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [86] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9746), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym__automatic_semicolon] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [87] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(4226), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1185), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [88] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5658), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1187), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [89] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(4328), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [90] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4176), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [91] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1057), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [92] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4351), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [93] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4323), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [94] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(4107), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [95] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5698), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [96] = { + [sym_type_alias] = STATE(9261), + [sym__declaration] = STATE(9261), + [sym_class_declaration] = STATE(9261), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9261), + [sym_property_declaration] = STATE(9261), + [sym_getter] = STATE(9261), + [sym_setter] = STATE(9261), + [sym_object_declaration] = STATE(9261), + [sym__statement] = STATE(9261), + [sym_control_structure_body] = STATE(9205), + [sym__block] = STATE(9261), + [sym__loop_statement] = STATE(9261), + [sym_for_statement] = STATE(9261), + [sym_while_statement] = STATE(9261), + [sym_do_while_statement] = STATE(9261), + [sym_assignment] = STATE(9261), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [97] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5268), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [98] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3886), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [99] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(5327), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [100] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3636), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [101] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(5675), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [102] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(4210), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [103] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(4136), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [104] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4832), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [105] = { + [sym_type_alias] = STATE(9261), + [sym__declaration] = STATE(9261), + [sym_class_declaration] = STATE(9261), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9261), + [sym_property_declaration] = STATE(9261), + [sym_getter] = STATE(9261), + [sym_setter] = STATE(9261), + [sym_object_declaration] = STATE(9261), + [sym__statement] = STATE(9261), + [sym_control_structure_body] = STATE(9222), + [sym__block] = STATE(9261), + [sym__loop_statement] = STATE(9261), + [sym_for_statement] = STATE(9261), + [sym_while_statement] = STATE(9261), + [sym_do_while_statement] = STATE(9261), + [sym_assignment] = STATE(9261), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [106] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5369), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [107] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(5490), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [108] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(2372), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(1281), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [109] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [110] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3094), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(1293), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [111] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1301), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [112] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(2251), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [113] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3279), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [114] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1074), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [115] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5310), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [116] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1074), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [117] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4857), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [118] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1101), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [119] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4835), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [120] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3264), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [121] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4857), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [122] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [123] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3275), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [124] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3279), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [125] = { + [sym_type_alias] = STATE(9261), + [sym__declaration] = STATE(9261), + [sym_class_declaration] = STATE(9261), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9261), + [sym_property_declaration] = STATE(9261), + [sym_getter] = STATE(9261), + [sym_setter] = STATE(9261), + [sym_object_declaration] = STATE(9261), + [sym__statement] = STATE(9261), + [sym_control_structure_body] = STATE(9312), + [sym__block] = STATE(9261), + [sym__loop_statement] = STATE(9261), + [sym_for_statement] = STATE(9261), + [sym_while_statement] = STATE(9261), + [sym_do_while_statement] = STATE(9261), + [sym_assignment] = STATE(9261), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [126] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3456), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [127] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3303), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [128] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1179), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [129] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5223), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [130] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1179), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [131] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5307), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [132] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5305), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [133] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3272), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [134] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [135] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3604), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [136] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1044), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [137] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9746), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [138] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4870), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [139] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1101), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [140] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3588), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [141] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3901), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [142] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4891), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [143] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4870), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [144] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4891), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [145] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1044), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [146] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3264), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [147] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5293), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [148] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4868), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [149] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3896), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [150] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3583), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [151] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3560), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [152] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [153] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(5991), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5293), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8137), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1013), + [anon_sym_fun] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1017), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [154] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3894), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [155] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3272), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [156] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3456), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [157] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4066), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [158] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5305), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [159] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4868), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [160] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [161] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3894), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [162] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5307), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [163] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1074), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [164] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3303), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [165] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1074), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [166] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4066), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [167] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3279), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [168] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3275), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [169] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1101), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [170] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [171] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6185), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1179), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_modifiers] = STATE(8208), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(373), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(805), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [172] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6072), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1044), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(552), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_modifiers] = STATE(8121), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(362), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(820), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [173] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4868), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [174] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5293), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [175] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3896), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [176] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5305), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [177] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5307), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [178] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5310), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [179] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6169), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3901), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_modifiers] = STATE(8326), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(357), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(811), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [180] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3303), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [181] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4066), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [182] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3275), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [183] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9746), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [184] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6203), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3264), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_modifiers] = STATE(8211), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(364), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [185] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3264), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [186] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4835), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [187] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6437), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5223), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_modifiers] = STATE(8110), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(361), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(513), + [anon_sym_fun] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(519), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [188] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3604), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [189] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6039), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4835), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_modifiers] = STATE(8103), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(356), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [190] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3588), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [191] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3583), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [192] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6181), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3560), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_modifiers] = STATE(8252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(374), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(803), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [193] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1101), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [194] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1103), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [195] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3456), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [196] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(5960), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4835), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4165), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_modifiers] = STATE(8122), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(359), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(822), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [197] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5310), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [198] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6342), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3456), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_modifiers] = STATE(8308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(379), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [199] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [200] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6150), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(4066), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(370), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(812), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1053), + [anon_sym_fun] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(1057), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [201] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3894), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [202] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3896), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [203] = { + [sym_type_alias] = STATE(5468), + [sym__declaration] = STATE(5468), + [sym_class_declaration] = STATE(5468), + [sym_binding_pattern_kind] = STATE(6449), + [sym_function_declaration] = STATE(5468), + [sym_property_declaration] = STATE(5468), + [sym_getter] = STATE(5468), + [sym_setter] = STATE(5468), + [sym_object_declaration] = STATE(5468), + [sym__statement] = STATE(5468), + [sym_control_structure_body] = STATE(5406), + [sym__block] = STATE(5468), + [sym__loop_statement] = STATE(5468), + [sym_for_statement] = STATE(5468), + [sym_while_statement] = STATE(5468), + [sym_do_while_statement] = STATE(5468), + [sym_assignment] = STATE(5468), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8323), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [204] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4857), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [205] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6413), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3901), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(1440), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_modifiers] = STATE(8266), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(371), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(429), + [anon_sym_interface] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(437), + [anon_sym_fun] = ACTIONS(439), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(443), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [206] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3604), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [207] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(6329), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1179), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_modifiers] = STATE(8355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(363), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [208] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5310), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [209] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3303), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [210] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4857), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [211] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5307), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [212] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5305), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [213] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4870), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [214] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4870), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [215] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3901), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [216] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5293), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [217] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3560), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [218] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3275), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [219] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3588), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [220] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6386), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3279), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8210), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [221] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4891), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [222] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6358), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4868), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(3367), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_modifiers] = STATE(8106), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(360), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(215), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(223), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(227), + [anon_sym_set] = ACTIONS(229), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [223] = { + [sym_type_alias] = STATE(4897), + [sym__declaration] = STATE(4897), + [sym_class_declaration] = STATE(4897), + [sym_binding_pattern_kind] = STATE(6278), + [sym_function_declaration] = STATE(4897), + [sym_property_declaration] = STATE(4897), + [sym_getter] = STATE(4897), + [sym_setter] = STATE(4897), + [sym_object_declaration] = STATE(4897), + [sym__statement] = STATE(4897), + [sym_control_structure_body] = STATE(4891), + [sym__block] = STATE(4897), + [sym__loop_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4897), + [sym_do_while_statement] = STATE(4897), + [sym_assignment] = STATE(4897), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8358), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(786), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(213), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [224] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3896), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [225] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6210), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3272), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_modifiers] = STATE(8260), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(367), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(816), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [226] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3604), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [227] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3583), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [228] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3894), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [229] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6228), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3560), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(366), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [230] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6424), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5223), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_modifiers] = STATE(8356), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(369), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(800), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [231] = { + [sym_type_alias] = STATE(5294), + [sym__declaration] = STATE(5294), + [sym_class_declaration] = STATE(5294), + [sym_binding_pattern_kind] = STATE(6288), + [sym_function_declaration] = STATE(5294), + [sym_property_declaration] = STATE(5294), + [sym_getter] = STATE(5294), + [sym_setter] = STATE(5294), + [sym_object_declaration] = STATE(5294), + [sym__statement] = STATE(5294), + [sym_control_structure_body] = STATE(5223), + [sym__block] = STATE(5294), + [sym__loop_statement] = STATE(5294), + [sym_for_statement] = STATE(5294), + [sym_while_statement] = STATE(5294), + [sym_do_while_statement] = STATE(5294), + [sym_assignment] = STATE(5294), + [sym__expression] = STATE(4106), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_modifiers] = STATE(8259), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(358), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(505), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [232] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3588), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [233] = { + [sym_type_alias] = STATE(1049), + [sym__declaration] = STATE(1049), + [sym_class_declaration] = STATE(1049), + [sym_binding_pattern_kind] = STATE(5961), + [sym_function_declaration] = STATE(1049), + [sym_property_declaration] = STATE(1049), + [sym_getter] = STATE(1049), + [sym_setter] = STATE(1049), + [sym_object_declaration] = STATE(1049), + [sym__statement] = STATE(1049), + [sym_control_structure_body] = STATE(1044), + [sym__block] = STATE(1049), + [sym__loop_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_do_while_statement] = STATE(1049), + [sym_assignment] = STATE(1049), + [sym__expression] = STATE(490), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_modifiers] = STATE(8173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(375), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(802), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [234] = { + [sym_type_alias] = STATE(3488), + [sym__declaration] = STATE(3488), + [sym_class_declaration] = STATE(3488), + [sym_binding_pattern_kind] = STATE(6197), + [sym_function_declaration] = STATE(3488), + [sym_property_declaration] = STATE(3488), + [sym_getter] = STATE(3488), + [sym_setter] = STATE(3488), + [sym_object_declaration] = STATE(3488), + [sym__statement] = STATE(3488), + [sym_control_structure_body] = STATE(3583), + [sym__block] = STATE(3488), + [sym__loop_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_do_while_statement] = STATE(3488), + [sym_assignment] = STATE(3488), + [sym__expression] = STATE(2556), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_modifiers] = STATE(8299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(378), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1029), + [anon_sym_fun] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1035), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [235] = { + [sym_type_alias] = STATE(4053), + [sym__declaration] = STATE(4053), + [sym_class_declaration] = STATE(4053), + [sym_binding_pattern_kind] = STATE(6402), + [sym_function_declaration] = STATE(4053), + [sym_property_declaration] = STATE(4053), + [sym_getter] = STATE(4053), + [sym_setter] = STATE(4053), + [sym_object_declaration] = STATE(4053), + [sym__statement] = STATE(4053), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4053), + [sym__loop_statement] = STATE(4053), + [sym_for_statement] = STATE(4053), + [sym_while_statement] = STATE(4053), + [sym_do_while_statement] = STATE(4053), + [sym_assignment] = STATE(4053), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_modifiers] = STATE(8096), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(377), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(813), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_typealias] = ACTIONS(427), + [anon_sym_class] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(651), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(655), + [anon_sym_fun] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(661), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(477), + [anon_sym_inner] = ACTIONS(477), + [anon_sym_value] = ACTIONS(477), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(479), + [anon_sym_actual] = ACTIONS(479), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [236] = { + [sym_type_alias] = STATE(3167), + [sym__declaration] = STATE(3167), + [sym_class_declaration] = STATE(3167), + [sym_binding_pattern_kind] = STATE(6254), + [sym_function_declaration] = STATE(3167), + [sym_property_declaration] = STATE(3167), + [sym_getter] = STATE(3167), + [sym_setter] = STATE(3167), + [sym_object_declaration] = STATE(3167), + [sym__statement] = STATE(3167), + [sym_control_structure_body] = STATE(3272), + [sym__block] = STATE(3167), + [sym__loop_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_while_statement] = STATE(3167), + [sym_assignment] = STATE(3167), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_modifiers] = STATE(8226), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(376), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [237] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(10048), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [238] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9953), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [239] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9598), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [240] = { + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat3] = STATE(276), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [241] = { + [sym_type_alias] = STATE(5468), + [sym__declaration] = STATE(5468), + [sym_class_declaration] = STATE(5468), + [sym_binding_pattern_kind] = STATE(6449), + [sym_function_declaration] = STATE(5468), + [sym_property_declaration] = STATE(5468), + [sym_getter] = STATE(5468), + [sym_setter] = STATE(5468), + [sym_object_declaration] = STATE(5468), + [sym__statement] = STATE(5468), + [sym_control_structure_body] = STATE(5320), + [sym__block] = STATE(5468), + [sym__loop_statement] = STATE(5468), + [sym_for_statement] = STATE(5468), + [sym_while_statement] = STATE(5468), + [sym_do_while_statement] = STATE(5468), + [sym_assignment] = STATE(5468), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8323), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [242] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9569), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [243] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9593), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [244] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9699), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [245] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9867), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [246] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9749), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [247] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10165), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [248] = { + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat3] = STATE(276), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [249] = { + [sym_type_alias] = STATE(5468), + [sym__declaration] = STATE(5468), + [sym_class_declaration] = STATE(5468), + [sym_binding_pattern_kind] = STATE(6449), + [sym_function_declaration] = STATE(5468), + [sym_property_declaration] = STATE(5468), + [sym_getter] = STATE(5468), + [sym_setter] = STATE(5468), + [sym_object_declaration] = STATE(5468), + [sym__statement] = STATE(5468), + [sym_control_structure_body] = STATE(5357), + [sym__block] = STATE(5468), + [sym__loop_statement] = STATE(5468), + [sym_for_statement] = STATE(5468), + [sym_while_statement] = STATE(5468), + [sym_do_while_statement] = STATE(5468), + [sym_assignment] = STATE(5468), + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_modifiers] = STATE(8323), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(372), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [250] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9957), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [251] = { + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat3] = STATE(276), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1135), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [252] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9605), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [253] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9578), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [254] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9614), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [255] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9927), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [256] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9738), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [257] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9949), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [258] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9689), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [259] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9771), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [260] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9952), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [261] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9940), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [262] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9960), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [263] = { + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat3] = STATE(276), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [264] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9691), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [265] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9622), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [266] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9597), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [267] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9558), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [268] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10201), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [269] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9538), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [270] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9631), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [271] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9737), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [272] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9779), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [273] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(10088), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [274] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9725), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [275] = { + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat3] = STATE(276), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [276] = { + [sym_type_alias] = STATE(9226), + [sym__declaration] = STATE(9226), + [sym_class_declaration] = STATE(9226), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9226), + [sym_property_declaration] = STATE(9226), + [sym_getter] = STATE(9226), + [sym_setter] = STATE(9226), + [sym_object_declaration] = STATE(9226), + [sym__statement] = STATE(9226), + [sym__loop_statement] = STATE(9226), + [sym_for_statement] = STATE(9226), + [sym_while_statement] = STATE(9226), + [sym_do_while_statement] = STATE(9226), + [sym_assignment] = STATE(9226), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym_source_file_repeat3] = STATE(276), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym__alpha_identifier] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_typealias] = ACTIONS(1434), + [anon_sym_class] = ACTIONS(1437), + [anon_sym_interface] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_val] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_object] = ACTIONS(1452), + [anon_sym_fun] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1461), + [anon_sym_this] = ACTIONS(1464), + [anon_sym_super] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1470), + [sym_label] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_when] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_suspend] = ACTIONS(1512), + [anon_sym_sealed] = ACTIONS(1515), + [anon_sym_annotation] = ACTIONS(1515), + [anon_sym_data] = ACTIONS(1518), + [anon_sym_inner] = ACTIONS(1518), + [anon_sym_value] = ACTIONS(1518), + [anon_sym_override] = ACTIONS(1521), + [anon_sym_lateinit] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1524), + [anon_sym_private] = ACTIONS(1524), + [anon_sym_internal] = ACTIONS(1524), + [anon_sym_protected] = ACTIONS(1524), + [anon_sym_tailrec] = ACTIONS(1512), + [anon_sym_operator] = ACTIONS(1512), + [anon_sym_infix] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym_external] = ACTIONS(1512), + [sym_property_modifier] = ACTIONS(1527), + [anon_sym_abstract] = ACTIONS(1530), + [anon_sym_final] = ACTIONS(1530), + [anon_sym_open] = ACTIONS(1530), + [anon_sym_vararg] = ACTIONS(1533), + [anon_sym_noinline] = ACTIONS(1533), + [anon_sym_crossinline] = ACTIONS(1533), + [anon_sym_expect] = ACTIONS(1536), + [anon_sym_actual] = ACTIONS(1536), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1539), + [anon_sym_continue_AT] = ACTIONS(1542), + [anon_sym_break_AT] = ACTIONS(1545), + [anon_sym_this_AT] = ACTIONS(1548), + [anon_sym_super_AT] = ACTIONS(1551), + [sym_real_literal] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1557), + [sym_hex_literal] = ACTIONS(1560), + [sym_bin_literal] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1566), + [sym_null_literal] = ACTIONS(1569), + [sym__backtick_identifier] = ACTIONS(1572), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1575), + }, + [277] = { + [sym_type_alias] = STATE(8757), + [sym__declaration] = STATE(8757), + [sym_class_declaration] = STATE(8757), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(8757), + [sym_property_declaration] = STATE(8757), + [sym_getter] = STATE(8757), + [sym_setter] = STATE(8757), + [sym_object_declaration] = STATE(8757), + [sym_statements] = STATE(9715), + [sym__statement] = STATE(8757), + [sym__loop_statement] = STATE(8757), + [sym_for_statement] = STATE(8757), + [sym_while_statement] = STATE(8757), + [sym_do_while_statement] = STATE(8757), + [sym_assignment] = STATE(8757), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [278] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9800), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [279] = { + [sym_type_alias] = STATE(10024), + [sym__declaration] = STATE(10024), + [sym_class_declaration] = STATE(10024), + [sym_binding_pattern_kind] = STATE(6434), + [sym_function_declaration] = STATE(10024), + [sym_property_declaration] = STATE(10024), + [sym_getter] = STATE(10024), + [sym_setter] = STATE(10024), + [sym_object_declaration] = STATE(10024), + [sym__statement] = STATE(10024), + [sym_control_structure_body] = STATE(9607), + [sym__block] = STATE(10024), + [sym__loop_statement] = STATE(10024), + [sym_for_statement] = STATE(10024), + [sym_while_statement] = STATE(10024), + [sym_do_while_statement] = STATE(10024), + [sym_assignment] = STATE(10024), + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_modifiers] = STATE(8077), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(365), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(263), + [anon_sym_inner] = ACTIONS(263), + [anon_sym_value] = ACTIONS(263), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(265), + [anon_sym_actual] = ACTIONS(265), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [280] = { + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(1586), + [sym_label] = ACTIONS(171), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(157), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [281] = { + [sym_type_alias] = STATE(9440), + [sym__declaration] = STATE(9440), + [sym_class_declaration] = STATE(9440), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9440), + [sym_property_declaration] = STATE(9440), + [sym_getter] = STATE(9440), + [sym_setter] = STATE(9440), + [sym_object_declaration] = STATE(9440), + [sym__statement] = STATE(9440), + [sym__loop_statement] = STATE(9440), + [sym_for_statement] = STATE(9440), + [sym_while_statement] = STATE(9440), + [sym_do_while_statement] = STATE(9440), + [sym_assignment] = STATE(9440), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [282] = { + [sym_type_alias] = STATE(9440), + [sym__declaration] = STATE(9440), + [sym_class_declaration] = STATE(9440), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9440), + [sym_property_declaration] = STATE(9440), + [sym_getter] = STATE(9440), + [sym_setter] = STATE(9440), + [sym_object_declaration] = STATE(9440), + [sym__statement] = STATE(9440), + [sym__loop_statement] = STATE(9440), + [sym_for_statement] = STATE(9440), + [sym_while_statement] = STATE(9440), + [sym_do_while_statement] = STATE(9440), + [sym_assignment] = STATE(9440), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [283] = { + [sym_type_alias] = STATE(9440), + [sym__declaration] = STATE(9440), + [sym_class_declaration] = STATE(9440), + [sym_binding_pattern_kind] = STATE(5947), + [sym_function_declaration] = STATE(9440), + [sym_property_declaration] = STATE(9440), + [sym_getter] = STATE(9440), + [sym_setter] = STATE(9440), + [sym_object_declaration] = STATE(9440), + [sym__statement] = STATE(9440), + [sym__loop_statement] = STATE(9440), + [sym_for_statement] = STATE(9440), + [sym_while_statement] = STATE(9440), + [sym_do_while_statement] = STATE(9440), + [sym_assignment] = STATE(9440), + [sym__expression] = STATE(4346), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(368), + [sym__single_annotation] = STATE(3870), + [sym__multi_annotation] = STATE(3870), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(817), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [284] = { + [sym__expression] = STATE(1430), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(449), + [sym_label] = ACTIONS(473), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [285] = { + [sym__expression] = STATE(390), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [sym_label] = ACTIONS(389), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [286] = { + [sym__expression] = STATE(2212), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(693), + [sym_label] = ACTIONS(707), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [287] = { + [sym__expression] = STATE(428), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(723), + [sym_label] = ACTIONS(737), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [288] = { + [sym__expression] = STATE(2264), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(663), + [sym_label] = ACTIONS(677), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [289] = { + [sym__expression] = STATE(2290), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(1586), + [sym_label] = ACTIONS(817), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [290] = { + [sym__expression] = STATE(2474), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [291] = { + [sym__expression] = STATE(486), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [292] = { + [sym__expression] = STATE(2533), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [293] = { + [sym__expression] = STATE(2578), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [294] = { + [sym__expression] = STATE(559), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [295] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [296] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [297] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [298] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [299] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [300] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [301] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [302] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [303] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [304] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [305] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [306] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [307] = { + [sym__expression] = STATE(3349), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(1586), + [sym_label] = ACTIONS(259), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(245), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [308] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [309] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [310] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [311] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [312] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [313] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [314] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [315] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [316] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [317] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [318] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [319] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [320] = { + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [sym_label] = ACTIONS(595), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [321] = { + [sym__expression] = STATE(3831), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(521), + [sym_label] = ACTIONS(537), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(531), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [322] = { + [sym__expression] = STATE(4044), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(753), + [sym_label] = ACTIONS(761), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(325), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [323] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1892), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [324] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [325] = { + [sym__expression] = STATE(4131), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(639), + [sym_label] = ACTIONS(647), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [326] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [327] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [328] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(1892), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [329] = { + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(791), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [330] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [331] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1892), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [332] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(1892), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [333] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [334] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_get] = ACTIONS(1892), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [335] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_get] = ACTIONS(1892), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [336] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(1922), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [337] = { + [sym__expression] = STATE(4158), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_DASH_GT] = ACTIONS(1586), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [338] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(1962), + [anon_sym_set] = ACTIONS(1964), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [339] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1962), + [anon_sym_set] = ACTIONS(1964), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [340] = { + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1994), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [341] = { + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_get] = ACTIONS(1994), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [342] = { + [sym_getter] = STATE(5441), + [sym_setter] = STATE(5441), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(1994), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [343] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(1962), + [anon_sym_set] = ACTIONS(1964), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [344] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(1962), + [anon_sym_set] = ACTIONS(1964), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [345] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [346] = { + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(1994), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [347] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [348] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [349] = { + [sym_getter] = STATE(5399), + [sym_setter] = STATE(5399), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(1994), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [350] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [351] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(1962), + [anon_sym_set] = ACTIONS(1964), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [352] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [353] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2010), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [354] = { + [sym_getter] = STATE(5403), + [sym_setter] = STATE(5403), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_get] = ACTIONS(1994), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [355] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_get] = ACTIONS(1962), + [anon_sym_set] = ACTIONS(1964), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [356] = { + [sym__expression] = STATE(4045), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2050), + [anon_sym_fun] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(2058), + [anon_sym_set] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2068), + [sym_label] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2058), + [anon_sym_inner] = ACTIONS(2058), + [anon_sym_value] = ACTIONS(2058), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2058), + [anon_sym_actual] = ACTIONS(2058), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [357] = { + [sym__expression] = STATE(2447), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2151), + [anon_sym_fun] = ACTIONS(2155), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2169), + [sym_label] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2159), + [anon_sym_inner] = ACTIONS(2159), + [anon_sym_value] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2159), + [anon_sym_actual] = ACTIONS(2159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [358] = { + [sym__expression] = STATE(4103), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_fun] = ACTIONS(2254), + [anon_sym_get] = ACTIONS(2258), + [anon_sym_set] = ACTIONS(2258), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2268), + [sym_label] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2258), + [anon_sym_inner] = ACTIONS(2258), + [anon_sym_value] = ACTIONS(2258), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2258), + [anon_sym_actual] = ACTIONS(2258), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [359] = { + [sym__expression] = STATE(4159), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2050), + [anon_sym_fun] = ACTIONS(2337), + [anon_sym_get] = ACTIONS(2058), + [anon_sym_set] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2341), + [sym_label] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2058), + [anon_sym_inner] = ACTIONS(2058), + [anon_sym_value] = ACTIONS(2058), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2058), + [anon_sym_actual] = ACTIONS(2058), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [360] = { + [sym__expression] = STATE(3350), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2050), + [anon_sym_fun] = ACTIONS(2359), + [anon_sym_get] = ACTIONS(2058), + [anon_sym_set] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2363), + [sym_label] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2058), + [anon_sym_inner] = ACTIONS(2058), + [anon_sym_value] = ACTIONS(2058), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2058), + [anon_sym_actual] = ACTIONS(2058), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [361] = { + [sym__expression] = STATE(3796), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_fun] = ACTIONS(2381), + [anon_sym_get] = ACTIONS(2258), + [anon_sym_set] = ACTIONS(2258), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2385), + [sym_label] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2400), + [anon_sym_DASH_DASH] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2258), + [anon_sym_inner] = ACTIONS(2258), + [anon_sym_value] = ACTIONS(2258), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2258), + [anon_sym_actual] = ACTIONS(2258), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [362] = { + [sym__expression] = STATE(560), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2419), + [anon_sym_get] = ACTIONS(2423), + [anon_sym_set] = ACTIONS(2423), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2433), + [sym_label] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2451), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2423), + [anon_sym_inner] = ACTIONS(2423), + [anon_sym_value] = ACTIONS(2423), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2423), + [anon_sym_actual] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [363] = { + [sym__expression] = STATE(427), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2499), + [anon_sym_get] = ACTIONS(2423), + [anon_sym_set] = ACTIONS(2423), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2503), + [sym_label] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2423), + [anon_sym_inner] = ACTIONS(2423), + [anon_sym_value] = ACTIONS(2423), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2423), + [anon_sym_actual] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [364] = { + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2533), + [anon_sym_fun] = ACTIONS(2537), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2551), + [sym_label] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2566), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2541), + [anon_sym_inner] = ACTIONS(2541), + [anon_sym_value] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2541), + [anon_sym_actual] = ACTIONS(2541), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [365] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2050), + [anon_sym_fun] = ACTIONS(2617), + [anon_sym_get] = ACTIONS(2058), + [anon_sym_set] = ACTIONS(2058), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2621), + [sym_label] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS_PLUS] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2058), + [anon_sym_inner] = ACTIONS(2058), + [anon_sym_value] = ACTIONS(2058), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2058), + [anon_sym_actual] = ACTIONS(2058), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [366] = { + [sym__expression] = STATE(2211), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2651), + [anon_sym_fun] = ACTIONS(2655), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2669), + [sym_label] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2659), + [anon_sym_inner] = ACTIONS(2659), + [anon_sym_value] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2659), + [anon_sym_actual] = ACTIONS(2659), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [367] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2533), + [anon_sym_fun] = ACTIONS(2738), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2742), + [sym_label] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2541), + [anon_sym_inner] = ACTIONS(2541), + [anon_sym_value] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2541), + [anon_sym_actual] = ACTIONS(2541), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [368] = { + [sym__expression] = STATE(4327), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_fun] = ACTIONS(2760), + [anon_sym_get] = ACTIONS(2258), + [anon_sym_set] = ACTIONS(2258), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2764), + [sym_label] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2258), + [anon_sym_inner] = ACTIONS(2258), + [anon_sym_value] = ACTIONS(2258), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2258), + [anon_sym_actual] = ACTIONS(2258), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [369] = { + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_get] = ACTIONS(2258), + [anon_sym_set] = ACTIONS(2258), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2786), + [sym_label] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2258), + [anon_sym_inner] = ACTIONS(2258), + [anon_sym_value] = ACTIONS(2258), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2258), + [anon_sym_actual] = ACTIONS(2258), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [370] = { + [sym__expression] = STATE(2577), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2151), + [anon_sym_fun] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2808), + [sym_label] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2159), + [anon_sym_inner] = ACTIONS(2159), + [anon_sym_value] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2159), + [anon_sym_actual] = ACTIONS(2159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [371] = { + [sym__expression] = STATE(1431), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2151), + [anon_sym_fun] = ACTIONS(2826), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2830), + [sym_label] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2159), + [anon_sym_inner] = ACTIONS(2159), + [anon_sym_value] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2159), + [anon_sym_actual] = ACTIONS(2159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [372] = { + [sym__expression] = STATE(2333), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2533), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2852), + [sym_label] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2541), + [anon_sym_inner] = ACTIONS(2541), + [anon_sym_value] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2541), + [anon_sym_actual] = ACTIONS(2541), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [373] = { + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2870), + [anon_sym_get] = ACTIONS(2423), + [anon_sym_set] = ACTIONS(2423), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2874), + [sym_label] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2423), + [anon_sym_inner] = ACTIONS(2423), + [anon_sym_value] = ACTIONS(2423), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2423), + [anon_sym_actual] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [374] = { + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2651), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2896), + [sym_label] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2659), + [anon_sym_inner] = ACTIONS(2659), + [anon_sym_value] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2659), + [anon_sym_actual] = ACTIONS(2659), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [375] = { + [sym__expression] = STATE(487), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2914), + [anon_sym_get] = ACTIONS(2423), + [anon_sym_set] = ACTIONS(2423), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2918), + [sym_label] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2423), + [anon_sym_inner] = ACTIONS(2423), + [anon_sym_value] = ACTIONS(2423), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2423), + [anon_sym_actual] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [376] = { + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2533), + [anon_sym_fun] = ACTIONS(2936), + [anon_sym_get] = ACTIONS(2541), + [anon_sym_set] = ACTIONS(2541), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2940), + [sym_label] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2541), + [anon_sym_inner] = ACTIONS(2541), + [anon_sym_value] = ACTIONS(2541), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2541), + [anon_sym_actual] = ACTIONS(2541), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [377] = { + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2151), + [anon_sym_fun] = ACTIONS(2958), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2962), + [sym_label] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2159), + [anon_sym_inner] = ACTIONS(2159), + [anon_sym_value] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2159), + [anon_sym_actual] = ACTIONS(2159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [378] = { + [sym__expression] = STATE(2505), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2651), + [anon_sym_fun] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2984), + [sym_label] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2990), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2659), + [anon_sym_inner] = ACTIONS(2659), + [anon_sym_value] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2659), + [anon_sym_actual] = ACTIONS(2659), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [379] = { + [sym__expression] = STATE(2292), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_typealias] = ACTIONS(2042), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_interface] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_val] = ACTIONS(2042), + [anon_sym_var] = ACTIONS(2042), + [anon_sym_object] = ACTIONS(2651), + [anon_sym_fun] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3006), + [sym_label] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_suspend] = ACTIONS(2042), + [anon_sym_sealed] = ACTIONS(2042), + [anon_sym_annotation] = ACTIONS(2042), + [anon_sym_data] = ACTIONS(2659), + [anon_sym_inner] = ACTIONS(2659), + [anon_sym_value] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2042), + [anon_sym_lateinit] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_internal] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_tailrec] = ACTIONS(2042), + [anon_sym_operator] = ACTIONS(2042), + [anon_sym_infix] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_external] = ACTIONS(2042), + [sym_property_modifier] = ACTIONS(2042), + [anon_sym_abstract] = ACTIONS(2042), + [anon_sym_final] = ACTIONS(2042), + [anon_sym_open] = ACTIONS(2042), + [anon_sym_vararg] = ACTIONS(2042), + [anon_sym_noinline] = ACTIONS(2042), + [anon_sym_crossinline] = ACTIONS(2042), + [anon_sym_expect] = ACTIONS(2659), + [anon_sym_actual] = ACTIONS(2659), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [380] = { + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [381] = { + [sym__expression] = STATE(4276), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [382] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [383] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [384] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [385] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [386] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [387] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [388] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [389] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [390] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [391] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_null_literal] = ACTIONS(3088), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [392] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [393] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [394] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [395] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [396] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [397] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [398] = { + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [399] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [400] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [401] = { + [sym__expression] = STATE(4325), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [402] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [403] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1598), + [sym__in_operator] = STATE(1599), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1602), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1604), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(1710), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_QMARK_COLON] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_BANGin] = ACTIONS(1732), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym_null_literal] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [404] = { + [sym_primary_constructor] = STATE(2896), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(432), + [sym_type_constraints] = STATE(3027), + [sym_enum_class_body] = STATE(3286), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [405] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [406] = { + [sym_primary_constructor] = STATE(868), + [sym_class_body] = STATE(1112), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(441), + [sym_type_constraints] = STATE(1031), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [407] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [408] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [409] = { + [sym_primary_constructor] = STATE(871), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(440), + [sym_type_constraints] = STATE(970), + [sym_enum_class_body] = STATE(1112), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [410] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [411] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [412] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [413] = { + [sym_primary_constructor] = STATE(850), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(444), + [sym_type_constraints] = STATE(953), + [sym_enum_class_body] = STATE(1080), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [414] = { + [sym_primary_constructor] = STATE(2894), + [sym_class_body] = STATE(3176), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(437), + [sym_type_constraints] = STATE(3062), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [415] = { + [sym_primary_constructor] = STATE(873), + [sym_class_body] = STATE(1178), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(439), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [416] = { + [sym_primary_constructor] = STATE(2891), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(434), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3219), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [417] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [418] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [419] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [420] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [421] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [422] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [423] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [424] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [425] = { + [sym_primary_constructor] = STATE(2890), + [sym_class_body] = STATE(3219), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(430), + [sym_type_constraints] = STATE(3040), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [426] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [427] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [428] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [429] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2164), + [sym__in_operator] = STATE(2168), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2171), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2172), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(1816), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_QMARK_COLON] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(1828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1830), + [anon_sym_EQ_EQ] = ACTIONS(1828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1832), + [anon_sym_GT_EQ] = ACTIONS(1832), + [anon_sym_BANGin] = ACTIONS(1834), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym_null_literal] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [430] = { + [sym_primary_constructor] = STATE(2888), + [sym_class_body] = STATE(3257), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3028), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [431] = { + [sym_primary_constructor] = STATE(2953), + [sym_class_body] = STATE(3219), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(450), + [sym_type_constraints] = STATE(3040), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [432] = { + [sym_primary_constructor] = STATE(2887), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [433] = { + [sym_primary_constructor] = STATE(2957), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(459), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3219), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [434] = { + [sym_primary_constructor] = STATE(2889), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [435] = { + [sym_primary_constructor] = STATE(912), + [sym_class_body] = STATE(1178), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(448), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [436] = { + [sym_primary_constructor] = STATE(909), + [sym_class_body] = STATE(1112), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(452), + [sym_type_constraints] = STATE(1031), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [437] = { + [sym_primary_constructor] = STATE(2892), + [sym_class_body] = STATE(3214), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3049), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [438] = { + [sym_primary_constructor] = STATE(2971), + [sym_class_body] = STATE(3176), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(447), + [sym_type_constraints] = STATE(3062), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [439] = { + [sym_primary_constructor] = STATE(872), + [sym_class_body] = STATE(1071), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(951), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [440] = { + [sym_primary_constructor] = STATE(865), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [441] = { + [sym_primary_constructor] = STATE(863), + [sym_class_body] = STATE(1107), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(952), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [442] = { + [sym_primary_constructor] = STATE(902), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(460), + [sym_type_constraints] = STATE(953), + [sym_enum_class_body] = STATE(1080), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [443] = { + [sym_primary_constructor] = STATE(2940), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(451), + [sym_type_constraints] = STATE(3027), + [sym_enum_class_body] = STATE(3286), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [444] = { + [sym_primary_constructor] = STATE(862), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [445] = { + [sym_primary_constructor] = STATE(910), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(453), + [sym_type_constraints] = STATE(970), + [sym_enum_class_body] = STATE(1112), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [446] = { + [sym_type_constraints] = STATE(482), + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [447] = { + [sym_primary_constructor] = STATE(2959), + [sym_class_body] = STATE(3214), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3049), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [448] = { + [sym_primary_constructor] = STATE(911), + [sym_class_body] = STATE(1071), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(951), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [449] = { + [sym_type_constraints] = STATE(473), + [sym_property_delegate] = STATE(512), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [450] = { + [sym_primary_constructor] = STATE(2941), + [sym_class_body] = STATE(3257), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3028), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [451] = { + [sym_primary_constructor] = STATE(2933), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [452] = { + [sym_primary_constructor] = STATE(905), + [sym_class_body] = STATE(1107), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(952), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [453] = { + [sym_primary_constructor] = STATE(907), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [454] = { + [sym_type_constraints] = STATE(471), + [sym_property_delegate] = STATE(531), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [455] = { + [sym_type_constraints] = STATE(477), + [sym_property_delegate] = STATE(536), + [sym_getter] = STATE(3202), + [sym_setter] = STATE(3202), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [456] = { + [sym_type_constraints] = STATE(464), + [sym_property_delegate] = STATE(533), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [457] = { + [sym_type_constraints] = STATE(468), + [sym_property_delegate] = STATE(521), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [458] = { + [sym_type_constraints] = STATE(467), + [sym_property_delegate] = STATE(529), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [459] = { + [sym_primary_constructor] = STATE(2950), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [460] = { + [sym_primary_constructor] = STATE(901), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [461] = { + [sym_type_constraints] = STATE(474), + [sym_property_delegate] = STATE(516), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [462] = { + [sym_type_constraints] = STATE(479), + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(1125), + [sym_setter] = STATE(1125), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [463] = { + [sym_type_constraints] = STATE(469), + [sym_property_delegate] = STATE(527), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [464] = { + [sym_property_delegate] = STATE(531), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [465] = { + [sym_type_constraints] = STATE(537), + [sym_property_delegate] = STATE(573), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [466] = { + [sym_type_constraints] = STATE(535), + [sym_property_delegate] = STATE(600), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [467] = { + [sym_property_delegate] = STATE(527), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [468] = { + [sym_property_delegate] = STATE(524), + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [469] = { + [sym_property_delegate] = STATE(519), + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [470] = { + [sym_type_constraints] = STATE(517), + [sym_property_delegate] = STATE(620), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [471] = { + [sym_property_delegate] = STATE(529), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [472] = { + [sym_type_constraints] = STATE(508), + [sym_property_delegate] = STATE(594), + [sym_getter] = STATE(1125), + [sym_setter] = STATE(1125), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [473] = { + [sym_property_delegate] = STATE(516), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [474] = { + [sym_property_delegate] = STATE(521), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [475] = { + [sym_type_constraints] = STATE(505), + [sym_property_delegate] = STATE(575), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [476] = { + [sym_type_constraints] = STATE(507), + [sym_property_delegate] = STATE(617), + [sym_getter] = STATE(3202), + [sym_setter] = STATE(3202), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [477] = { + [sym_property_delegate] = STATE(533), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [478] = { + [sym_type_constraints] = STATE(538), + [sym_property_delegate] = STATE(578), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [479] = { + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [480] = { + [sym_type_constraints] = STATE(514), + [sym_property_delegate] = STATE(608), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [481] = { + [sym_type_constraints] = STATE(539), + [sym_property_delegate] = STATE(584), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [482] = { + [sym_property_delegate] = STATE(512), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [483] = { + [sym_type_constraints] = STATE(540), + [sym_property_delegate] = STATE(591), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [484] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [485] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [486] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [487] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [488] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [489] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_null_literal] = ACTIONS(3088), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [490] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [491] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [492] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [493] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [494] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [495] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [496] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [497] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [498] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [499] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1888), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1904), + [anon_sym_PIPE_PIPE] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1910), + [anon_sym_EQ_EQ] = ACTIONS(1908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1910), + [anon_sym_LT_EQ] = ACTIONS(1912), + [anon_sym_GT_EQ] = ACTIONS(1912), + [anon_sym_BANGin] = ACTIONS(1914), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym_null_literal] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [500] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [501] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [502] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1621), + [sym__in_operator] = STATE(1620), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1618), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1617), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(1896), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1896), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [503] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [504] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [505] = { + [sym_property_delegate] = STATE(608), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [506] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [507] = { + [sym_property_delegate] = STATE(575), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [508] = { + [sym_property_delegate] = STATE(591), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [509] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [510] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [511] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [512] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [513] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [514] = { + [sym_property_delegate] = STATE(620), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [515] = { + [sym_getter] = STATE(3108), + [sym_setter] = STATE(3108), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [516] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [517] = { + [sym_property_delegate] = STATE(600), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [518] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [519] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [520] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [521] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [522] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [523] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [524] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [525] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [526] = { + [sym_getter] = STATE(1062), + [sym_setter] = STATE(1062), + [sym_modifiers] = STATE(9270), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [527] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [528] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [529] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [530] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [531] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [532] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [533] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [534] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [535] = { + [sym_property_delegate] = STATE(571), + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [536] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9284), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [537] = { + [sym_property_delegate] = STATE(618), + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [538] = { + [sym_property_delegate] = STATE(573), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [539] = { + [sym_property_delegate] = STATE(578), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [540] = { + [sym_property_delegate] = STATE(584), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [541] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [542] = { + [sym_primary_constructor] = STATE(1368), + [sym_class_body] = STATE(1178), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(579), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [543] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [544] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [545] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [546] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [547] = { + [sym_primary_constructor] = STATE(3730), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(601), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3219), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [548] = { + [sym_primary_constructor] = STATE(3729), + [sym_class_body] = STATE(3219), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(602), + [sym_type_constraints] = STATE(3040), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [549] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [550] = { + [sym_primary_constructor] = STATE(3733), + [sym_class_body] = STATE(3176), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(577), + [sym_type_constraints] = STATE(3062), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [551] = { + [sym_primary_constructor] = STATE(3721), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(613), + [sym_type_constraints] = STATE(3027), + [sym_enum_class_body] = STATE(3286), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [552] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [553] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [554] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [555] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [556] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [557] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [558] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [559] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [560] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [561] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [562] = { + [sym_primary_constructor] = STATE(1362), + [sym_class_body] = STATE(1112), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(586), + [sym_type_constraints] = STATE(1031), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [563] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [564] = { + [sym_indexing_suffix] = STATE(1046), + [sym_navigation_suffix] = STATE(1047), + [sym_call_suffix] = STATE(1048), + [sym_annotated_lambda] = STATE(1050), + [sym_type_arguments] = STATE(8125), + [sym_value_arguments] = STATE(791), + [sym_lambda_literal] = STATE(1051), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1735), + [sym__in_operator] = STATE(1766), + [sym__is_operator] = STATE(6126), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1768), + [sym__as_operator] = STATE(6127), + [sym__postfix_unary_operator] = STATE(1052), + [sym__member_access_operator] = STATE(7881), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1771), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(1966), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_QMARK_COLON] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_when] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), + [anon_sym_EQ_EQ] = ACTIONS(1978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(1982), + [anon_sym_GT_EQ] = ACTIONS(1982), + [anon_sym_BANGin] = ACTIONS(1984), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1988), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(1742), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3158), + [anon_sym_continue_AT] = ACTIONS(3158), + [anon_sym_break_AT] = ACTIONS(3158), + [anon_sym_this_AT] = ACTIONS(3158), + [anon_sym_super_AT] = ACTIONS(3158), + [sym_real_literal] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(3156), + [sym_hex_literal] = ACTIONS(3158), + [sym_bin_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym_null_literal] = ACTIONS(3156), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(1724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [565] = { + [sym_primary_constructor] = STATE(1359), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(589), + [sym_type_constraints] = STATE(953), + [sym_enum_class_body] = STATE(1080), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [566] = { + [sym_primary_constructor] = STATE(1363), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(583), + [sym_type_constraints] = STATE(970), + [sym_enum_class_body] = STATE(1112), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [567] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [568] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [569] = { + [sym_type_constraints] = STATE(629), + [sym_property_delegate] = STATE(688), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [570] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [571] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [572] = { + [sym_type_constraints] = STATE(636), + [sym_property_delegate] = STATE(698), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [573] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [574] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [575] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [576] = { + [sym_type_constraints] = STATE(641), + [sym_property_delegate] = STATE(687), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [577] = { + [sym_primary_constructor] = STATE(3731), + [sym_class_body] = STATE(3214), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3049), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [578] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [579] = { + [sym_primary_constructor] = STATE(1365), + [sym_class_body] = STATE(1071), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(951), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [580] = { + [sym_getter] = STATE(3108), + [sym_setter] = STATE(3108), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [581] = { + [sym_getter] = STATE(1062), + [sym_setter] = STATE(1062), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [582] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [583] = { + [sym_primary_constructor] = STATE(1361), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [584] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [585] = { + [sym_type_constraints] = STATE(633), + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [586] = { + [sym_primary_constructor] = STATE(1360), + [sym_class_body] = STATE(1107), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(952), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [587] = { + [sym_primary_constructor] = STATE(3859), + [sym_class_body] = STATE(3219), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(632), + [sym_type_constraints] = STATE(3040), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [588] = { + [sym_primary_constructor] = STATE(1416), + [sym_class_body] = STATE(1178), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(645), + [sym_type_constraints] = STATE(1005), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [589] = { + [sym_primary_constructor] = STATE(1358), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [590] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [591] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [592] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [593] = { + [sym_primary_constructor] = STATE(3854), + [sym_class_body] = STATE(3176), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(644), + [sym_type_constraints] = STATE(3062), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [594] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [595] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [596] = { + [sym_type_constraints] = STATE(625), + [sym_property_delegate] = STATE(679), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [597] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [598] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [599] = { + [sym_primary_constructor] = STATE(1439), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(637), + [sym_type_constraints] = STATE(953), + [sym_enum_class_body] = STATE(1080), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [600] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [601] = { + [sym_primary_constructor] = STATE(3723), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [602] = { + [sym_primary_constructor] = STATE(3722), + [sym_class_body] = STATE(3257), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3028), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [603] = { + [sym_type_constraints] = STATE(634), + [sym_property_delegate] = STATE(674), + [sym_getter] = STATE(1125), + [sym_setter] = STATE(1125), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [604] = { + [sym_primary_constructor] = STATE(1428), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(643), + [sym_type_constraints] = STATE(970), + [sym_enum_class_body] = STATE(1112), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [605] = { + [sym_primary_constructor] = STATE(3857), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(640), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3219), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [606] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [607] = { + [sym_type_constraints] = STATE(642), + [sym_property_delegate] = STATE(684), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [608] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [609] = { + [sym_type_constraints] = STATE(639), + [sym_property_delegate] = STATE(692), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [610] = { + [sym_primary_constructor] = STATE(1429), + [sym_class_body] = STATE(1112), + [sym__class_parameters] = STATE(1004), + [sym_type_parameters] = STATE(624), + [sym_type_constraints] = STATE(1031), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [611] = { + [sym_primary_constructor] = STATE(3862), + [sym__class_parameters] = STATE(3063), + [sym_type_parameters] = STATE(623), + [sym_type_constraints] = STATE(3027), + [sym_enum_class_body] = STATE(3286), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [612] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [613] = { + [sym_primary_constructor] = STATE(3720), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [614] = { + [sym_type_constraints] = STATE(622), + [sym_property_delegate] = STATE(695), + [sym_getter] = STATE(3202), + [sym_setter] = STATE(3202), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [615] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [616] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [617] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [618] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9173), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [619] = { + [sym_type_constraints] = STATE(638), + [sym_property_delegate] = STATE(697), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [620] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9255), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [621] = { + [sym_type_constraints] = STATE(662), + [sym_property_delegate] = STATE(771), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [622] = { + [sym_property_delegate] = STATE(679), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [623] = { + [sym_primary_constructor] = STATE(3816), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [624] = { + [sym_primary_constructor] = STATE(1436), + [sym_class_body] = STATE(1107), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(952), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [625] = { + [sym_property_delegate] = STATE(692), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [626] = { + [sym_type_constraints] = STATE(666), + [sym_property_delegate] = STATE(756), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [627] = { + [sym_type_constraints] = STATE(667), + [sym_property_delegate] = STATE(773), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [628] = { + [sym_type_constraints] = STATE(669), + [sym_property_delegate] = STATE(764), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [629] = { + [sym_property_delegate] = STATE(698), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [630] = { + [sym_type_constraints] = STATE(670), + [sym_property_delegate] = STATE(754), + [sym_getter] = STATE(3202), + [sym_setter] = STATE(3202), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [631] = { + [sym_type_constraints] = STATE(668), + [sym_property_delegate] = STATE(766), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [632] = { + [sym_primary_constructor] = STATE(3861), + [sym_class_body] = STATE(3257), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3028), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [633] = { + [sym_property_delegate] = STATE(683), + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [634] = { + [sym_property_delegate] = STATE(684), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [635] = { + [sym_type_constraints] = STATE(665), + [sym_property_delegate] = STATE(750), + [sym_getter] = STATE(1125), + [sym_setter] = STATE(1125), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [636] = { + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [637] = { + [sym_primary_constructor] = STATE(1442), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [638] = { + [sym_property_delegate] = STATE(687), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [639] = { + [sym_property_delegate] = STATE(697), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [640] = { + [sym_primary_constructor] = STATE(3860), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [641] = { + [sym_property_delegate] = STATE(685), + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [642] = { + [sym_property_delegate] = STATE(688), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [643] = { + [sym_primary_constructor] = STATE(1435), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [644] = { + [sym_primary_constructor] = STATE(3856), + [sym_class_body] = STATE(3214), + [sym__class_parameters] = STATE(3063), + [sym_type_constraints] = STATE(3049), + [sym_modifiers] = STATE(10046), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [645] = { + [sym_primary_constructor] = STATE(1426), + [sym_class_body] = STATE(1071), + [sym__class_parameters] = STATE(1004), + [sym_type_constraints] = STATE(951), + [sym_modifiers] = STATE(10037), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [646] = { + [sym_type_constraints] = STATE(664), + [sym_property_delegate] = STATE(746), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [647] = { + [sym_type_constraints] = STATE(663), + [sym_property_delegate] = STATE(740), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [648] = { + [sym_type_constraints] = STATE(661), + [sym_property_delegate] = STATE(769), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [649] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [650] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [651] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [652] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [653] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [654] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [655] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [656] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [657] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [658] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [659] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [660] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [661] = { + [sym_property_delegate] = STATE(766), + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [662] = { + [sym_property_delegate] = STATE(764), + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [663] = { + [sym_property_delegate] = STATE(756), + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [664] = { + [sym_property_delegate] = STATE(749), + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [665] = { + [sym_property_delegate] = STATE(740), + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [666] = { + [sym_property_delegate] = STATE(773), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [667] = { + [sym_property_delegate] = STATE(746), + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [668] = { + [sym_property_delegate] = STATE(775), + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [669] = { + [sym_property_delegate] = STATE(769), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [670] = { + [sym_property_delegate] = STATE(771), + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [671] = { + [sym_getter] = STATE(1062), + [sym_setter] = STATE(1062), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [672] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [673] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [674] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [675] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [676] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [677] = { + [sym_getter] = STATE(3108), + [sym_setter] = STATE(3108), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [678] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [679] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [680] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [681] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [682] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [683] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [684] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [685] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [686] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [687] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [688] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [689] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [690] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [691] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [692] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [693] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [694] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [695] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [696] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [697] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [698] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_get] = ACTIONS(3408), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [699] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(722), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(722), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [700] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [701] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [702] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(726), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(726), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [703] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [704] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [705] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [706] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(718), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(718), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [707] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [708] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [709] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(3688), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [710] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(727), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(727), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [711] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [712] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [713] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [714] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(3702), + [anon_sym_AT] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3719), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_get] = ACTIONS(3725), + [anon_sym_set] = ACTIONS(3725), + [anon_sym_this] = ACTIONS(3728), + [anon_sym_super] = ACTIONS(3731), + [anon_sym_STAR] = ACTIONS(3734), + [sym_label] = ACTIONS(3737), + [anon_sym_in] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_else] = ACTIONS(3746), + [anon_sym_when] = ACTIONS(3749), + [anon_sym_try] = ACTIONS(3752), + [anon_sym_throw] = ACTIONS(3755), + [anon_sym_return] = ACTIONS(3758), + [anon_sym_continue] = ACTIONS(3761), + [anon_sym_break] = ACTIONS(3761), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_BANGin] = ACTIONS(3767), + [anon_sym_is] = ACTIONS(3770), + [anon_sym_BANGis] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3737), + [anon_sym_DASH] = ACTIONS(3737), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_data] = ACTIONS(3725), + [anon_sym_inner] = ACTIONS(3725), + [anon_sym_value] = ACTIONS(3725), + [anon_sym_expect] = ACTIONS(3725), + [anon_sym_actual] = ACTIONS(3725), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3779), + [anon_sym_continue_AT] = ACTIONS(3782), + [anon_sym_break_AT] = ACTIONS(3785), + [anon_sym_this_AT] = ACTIONS(3788), + [anon_sym_super_AT] = ACTIONS(3791), + [sym_real_literal] = ACTIONS(3794), + [sym_integer_literal] = ACTIONS(3797), + [sym_hex_literal] = ACTIONS(3800), + [sym_bin_literal] = ACTIONS(3800), + [anon_sym_true] = ACTIONS(3803), + [anon_sym_false] = ACTIONS(3803), + [anon_sym_SQUOTE] = ACTIONS(3806), + [sym_null_literal] = ACTIONS(3809), + [sym__backtick_identifier] = ACTIONS(3812), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3815), + }, + [715] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [716] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3820), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [717] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(713), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(713), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [718] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3822), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [719] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3824), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [720] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [721] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(700), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(700), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [722] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [723] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(720), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(720), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3832), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [724] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(704), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(704), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3834), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [725] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(729), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(729), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [726] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3836), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [727] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [728] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(719), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(719), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3822), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [729] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [730] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [731] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(733), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(733), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [732] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [733] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(714), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(714), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3846), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [734] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [735] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_entry] = STATE(703), + [sym_when_condition] = STATE(8870), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym_when_expression_repeat1] = STATE(703), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [736] = { + [sym_getter] = STATE(3108), + [sym_setter] = STATE(3108), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [737] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [738] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [739] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [740] = { + [sym_getter] = STATE(1065), + [sym_setter] = STATE(1065), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [741] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [742] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [743] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [744] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [745] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [746] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [747] = { + [sym_getter] = STATE(1171), + [sym_setter] = STATE(1171), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [748] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [749] = { + [sym_getter] = STATE(1110), + [sym_setter] = STATE(1110), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [750] = { + [sym_getter] = STATE(1114), + [sym_setter] = STATE(1114), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [751] = { + [sym_getter] = STATE(1095), + [sym_setter] = STATE(1095), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [752] = { + [sym_getter] = STATE(1062), + [sym_setter] = STATE(1062), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [753] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [754] = { + [sym_getter] = STATE(3240), + [sym_setter] = STATE(3240), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [755] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3890), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [756] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [757] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3894), + [anon_sym_get] = ACTIONS(3890), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [758] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_get] = ACTIONS(3890), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [759] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3898), + [anon_sym_get] = ACTIONS(3890), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [760] = { + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [761] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3900), + [anon_sym_get] = ACTIONS(3890), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [762] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3902), + [anon_sym_get] = ACTIONS(3890), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [763] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [764] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [765] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [766] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [767] = { + [sym_getter] = STATE(3155), + [sym_setter] = STATE(3155), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [768] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [769] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [770] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [771] = { + [sym_getter] = STATE(3277), + [sym_setter] = STATE(3277), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [772] = { + [sym_getter] = STATE(3193), + [sym_setter] = STATE(3193), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [773] = { + [sym_getter] = STATE(1192), + [sym_setter] = STATE(1192), + [sym_modifiers] = STATE(9252), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [774] = { + [sym_getter] = STATE(3125), + [sym_setter] = STATE(3125), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [775] = { + [sym_getter] = STATE(3140), + [sym_setter] = STATE(3140), + [sym_modifiers] = STATE(9182), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [776] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym_get] = ACTIONS(3910), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [777] = { + [sym__loop_statement] = STATE(5292), + [sym_for_statement] = STATE(5292), + [sym_while_statement] = STATE(5292), + [sym_do_while_statement] = STATE(5292), + [sym_assignment] = STATE(5292), + [sym__expression] = STATE(4098), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1840), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8425), + [sym_annotation] = STATE(1321), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [778] = { + [sym__loop_statement] = STATE(4896), + [sym_for_statement] = STATE(4896), + [sym_while_statement] = STATE(4896), + [sym_do_while_statement] = STATE(4896), + [sym_assignment] = STATE(4896), + [sym__expression] = STATE(3377), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(2114), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8444), + [sym_annotation] = STATE(1318), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(237), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(241), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [779] = { + [sym__loop_statement] = STATE(5292), + [sym_for_statement] = STATE(5292), + [sym_while_statement] = STATE(5292), + [sym_do_while_statement] = STATE(5292), + [sym_assignment] = STATE(5292), + [sym__expression] = STATE(3781), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4616), + [sym_parenthesized_expression] = STATE(4616), + [sym_collection_literal] = STATE(4616), + [sym__literal_constant] = STATE(4616), + [sym_string_literal] = STATE(4616), + [sym_lambda_literal] = STATE(4616), + [sym_anonymous_function] = STATE(4616), + [sym__function_literal] = STATE(4616), + [sym_object_literal] = STATE(4616), + [sym_this_expression] = STATE(4616), + [sym_super_expression] = STATE(4616), + [sym_if_expression] = STATE(4616), + [sym_when_expression] = STATE(4616), + [sym_try_expression] = STATE(4616), + [sym_jump_expression] = STATE(4616), + [sym_callable_reference] = STATE(4616), + [sym__prefix_unary_operator] = STATE(1934), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8441), + [sym_annotation] = STATE(1268), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4616), + [sym_long_literal] = STATE(4616), + [sym_boolean_literal] = STATE(4616), + [sym_character_literal] = STATE(4616), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_while] = ACTIONS(527), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(543), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [780] = { + [sym__loop_statement] = STATE(9792), + [sym_for_statement] = STATE(9792), + [sym_while_statement] = STATE(9792), + [sym_do_while_statement] = STATE(9792), + [sym_assignment] = STATE(9792), + [sym__expression] = STATE(4319), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_annotation] = STATE(1286), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [781] = { + [sym__loop_statement] = STATE(5460), + [sym_for_statement] = STATE(5460), + [sym_while_statement] = STATE(5460), + [sym_do_while_statement] = STATE(5460), + [sym_assignment] = STATE(5460), + [sym__expression] = STATE(2287), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_annotation] = STATE(1305), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [782] = { + [sym__loop_statement] = STATE(4896), + [sym_for_statement] = STATE(4896), + [sym_while_statement] = STATE(4896), + [sym_do_while_statement] = STATE(4896), + [sym_assignment] = STATE(4896), + [sym__expression] = STATE(4049), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4571), + [sym_parenthesized_expression] = STATE(4571), + [sym_collection_literal] = STATE(4571), + [sym__literal_constant] = STATE(4571), + [sym_string_literal] = STATE(4571), + [sym_lambda_literal] = STATE(4571), + [sym_anonymous_function] = STATE(4571), + [sym__function_literal] = STATE(4571), + [sym_object_literal] = STATE(4571), + [sym_this_expression] = STATE(4571), + [sym_super_expression] = STATE(4571), + [sym_if_expression] = STATE(4571), + [sym_when_expression] = STATE(4571), + [sym_try_expression] = STATE(4571), + [sym_jump_expression] = STATE(4571), + [sym_callable_reference] = STATE(4571), + [sym__prefix_unary_operator] = STATE(1826), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8427), + [sym_annotation] = STATE(1281), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4571), + [sym_long_literal] = STATE(4571), + [sym_boolean_literal] = STATE(4571), + [sym_character_literal] = STATE(4571), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(287), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [783] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [784] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3951), + [anon_sym_fun] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3951), + [anon_sym_sealed] = ACTIONS(3951), + [anon_sym_annotation] = ACTIONS(3951), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3951), + [anon_sym_lateinit] = ACTIONS(3951), + [anon_sym_public] = ACTIONS(3951), + [anon_sym_private] = ACTIONS(3951), + [anon_sym_internal] = ACTIONS(3951), + [anon_sym_protected] = ACTIONS(3951), + [anon_sym_tailrec] = ACTIONS(3951), + [anon_sym_operator] = ACTIONS(3951), + [anon_sym_infix] = ACTIONS(3951), + [anon_sym_inline] = ACTIONS(3951), + [anon_sym_external] = ACTIONS(3951), + [sym_property_modifier] = ACTIONS(3951), + [anon_sym_abstract] = ACTIONS(3951), + [anon_sym_final] = ACTIONS(3951), + [anon_sym_open] = ACTIONS(3951), + [anon_sym_vararg] = ACTIONS(3951), + [anon_sym_noinline] = ACTIONS(3951), + [anon_sym_crossinline] = ACTIONS(3951), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [785] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3957), + [anon_sym_interface] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3959), + [anon_sym_fun] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3959), + [anon_sym_sealed] = ACTIONS(3959), + [anon_sym_annotation] = ACTIONS(3959), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3959), + [anon_sym_lateinit] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_internal] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_tailrec] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_infix] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym_external] = ACTIONS(3959), + [sym_property_modifier] = ACTIONS(3959), + [anon_sym_abstract] = ACTIONS(3959), + [anon_sym_final] = ACTIONS(3959), + [anon_sym_open] = ACTIONS(3959), + [anon_sym_vararg] = ACTIONS(3959), + [anon_sym_noinline] = ACTIONS(3959), + [anon_sym_crossinline] = ACTIONS(3959), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [786] = { + [sym__loop_statement] = STATE(4896), + [sym_for_statement] = STATE(4896), + [sym_while_statement] = STATE(4896), + [sym_do_while_statement] = STATE(4896), + [sym_assignment] = STATE(4896), + [sym__expression] = STATE(4319), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(1639), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8423), + [sym_annotation] = STATE(1286), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [787] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3962), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [788] = { + [sym__loop_statement] = STATE(4078), + [sym_for_statement] = STATE(4078), + [sym_while_statement] = STATE(4078), + [sym_do_while_statement] = STATE(4078), + [sym_assignment] = STATE(4078), + [sym__expression] = STATE(1449), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1683), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8448), + [sym_annotation] = STATE(1274), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(451), + [anon_sym_for] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [789] = { + [sym__loop_statement] = STATE(3170), + [sym_for_statement] = STATE(3170), + [sym_while_statement] = STATE(3170), + [sym_do_while_statement] = STATE(3170), + [sym_assignment] = STATE(3170), + [sym__expression] = STATE(964), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1524), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8421), + [sym_annotation] = STATE(1313), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [790] = { + [sym__loop_statement] = STATE(3170), + [sym_for_statement] = STATE(3170), + [sym_while_statement] = STATE(3170), + [sym_do_while_statement] = STATE(3170), + [sym_assignment] = STATE(3170), + [sym__expression] = STATE(2287), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(2193), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8428), + [sym_annotation] = STATE(1305), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [791] = { + [sym_annotated_lambda] = STATE(1064), + [sym_lambda_literal] = STATE(1051), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_object] = ACTIONS(3964), + [anon_sym_fun] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_this] = ACTIONS(3964), + [anon_sym_super] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_when] = ACTIONS(3964), + [anon_sym_try] = ACTIONS(3964), + [anon_sym_throw] = ACTIONS(3964), + [anon_sym_return] = ACTIONS(3964), + [anon_sym_continue] = ACTIONS(3964), + [anon_sym_break] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_suspend] = ACTIONS(3964), + [anon_sym_sealed] = ACTIONS(3964), + [anon_sym_annotation] = ACTIONS(3964), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_override] = ACTIONS(3964), + [anon_sym_lateinit] = ACTIONS(3964), + [anon_sym_public] = ACTIONS(3964), + [anon_sym_private] = ACTIONS(3964), + [anon_sym_internal] = ACTIONS(3964), + [anon_sym_protected] = ACTIONS(3964), + [anon_sym_tailrec] = ACTIONS(3964), + [anon_sym_operator] = ACTIONS(3964), + [anon_sym_infix] = ACTIONS(3964), + [anon_sym_inline] = ACTIONS(3964), + [anon_sym_external] = ACTIONS(3964), + [sym_property_modifier] = ACTIONS(3964), + [anon_sym_abstract] = ACTIONS(3964), + [anon_sym_final] = ACTIONS(3964), + [anon_sym_open] = ACTIONS(3964), + [anon_sym_vararg] = ACTIONS(3964), + [anon_sym_noinline] = ACTIONS(3964), + [anon_sym_crossinline] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3966), + [anon_sym_continue_AT] = ACTIONS(3966), + [anon_sym_break_AT] = ACTIONS(3966), + [anon_sym_this_AT] = ACTIONS(3966), + [anon_sym_super_AT] = ACTIONS(3966), + [sym_real_literal] = ACTIONS(3966), + [sym_integer_literal] = ACTIONS(3964), + [sym_hex_literal] = ACTIONS(3966), + [sym_bin_literal] = ACTIONS(3966), + [anon_sym_true] = ACTIONS(3964), + [anon_sym_false] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3966), + [sym_null_literal] = ACTIONS(3964), + [sym__backtick_identifier] = ACTIONS(3966), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3966), + }, + [792] = { + [sym__loop_statement] = STATE(3487), + [sym_for_statement] = STATE(3487), + [sym_while_statement] = STATE(3487), + [sym_do_while_statement] = STATE(3487), + [sym_assignment] = STATE(3487), + [sym__expression] = STATE(2551), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1815), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8430), + [sym_annotation] = STATE(1309), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [793] = { + [sym__loop_statement] = STATE(3170), + [sym_for_statement] = STATE(3170), + [sym_while_statement] = STATE(3170), + [sym_do_while_statement] = STATE(3170), + [sym_assignment] = STATE(3170), + [sym__expression] = STATE(2100), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2768), + [sym_parenthesized_expression] = STATE(2768), + [sym_collection_literal] = STATE(2768), + [sym__literal_constant] = STATE(2768), + [sym_string_literal] = STATE(2768), + [sym_lambda_literal] = STATE(2768), + [sym_anonymous_function] = STATE(2768), + [sym__function_literal] = STATE(2768), + [sym_object_literal] = STATE(2768), + [sym_this_expression] = STATE(2768), + [sym_super_expression] = STATE(2768), + [sym_if_expression] = STATE(2768), + [sym_when_expression] = STATE(2768), + [sym_try_expression] = STATE(2768), + [sym_jump_expression] = STATE(2768), + [sym_callable_reference] = STATE(2768), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8451), + [sym_annotation] = STATE(1279), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2768), + [sym_long_literal] = STATE(2768), + [sym_boolean_literal] = STATE(2768), + [sym_character_literal] = STATE(2768), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(935), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [794] = { + [sym__loop_statement] = STATE(3487), + [sym_for_statement] = STATE(3487), + [sym_while_statement] = STATE(3487), + [sym_do_while_statement] = STATE(3487), + [sym_assignment] = STATE(3487), + [sym__expression] = STATE(2324), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2800), + [sym_parenthesized_expression] = STATE(2800), + [sym_collection_literal] = STATE(2800), + [sym__literal_constant] = STATE(2800), + [sym_string_literal] = STATE(2800), + [sym_lambda_literal] = STATE(2800), + [sym_anonymous_function] = STATE(2800), + [sym__function_literal] = STATE(2800), + [sym_object_literal] = STATE(2800), + [sym_this_expression] = STATE(2800), + [sym_super_expression] = STATE(2800), + [sym_if_expression] = STATE(2800), + [sym_when_expression] = STATE(2800), + [sym_try_expression] = STATE(2800), + [sym_jump_expression] = STATE(2800), + [sym_callable_reference] = STATE(2800), + [sym__prefix_unary_operator] = STATE(1857), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8429), + [sym_annotation] = STATE(1304), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2800), + [sym_long_literal] = STATE(2800), + [sym_boolean_literal] = STATE(2800), + [sym_character_literal] = STATE(2800), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [795] = { + [sym__loop_statement] = STATE(3487), + [sym_for_statement] = STATE(3487), + [sym_while_statement] = STATE(3487), + [sym_do_while_statement] = STATE(3487), + [sym_assignment] = STATE(3487), + [sym__expression] = STATE(1661), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1721), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8434), + [sym_annotation] = STATE(1265), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [796] = { + [sym__loop_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_while_statement] = STATE(1139), + [sym_assignment] = STATE(1139), + [sym__expression] = STATE(424), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(2153), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8414), + [sym_annotation] = STATE(1299), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [797] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym_get] = ACTIONS(3910), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [798] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_object] = ACTIONS(3970), + [anon_sym_fun] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_this] = ACTIONS(3970), + [anon_sym_super] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_STAR_EQ] = ACTIONS(3985), + [anon_sym_SLASH_EQ] = ACTIONS(3985), + [anon_sym_PERCENT_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3972), + [anon_sym_continue_AT] = ACTIONS(3972), + [anon_sym_break_AT] = ACTIONS(3972), + [anon_sym_this_AT] = ACTIONS(3972), + [anon_sym_super_AT] = ACTIONS(3972), + [sym_real_literal] = ACTIONS(3972), + [sym_integer_literal] = ACTIONS(3970), + [sym_hex_literal] = ACTIONS(3972), + [sym_bin_literal] = ACTIONS(3972), + [anon_sym_true] = ACTIONS(3970), + [anon_sym_false] = ACTIONS(3970), + [anon_sym_SQUOTE] = ACTIONS(3972), + [sym_null_literal] = ACTIONS(3970), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3972), + }, + [799] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(3910), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [800] = { + [sym__loop_statement] = STATE(5292), + [sym_for_statement] = STATE(5292), + [sym_while_statement] = STATE(5292), + [sym_do_while_statement] = STATE(5292), + [sym_assignment] = STATE(5292), + [sym__expression] = STATE(4279), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(2055), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8424), + [sym_annotation] = STATE(1285), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [801] = { + [sym_annotated_lambda] = STATE(1161), + [sym_lambda_literal] = STATE(1051), + [sym_annotation] = STATE(8385), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8385), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym_null_literal] = ACTIONS(3992), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [802] = { + [sym__loop_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_while_statement] = STATE(1139), + [sym_assignment] = STATE(1139), + [sym__expression] = STATE(496), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1630), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8452), + [sym_annotation] = STATE(1300), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [803] = { + [sym__loop_statement] = STATE(3487), + [sym_for_statement] = STATE(3487), + [sym_while_statement] = STATE(3487), + [sym_do_while_statement] = STATE(3487), + [sym_assignment] = STATE(3487), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(2811), + [sym_parenthesized_expression] = STATE(2811), + [sym_collection_literal] = STATE(2811), + [sym__literal_constant] = STATE(2811), + [sym_string_literal] = STATE(2811), + [sym_lambda_literal] = STATE(2811), + [sym_anonymous_function] = STATE(2811), + [sym__function_literal] = STATE(2811), + [sym_object_literal] = STATE(2811), + [sym_this_expression] = STATE(2811), + [sym_super_expression] = STATE(2811), + [sym_if_expression] = STATE(2811), + [sym_when_expression] = STATE(2811), + [sym_try_expression] = STATE(2811), + [sym_jump_expression] = STATE(2811), + [sym_callable_reference] = STATE(2811), + [sym__prefix_unary_operator] = STATE(1517), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8426), + [sym_annotation] = STATE(1310), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3611), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(2811), + [sym_long_literal] = STATE(2811), + [sym_boolean_literal] = STATE(2811), + [sym_character_literal] = STATE(2811), + [sym__lexical_identifier] = STATE(2922), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [804] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(3910), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [805] = { + [sym__loop_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_while_statement] = STATE(1139), + [sym_assignment] = STATE(1139), + [sym__expression] = STATE(386), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_collection_literal] = STATE(809), + [sym__literal_constant] = STATE(809), + [sym_string_literal] = STATE(809), + [sym_lambda_literal] = STATE(809), + [sym_anonymous_function] = STATE(809), + [sym__function_literal] = STATE(809), + [sym_object_literal] = STATE(809), + [sym_this_expression] = STATE(809), + [sym_super_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_when_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_jump_expression] = STATE(809), + [sym_callable_reference] = STATE(809), + [sym__prefix_unary_operator] = STATE(1583), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8449), + [sym_annotation] = STATE(1319), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(809), + [sym_long_literal] = STATE(809), + [sym_boolean_literal] = STATE(809), + [sym_character_literal] = STATE(809), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [806] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [807] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3910), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [808] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3957), + [anon_sym_interface] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3959), + [anon_sym_fun] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3957), + [anon_sym_sealed] = ACTIONS(3957), + [anon_sym_annotation] = ACTIONS(3957), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3957), + [anon_sym_lateinit] = ACTIONS(3957), + [anon_sym_public] = ACTIONS(3957), + [anon_sym_private] = ACTIONS(3957), + [anon_sym_internal] = ACTIONS(3957), + [anon_sym_protected] = ACTIONS(3957), + [anon_sym_tailrec] = ACTIONS(3957), + [anon_sym_operator] = ACTIONS(3957), + [anon_sym_infix] = ACTIONS(3957), + [anon_sym_inline] = ACTIONS(3957), + [anon_sym_external] = ACTIONS(3957), + [sym_property_modifier] = ACTIONS(3957), + [anon_sym_abstract] = ACTIONS(3957), + [anon_sym_final] = ACTIONS(3957), + [anon_sym_open] = ACTIONS(3957), + [anon_sym_vararg] = ACTIONS(3957), + [anon_sym_noinline] = ACTIONS(3957), + [anon_sym_crossinline] = ACTIONS(3957), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [809] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_object] = ACTIONS(3970), + [anon_sym_fun] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_this] = ACTIONS(3970), + [anon_sym_super] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(4005), + [anon_sym_DASH_EQ] = ACTIONS(4005), + [anon_sym_STAR_EQ] = ACTIONS(4005), + [anon_sym_SLASH_EQ] = ACTIONS(4005), + [anon_sym_PERCENT_EQ] = ACTIONS(4005), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3972), + [anon_sym_continue_AT] = ACTIONS(3972), + [anon_sym_break_AT] = ACTIONS(3972), + [anon_sym_this_AT] = ACTIONS(3972), + [anon_sym_super_AT] = ACTIONS(3972), + [sym_real_literal] = ACTIONS(3972), + [sym_integer_literal] = ACTIONS(3970), + [sym_hex_literal] = ACTIONS(3972), + [sym_bin_literal] = ACTIONS(3972), + [anon_sym_true] = ACTIONS(3970), + [anon_sym_false] = ACTIONS(3970), + [anon_sym_SQUOTE] = ACTIONS(3972), + [sym_null_literal] = ACTIONS(3970), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3972), + }, + [810] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3951), + [anon_sym_fun] = ACTIONS(3951), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3949), + [anon_sym_sealed] = ACTIONS(3949), + [anon_sym_annotation] = ACTIONS(3949), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3949), + [anon_sym_lateinit] = ACTIONS(3949), + [anon_sym_public] = ACTIONS(3949), + [anon_sym_private] = ACTIONS(3949), + [anon_sym_internal] = ACTIONS(3949), + [anon_sym_protected] = ACTIONS(3949), + [anon_sym_tailrec] = ACTIONS(3949), + [anon_sym_operator] = ACTIONS(3949), + [anon_sym_infix] = ACTIONS(3949), + [anon_sym_inline] = ACTIONS(3949), + [anon_sym_external] = ACTIONS(3949), + [sym_property_modifier] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3949), + [anon_sym_final] = ACTIONS(3949), + [anon_sym_open] = ACTIONS(3949), + [anon_sym_vararg] = ACTIONS(3949), + [anon_sym_noinline] = ACTIONS(3949), + [anon_sym_crossinline] = ACTIONS(3949), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [811] = { + [sym__loop_statement] = STATE(4078), + [sym_for_statement] = STATE(4078), + [sym_while_statement] = STATE(4078), + [sym_do_while_statement] = STATE(4078), + [sym_assignment] = STATE(4078), + [sym__expression] = STATE(2491), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8445), + [sym_annotation] = STATE(1271), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [812] = { + [sym__loop_statement] = STATE(4078), + [sym_for_statement] = STATE(4078), + [sym_while_statement] = STATE(4078), + [sym_do_while_statement] = STATE(4078), + [sym_assignment] = STATE(4078), + [sym__expression] = STATE(2567), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3020), + [sym_parenthesized_expression] = STATE(3020), + [sym_collection_literal] = STATE(3020), + [sym__literal_constant] = STATE(3020), + [sym_string_literal] = STATE(3020), + [sym_lambda_literal] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [sym__function_literal] = STATE(3020), + [sym_object_literal] = STATE(3020), + [sym_this_expression] = STATE(3020), + [sym_super_expression] = STATE(3020), + [sym_if_expression] = STATE(3020), + [sym_when_expression] = STATE(3020), + [sym_try_expression] = STATE(3020), + [sym_jump_expression] = STATE(3020), + [sym_callable_reference] = STATE(3020), + [sym__prefix_unary_operator] = STATE(1577), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8438), + [sym_annotation] = STATE(1283), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3020), + [sym_long_literal] = STATE(3020), + [sym_boolean_literal] = STATE(3020), + [sym_character_literal] = STATE(3020), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(965), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [813] = { + [sym__loop_statement] = STATE(4078), + [sym_for_statement] = STATE(4078), + [sym_while_statement] = STATE(4078), + [sym_do_while_statement] = STATE(4078), + [sym_assignment] = STATE(4078), + [sym__expression] = STATE(2248), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(3001), + [sym_parenthesized_expression] = STATE(3001), + [sym_collection_literal] = STATE(3001), + [sym__literal_constant] = STATE(3001), + [sym_string_literal] = STATE(3001), + [sym_lambda_literal] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [sym__function_literal] = STATE(3001), + [sym_object_literal] = STATE(3001), + [sym_this_expression] = STATE(3001), + [sym_super_expression] = STATE(3001), + [sym_if_expression] = STATE(3001), + [sym_when_expression] = STATE(3001), + [sym_try_expression] = STATE(3001), + [sym_jump_expression] = STATE(3001), + [sym_callable_reference] = STATE(3001), + [sym__prefix_unary_operator] = STATE(1733), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8422), + [sym_annotation] = STATE(1287), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3867), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(3001), + [sym_long_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_character_literal] = STATE(3001), + [sym__lexical_identifier] = STATE(3360), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_while] = ACTIONS(669), + [anon_sym_do] = ACTIONS(457), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(489), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(499), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [814] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [815] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [816] = { + [sym__loop_statement] = STATE(3170), + [sym_for_statement] = STATE(3170), + [sym_while_statement] = STATE(3170), + [sym_do_while_statement] = STATE(3170), + [sym_assignment] = STATE(3170), + [sym__expression] = STATE(1237), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(2780), + [sym_parenthesized_expression] = STATE(2780), + [sym_collection_literal] = STATE(2780), + [sym__literal_constant] = STATE(2780), + [sym_string_literal] = STATE(2780), + [sym_lambda_literal] = STATE(2780), + [sym_anonymous_function] = STATE(2780), + [sym__function_literal] = STATE(2780), + [sym_object_literal] = STATE(2780), + [sym_this_expression] = STATE(2780), + [sym_super_expression] = STATE(2780), + [sym_if_expression] = STATE(2780), + [sym_when_expression] = STATE(2780), + [sym_try_expression] = STATE(2780), + [sym_jump_expression] = STATE(2780), + [sym_callable_reference] = STATE(2780), + [sym__prefix_unary_operator] = STATE(1989), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8436), + [sym_annotation] = STATE(1307), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3092), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(2780), + [sym_long_literal] = STATE(2780), + [sym_boolean_literal] = STATE(2780), + [sym_character_literal] = STATE(2780), + [sym__lexical_identifier] = STATE(2801), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [817] = { + [sym__loop_statement] = STATE(9278), + [sym_for_statement] = STATE(9278), + [sym_while_statement] = STATE(9278), + [sym_do_while_statement] = STATE(9278), + [sym_assignment] = STATE(9278), + [sym__expression] = STATE(4335), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_annotation] = STATE(1290), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [818] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym_get] = ACTIONS(3910), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [819] = { + [sym__loop_statement] = STATE(5292), + [sym_for_statement] = STATE(5292), + [sym_while_statement] = STATE(5292), + [sym_do_while_statement] = STATE(5292), + [sym_assignment] = STATE(5292), + [sym__expression] = STATE(4335), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(4620), + [sym_parenthesized_expression] = STATE(4620), + [sym_collection_literal] = STATE(4620), + [sym__literal_constant] = STATE(4620), + [sym_string_literal] = STATE(4620), + [sym_lambda_literal] = STATE(4620), + [sym_anonymous_function] = STATE(4620), + [sym__function_literal] = STATE(4620), + [sym_object_literal] = STATE(4620), + [sym_this_expression] = STATE(4620), + [sym_super_expression] = STATE(4620), + [sym_if_expression] = STATE(4620), + [sym_when_expression] = STATE(4620), + [sym_try_expression] = STATE(4620), + [sym_jump_expression] = STATE(4620), + [sym_callable_reference] = STATE(4620), + [sym__prefix_unary_operator] = STATE(1572), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8418), + [sym_annotation] = STATE(1290), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5139), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(4620), + [sym_long_literal] = STATE(4620), + [sym_boolean_literal] = STATE(4620), + [sym_character_literal] = STATE(4620), + [sym__lexical_identifier] = STATE(4657), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(529), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [820] = { + [sym__loop_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_while_statement] = STATE(1139), + [sym_assignment] = STATE(1139), + [sym__expression] = STATE(549), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_collection_literal] = STATE(798), + [sym__literal_constant] = STATE(798), + [sym_string_literal] = STATE(798), + [sym_lambda_literal] = STATE(798), + [sym_anonymous_function] = STATE(798), + [sym__function_literal] = STATE(798), + [sym_object_literal] = STATE(798), + [sym_this_expression] = STATE(798), + [sym_super_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_when_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_jump_expression] = STATE(798), + [sym_callable_reference] = STATE(798), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8437), + [sym_annotation] = STATE(1302), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1191), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(798), + [sym_long_literal] = STATE(798), + [sym_boolean_literal] = STATE(798), + [sym_character_literal] = STATE(798), + [sym__lexical_identifier] = STATE(840), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(373), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(879), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [821] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [822] = { + [sym__loop_statement] = STATE(4896), + [sym_for_statement] = STATE(4896), + [sym_while_statement] = STATE(4896), + [sym_do_while_statement] = STATE(4896), + [sym_assignment] = STATE(4896), + [sym__expression] = STATE(4144), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4570), + [sym_parenthesized_expression] = STATE(4570), + [sym_collection_literal] = STATE(4570), + [sym__literal_constant] = STATE(4570), + [sym_string_literal] = STATE(4570), + [sym_lambda_literal] = STATE(4570), + [sym_anonymous_function] = STATE(4570), + [sym__function_literal] = STATE(4570), + [sym_object_literal] = STATE(4570), + [sym_this_expression] = STATE(4570), + [sym_super_expression] = STATE(4570), + [sym_if_expression] = STATE(4570), + [sym_when_expression] = STATE(4570), + [sym_try_expression] = STATE(4570), + [sym_jump_expression] = STATE(4570), + [sym_callable_reference] = STATE(4570), + [sym__prefix_unary_operator] = STATE(2070), + [sym__postfix_unary_expression] = STATE(8502), + [sym_directly_assignable_expression] = STATE(8417), + [sym_annotation] = STATE(1312), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4818), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4570), + [sym_long_literal] = STATE(4570), + [sym_boolean_literal] = STATE(4570), + [sym_character_literal] = STATE(4570), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__statement_repeat1] = STATE(5431), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(243), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [823] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [824] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(4050), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [825] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [826] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [827] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(4050), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [828] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [829] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [830] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(4050), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [831] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_get] = ACTIONS(4050), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [832] = { + [sym_catch_block] = STATE(839), + [sym_finally_block] = STATE(1153), + [aux_sym_try_expression_repeat1] = STATE(839), + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_object] = ACTIONS(4068), + [anon_sym_fun] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_this] = ACTIONS(4068), + [anon_sym_super] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [sym_label] = ACTIONS(4068), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_when] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_catch] = ACTIONS(4072), + [anon_sym_finally] = ACTIONS(4074), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4068), + [anon_sym_sealed] = ACTIONS(4068), + [anon_sym_annotation] = ACTIONS(4068), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_lateinit] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_internal] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_tailrec] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_infix] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym_external] = ACTIONS(4068), + [sym_property_modifier] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_final] = ACTIONS(4068), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_vararg] = ACTIONS(4068), + [anon_sym_noinline] = ACTIONS(4068), + [anon_sym_crossinline] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4070), + [anon_sym_continue_AT] = ACTIONS(4070), + [anon_sym_break_AT] = ACTIONS(4070), + [anon_sym_this_AT] = ACTIONS(4070), + [anon_sym_super_AT] = ACTIONS(4070), + [sym_real_literal] = ACTIONS(4070), + [sym_integer_literal] = ACTIONS(4068), + [sym_hex_literal] = ACTIONS(4070), + [sym_bin_literal] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4070), + [sym_null_literal] = ACTIONS(4068), + [sym__backtick_identifier] = ACTIONS(4070), + [sym__automatic_semicolon] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4070), + }, + [833] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_get] = ACTIONS(4050), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [834] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [835] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym_get] = ACTIONS(4050), + [anon_sym_set] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [836] = { + [sym_type_constraints] = STATE(928), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [837] = { + [sym_type_constraints] = STATE(886), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [838] = { + [sym_type_arguments] = STATE(6606), + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_object] = ACTIONS(4098), + [anon_sym_fun] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [anon_sym_this] = ACTIONS(4098), + [anon_sym_super] = ACTIONS(4098), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4098), + [sym_label] = ACTIONS(4098), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4100), + [anon_sym_QMARK_COLON] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4098), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_try] = ACTIONS(4098), + [anon_sym_throw] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4098), + [anon_sym_continue] = ACTIONS(4098), + [anon_sym_break] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_as_QMARK] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_BANG_BANG] = ACTIONS(4100), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4100), + [anon_sym_continue_AT] = ACTIONS(4100), + [anon_sym_break_AT] = ACTIONS(4100), + [anon_sym_this_AT] = ACTIONS(4100), + [anon_sym_super_AT] = ACTIONS(4100), + [sym_real_literal] = ACTIONS(4100), + [sym_integer_literal] = ACTIONS(4098), + [sym_hex_literal] = ACTIONS(4100), + [sym_bin_literal] = ACTIONS(4100), + [anon_sym_true] = ACTIONS(4098), + [anon_sym_false] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4100), + [sym_null_literal] = ACTIONS(4098), + [sym__backtick_identifier] = ACTIONS(4100), + [sym__automatic_semicolon] = ACTIONS(4100), + [sym_safe_nav] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4100), + }, + [839] = { + [sym_catch_block] = STATE(839), + [aux_sym_try_expression_repeat1] = STATE(839), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_object] = ACTIONS(4106), + [anon_sym_fun] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_this] = ACTIONS(4106), + [anon_sym_super] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(4110), + [anon_sym_finally] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4108), + [anon_sym_continue_AT] = ACTIONS(4108), + [anon_sym_break_AT] = ACTIONS(4108), + [anon_sym_this_AT] = ACTIONS(4108), + [anon_sym_super_AT] = ACTIONS(4108), + [sym_real_literal] = ACTIONS(4108), + [sym_integer_literal] = ACTIONS(4106), + [sym_hex_literal] = ACTIONS(4108), + [sym_bin_literal] = ACTIONS(4108), + [anon_sym_true] = ACTIONS(4106), + [anon_sym_false] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4108), + [sym_null_literal] = ACTIONS(4106), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4108), + }, + [840] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), + [sym__quest] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [841] = { + [aux_sym_user_type_repeat1] = STATE(844), + [sym__alpha_identifier] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_as] = ACTIONS(4113), + [anon_sym_EQ] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_COMMA] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_where] = ACTIONS(4113), + [anon_sym_object] = ACTIONS(4113), + [anon_sym_fun] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4115), + [anon_sym_get] = ACTIONS(4113), + [anon_sym_set] = ACTIONS(4113), + [anon_sym_this] = ACTIONS(4113), + [anon_sym_super] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + [sym__quest] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [sym_label] = ACTIONS(4113), + [anon_sym_in] = ACTIONS(4113), + [anon_sym_DOT_DOT] = ACTIONS(4115), + [anon_sym_QMARK_COLON] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4115), + [anon_sym_PIPE_PIPE] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4113), + [anon_sym_else] = ACTIONS(4113), + [anon_sym_when] = ACTIONS(4113), + [anon_sym_try] = ACTIONS(4113), + [anon_sym_throw] = ACTIONS(4113), + [anon_sym_return] = ACTIONS(4113), + [anon_sym_continue] = ACTIONS(4113), + [anon_sym_break] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4115), + [anon_sym_PLUS_EQ] = ACTIONS(4115), + [anon_sym_DASH_EQ] = ACTIONS(4115), + [anon_sym_STAR_EQ] = ACTIONS(4115), + [anon_sym_SLASH_EQ] = ACTIONS(4115), + [anon_sym_PERCENT_EQ] = ACTIONS(4115), + [anon_sym_BANG_EQ] = ACTIONS(4113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4115), + [anon_sym_EQ_EQ] = ACTIONS(4113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4115), + [anon_sym_LT_EQ] = ACTIONS(4115), + [anon_sym_GT_EQ] = ACTIONS(4115), + [anon_sym_BANGin] = ACTIONS(4115), + [anon_sym_is] = ACTIONS(4113), + [anon_sym_BANGis] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_SLASH] = ACTIONS(4113), + [anon_sym_PERCENT] = ACTIONS(4113), + [anon_sym_as_QMARK] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_BANG_BANG] = ACTIONS(4115), + [anon_sym_suspend] = ACTIONS(4113), + [anon_sym_sealed] = ACTIONS(4113), + [anon_sym_annotation] = ACTIONS(4113), + [anon_sym_data] = ACTIONS(4113), + [anon_sym_inner] = ACTIONS(4113), + [anon_sym_value] = ACTIONS(4113), + [anon_sym_override] = ACTIONS(4113), + [anon_sym_lateinit] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_private] = ACTIONS(4113), + [anon_sym_internal] = ACTIONS(4113), + [anon_sym_protected] = ACTIONS(4113), + [anon_sym_tailrec] = ACTIONS(4113), + [anon_sym_operator] = ACTIONS(4113), + [anon_sym_infix] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_external] = ACTIONS(4113), + [sym_property_modifier] = ACTIONS(4113), + [anon_sym_abstract] = ACTIONS(4113), + [anon_sym_final] = ACTIONS(4113), + [anon_sym_open] = ACTIONS(4113), + [anon_sym_vararg] = ACTIONS(4113), + [anon_sym_noinline] = ACTIONS(4113), + [anon_sym_crossinline] = ACTIONS(4113), + [anon_sym_expect] = ACTIONS(4113), + [anon_sym_actual] = ACTIONS(4113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4115), + [anon_sym_continue_AT] = ACTIONS(4115), + [anon_sym_break_AT] = ACTIONS(4115), + [anon_sym_this_AT] = ACTIONS(4115), + [anon_sym_super_AT] = ACTIONS(4115), + [sym_real_literal] = ACTIONS(4115), + [sym_integer_literal] = ACTIONS(4113), + [sym_hex_literal] = ACTIONS(4115), + [sym_bin_literal] = ACTIONS(4115), + [anon_sym_true] = ACTIONS(4113), + [anon_sym_false] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4115), + [sym_null_literal] = ACTIONS(4113), + [sym__backtick_identifier] = ACTIONS(4115), + [sym__automatic_semicolon] = ACTIONS(4115), + [sym_safe_nav] = ACTIONS(4115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4115), + }, + [842] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_when_condition] = STATE(9307), + [sym_range_test] = STATE(9326), + [sym_type_test] = STATE(9326), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__in_operator] = STATE(2091), + [sym__is_operator] = STATE(6371), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_BANGin] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(3620), + [anon_sym_BANGis] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [843] = { + [aux_sym_user_type_repeat1] = STATE(841), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4120), + [sym__quest] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [844] = { + [aux_sym_user_type_repeat1] = STATE(844), + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4131), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [sym_label] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [845] = { + [sym_type_constraints] = STATE(925), + [sym_function_body] = STATE(1079), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [846] = { + [sym_type_constraints] = STATE(927), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [847] = { + [sym_type_arguments] = STATE(860), + [sym__alpha_identifier] = ACTIONS(4104), + [anon_sym_AT] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_GT] = ACTIONS(4104), + [anon_sym_where] = ACTIONS(4104), + [anon_sym_object] = ACTIONS(4104), + [anon_sym_fun] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_this] = ACTIONS(4104), + [anon_sym_super] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4104), + [anon_sym_DOT_DOT] = ACTIONS(4146), + [anon_sym_QMARK_COLON] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_PIPE_PIPE] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4104), + [anon_sym_when] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4146), + [anon_sym_DASH_EQ] = ACTIONS(4146), + [anon_sym_STAR_EQ] = ACTIONS(4146), + [anon_sym_SLASH_EQ] = ACTIONS(4146), + [anon_sym_PERCENT_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4146), + [anon_sym_LT_EQ] = ACTIONS(4146), + [anon_sym_GT_EQ] = ACTIONS(4146), + [anon_sym_BANGin] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4104), + [anon_sym_BANGis] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_SLASH] = ACTIONS(4104), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4146), + [anon_sym_suspend] = ACTIONS(4104), + [anon_sym_sealed] = ACTIONS(4104), + [anon_sym_annotation] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4104), + [anon_sym_inner] = ACTIONS(4104), + [anon_sym_value] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_lateinit] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_internal] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_tailrec] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_infix] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym_external] = ACTIONS(4104), + [sym_property_modifier] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_final] = ACTIONS(4104), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_vararg] = ACTIONS(4104), + [anon_sym_noinline] = ACTIONS(4104), + [anon_sym_crossinline] = ACTIONS(4104), + [anon_sym_expect] = ACTIONS(4104), + [anon_sym_actual] = ACTIONS(4104), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4146), + [anon_sym_continue_AT] = ACTIONS(4146), + [anon_sym_break_AT] = ACTIONS(4146), + [anon_sym_this_AT] = ACTIONS(4146), + [anon_sym_super_AT] = ACTIONS(4146), + [sym_real_literal] = ACTIONS(4146), + [sym_integer_literal] = ACTIONS(4104), + [sym_hex_literal] = ACTIONS(4146), + [sym_bin_literal] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4146), + [sym__automatic_semicolon] = ACTIONS(4146), + [sym_safe_nav] = ACTIONS(4146), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4146), + }, + [848] = { + [sym_type_constraints] = STATE(926), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [849] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4156), + [sym__quest] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [850] = { + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [851] = { + [sym_type_constraints] = STATE(1169), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [852] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [853] = { + [sym_function_body] = STATE(1213), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4174), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [854] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [855] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4194), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym_null_literal] = ACTIONS(4190), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [856] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [857] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym_null_literal] = ACTIONS(4210), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [858] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_by] = ACTIONS(4214), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [sym__quest] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4216), + [anon_sym_QMARK_COLON] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4216), + [anon_sym_PLUS_EQ] = ACTIONS(4216), + [anon_sym_DASH_EQ] = ACTIONS(4216), + [anon_sym_STAR_EQ] = ACTIONS(4216), + [anon_sym_SLASH_EQ] = ACTIONS(4216), + [anon_sym_PERCENT_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4216), + [anon_sym_LT_EQ] = ACTIONS(4216), + [anon_sym_GT_EQ] = ACTIONS(4216), + [anon_sym_BANGin] = ACTIONS(4216), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4216), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4216), + [anon_sym_continue_AT] = ACTIONS(4216), + [anon_sym_break_AT] = ACTIONS(4216), + [anon_sym_this_AT] = ACTIONS(4216), + [anon_sym_super_AT] = ACTIONS(4216), + [sym_real_literal] = ACTIONS(4216), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4216), + [sym_bin_literal] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [sym_null_literal] = ACTIONS(4214), + [sym__backtick_identifier] = ACTIONS(4216), + [sym__automatic_semicolon] = ACTIONS(4216), + [sym_safe_nav] = ACTIONS(4216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4216), + }, + [859] = { + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [sym_label] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [860] = { + [sym__alpha_identifier] = ACTIONS(4218), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4218), + [anon_sym_GT] = ACTIONS(4218), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_object] = ACTIONS(4218), + [anon_sym_fun] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4218), + [anon_sym_set] = ACTIONS(4218), + [anon_sym_this] = ACTIONS(4218), + [anon_sym_super] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [sym__quest] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4218), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_if] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4218), + [anon_sym_when] = ACTIONS(4218), + [anon_sym_try] = ACTIONS(4218), + [anon_sym_throw] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4218), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_SLASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4218), + [anon_sym_sealed] = ACTIONS(4218), + [anon_sym_annotation] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4218), + [anon_sym_inner] = ACTIONS(4218), + [anon_sym_value] = ACTIONS(4218), + [anon_sym_override] = ACTIONS(4218), + [anon_sym_lateinit] = ACTIONS(4218), + [anon_sym_public] = ACTIONS(4218), + [anon_sym_private] = ACTIONS(4218), + [anon_sym_internal] = ACTIONS(4218), + [anon_sym_protected] = ACTIONS(4218), + [anon_sym_tailrec] = ACTIONS(4218), + [anon_sym_operator] = ACTIONS(4218), + [anon_sym_infix] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym_external] = ACTIONS(4218), + [sym_property_modifier] = ACTIONS(4218), + [anon_sym_abstract] = ACTIONS(4218), + [anon_sym_final] = ACTIONS(4218), + [anon_sym_open] = ACTIONS(4218), + [anon_sym_vararg] = ACTIONS(4218), + [anon_sym_noinline] = ACTIONS(4218), + [anon_sym_crossinline] = ACTIONS(4218), + [anon_sym_expect] = ACTIONS(4218), + [anon_sym_actual] = ACTIONS(4218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4218), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [861] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_RPAREN] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4224), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym_null_literal] = ACTIONS(4222), + [sym__backtick_identifier] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [862] = { + [sym_type_constraints] = STATE(994), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [863] = { + [sym_class_body] = STATE(1098), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [864] = { + [sym_type_constraints] = STATE(926), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [865] = { + [sym_type_constraints] = STATE(958), + [sym_enum_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [866] = { + [sym_type_constraints] = STATE(927), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [867] = { + [sym_type_constraints] = STATE(928), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [868] = { + [sym_class_body] = STATE(1107), + [sym_type_constraints] = STATE(952), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [869] = { + [sym_type_constraints] = STATE(929), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [870] = { + [sym_type_constraints] = STATE(930), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [871] = { + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [872] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(965), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [873] = { + [sym_class_body] = STATE(1071), + [sym_type_constraints] = STATE(951), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [874] = { + [aux_sym_nullable_type_repeat1] = STATE(878), + [sym__alpha_identifier] = ACTIONS(4254), + [anon_sym_AT] = ACTIONS(4256), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_as] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4254), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_GT] = ACTIONS(4254), + [anon_sym_where] = ACTIONS(4254), + [anon_sym_object] = ACTIONS(4254), + [anon_sym_fun] = ACTIONS(4254), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym_get] = ACTIONS(4254), + [anon_sym_set] = ACTIONS(4254), + [anon_sym_this] = ACTIONS(4254), + [anon_sym_super] = ACTIONS(4254), + [sym__quest] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4254), + [sym_label] = ACTIONS(4254), + [anon_sym_in] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_QMARK_COLON] = ACTIONS(4256), + [anon_sym_AMP_AMP] = ACTIONS(4256), + [anon_sym_PIPE_PIPE] = ACTIONS(4256), + [anon_sym_if] = ACTIONS(4254), + [anon_sym_else] = ACTIONS(4254), + [anon_sym_when] = ACTIONS(4254), + [anon_sym_try] = ACTIONS(4254), + [anon_sym_throw] = ACTIONS(4254), + [anon_sym_return] = ACTIONS(4254), + [anon_sym_continue] = ACTIONS(4254), + [anon_sym_break] = ACTIONS(4254), + [anon_sym_COLON_COLON] = ACTIONS(4256), + [anon_sym_PLUS_EQ] = ACTIONS(4256), + [anon_sym_DASH_EQ] = ACTIONS(4256), + [anon_sym_STAR_EQ] = ACTIONS(4256), + [anon_sym_SLASH_EQ] = ACTIONS(4256), + [anon_sym_PERCENT_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), + [anon_sym_LT_EQ] = ACTIONS(4256), + [anon_sym_GT_EQ] = ACTIONS(4256), + [anon_sym_BANGin] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4254), + [anon_sym_BANGis] = ACTIONS(4256), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), + [anon_sym_as_QMARK] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_BANG] = ACTIONS(4254), + [anon_sym_BANG_BANG] = ACTIONS(4256), + [anon_sym_suspend] = ACTIONS(4254), + [anon_sym_sealed] = ACTIONS(4254), + [anon_sym_annotation] = ACTIONS(4254), + [anon_sym_data] = ACTIONS(4254), + [anon_sym_inner] = ACTIONS(4254), + [anon_sym_value] = ACTIONS(4254), + [anon_sym_override] = ACTIONS(4254), + [anon_sym_lateinit] = ACTIONS(4254), + [anon_sym_public] = ACTIONS(4254), + [anon_sym_private] = ACTIONS(4254), + [anon_sym_internal] = ACTIONS(4254), + [anon_sym_protected] = ACTIONS(4254), + [anon_sym_tailrec] = ACTIONS(4254), + [anon_sym_operator] = ACTIONS(4254), + [anon_sym_infix] = ACTIONS(4254), + [anon_sym_inline] = ACTIONS(4254), + [anon_sym_external] = ACTIONS(4254), + [sym_property_modifier] = ACTIONS(4254), + [anon_sym_abstract] = ACTIONS(4254), + [anon_sym_final] = ACTIONS(4254), + [anon_sym_open] = ACTIONS(4254), + [anon_sym_vararg] = ACTIONS(4254), + [anon_sym_noinline] = ACTIONS(4254), + [anon_sym_crossinline] = ACTIONS(4254), + [anon_sym_expect] = ACTIONS(4254), + [anon_sym_actual] = ACTIONS(4254), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4256), + [anon_sym_continue_AT] = ACTIONS(4256), + [anon_sym_break_AT] = ACTIONS(4256), + [anon_sym_this_AT] = ACTIONS(4256), + [anon_sym_super_AT] = ACTIONS(4256), + [sym_real_literal] = ACTIONS(4256), + [sym_integer_literal] = ACTIONS(4254), + [sym_hex_literal] = ACTIONS(4256), + [sym_bin_literal] = ACTIONS(4256), + [anon_sym_true] = ACTIONS(4254), + [anon_sym_false] = ACTIONS(4254), + [anon_sym_SQUOTE] = ACTIONS(4256), + [sym_null_literal] = ACTIONS(4254), + [sym__backtick_identifier] = ACTIONS(4256), + [sym__automatic_semicolon] = ACTIONS(4256), + [sym_safe_nav] = ACTIONS(4256), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4256), + }, + [875] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [876] = { + [sym_type_constraints] = STATE(1154), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [877] = { + [aux_sym_nullable_type_repeat1] = STATE(874), + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_object] = ACTIONS(4262), + [anon_sym_fun] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4262), + [anon_sym_super] = ACTIONS(4262), + [sym__quest] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_when] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4264), + [anon_sym_continue_AT] = ACTIONS(4264), + [anon_sym_break_AT] = ACTIONS(4264), + [anon_sym_this_AT] = ACTIONS(4264), + [anon_sym_super_AT] = ACTIONS(4264), + [sym_real_literal] = ACTIONS(4264), + [sym_integer_literal] = ACTIONS(4262), + [sym_hex_literal] = ACTIONS(4264), + [sym_bin_literal] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4262), + [anon_sym_false] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4264), + [sym_null_literal] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4264), + }, + [878] = { + [aux_sym_nullable_type_repeat1] = STATE(878), + [sym__alpha_identifier] = ACTIONS(4268), + [anon_sym_AT] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_DOT] = ACTIONS(4268), + [anon_sym_as] = ACTIONS(4268), + [anon_sym_EQ] = ACTIONS(4268), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_COMMA] = ACTIONS(4270), + [anon_sym_by] = ACTIONS(4268), + [anon_sym_LT] = ACTIONS(4268), + [anon_sym_GT] = ACTIONS(4268), + [anon_sym_where] = ACTIONS(4268), + [anon_sym_object] = ACTIONS(4268), + [anon_sym_fun] = ACTIONS(4268), + [anon_sym_SEMI] = ACTIONS(4270), + [anon_sym_get] = ACTIONS(4268), + [anon_sym_set] = ACTIONS(4268), + [anon_sym_this] = ACTIONS(4268), + [anon_sym_super] = ACTIONS(4268), + [sym__quest] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4268), + [sym_label] = ACTIONS(4268), + [anon_sym_in] = ACTIONS(4268), + [anon_sym_DOT_DOT] = ACTIONS(4270), + [anon_sym_QMARK_COLON] = ACTIONS(4270), + [anon_sym_AMP_AMP] = ACTIONS(4270), + [anon_sym_PIPE_PIPE] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4268), + [anon_sym_else] = ACTIONS(4268), + [anon_sym_when] = ACTIONS(4268), + [anon_sym_try] = ACTIONS(4268), + [anon_sym_throw] = ACTIONS(4268), + [anon_sym_return] = ACTIONS(4268), + [anon_sym_continue] = ACTIONS(4268), + [anon_sym_break] = ACTIONS(4268), + [anon_sym_COLON_COLON] = ACTIONS(4270), + [anon_sym_PLUS_EQ] = ACTIONS(4270), + [anon_sym_DASH_EQ] = ACTIONS(4270), + [anon_sym_STAR_EQ] = ACTIONS(4270), + [anon_sym_SLASH_EQ] = ACTIONS(4270), + [anon_sym_PERCENT_EQ] = ACTIONS(4270), + [anon_sym_BANG_EQ] = ACTIONS(4268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), + [anon_sym_EQ_EQ] = ACTIONS(4268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), + [anon_sym_LT_EQ] = ACTIONS(4270), + [anon_sym_GT_EQ] = ACTIONS(4270), + [anon_sym_BANGin] = ACTIONS(4270), + [anon_sym_is] = ACTIONS(4268), + [anon_sym_BANGis] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4268), + [anon_sym_SLASH] = ACTIONS(4268), + [anon_sym_PERCENT] = ACTIONS(4268), + [anon_sym_as_QMARK] = ACTIONS(4270), + [anon_sym_PLUS_PLUS] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4270), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_BANG_BANG] = ACTIONS(4270), + [anon_sym_suspend] = ACTIONS(4268), + [anon_sym_sealed] = ACTIONS(4268), + [anon_sym_annotation] = ACTIONS(4268), + [anon_sym_data] = ACTIONS(4268), + [anon_sym_inner] = ACTIONS(4268), + [anon_sym_value] = ACTIONS(4268), + [anon_sym_override] = ACTIONS(4268), + [anon_sym_lateinit] = ACTIONS(4268), + [anon_sym_public] = ACTIONS(4268), + [anon_sym_private] = ACTIONS(4268), + [anon_sym_internal] = ACTIONS(4268), + [anon_sym_protected] = ACTIONS(4268), + [anon_sym_tailrec] = ACTIONS(4268), + [anon_sym_operator] = ACTIONS(4268), + [anon_sym_infix] = ACTIONS(4268), + [anon_sym_inline] = ACTIONS(4268), + [anon_sym_external] = ACTIONS(4268), + [sym_property_modifier] = ACTIONS(4268), + [anon_sym_abstract] = ACTIONS(4268), + [anon_sym_final] = ACTIONS(4268), + [anon_sym_open] = ACTIONS(4268), + [anon_sym_vararg] = ACTIONS(4268), + [anon_sym_noinline] = ACTIONS(4268), + [anon_sym_crossinline] = ACTIONS(4268), + [anon_sym_expect] = ACTIONS(4268), + [anon_sym_actual] = ACTIONS(4268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4270), + [anon_sym_continue_AT] = ACTIONS(4270), + [anon_sym_break_AT] = ACTIONS(4270), + [anon_sym_this_AT] = ACTIONS(4270), + [anon_sym_super_AT] = ACTIONS(4270), + [sym_real_literal] = ACTIONS(4270), + [sym_integer_literal] = ACTIONS(4268), + [sym_hex_literal] = ACTIONS(4270), + [sym_bin_literal] = ACTIONS(4270), + [anon_sym_true] = ACTIONS(4268), + [anon_sym_false] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4270), + [sym_null_literal] = ACTIONS(4268), + [sym__backtick_identifier] = ACTIONS(4270), + [sym__automatic_semicolon] = ACTIONS(4270), + [sym_safe_nav] = ACTIONS(4270), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4270), + }, + [879] = { + [sym_type_constraints] = STATE(1131), + [sym_function_body] = STATE(1079), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [880] = { + [sym_type_constraints] = STATE(1134), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [881] = { + [sym_type_constraints] = STATE(1163), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(4279), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [882] = { + [sym_function_body] = STATE(1058), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [883] = { + [sym__alpha_identifier] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_COMMA] = ACTIONS(4289), + [anon_sym_by] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_where] = ACTIONS(4287), + [anon_sym_object] = ACTIONS(4287), + [anon_sym_fun] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4289), + [anon_sym_get] = ACTIONS(4287), + [anon_sym_set] = ACTIONS(4287), + [anon_sym_this] = ACTIONS(4287), + [anon_sym_super] = ACTIONS(4287), + [sym__quest] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_DASH_GT] = ACTIONS(4291), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4287), + [anon_sym_DOT_DOT] = ACTIONS(4289), + [anon_sym_QMARK_COLON] = ACTIONS(4289), + [anon_sym_AMP_AMP] = ACTIONS(4289), + [anon_sym_PIPE_PIPE] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4287), + [anon_sym_when] = ACTIONS(4287), + [anon_sym_try] = ACTIONS(4287), + [anon_sym_throw] = ACTIONS(4287), + [anon_sym_return] = ACTIONS(4287), + [anon_sym_continue] = ACTIONS(4287), + [anon_sym_break] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_PLUS_EQ] = ACTIONS(4289), + [anon_sym_DASH_EQ] = ACTIONS(4289), + [anon_sym_STAR_EQ] = ACTIONS(4289), + [anon_sym_SLASH_EQ] = ACTIONS(4289), + [anon_sym_PERCENT_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), + [anon_sym_LT_EQ] = ACTIONS(4289), + [anon_sym_GT_EQ] = ACTIONS(4289), + [anon_sym_BANGin] = ACTIONS(4289), + [anon_sym_is] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4289), + [anon_sym_PLUS_PLUS] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4289), + [anon_sym_suspend] = ACTIONS(4287), + [anon_sym_sealed] = ACTIONS(4287), + [anon_sym_annotation] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4287), + [anon_sym_inner] = ACTIONS(4287), + [anon_sym_value] = ACTIONS(4287), + [anon_sym_override] = ACTIONS(4287), + [anon_sym_lateinit] = ACTIONS(4287), + [anon_sym_public] = ACTIONS(4287), + [anon_sym_private] = ACTIONS(4287), + [anon_sym_internal] = ACTIONS(4287), + [anon_sym_protected] = ACTIONS(4287), + [anon_sym_tailrec] = ACTIONS(4287), + [anon_sym_operator] = ACTIONS(4287), + [anon_sym_infix] = ACTIONS(4287), + [anon_sym_inline] = ACTIONS(4287), + [anon_sym_external] = ACTIONS(4287), + [sym_property_modifier] = ACTIONS(4287), + [anon_sym_abstract] = ACTIONS(4287), + [anon_sym_final] = ACTIONS(4287), + [anon_sym_open] = ACTIONS(4287), + [anon_sym_vararg] = ACTIONS(4287), + [anon_sym_noinline] = ACTIONS(4287), + [anon_sym_crossinline] = ACTIONS(4287), + [anon_sym_expect] = ACTIONS(4287), + [anon_sym_actual] = ACTIONS(4287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4289), + [anon_sym_continue_AT] = ACTIONS(4289), + [anon_sym_break_AT] = ACTIONS(4289), + [anon_sym_this_AT] = ACTIONS(4289), + [anon_sym_super_AT] = ACTIONS(4289), + [sym_real_literal] = ACTIONS(4289), + [sym_integer_literal] = ACTIONS(4287), + [sym_hex_literal] = ACTIONS(4289), + [sym_bin_literal] = ACTIONS(4289), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4289), + [sym_null_literal] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4289), + [sym__automatic_semicolon] = ACTIONS(4289), + [sym_safe_nav] = ACTIONS(4289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4289), + }, + [884] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4293), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym_null_literal] = ACTIONS(4190), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [885] = { + [aux_sym_nullable_type_repeat1] = STATE(874), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [sym__quest] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym_null_literal] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [886] = { + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [887] = { + [sym_type_constraints] = STATE(1163), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [888] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_catch] = ACTIONS(4299), + [anon_sym_finally] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym_null_literal] = ACTIONS(4299), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [889] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_catch] = ACTIONS(4303), + [anon_sym_finally] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym_null_literal] = ACTIONS(4303), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), + }, + [890] = { + [sym_class_body] = STATE(1098), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [891] = { + [sym_class_body] = STATE(1201), + [sym_type_constraints] = STATE(991), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym_null_literal] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [892] = { + [sym_class_body] = STATE(1087), + [sym_type_constraints] = STATE(957), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4311), + [anon_sym_fun] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_this] = ACTIONS(4311), + [anon_sym_super] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4311), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_throw] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4313), + [anon_sym_continue_AT] = ACTIONS(4313), + [anon_sym_break_AT] = ACTIONS(4313), + [anon_sym_this_AT] = ACTIONS(4313), + [anon_sym_super_AT] = ACTIONS(4313), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4313), + [sym_null_literal] = ACTIONS(4311), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4313), + }, + [893] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4317), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [894] = { + [aux_sym_type_constraints_repeat1] = STATE(908), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_by] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [895] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [896] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [897] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [898] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4359), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [899] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [900] = { + [sym_type_constraints] = STATE(992), + [sym_enum_class_body] = STATE(1199), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [901] = { + [sym_type_constraints] = STATE(994), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [902] = { + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [903] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(965), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [904] = { + [sym_class_body] = STATE(1199), + [sym_type_constraints] = STATE(993), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [905] = { + [sym_class_body] = STATE(1098), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(4369), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [906] = { + [sym_type_constraints] = STATE(994), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [907] = { + [sym_type_constraints] = STATE(958), + [sym_enum_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [908] = { + [aux_sym_type_constraints_repeat1] = STATE(908), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [909] = { + [sym_class_body] = STATE(1107), + [sym_type_constraints] = STATE(952), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [910] = { + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [911] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(965), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [912] = { + [sym_class_body] = STATE(1071), + [sym_type_constraints] = STATE(951), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [913] = { + [sym_type_constraints] = STATE(1002), + [sym_enum_class_body] = STATE(1175), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [914] = { + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_object] = ACTIONS(4098), + [anon_sym_fun] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [anon_sym_this] = ACTIONS(4098), + [anon_sym_super] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [sym_label] = ACTIONS(4098), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4100), + [anon_sym_QMARK_COLON] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4098), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_try] = ACTIONS(4098), + [anon_sym_throw] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4098), + [anon_sym_continue] = ACTIONS(4098), + [anon_sym_break] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_as_QMARK] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_BANG_BANG] = ACTIONS(4100), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4100), + [anon_sym_continue_AT] = ACTIONS(4100), + [anon_sym_break_AT] = ACTIONS(4100), + [anon_sym_this_AT] = ACTIONS(4100), + [anon_sym_super_AT] = ACTIONS(4100), + [sym_real_literal] = ACTIONS(4100), + [sym_integer_literal] = ACTIONS(4098), + [sym_hex_literal] = ACTIONS(4100), + [sym_bin_literal] = ACTIONS(4100), + [anon_sym_true] = ACTIONS(4098), + [anon_sym_false] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4100), + [sym_null_literal] = ACTIONS(4098), + [sym__backtick_identifier] = ACTIONS(4100), + [sym__automatic_semicolon] = ACTIONS(4100), + [sym_safe_nav] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4100), + }, + [915] = { + [sym_class_body] = STATE(1175), + [sym_type_constraints] = STATE(1003), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [916] = { + [sym_type_constraints] = STATE(1007), + [sym_enum_class_body] = STATE(1166), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4386), + [anon_sym_fun] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_this] = ACTIONS(4386), + [anon_sym_super] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4386), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_when] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4388), + [anon_sym_continue_AT] = ACTIONS(4388), + [anon_sym_break_AT] = ACTIONS(4388), + [anon_sym_this_AT] = ACTIONS(4388), + [anon_sym_super_AT] = ACTIONS(4388), + [sym_real_literal] = ACTIONS(4388), + [sym_integer_literal] = ACTIONS(4386), + [sym_hex_literal] = ACTIONS(4388), + [sym_bin_literal] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_SQUOTE] = ACTIONS(4388), + [sym_null_literal] = ACTIONS(4386), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4388), + }, + [917] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [918] = { + [sym_type_constraints] = STATE(1027), + [sym_enum_class_body] = STATE(1145), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [anon_sym_this_AT] = ACTIONS(4392), + [anon_sym_super_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym_null_literal] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), + }, + [919] = { + [sym_function_body] = STATE(1038), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [920] = { + [aux_sym_user_type_repeat1] = STATE(841), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [921] = { + [sym_function_body] = STATE(1077), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [922] = { + [sym_type_constraints] = STATE(958), + [sym_enum_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [923] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_constructor] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [924] = { + [sym__alpha_identifier] = ACTIONS(4405), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(4405), + [anon_sym_as] = ACTIONS(4405), + [anon_sym_EQ] = ACTIONS(4405), + [anon_sym_constructor] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_RBRACE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_where] = ACTIONS(4405), + [anon_sym_object] = ACTIONS(4405), + [anon_sym_fun] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4405), + [anon_sym_set] = ACTIONS(4405), + [anon_sym_this] = ACTIONS(4405), + [anon_sym_super] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4405), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4405), + [anon_sym_DOT_DOT] = ACTIONS(4407), + [anon_sym_QMARK_COLON] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4405), + [anon_sym_when] = ACTIONS(4405), + [anon_sym_try] = ACTIONS(4405), + [anon_sym_throw] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_PLUS_EQ] = ACTIONS(4407), + [anon_sym_DASH_EQ] = ACTIONS(4407), + [anon_sym_STAR_EQ] = ACTIONS(4407), + [anon_sym_SLASH_EQ] = ACTIONS(4407), + [anon_sym_PERCENT_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), + [anon_sym_LT_EQ] = ACTIONS(4407), + [anon_sym_GT_EQ] = ACTIONS(4407), + [anon_sym_BANGin] = ACTIONS(4407), + [anon_sym_is] = ACTIONS(4405), + [anon_sym_BANGis] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_SLASH] = ACTIONS(4405), + [anon_sym_PERCENT] = ACTIONS(4405), + [anon_sym_as_QMARK] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4407), + [anon_sym_suspend] = ACTIONS(4405), + [anon_sym_sealed] = ACTIONS(4405), + [anon_sym_annotation] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4405), + [anon_sym_inner] = ACTIONS(4405), + [anon_sym_value] = ACTIONS(4405), + [anon_sym_override] = ACTIONS(4405), + [anon_sym_lateinit] = ACTIONS(4405), + [anon_sym_public] = ACTIONS(4405), + [anon_sym_private] = ACTIONS(4405), + [anon_sym_internal] = ACTIONS(4405), + [anon_sym_protected] = ACTIONS(4405), + [anon_sym_tailrec] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_infix] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym_external] = ACTIONS(4405), + [sym_property_modifier] = ACTIONS(4405), + [anon_sym_abstract] = ACTIONS(4405), + [anon_sym_final] = ACTIONS(4405), + [anon_sym_open] = ACTIONS(4405), + [anon_sym_vararg] = ACTIONS(4405), + [anon_sym_noinline] = ACTIONS(4405), + [anon_sym_crossinline] = ACTIONS(4405), + [anon_sym_expect] = ACTIONS(4405), + [anon_sym_actual] = ACTIONS(4405), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4407), + [anon_sym_continue_AT] = ACTIONS(4407), + [anon_sym_break_AT] = ACTIONS(4407), + [anon_sym_this_AT] = ACTIONS(4407), + [anon_sym_super_AT] = ACTIONS(4407), + [sym_real_literal] = ACTIONS(4407), + [sym_integer_literal] = ACTIONS(4405), + [sym_hex_literal] = ACTIONS(4407), + [sym_bin_literal] = ACTIONS(4407), + [anon_sym_true] = ACTIONS(4405), + [anon_sym_false] = ACTIONS(4405), + [anon_sym_SQUOTE] = ACTIONS(4407), + [sym_null_literal] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4407), + [sym__automatic_semicolon] = ACTIONS(4407), + [sym_safe_nav] = ACTIONS(4407), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4407), + }, + [925] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [926] = { + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [927] = { + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [928] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [929] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [930] = { + [sym_function_body] = STATE(1090), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [931] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_constructor] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [932] = { + [sym_class_body] = STATE(1159), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [933] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_catch] = ACTIONS(4419), + [anon_sym_finally] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [934] = { + [sym_class_body] = STATE(1127), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(4427), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [935] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(4429), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [936] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_catch] = ACTIONS(4435), + [anon_sym_finally] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [937] = { + [aux_sym_type_constraints_repeat1] = STATE(894), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4351), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4439), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [938] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [939] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [940] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [941] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [942] = { + [sym_type_constraints] = STATE(1182), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [943] = { + [sym_type_constraints] = STATE(1169), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [944] = { + [sym_type_constraints] = STATE(1180), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [945] = { + [sym_value_arguments] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(4455), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [946] = { + [sym__alpha_identifier] = ACTIONS(4457), + [anon_sym_AT] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4457), + [anon_sym_EQ] = ACTIONS(4457), + [anon_sym_LBRACE] = ACTIONS(4459), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_where] = ACTIONS(4457), + [anon_sym_object] = ACTIONS(4457), + [anon_sym_fun] = ACTIONS(4457), + [anon_sym_SEMI] = ACTIONS(4459), + [anon_sym_get] = ACTIONS(4457), + [anon_sym_set] = ACTIONS(4457), + [anon_sym_this] = ACTIONS(4457), + [anon_sym_super] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4457), + [anon_sym_DOT_DOT] = ACTIONS(4459), + [anon_sym_QMARK_COLON] = ACTIONS(4459), + [anon_sym_AMP_AMP] = ACTIONS(4459), + [anon_sym_PIPE_PIPE] = ACTIONS(4459), + [anon_sym_if] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4457), + [anon_sym_when] = ACTIONS(4457), + [anon_sym_try] = ACTIONS(4457), + [anon_sym_throw] = ACTIONS(4457), + [anon_sym_return] = ACTIONS(4457), + [anon_sym_continue] = ACTIONS(4457), + [anon_sym_break] = ACTIONS(4457), + [anon_sym_COLON_COLON] = ACTIONS(4459), + [anon_sym_PLUS_EQ] = ACTIONS(4459), + [anon_sym_DASH_EQ] = ACTIONS(4459), + [anon_sym_STAR_EQ] = ACTIONS(4459), + [anon_sym_SLASH_EQ] = ACTIONS(4459), + [anon_sym_PERCENT_EQ] = ACTIONS(4459), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), + [anon_sym_LT_EQ] = ACTIONS(4459), + [anon_sym_GT_EQ] = ACTIONS(4459), + [anon_sym_BANGin] = ACTIONS(4459), + [anon_sym_is] = ACTIONS(4457), + [anon_sym_BANGis] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_PERCENT] = ACTIONS(4457), + [anon_sym_as_QMARK] = ACTIONS(4459), + [anon_sym_PLUS_PLUS] = ACTIONS(4459), + [anon_sym_DASH_DASH] = ACTIONS(4459), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4459), + [anon_sym_suspend] = ACTIONS(4457), + [anon_sym_sealed] = ACTIONS(4457), + [anon_sym_annotation] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4457), + [anon_sym_inner] = ACTIONS(4457), + [anon_sym_value] = ACTIONS(4457), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_lateinit] = ACTIONS(4457), + [anon_sym_public] = ACTIONS(4457), + [anon_sym_private] = ACTIONS(4457), + [anon_sym_internal] = ACTIONS(4457), + [anon_sym_protected] = ACTIONS(4457), + [anon_sym_tailrec] = ACTIONS(4457), + [anon_sym_operator] = ACTIONS(4457), + [anon_sym_infix] = ACTIONS(4457), + [anon_sym_inline] = ACTIONS(4457), + [anon_sym_external] = ACTIONS(4457), + [sym_property_modifier] = ACTIONS(4457), + [anon_sym_abstract] = ACTIONS(4457), + [anon_sym_final] = ACTIONS(4457), + [anon_sym_open] = ACTIONS(4457), + [anon_sym_vararg] = ACTIONS(4457), + [anon_sym_noinline] = ACTIONS(4457), + [anon_sym_crossinline] = ACTIONS(4457), + [anon_sym_expect] = ACTIONS(4457), + [anon_sym_actual] = ACTIONS(4457), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4459), + [anon_sym_continue_AT] = ACTIONS(4459), + [anon_sym_break_AT] = ACTIONS(4459), + [anon_sym_this_AT] = ACTIONS(4459), + [anon_sym_super_AT] = ACTIONS(4459), + [sym_real_literal] = ACTIONS(4459), + [sym_integer_literal] = ACTIONS(4457), + [sym_hex_literal] = ACTIONS(4459), + [sym_bin_literal] = ACTIONS(4459), + [aux_sym_unsigned_literal_token1] = ACTIONS(4461), + [anon_sym_L] = ACTIONS(4463), + [anon_sym_true] = ACTIONS(4457), + [anon_sym_false] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4459), + [sym_null_literal] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4459), + [sym__automatic_semicolon] = ACTIONS(4459), + [sym_safe_nav] = ACTIONS(4459), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4459), + }, + [947] = { + [sym__alpha_identifier] = ACTIONS(4465), + [anon_sym_AT] = ACTIONS(4467), + [anon_sym_COLON] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4465), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_constructor] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_LPAREN] = ACTIONS(4467), + [anon_sym_COMMA] = ACTIONS(4467), + [anon_sym_LT] = ACTIONS(4465), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_where] = ACTIONS(4465), + [anon_sym_object] = ACTIONS(4465), + [anon_sym_fun] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym_get] = ACTIONS(4465), + [anon_sym_set] = ACTIONS(4465), + [anon_sym_this] = ACTIONS(4465), + [anon_sym_super] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4465), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4465), + [anon_sym_DOT_DOT] = ACTIONS(4467), + [anon_sym_QMARK_COLON] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_PIPE_PIPE] = ACTIONS(4467), + [anon_sym_if] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4465), + [anon_sym_when] = ACTIONS(4465), + [anon_sym_try] = ACTIONS(4465), + [anon_sym_throw] = ACTIONS(4465), + [anon_sym_return] = ACTIONS(4465), + [anon_sym_continue] = ACTIONS(4465), + [anon_sym_break] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_PLUS_EQ] = ACTIONS(4467), + [anon_sym_DASH_EQ] = ACTIONS(4467), + [anon_sym_STAR_EQ] = ACTIONS(4467), + [anon_sym_SLASH_EQ] = ACTIONS(4467), + [anon_sym_PERCENT_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), + [anon_sym_LT_EQ] = ACTIONS(4467), + [anon_sym_GT_EQ] = ACTIONS(4467), + [anon_sym_BANGin] = ACTIONS(4467), + [anon_sym_is] = ACTIONS(4465), + [anon_sym_BANGis] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_as_QMARK] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(4465), + [anon_sym_BANG_BANG] = ACTIONS(4467), + [anon_sym_suspend] = ACTIONS(4465), + [anon_sym_sealed] = ACTIONS(4465), + [anon_sym_annotation] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4465), + [anon_sym_inner] = ACTIONS(4465), + [anon_sym_value] = ACTIONS(4465), + [anon_sym_override] = ACTIONS(4465), + [anon_sym_lateinit] = ACTIONS(4465), + [anon_sym_public] = ACTIONS(4465), + [anon_sym_private] = ACTIONS(4465), + [anon_sym_internal] = ACTIONS(4465), + [anon_sym_protected] = ACTIONS(4465), + [anon_sym_tailrec] = ACTIONS(4465), + [anon_sym_operator] = ACTIONS(4465), + [anon_sym_infix] = ACTIONS(4465), + [anon_sym_inline] = ACTIONS(4465), + [anon_sym_external] = ACTIONS(4465), + [sym_property_modifier] = ACTIONS(4465), + [anon_sym_abstract] = ACTIONS(4465), + [anon_sym_final] = ACTIONS(4465), + [anon_sym_open] = ACTIONS(4465), + [anon_sym_vararg] = ACTIONS(4465), + [anon_sym_noinline] = ACTIONS(4465), + [anon_sym_crossinline] = ACTIONS(4465), + [anon_sym_expect] = ACTIONS(4465), + [anon_sym_actual] = ACTIONS(4465), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4467), + [anon_sym_continue_AT] = ACTIONS(4467), + [anon_sym_break_AT] = ACTIONS(4467), + [anon_sym_this_AT] = ACTIONS(4467), + [anon_sym_super_AT] = ACTIONS(4467), + [sym_real_literal] = ACTIONS(4467), + [sym_integer_literal] = ACTIONS(4465), + [sym_hex_literal] = ACTIONS(4467), + [sym_bin_literal] = ACTIONS(4467), + [anon_sym_true] = ACTIONS(4465), + [anon_sym_false] = ACTIONS(4465), + [anon_sym_SQUOTE] = ACTIONS(4467), + [sym_null_literal] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4467), + [sym__automatic_semicolon] = ACTIONS(4467), + [sym_safe_nav] = ACTIONS(4467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4467), + }, + [948] = { + [sym_type_constraints] = STATE(1154), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [949] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [950] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [951] = { + [sym_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [952] = { + [sym_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [953] = { + [sym_enum_class_body] = STATE(1214), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [954] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [955] = { + [sym_class_body] = STATE(1212), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_object] = ACTIONS(4515), + [anon_sym_fun] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_this] = ACTIONS(4515), + [anon_sym_super] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [sym_label] = ACTIONS(4515), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_if] = ACTIONS(4515), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_when] = ACTIONS(4515), + [anon_sym_try] = ACTIONS(4515), + [anon_sym_throw] = ACTIONS(4515), + [anon_sym_return] = ACTIONS(4515), + [anon_sym_continue] = ACTIONS(4515), + [anon_sym_break] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_suspend] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4515), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_lateinit] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_tailrec] = ACTIONS(4515), + [anon_sym_operator] = ACTIONS(4515), + [anon_sym_infix] = ACTIONS(4515), + [anon_sym_inline] = ACTIONS(4515), + [anon_sym_external] = ACTIONS(4515), + [sym_property_modifier] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_final] = ACTIONS(4515), + [anon_sym_open] = ACTIONS(4515), + [anon_sym_vararg] = ACTIONS(4515), + [anon_sym_noinline] = ACTIONS(4515), + [anon_sym_crossinline] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4517), + [anon_sym_continue_AT] = ACTIONS(4517), + [anon_sym_break_AT] = ACTIONS(4517), + [anon_sym_this_AT] = ACTIONS(4517), + [anon_sym_super_AT] = ACTIONS(4517), + [sym_real_literal] = ACTIONS(4517), + [sym_integer_literal] = ACTIONS(4515), + [sym_hex_literal] = ACTIONS(4517), + [sym_bin_literal] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4515), + [sym__backtick_identifier] = ACTIONS(4517), + [sym__automatic_semicolon] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4517), + }, + [956] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_object] = ACTIONS(4519), + [anon_sym_fun] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_this] = ACTIONS(4519), + [anon_sym_super] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(4519), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_if] = ACTIONS(4519), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_when] = ACTIONS(4519), + [anon_sym_try] = ACTIONS(4519), + [anon_sym_throw] = ACTIONS(4519), + [anon_sym_return] = ACTIONS(4519), + [anon_sym_continue] = ACTIONS(4519), + [anon_sym_break] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_annotation] = ACTIONS(4519), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_lateinit] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_tailrec] = ACTIONS(4519), + [anon_sym_operator] = ACTIONS(4519), + [anon_sym_infix] = ACTIONS(4519), + [anon_sym_inline] = ACTIONS(4519), + [anon_sym_external] = ACTIONS(4519), + [sym_property_modifier] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_open] = ACTIONS(4519), + [anon_sym_vararg] = ACTIONS(4519), + [anon_sym_noinline] = ACTIONS(4519), + [anon_sym_crossinline] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4521), + [anon_sym_continue_AT] = ACTIONS(4521), + [anon_sym_break_AT] = ACTIONS(4521), + [anon_sym_this_AT] = ACTIONS(4521), + [anon_sym_super_AT] = ACTIONS(4521), + [sym_real_literal] = ACTIONS(4521), + [sym_integer_literal] = ACTIONS(4519), + [sym_hex_literal] = ACTIONS(4521), + [sym_bin_literal] = ACTIONS(4521), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [anon_sym_SQUOTE] = ACTIONS(4521), + [sym_null_literal] = ACTIONS(4519), + [sym__backtick_identifier] = ACTIONS(4521), + [sym__automatic_semicolon] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4521), + }, + [957] = { + [sym_class_body] = STATE(1201), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym_null_literal] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [958] = { + [sym_enum_class_body] = STATE(1199), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [959] = { + [sym__alpha_identifier] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_by] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_where] = ACTIONS(4523), + [anon_sym_object] = ACTIONS(4523), + [anon_sym_fun] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_get] = ACTIONS(4523), + [anon_sym_set] = ACTIONS(4523), + [anon_sym_this] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [sym_label] = ACTIONS(4523), + [anon_sym_in] = ACTIONS(4523), + [anon_sym_DOT_DOT] = ACTIONS(4525), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4523), + [anon_sym_else] = ACTIONS(4523), + [anon_sym_when] = ACTIONS(4523), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_throw] = ACTIONS(4523), + [anon_sym_return] = ACTIONS(4523), + [anon_sym_continue] = ACTIONS(4523), + [anon_sym_break] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_BANGin] = ACTIONS(4525), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_BANGis] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_as_QMARK] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_BANG_BANG] = ACTIONS(4525), + [anon_sym_suspend] = ACTIONS(4523), + [anon_sym_sealed] = ACTIONS(4523), + [anon_sym_annotation] = ACTIONS(4523), + [anon_sym_data] = ACTIONS(4523), + [anon_sym_inner] = ACTIONS(4523), + [anon_sym_value] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_lateinit] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_protected] = ACTIONS(4523), + [anon_sym_tailrec] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_infix] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_external] = ACTIONS(4523), + [sym_property_modifier] = ACTIONS(4523), + [anon_sym_abstract] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_open] = ACTIONS(4523), + [anon_sym_vararg] = ACTIONS(4523), + [anon_sym_noinline] = ACTIONS(4523), + [anon_sym_crossinline] = ACTIONS(4523), + [anon_sym_expect] = ACTIONS(4523), + [anon_sym_actual] = ACTIONS(4523), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4525), + [anon_sym_continue_AT] = ACTIONS(4525), + [anon_sym_break_AT] = ACTIONS(4525), + [anon_sym_this_AT] = ACTIONS(4525), + [anon_sym_super_AT] = ACTIONS(4525), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_SQUOTE] = ACTIONS(4525), + [sym_null_literal] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(4525), + [sym__automatic_semicolon] = ACTIONS(4525), + [sym_safe_nav] = ACTIONS(4525), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4525), + }, + [960] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(973), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [961] = { + [sym__alpha_identifier] = ACTIONS(4531), + [anon_sym_AT] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_as] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_where] = ACTIONS(4531), + [anon_sym_object] = ACTIONS(4531), + [anon_sym_fun] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym_get] = ACTIONS(4531), + [anon_sym_set] = ACTIONS(4531), + [anon_sym_this] = ACTIONS(4531), + [anon_sym_super] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4531), + [anon_sym_DOT_DOT] = ACTIONS(4533), + [anon_sym_QMARK_COLON] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_if] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4531), + [anon_sym_when] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_throw] = ACTIONS(4531), + [anon_sym_return] = ACTIONS(4531), + [anon_sym_continue] = ACTIONS(4531), + [anon_sym_break] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_BANGin] = ACTIONS(4533), + [anon_sym_is] = ACTIONS(4531), + [anon_sym_BANGis] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_as_QMARK] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4533), + [anon_sym_suspend] = ACTIONS(4531), + [anon_sym_sealed] = ACTIONS(4531), + [anon_sym_annotation] = ACTIONS(4531), + [anon_sym_data] = ACTIONS(4531), + [anon_sym_inner] = ACTIONS(4531), + [anon_sym_value] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_lateinit] = ACTIONS(4531), + [anon_sym_public] = ACTIONS(4531), + [anon_sym_private] = ACTIONS(4531), + [anon_sym_internal] = ACTIONS(4531), + [anon_sym_protected] = ACTIONS(4531), + [anon_sym_tailrec] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_infix] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_external] = ACTIONS(4531), + [sym_property_modifier] = ACTIONS(4531), + [anon_sym_abstract] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_open] = ACTIONS(4531), + [anon_sym_vararg] = ACTIONS(4531), + [anon_sym_noinline] = ACTIONS(4531), + [anon_sym_crossinline] = ACTIONS(4531), + [anon_sym_expect] = ACTIONS(4531), + [anon_sym_actual] = ACTIONS(4531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4533), + [anon_sym_continue_AT] = ACTIONS(4533), + [anon_sym_break_AT] = ACTIONS(4533), + [anon_sym_this_AT] = ACTIONS(4533), + [anon_sym_super_AT] = ACTIONS(4533), + [sym_real_literal] = ACTIONS(4533), + [sym_integer_literal] = ACTIONS(4531), + [sym_hex_literal] = ACTIONS(4533), + [sym_bin_literal] = ACTIONS(4533), + [anon_sym_true] = ACTIONS(4531), + [anon_sym_false] = ACTIONS(4531), + [anon_sym_SQUOTE] = ACTIONS(4533), + [sym_null_literal] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4533), + [sym__automatic_semicolon] = ACTIONS(4533), + [sym_safe_nav] = ACTIONS(4533), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4533), + }, + [962] = { + [sym_class_body] = STATE(1122), + [sym__alpha_identifier] = ACTIONS(4535), + [anon_sym_AT] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_where] = ACTIONS(4535), + [anon_sym_object] = ACTIONS(4535), + [anon_sym_fun] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_get] = ACTIONS(4535), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_this] = ACTIONS(4535), + [anon_sym_super] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [sym_label] = ACTIONS(4535), + [anon_sym_in] = ACTIONS(4535), + [anon_sym_DOT_DOT] = ACTIONS(4537), + [anon_sym_QMARK_COLON] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_if] = ACTIONS(4535), + [anon_sym_else] = ACTIONS(4535), + [anon_sym_when] = ACTIONS(4535), + [anon_sym_try] = ACTIONS(4535), + [anon_sym_throw] = ACTIONS(4535), + [anon_sym_return] = ACTIONS(4535), + [anon_sym_continue] = ACTIONS(4535), + [anon_sym_break] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), + [anon_sym_EQ_EQ] = ACTIONS(4535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(4535), + [anon_sym_BANGis] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_as_QMARK] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_BANG_BANG] = ACTIONS(4537), + [anon_sym_suspend] = ACTIONS(4535), + [anon_sym_sealed] = ACTIONS(4535), + [anon_sym_annotation] = ACTIONS(4535), + [anon_sym_data] = ACTIONS(4535), + [anon_sym_inner] = ACTIONS(4535), + [anon_sym_value] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_lateinit] = ACTIONS(4535), + [anon_sym_public] = ACTIONS(4535), + [anon_sym_private] = ACTIONS(4535), + [anon_sym_internal] = ACTIONS(4535), + [anon_sym_protected] = ACTIONS(4535), + [anon_sym_tailrec] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_infix] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_external] = ACTIONS(4535), + [sym_property_modifier] = ACTIONS(4535), + [anon_sym_abstract] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_open] = ACTIONS(4535), + [anon_sym_vararg] = ACTIONS(4535), + [anon_sym_noinline] = ACTIONS(4535), + [anon_sym_crossinline] = ACTIONS(4535), + [anon_sym_expect] = ACTIONS(4535), + [anon_sym_actual] = ACTIONS(4535), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4537), + [anon_sym_continue_AT] = ACTIONS(4537), + [anon_sym_break_AT] = ACTIONS(4537), + [anon_sym_this_AT] = ACTIONS(4537), + [anon_sym_super_AT] = ACTIONS(4537), + [sym_real_literal] = ACTIONS(4537), + [sym_integer_literal] = ACTIONS(4535), + [sym_hex_literal] = ACTIONS(4537), + [sym_bin_literal] = ACTIONS(4537), + [anon_sym_true] = ACTIONS(4535), + [anon_sym_false] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4537), + [sym_null_literal] = ACTIONS(4535), + [sym__backtick_identifier] = ACTIONS(4537), + [sym__automatic_semicolon] = ACTIONS(4537), + [sym_safe_nav] = ACTIONS(4537), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4537), + }, + [963] = { + [sym__alpha_identifier] = ACTIONS(4539), + [anon_sym_AT] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_as] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(4539), + [anon_sym_object] = ACTIONS(4539), + [anon_sym_fun] = ACTIONS(4539), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym_get] = ACTIONS(4539), + [anon_sym_set] = ACTIONS(4539), + [anon_sym_this] = ACTIONS(4539), + [anon_sym_super] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [sym_label] = ACTIONS(4539), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_if] = ACTIONS(4539), + [anon_sym_else] = ACTIONS(4539), + [anon_sym_when] = ACTIONS(4539), + [anon_sym_try] = ACTIONS(4539), + [anon_sym_throw] = ACTIONS(4539), + [anon_sym_return] = ACTIONS(4539), + [anon_sym_continue] = ACTIONS(4539), + [anon_sym_break] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4539), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), + [anon_sym_EQ_EQ] = ACTIONS(4539), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_BANGin] = ACTIONS(4541), + [anon_sym_is] = ACTIONS(4539), + [anon_sym_BANGis] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_as_QMARK] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_BANG] = ACTIONS(4539), + [anon_sym_BANG_BANG] = ACTIONS(4541), + [anon_sym_suspend] = ACTIONS(4539), + [anon_sym_sealed] = ACTIONS(4539), + [anon_sym_annotation] = ACTIONS(4539), + [anon_sym_data] = ACTIONS(4539), + [anon_sym_inner] = ACTIONS(4539), + [anon_sym_value] = ACTIONS(4539), + [anon_sym_override] = ACTIONS(4539), + [anon_sym_lateinit] = ACTIONS(4539), + [anon_sym_public] = ACTIONS(4539), + [anon_sym_private] = ACTIONS(4539), + [anon_sym_internal] = ACTIONS(4539), + [anon_sym_protected] = ACTIONS(4539), + [anon_sym_tailrec] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), + [anon_sym_infix] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym_external] = ACTIONS(4539), + [sym_property_modifier] = ACTIONS(4539), + [anon_sym_abstract] = ACTIONS(4539), + [anon_sym_final] = ACTIONS(4539), + [anon_sym_open] = ACTIONS(4539), + [anon_sym_vararg] = ACTIONS(4539), + [anon_sym_noinline] = ACTIONS(4539), + [anon_sym_crossinline] = ACTIONS(4539), + [anon_sym_expect] = ACTIONS(4539), + [anon_sym_actual] = ACTIONS(4539), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4541), + [anon_sym_continue_AT] = ACTIONS(4541), + [anon_sym_break_AT] = ACTIONS(4541), + [anon_sym_this_AT] = ACTIONS(4541), + [anon_sym_super_AT] = ACTIONS(4541), + [sym_real_literal] = ACTIONS(4541), + [sym_integer_literal] = ACTIONS(4539), + [sym_hex_literal] = ACTIONS(4541), + [sym_bin_literal] = ACTIONS(4541), + [anon_sym_true] = ACTIONS(4539), + [anon_sym_false] = ACTIONS(4539), + [anon_sym_SQUOTE] = ACTIONS(4541), + [sym_null_literal] = ACTIONS(4539), + [sym__backtick_identifier] = ACTIONS(4541), + [sym__automatic_semicolon] = ACTIONS(4541), + [sym_safe_nav] = ACTIONS(4541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4541), + }, + [964] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [965] = { + [sym_class_body] = STATE(1087), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_object] = ACTIONS(4311), + [anon_sym_fun] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_this] = ACTIONS(4311), + [anon_sym_super] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4311), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_throw] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4313), + [anon_sym_continue_AT] = ACTIONS(4313), + [anon_sym_break_AT] = ACTIONS(4313), + [anon_sym_this_AT] = ACTIONS(4313), + [anon_sym_super_AT] = ACTIONS(4313), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4313), + [sym_null_literal] = ACTIONS(4311), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4313), + }, + [966] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_object] = ACTIONS(4543), + [anon_sym_fun] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_this] = ACTIONS(4543), + [anon_sym_super] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4543), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_if] = ACTIONS(4543), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_throw] = ACTIONS(4543), + [anon_sym_return] = ACTIONS(4543), + [anon_sym_continue] = ACTIONS(4543), + [anon_sym_break] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4545), + [anon_sym_continue_AT] = ACTIONS(4545), + [anon_sym_break_AT] = ACTIONS(4545), + [anon_sym_this_AT] = ACTIONS(4545), + [anon_sym_super_AT] = ACTIONS(4545), + [sym_real_literal] = ACTIONS(4545), + [sym_integer_literal] = ACTIONS(4543), + [sym_hex_literal] = ACTIONS(4545), + [sym_bin_literal] = ACTIONS(4545), + [anon_sym_true] = ACTIONS(4543), + [anon_sym_false] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4545), + [sym_null_literal] = ACTIONS(4543), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4545), + }, + [967] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(973), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [968] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(967), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_object] = ACTIONS(4549), + [anon_sym_fun] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_this] = ACTIONS(4549), + [anon_sym_super] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4549), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_when] = ACTIONS(4549), + [anon_sym_try] = ACTIONS(4549), + [anon_sym_throw] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4549), + [anon_sym_continue] = ACTIONS(4549), + [anon_sym_break] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_PLUS_EQ] = ACTIONS(4551), + [anon_sym_DASH_EQ] = ACTIONS(4551), + [anon_sym_STAR_EQ] = ACTIONS(4551), + [anon_sym_SLASH_EQ] = ACTIONS(4551), + [anon_sym_PERCENT_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_suspend] = ACTIONS(4549), + [anon_sym_sealed] = ACTIONS(4549), + [anon_sym_annotation] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_lateinit] = ACTIONS(4549), + [anon_sym_public] = ACTIONS(4549), + [anon_sym_private] = ACTIONS(4549), + [anon_sym_internal] = ACTIONS(4549), + [anon_sym_protected] = ACTIONS(4549), + [anon_sym_tailrec] = ACTIONS(4549), + [anon_sym_operator] = ACTIONS(4549), + [anon_sym_infix] = ACTIONS(4549), + [anon_sym_inline] = ACTIONS(4549), + [anon_sym_external] = ACTIONS(4549), + [sym_property_modifier] = ACTIONS(4549), + [anon_sym_abstract] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_open] = ACTIONS(4549), + [anon_sym_vararg] = ACTIONS(4549), + [anon_sym_noinline] = ACTIONS(4549), + [anon_sym_crossinline] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4551), + [anon_sym_continue_AT] = ACTIONS(4551), + [anon_sym_break_AT] = ACTIONS(4551), + [anon_sym_this_AT] = ACTIONS(4551), + [anon_sym_super_AT] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4551), + [sym_integer_literal] = ACTIONS(4549), + [sym_hex_literal] = ACTIONS(4551), + [sym_bin_literal] = ACTIONS(4551), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [anon_sym_SQUOTE] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4551), + [sym__automatic_semicolon] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4551), + }, + [969] = { + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_object] = ACTIONS(4262), + [anon_sym_fun] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4262), + [anon_sym_super] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_when] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4264), + [anon_sym_continue_AT] = ACTIONS(4264), + [anon_sym_break_AT] = ACTIONS(4264), + [anon_sym_this_AT] = ACTIONS(4264), + [anon_sym_super_AT] = ACTIONS(4264), + [sym_real_literal] = ACTIONS(4264), + [sym_integer_literal] = ACTIONS(4262), + [sym_hex_literal] = ACTIONS(4264), + [sym_bin_literal] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4262), + [anon_sym_false] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4264), + [sym_null_literal] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4264), + }, + [970] = { + [sym_enum_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [971] = { + [sym_class_body] = STATE(1199), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [972] = { + [sym__alpha_identifier] = ACTIONS(4553), + [anon_sym_AT] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_by] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4553), + [anon_sym_where] = ACTIONS(4553), + [anon_sym_object] = ACTIONS(4553), + [anon_sym_fun] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_get] = ACTIONS(4553), + [anon_sym_set] = ACTIONS(4553), + [anon_sym_this] = ACTIONS(4553), + [anon_sym_super] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4553), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4553), + [anon_sym_DOT_DOT] = ACTIONS(4555), + [anon_sym_QMARK_COLON] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_if] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4553), + [anon_sym_when] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4553), + [anon_sym_throw] = ACTIONS(4553), + [anon_sym_return] = ACTIONS(4553), + [anon_sym_continue] = ACTIONS(4553), + [anon_sym_break] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_PLUS_EQ] = ACTIONS(4555), + [anon_sym_DASH_EQ] = ACTIONS(4555), + [anon_sym_STAR_EQ] = ACTIONS(4555), + [anon_sym_SLASH_EQ] = ACTIONS(4555), + [anon_sym_PERCENT_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4555), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4555), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(4553), + [anon_sym_BANGis] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4553), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_as_QMARK] = ACTIONS(4555), + [anon_sym_PLUS_PLUS] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4553), + [anon_sym_BANG_BANG] = ACTIONS(4555), + [anon_sym_suspend] = ACTIONS(4553), + [anon_sym_sealed] = ACTIONS(4553), + [anon_sym_annotation] = ACTIONS(4553), + [anon_sym_data] = ACTIONS(4553), + [anon_sym_inner] = ACTIONS(4553), + [anon_sym_value] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_lateinit] = ACTIONS(4553), + [anon_sym_public] = ACTIONS(4553), + [anon_sym_private] = ACTIONS(4553), + [anon_sym_internal] = ACTIONS(4553), + [anon_sym_protected] = ACTIONS(4553), + [anon_sym_tailrec] = ACTIONS(4553), + [anon_sym_operator] = ACTIONS(4553), + [anon_sym_infix] = ACTIONS(4553), + [anon_sym_inline] = ACTIONS(4553), + [anon_sym_external] = ACTIONS(4553), + [sym_property_modifier] = ACTIONS(4553), + [anon_sym_abstract] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_open] = ACTIONS(4553), + [anon_sym_vararg] = ACTIONS(4553), + [anon_sym_noinline] = ACTIONS(4553), + [anon_sym_crossinline] = ACTIONS(4553), + [anon_sym_expect] = ACTIONS(4553), + [anon_sym_actual] = ACTIONS(4553), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4555), + [anon_sym_continue_AT] = ACTIONS(4555), + [anon_sym_break_AT] = ACTIONS(4555), + [anon_sym_this_AT] = ACTIONS(4555), + [anon_sym_super_AT] = ACTIONS(4555), + [sym_real_literal] = ACTIONS(4555), + [sym_integer_literal] = ACTIONS(4553), + [sym_hex_literal] = ACTIONS(4555), + [sym_bin_literal] = ACTIONS(4555), + [anon_sym_true] = ACTIONS(4553), + [anon_sym_false] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4555), + [sym_null_literal] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4555), + [sym__automatic_semicolon] = ACTIONS(4555), + [sym_safe_nav] = ACTIONS(4555), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4555), + }, + [973] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(973), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4561), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_object] = ACTIONS(4557), + [anon_sym_fun] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_this] = ACTIONS(4557), + [anon_sym_super] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_when] = ACTIONS(4557), + [anon_sym_try] = ACTIONS(4557), + [anon_sym_throw] = ACTIONS(4557), + [anon_sym_return] = ACTIONS(4557), + [anon_sym_continue] = ACTIONS(4557), + [anon_sym_break] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4559), + [anon_sym_continue_AT] = ACTIONS(4559), + [anon_sym_break_AT] = ACTIONS(4559), + [anon_sym_this_AT] = ACTIONS(4559), + [anon_sym_super_AT] = ACTIONS(4559), + [sym_real_literal] = ACTIONS(4559), + [sym_integer_literal] = ACTIONS(4557), + [sym_hex_literal] = ACTIONS(4559), + [sym_bin_literal] = ACTIONS(4559), + [anon_sym_true] = ACTIONS(4557), + [anon_sym_false] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4559), + [sym_null_literal] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4559), + }, + [974] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [975] = { + [sym__alpha_identifier] = ACTIONS(4564), + [anon_sym_AT] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_as] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_by] = ACTIONS(4564), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_where] = ACTIONS(4564), + [anon_sym_object] = ACTIONS(4564), + [anon_sym_fun] = ACTIONS(4564), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_get] = ACTIONS(4564), + [anon_sym_set] = ACTIONS(4564), + [anon_sym_this] = ACTIONS(4564), + [anon_sym_super] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [sym_label] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_DOT_DOT] = ACTIONS(4566), + [anon_sym_QMARK_COLON] = ACTIONS(4566), + [anon_sym_AMP_AMP] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4566), + [anon_sym_if] = ACTIONS(4564), + [anon_sym_else] = ACTIONS(4564), + [anon_sym_when] = ACTIONS(4564), + [anon_sym_try] = ACTIONS(4564), + [anon_sym_throw] = ACTIONS(4564), + [anon_sym_return] = ACTIONS(4564), + [anon_sym_continue] = ACTIONS(4564), + [anon_sym_break] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4566), + [anon_sym_PLUS_EQ] = ACTIONS(4566), + [anon_sym_DASH_EQ] = ACTIONS(4566), + [anon_sym_STAR_EQ] = ACTIONS(4566), + [anon_sym_SLASH_EQ] = ACTIONS(4566), + [anon_sym_PERCENT_EQ] = ACTIONS(4566), + [anon_sym_BANG_EQ] = ACTIONS(4564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4566), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4566), + [anon_sym_BANGin] = ACTIONS(4566), + [anon_sym_is] = ACTIONS(4564), + [anon_sym_BANGis] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4564), + [anon_sym_PERCENT] = ACTIONS(4564), + [anon_sym_as_QMARK] = ACTIONS(4566), + [anon_sym_PLUS_PLUS] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_BANG_BANG] = ACTIONS(4566), + [anon_sym_suspend] = ACTIONS(4564), + [anon_sym_sealed] = ACTIONS(4564), + [anon_sym_annotation] = ACTIONS(4564), + [anon_sym_data] = ACTIONS(4564), + [anon_sym_inner] = ACTIONS(4564), + [anon_sym_value] = ACTIONS(4564), + [anon_sym_override] = ACTIONS(4564), + [anon_sym_lateinit] = ACTIONS(4564), + [anon_sym_public] = ACTIONS(4564), + [anon_sym_private] = ACTIONS(4564), + [anon_sym_internal] = ACTIONS(4564), + [anon_sym_protected] = ACTIONS(4564), + [anon_sym_tailrec] = ACTIONS(4564), + [anon_sym_operator] = ACTIONS(4564), + [anon_sym_infix] = ACTIONS(4564), + [anon_sym_inline] = ACTIONS(4564), + [anon_sym_external] = ACTIONS(4564), + [sym_property_modifier] = ACTIONS(4564), + [anon_sym_abstract] = ACTIONS(4564), + [anon_sym_final] = ACTIONS(4564), + [anon_sym_open] = ACTIONS(4564), + [anon_sym_vararg] = ACTIONS(4564), + [anon_sym_noinline] = ACTIONS(4564), + [anon_sym_crossinline] = ACTIONS(4564), + [anon_sym_expect] = ACTIONS(4564), + [anon_sym_actual] = ACTIONS(4564), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4566), + [anon_sym_continue_AT] = ACTIONS(4566), + [anon_sym_break_AT] = ACTIONS(4566), + [anon_sym_this_AT] = ACTIONS(4566), + [anon_sym_super_AT] = ACTIONS(4566), + [sym_real_literal] = ACTIONS(4566), + [sym_integer_literal] = ACTIONS(4564), + [sym_hex_literal] = ACTIONS(4566), + [sym_bin_literal] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4564), + [anon_sym_false] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4566), + [sym_null_literal] = ACTIONS(4564), + [sym__backtick_identifier] = ACTIONS(4566), + [sym__automatic_semicolon] = ACTIONS(4566), + [sym_safe_nav] = ACTIONS(4566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4566), + }, + [976] = { + [sym__alpha_identifier] = ACTIONS(4568), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_as] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_by] = ACTIONS(4568), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4568), + [anon_sym_where] = ACTIONS(4568), + [anon_sym_object] = ACTIONS(4568), + [anon_sym_fun] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_get] = ACTIONS(4568), + [anon_sym_set] = ACTIONS(4568), + [anon_sym_this] = ACTIONS(4568), + [anon_sym_super] = ACTIONS(4568), + [anon_sym_STAR] = ACTIONS(4568), + [sym_label] = ACTIONS(4568), + [anon_sym_in] = ACTIONS(4568), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_QMARK_COLON] = ACTIONS(4570), + [anon_sym_AMP_AMP] = ACTIONS(4570), + [anon_sym_PIPE_PIPE] = ACTIONS(4570), + [anon_sym_if] = ACTIONS(4568), + [anon_sym_else] = ACTIONS(4568), + [anon_sym_when] = ACTIONS(4568), + [anon_sym_try] = ACTIONS(4568), + [anon_sym_throw] = ACTIONS(4568), + [anon_sym_return] = ACTIONS(4568), + [anon_sym_continue] = ACTIONS(4568), + [anon_sym_break] = ACTIONS(4568), + [anon_sym_COLON_COLON] = ACTIONS(4570), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_PERCENT_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_BANGin] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4568), + [anon_sym_BANGis] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_as_QMARK] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4568), + [anon_sym_BANG_BANG] = ACTIONS(4570), + [anon_sym_suspend] = ACTIONS(4568), + [anon_sym_sealed] = ACTIONS(4568), + [anon_sym_annotation] = ACTIONS(4568), + [anon_sym_data] = ACTIONS(4568), + [anon_sym_inner] = ACTIONS(4568), + [anon_sym_value] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_lateinit] = ACTIONS(4568), + [anon_sym_public] = ACTIONS(4568), + [anon_sym_private] = ACTIONS(4568), + [anon_sym_internal] = ACTIONS(4568), + [anon_sym_protected] = ACTIONS(4568), + [anon_sym_tailrec] = ACTIONS(4568), + [anon_sym_operator] = ACTIONS(4568), + [anon_sym_infix] = ACTIONS(4568), + [anon_sym_inline] = ACTIONS(4568), + [anon_sym_external] = ACTIONS(4568), + [sym_property_modifier] = ACTIONS(4568), + [anon_sym_abstract] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_open] = ACTIONS(4568), + [anon_sym_vararg] = ACTIONS(4568), + [anon_sym_noinline] = ACTIONS(4568), + [anon_sym_crossinline] = ACTIONS(4568), + [anon_sym_expect] = ACTIONS(4568), + [anon_sym_actual] = ACTIONS(4568), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4570), + [anon_sym_continue_AT] = ACTIONS(4570), + [anon_sym_break_AT] = ACTIONS(4570), + [anon_sym_this_AT] = ACTIONS(4570), + [anon_sym_super_AT] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4570), + [sym_integer_literal] = ACTIONS(4568), + [sym_hex_literal] = ACTIONS(4570), + [sym_bin_literal] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4570), + [sym_null_literal] = ACTIONS(4568), + [sym__backtick_identifier] = ACTIONS(4570), + [sym__automatic_semicolon] = ACTIONS(4570), + [sym_safe_nav] = ACTIONS(4570), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4570), + }, + [977] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(4455), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [978] = { + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [979] = { + [sym__alpha_identifier] = ACTIONS(4572), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_as] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_where] = ACTIONS(4572), + [anon_sym_object] = ACTIONS(4572), + [anon_sym_fun] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4572), + [anon_sym_set] = ACTIONS(4572), + [anon_sym_this] = ACTIONS(4572), + [anon_sym_super] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [sym_label] = ACTIONS(4572), + [anon_sym_in] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_when] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_throw] = ACTIONS(4572), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4572), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_suspend] = ACTIONS(4572), + [anon_sym_sealed] = ACTIONS(4572), + [anon_sym_annotation] = ACTIONS(4572), + [anon_sym_data] = ACTIONS(4572), + [anon_sym_inner] = ACTIONS(4572), + [anon_sym_value] = ACTIONS(4572), + [anon_sym_override] = ACTIONS(4572), + [anon_sym_lateinit] = ACTIONS(4572), + [anon_sym_public] = ACTIONS(4572), + [anon_sym_private] = ACTIONS(4572), + [anon_sym_internal] = ACTIONS(4572), + [anon_sym_protected] = ACTIONS(4572), + [anon_sym_tailrec] = ACTIONS(4572), + [anon_sym_operator] = ACTIONS(4572), + [anon_sym_infix] = ACTIONS(4572), + [anon_sym_inline] = ACTIONS(4572), + [anon_sym_external] = ACTIONS(4572), + [sym_property_modifier] = ACTIONS(4572), + [anon_sym_abstract] = ACTIONS(4572), + [anon_sym_final] = ACTIONS(4572), + [anon_sym_open] = ACTIONS(4572), + [anon_sym_vararg] = ACTIONS(4572), + [anon_sym_noinline] = ACTIONS(4572), + [anon_sym_crossinline] = ACTIONS(4572), + [anon_sym_expect] = ACTIONS(4572), + [anon_sym_actual] = ACTIONS(4572), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4575), + [anon_sym_continue_AT] = ACTIONS(4575), + [anon_sym_break_AT] = ACTIONS(4575), + [anon_sym_this_AT] = ACTIONS(4575), + [anon_sym_super_AT] = ACTIONS(4575), + [sym_real_literal] = ACTIONS(4575), + [sym_integer_literal] = ACTIONS(4572), + [sym_hex_literal] = ACTIONS(4575), + [sym_bin_literal] = ACTIONS(4575), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_SQUOTE] = ACTIONS(4575), + [sym_null_literal] = ACTIONS(4572), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4575), + }, + [980] = { + [sym__alpha_identifier] = ACTIONS(4578), + [anon_sym_AT] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_as] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_where] = ACTIONS(4578), + [anon_sym_object] = ACTIONS(4578), + [anon_sym_fun] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_get] = ACTIONS(4578), + [anon_sym_set] = ACTIONS(4578), + [anon_sym_this] = ACTIONS(4578), + [anon_sym_super] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4578), + [sym_label] = ACTIONS(4578), + [anon_sym_in] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4580), + [anon_sym_QMARK_COLON] = ACTIONS(4580), + [anon_sym_AMP_AMP] = ACTIONS(4580), + [anon_sym_PIPE_PIPE] = ACTIONS(4580), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_when] = ACTIONS(4578), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_throw] = ACTIONS(4578), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_PERCENT_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4580), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_BANGin] = ACTIONS(4580), + [anon_sym_is] = ACTIONS(4578), + [anon_sym_BANGis] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_as_QMARK] = ACTIONS(4580), + [anon_sym_PLUS_PLUS] = ACTIONS(4580), + [anon_sym_DASH_DASH] = ACTIONS(4580), + [anon_sym_BANG] = ACTIONS(4578), + [anon_sym_BANG_BANG] = ACTIONS(4580), + [anon_sym_suspend] = ACTIONS(4578), + [anon_sym_sealed] = ACTIONS(4578), + [anon_sym_annotation] = ACTIONS(4578), + [anon_sym_data] = ACTIONS(4578), + [anon_sym_inner] = ACTIONS(4578), + [anon_sym_value] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_lateinit] = ACTIONS(4578), + [anon_sym_public] = ACTIONS(4578), + [anon_sym_private] = ACTIONS(4578), + [anon_sym_internal] = ACTIONS(4578), + [anon_sym_protected] = ACTIONS(4578), + [anon_sym_tailrec] = ACTIONS(4578), + [anon_sym_operator] = ACTIONS(4578), + [anon_sym_infix] = ACTIONS(4578), + [anon_sym_inline] = ACTIONS(4578), + [anon_sym_external] = ACTIONS(4578), + [sym_property_modifier] = ACTIONS(4578), + [anon_sym_abstract] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_open] = ACTIONS(4578), + [anon_sym_vararg] = ACTIONS(4578), + [anon_sym_noinline] = ACTIONS(4578), + [anon_sym_crossinline] = ACTIONS(4578), + [anon_sym_expect] = ACTIONS(4578), + [anon_sym_actual] = ACTIONS(4578), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4580), + [anon_sym_continue_AT] = ACTIONS(4580), + [anon_sym_break_AT] = ACTIONS(4580), + [anon_sym_this_AT] = ACTIONS(4580), + [anon_sym_super_AT] = ACTIONS(4580), + [sym_real_literal] = ACTIONS(4580), + [sym_integer_literal] = ACTIONS(4578), + [sym_hex_literal] = ACTIONS(4580), + [sym_bin_literal] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4580), + [sym_null_literal] = ACTIONS(4578), + [sym__backtick_identifier] = ACTIONS(4580), + [sym__automatic_semicolon] = ACTIONS(4580), + [sym_safe_nav] = ACTIONS(4580), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4580), + }, + [981] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [982] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [983] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [984] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [985] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [986] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [987] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [988] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [989] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [990] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [991] = { + [sym_class_body] = STATE(1177), + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_object] = ACTIONS(4582), + [anon_sym_fun] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_this] = ACTIONS(4582), + [anon_sym_super] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [sym_label] = ACTIONS(4582), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_when] = ACTIONS(4582), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_throw] = ACTIONS(4582), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_suspend] = ACTIONS(4582), + [anon_sym_sealed] = ACTIONS(4582), + [anon_sym_annotation] = ACTIONS(4582), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_override] = ACTIONS(4582), + [anon_sym_lateinit] = ACTIONS(4582), + [anon_sym_public] = ACTIONS(4582), + [anon_sym_private] = ACTIONS(4582), + [anon_sym_internal] = ACTIONS(4582), + [anon_sym_protected] = ACTIONS(4582), + [anon_sym_tailrec] = ACTIONS(4582), + [anon_sym_operator] = ACTIONS(4582), + [anon_sym_infix] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4582), + [anon_sym_external] = ACTIONS(4582), + [sym_property_modifier] = ACTIONS(4582), + [anon_sym_abstract] = ACTIONS(4582), + [anon_sym_final] = ACTIONS(4582), + [anon_sym_open] = ACTIONS(4582), + [anon_sym_vararg] = ACTIONS(4582), + [anon_sym_noinline] = ACTIONS(4582), + [anon_sym_crossinline] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4584), + [anon_sym_continue_AT] = ACTIONS(4584), + [anon_sym_break_AT] = ACTIONS(4584), + [anon_sym_this_AT] = ACTIONS(4584), + [anon_sym_super_AT] = ACTIONS(4584), + [sym_real_literal] = ACTIONS(4584), + [sym_integer_literal] = ACTIONS(4582), + [sym_hex_literal] = ACTIONS(4584), + [sym_bin_literal] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_SQUOTE] = ACTIONS(4584), + [sym_null_literal] = ACTIONS(4582), + [sym__backtick_identifier] = ACTIONS(4584), + [sym__automatic_semicolon] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4584), + }, + [992] = { + [sym_enum_class_body] = STATE(1175), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [993] = { + [sym_class_body] = STATE(1175), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [994] = { + [sym_enum_class_body] = STATE(1166), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_object] = ACTIONS(4386), + [anon_sym_fun] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_this] = ACTIONS(4386), + [anon_sym_super] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4386), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_when] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4388), + [anon_sym_continue_AT] = ACTIONS(4388), + [anon_sym_break_AT] = ACTIONS(4388), + [anon_sym_this_AT] = ACTIONS(4388), + [anon_sym_super_AT] = ACTIONS(4388), + [sym_real_literal] = ACTIONS(4388), + [sym_integer_literal] = ACTIONS(4386), + [sym_hex_literal] = ACTIONS(4388), + [sym_bin_literal] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_SQUOTE] = ACTIONS(4388), + [sym_null_literal] = ACTIONS(4386), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4388), + }, + [995] = { + [sym__alpha_identifier] = ACTIONS(4586), + [anon_sym_AT] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_as] = ACTIONS(4586), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_by] = ACTIONS(4586), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_where] = ACTIONS(4586), + [anon_sym_object] = ACTIONS(4586), + [anon_sym_fun] = ACTIONS(4586), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_get] = ACTIONS(4586), + [anon_sym_set] = ACTIONS(4586), + [anon_sym_this] = ACTIONS(4586), + [anon_sym_super] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4586), + [sym_label] = ACTIONS(4586), + [anon_sym_in] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4588), + [anon_sym_QMARK_COLON] = ACTIONS(4588), + [anon_sym_AMP_AMP] = ACTIONS(4588), + [anon_sym_PIPE_PIPE] = ACTIONS(4588), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_when] = ACTIONS(4586), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_throw] = ACTIONS(4586), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym_PLUS_EQ] = ACTIONS(4588), + [anon_sym_DASH_EQ] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4588), + [anon_sym_SLASH_EQ] = ACTIONS(4588), + [anon_sym_PERCENT_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4586), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4588), + [anon_sym_EQ_EQ] = ACTIONS(4586), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4588), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_BANGin] = ACTIONS(4588), + [anon_sym_is] = ACTIONS(4586), + [anon_sym_BANGis] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_PERCENT] = ACTIONS(4586), + [anon_sym_as_QMARK] = ACTIONS(4588), + [anon_sym_PLUS_PLUS] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_BANG_BANG] = ACTIONS(4588), + [anon_sym_suspend] = ACTIONS(4586), + [anon_sym_sealed] = ACTIONS(4586), + [anon_sym_annotation] = ACTIONS(4586), + [anon_sym_data] = ACTIONS(4586), + [anon_sym_inner] = ACTIONS(4586), + [anon_sym_value] = ACTIONS(4586), + [anon_sym_override] = ACTIONS(4586), + [anon_sym_lateinit] = ACTIONS(4586), + [anon_sym_public] = ACTIONS(4586), + [anon_sym_private] = ACTIONS(4586), + [anon_sym_internal] = ACTIONS(4586), + [anon_sym_protected] = ACTIONS(4586), + [anon_sym_tailrec] = ACTIONS(4586), + [anon_sym_operator] = ACTIONS(4586), + [anon_sym_infix] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym_external] = ACTIONS(4586), + [sym_property_modifier] = ACTIONS(4586), + [anon_sym_abstract] = ACTIONS(4586), + [anon_sym_final] = ACTIONS(4586), + [anon_sym_open] = ACTIONS(4586), + [anon_sym_vararg] = ACTIONS(4586), + [anon_sym_noinline] = ACTIONS(4586), + [anon_sym_crossinline] = ACTIONS(4586), + [anon_sym_expect] = ACTIONS(4586), + [anon_sym_actual] = ACTIONS(4586), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4588), + [anon_sym_continue_AT] = ACTIONS(4588), + [anon_sym_break_AT] = ACTIONS(4588), + [anon_sym_this_AT] = ACTIONS(4588), + [anon_sym_super_AT] = ACTIONS(4588), + [sym_real_literal] = ACTIONS(4588), + [sym_integer_literal] = ACTIONS(4586), + [sym_hex_literal] = ACTIONS(4588), + [sym_bin_literal] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4588), + [sym_null_literal] = ACTIONS(4586), + [sym__backtick_identifier] = ACTIONS(4588), + [sym__automatic_semicolon] = ACTIONS(4588), + [sym_safe_nav] = ACTIONS(4588), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4588), + }, + [996] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_get] = ACTIONS(4594), + [anon_sym_set] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [997] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4622), + [anon_sym_get] = ACTIONS(4594), + [anon_sym_set] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [998] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4624), + [anon_sym_get] = ACTIONS(4594), + [anon_sym_set] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [999] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4626), + [anon_sym_get] = ACTIONS(4594), + [anon_sym_set] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1000] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_get] = ACTIONS(4594), + [anon_sym_set] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1001] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4630), + [anon_sym_get] = ACTIONS(4594), + [anon_sym_set] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1002] = { + [sym_enum_class_body] = STATE(1132), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_object] = ACTIONS(4632), + [anon_sym_fun] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_this] = ACTIONS(4632), + [anon_sym_super] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_when] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4634), + [anon_sym_continue_AT] = ACTIONS(4634), + [anon_sym_break_AT] = ACTIONS(4634), + [anon_sym_this_AT] = ACTIONS(4634), + [anon_sym_super_AT] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4634), + [sym_integer_literal] = ACTIONS(4632), + [sym_hex_literal] = ACTIONS(4634), + [sym_bin_literal] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_SQUOTE] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4634), + }, + [1003] = { + [sym_class_body] = STATE(1132), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_object] = ACTIONS(4632), + [anon_sym_fun] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_this] = ACTIONS(4632), + [anon_sym_super] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_when] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4634), + [anon_sym_continue_AT] = ACTIONS(4634), + [anon_sym_break_AT] = ACTIONS(4634), + [anon_sym_this_AT] = ACTIONS(4634), + [anon_sym_super_AT] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4634), + [sym_integer_literal] = ACTIONS(4632), + [sym_hex_literal] = ACTIONS(4634), + [sym_bin_literal] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_SQUOTE] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4634), + }, + [1004] = { + [sym__alpha_identifier] = ACTIONS(4636), + [anon_sym_AT] = ACTIONS(4638), + [anon_sym_COLON] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_as] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_where] = ACTIONS(4636), + [anon_sym_object] = ACTIONS(4636), + [anon_sym_fun] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym_get] = ACTIONS(4636), + [anon_sym_set] = ACTIONS(4636), + [anon_sym_this] = ACTIONS(4636), + [anon_sym_super] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4636), + [sym_label] = ACTIONS(4636), + [anon_sym_in] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4638), + [anon_sym_QMARK_COLON] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_PIPE_PIPE] = ACTIONS(4638), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_when] = ACTIONS(4636), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_throw] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_PERCENT_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4636), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_BANGin] = ACTIONS(4638), + [anon_sym_is] = ACTIONS(4636), + [anon_sym_BANGis] = ACTIONS(4638), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(4636), + [anon_sym_as_QMARK] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_BANG_BANG] = ACTIONS(4638), + [anon_sym_suspend] = ACTIONS(4636), + [anon_sym_sealed] = ACTIONS(4636), + [anon_sym_annotation] = ACTIONS(4636), + [anon_sym_data] = ACTIONS(4636), + [anon_sym_inner] = ACTIONS(4636), + [anon_sym_value] = ACTIONS(4636), + [anon_sym_override] = ACTIONS(4636), + [anon_sym_lateinit] = ACTIONS(4636), + [anon_sym_public] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4636), + [anon_sym_internal] = ACTIONS(4636), + [anon_sym_protected] = ACTIONS(4636), + [anon_sym_tailrec] = ACTIONS(4636), + [anon_sym_operator] = ACTIONS(4636), + [anon_sym_infix] = ACTIONS(4636), + [anon_sym_inline] = ACTIONS(4636), + [anon_sym_external] = ACTIONS(4636), + [sym_property_modifier] = ACTIONS(4636), + [anon_sym_abstract] = ACTIONS(4636), + [anon_sym_final] = ACTIONS(4636), + [anon_sym_open] = ACTIONS(4636), + [anon_sym_vararg] = ACTIONS(4636), + [anon_sym_noinline] = ACTIONS(4636), + [anon_sym_crossinline] = ACTIONS(4636), + [anon_sym_expect] = ACTIONS(4636), + [anon_sym_actual] = ACTIONS(4636), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4638), + [anon_sym_continue_AT] = ACTIONS(4638), + [anon_sym_break_AT] = ACTIONS(4638), + [anon_sym_this_AT] = ACTIONS(4638), + [anon_sym_super_AT] = ACTIONS(4638), + [sym_real_literal] = ACTIONS(4638), + [sym_integer_literal] = ACTIONS(4636), + [sym_hex_literal] = ACTIONS(4638), + [sym_bin_literal] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_SQUOTE] = ACTIONS(4638), + [sym_null_literal] = ACTIONS(4636), + [sym__backtick_identifier] = ACTIONS(4638), + [sym__automatic_semicolon] = ACTIONS(4638), + [sym_safe_nav] = ACTIONS(4638), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4638), + }, + [1005] = { + [sym_class_body] = STATE(1071), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [1006] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [1007] = { + [sym_enum_class_body] = STATE(1145), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [anon_sym_this_AT] = ACTIONS(4392), + [anon_sym_super_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym_null_literal] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), + }, + [1008] = { + [sym__alpha_identifier] = ACTIONS(4640), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_as] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_where] = ACTIONS(4640), + [anon_sym_object] = ACTIONS(4640), + [anon_sym_fun] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_get] = ACTIONS(4640), + [anon_sym_set] = ACTIONS(4640), + [anon_sym_this] = ACTIONS(4640), + [anon_sym_super] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4640), + [sym_label] = ACTIONS(4640), + [anon_sym_in] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4642), + [anon_sym_QMARK_COLON] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_PIPE_PIPE] = ACTIONS(4642), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_when] = ACTIONS(4640), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_throw] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_PERCENT_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4640), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ] = ACTIONS(4640), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4642), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_BANGin] = ACTIONS(4642), + [anon_sym_is] = ACTIONS(4640), + [anon_sym_BANGis] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_PERCENT] = ACTIONS(4640), + [anon_sym_as_QMARK] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_BANG_BANG] = ACTIONS(4642), + [anon_sym_suspend] = ACTIONS(4640), + [anon_sym_sealed] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4640), + [anon_sym_data] = ACTIONS(4640), + [anon_sym_inner] = ACTIONS(4640), + [anon_sym_value] = ACTIONS(4640), + [anon_sym_override] = ACTIONS(4640), + [anon_sym_lateinit] = ACTIONS(4640), + [anon_sym_public] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4640), + [anon_sym_internal] = ACTIONS(4640), + [anon_sym_protected] = ACTIONS(4640), + [anon_sym_tailrec] = ACTIONS(4640), + [anon_sym_operator] = ACTIONS(4640), + [anon_sym_infix] = ACTIONS(4640), + [anon_sym_inline] = ACTIONS(4640), + [anon_sym_external] = ACTIONS(4640), + [sym_property_modifier] = ACTIONS(4640), + [anon_sym_abstract] = ACTIONS(4640), + [anon_sym_final] = ACTIONS(4640), + [anon_sym_open] = ACTIONS(4640), + [anon_sym_vararg] = ACTIONS(4640), + [anon_sym_noinline] = ACTIONS(4640), + [anon_sym_crossinline] = ACTIONS(4640), + [anon_sym_expect] = ACTIONS(4640), + [anon_sym_actual] = ACTIONS(4640), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4642), + [anon_sym_continue_AT] = ACTIONS(4642), + [anon_sym_break_AT] = ACTIONS(4642), + [anon_sym_this_AT] = ACTIONS(4642), + [anon_sym_super_AT] = ACTIONS(4642), + [sym_real_literal] = ACTIONS(4642), + [sym_integer_literal] = ACTIONS(4640), + [sym_hex_literal] = ACTIONS(4642), + [sym_bin_literal] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_SQUOTE] = ACTIONS(4642), + [sym_null_literal] = ACTIONS(4640), + [sym__backtick_identifier] = ACTIONS(4642), + [sym__automatic_semicolon] = ACTIONS(4642), + [sym_safe_nav] = ACTIONS(4642), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4642), + }, + [1009] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [1010] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [1011] = { + [sym_function_body] = STATE(1213), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [1012] = { + [sym__alpha_identifier] = ACTIONS(4648), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_by] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_where] = ACTIONS(4648), + [anon_sym_object] = ACTIONS(4648), + [anon_sym_fun] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4648), + [anon_sym_set] = ACTIONS(4648), + [anon_sym_this] = ACTIONS(4648), + [anon_sym_super] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4650), + [anon_sym_QMARK_COLON] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_PIPE_PIPE] = ACTIONS(4650), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_when] = ACTIONS(4648), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_throw] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_PERCENT_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), + [anon_sym_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_BANGin] = ACTIONS(4650), + [anon_sym_is] = ACTIONS(4648), + [anon_sym_BANGis] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_BANG_BANG] = ACTIONS(4650), + [anon_sym_suspend] = ACTIONS(4648), + [anon_sym_sealed] = ACTIONS(4648), + [anon_sym_annotation] = ACTIONS(4648), + [anon_sym_data] = ACTIONS(4648), + [anon_sym_inner] = ACTIONS(4648), + [anon_sym_value] = ACTIONS(4648), + [anon_sym_override] = ACTIONS(4648), + [anon_sym_lateinit] = ACTIONS(4648), + [anon_sym_public] = ACTIONS(4648), + [anon_sym_private] = ACTIONS(4648), + [anon_sym_internal] = ACTIONS(4648), + [anon_sym_protected] = ACTIONS(4648), + [anon_sym_tailrec] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_infix] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym_external] = ACTIONS(4648), + [sym_property_modifier] = ACTIONS(4648), + [anon_sym_abstract] = ACTIONS(4648), + [anon_sym_final] = ACTIONS(4648), + [anon_sym_open] = ACTIONS(4648), + [anon_sym_vararg] = ACTIONS(4648), + [anon_sym_noinline] = ACTIONS(4648), + [anon_sym_crossinline] = ACTIONS(4648), + [anon_sym_expect] = ACTIONS(4648), + [anon_sym_actual] = ACTIONS(4648), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4650), + [anon_sym_continue_AT] = ACTIONS(4650), + [anon_sym_break_AT] = ACTIONS(4650), + [anon_sym_this_AT] = ACTIONS(4650), + [anon_sym_super_AT] = ACTIONS(4650), + [sym_real_literal] = ACTIONS(4650), + [sym_integer_literal] = ACTIONS(4648), + [sym_hex_literal] = ACTIONS(4650), + [sym_bin_literal] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4650), + [sym_null_literal] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4650), + [sym__automatic_semicolon] = ACTIONS(4650), + [sym_safe_nav] = ACTIONS(4650), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4650), + }, + [1013] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [1014] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [anon_sym_AT2] = ACTIONS(4656), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_null_literal] = ACTIONS(4652), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), + }, + [1015] = { + [sym_function_body] = STATE(1058), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4658), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [1016] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym_null_literal] = ACTIONS(4660), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), + }, + [1017] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1018] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1019] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_object] = ACTIONS(4672), + [anon_sym_fun] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_this] = ACTIONS(4672), + [anon_sym_super] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_when] = ACTIONS(4672), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_throw] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4674), + [anon_sym_continue_AT] = ACTIONS(4674), + [anon_sym_break_AT] = ACTIONS(4674), + [anon_sym_this_AT] = ACTIONS(4674), + [anon_sym_super_AT] = ACTIONS(4674), + [sym_real_literal] = ACTIONS(4674), + [sym_integer_literal] = ACTIONS(4672), + [sym_hex_literal] = ACTIONS(4674), + [sym_bin_literal] = ACTIONS(4674), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym_null_literal] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4674), + }, + [1020] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1021] = { + [sym_enum_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [1022] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [1023] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_COMMA] = ACTIONS(4680), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4680), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4680), + [anon_sym_QMARK_COLON] = ACTIONS(4680), + [anon_sym_AMP_AMP] = ACTIONS(4680), + [anon_sym_PIPE_PIPE] = ACTIONS(4680), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_PLUS_EQ] = ACTIONS(4680), + [anon_sym_DASH_EQ] = ACTIONS(4680), + [anon_sym_STAR_EQ] = ACTIONS(4680), + [anon_sym_SLASH_EQ] = ACTIONS(4680), + [anon_sym_PERCENT_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4680), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_BANGin] = ACTIONS(4680), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4680), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4680), + [anon_sym_PLUS_PLUS] = ACTIONS(4680), + [anon_sym_DASH_DASH] = ACTIONS(4680), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4680), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4680), + [anon_sym_continue_AT] = ACTIONS(4680), + [anon_sym_break_AT] = ACTIONS(4680), + [anon_sym_this_AT] = ACTIONS(4680), + [anon_sym_super_AT] = ACTIONS(4680), + [sym_real_literal] = ACTIONS(4680), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4680), + [sym_bin_literal] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4680), + [sym_null_literal] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4680), + [sym__automatic_semicolon] = ACTIONS(4680), + [sym_safe_nav] = ACTIONS(4680), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4680), + }, + [1024] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_by] = ACTIONS(4682), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_object] = ACTIONS(4682), + [anon_sym_fun] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_this] = ACTIONS(4682), + [anon_sym_super] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_when] = ACTIONS(4682), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_throw] = ACTIONS(4682), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_value] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4684), + [anon_sym_continue_AT] = ACTIONS(4684), + [anon_sym_break_AT] = ACTIONS(4684), + [anon_sym_this_AT] = ACTIONS(4684), + [anon_sym_super_AT] = ACTIONS(4684), + [sym_real_literal] = ACTIONS(4684), + [sym_integer_literal] = ACTIONS(4682), + [sym_hex_literal] = ACTIONS(4684), + [sym_bin_literal] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_SQUOTE] = ACTIONS(4684), + [sym_null_literal] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4684), + [sym__automatic_semicolon] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4684), + }, + [1025] = { + [sym__alpha_identifier] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_by] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_where] = ACTIONS(4686), + [anon_sym_object] = ACTIONS(4686), + [anon_sym_fun] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4686), + [anon_sym_this] = ACTIONS(4686), + [anon_sym_super] = ACTIONS(4686), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4688), + [anon_sym_QMARK_COLON] = ACTIONS(4688), + [anon_sym_AMP_AMP] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4688), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_when] = ACTIONS(4686), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_throw] = ACTIONS(4686), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_PERCENT_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_BANGin] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_BANGis] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4688), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4688), + [anon_sym_suspend] = ACTIONS(4686), + [anon_sym_sealed] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4686), + [anon_sym_inner] = ACTIONS(4686), + [anon_sym_value] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_lateinit] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_protected] = ACTIONS(4686), + [anon_sym_tailrec] = ACTIONS(4686), + [anon_sym_operator] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_inline] = ACTIONS(4686), + [anon_sym_external] = ACTIONS(4686), + [sym_property_modifier] = ACTIONS(4686), + [anon_sym_abstract] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_vararg] = ACTIONS(4686), + [anon_sym_noinline] = ACTIONS(4686), + [anon_sym_crossinline] = ACTIONS(4686), + [anon_sym_expect] = ACTIONS(4686), + [anon_sym_actual] = ACTIONS(4686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4688), + [anon_sym_continue_AT] = ACTIONS(4688), + [anon_sym_break_AT] = ACTIONS(4688), + [anon_sym_this_AT] = ACTIONS(4688), + [anon_sym_super_AT] = ACTIONS(4688), + [sym_real_literal] = ACTIONS(4688), + [sym_integer_literal] = ACTIONS(4686), + [sym_hex_literal] = ACTIONS(4688), + [sym_bin_literal] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_SQUOTE] = ACTIONS(4688), + [sym_null_literal] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4688), + [sym__automatic_semicolon] = ACTIONS(4688), + [sym_safe_nav] = ACTIONS(4688), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4688), + }, + [1026] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym_null_literal] = ACTIONS(4690), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [1027] = { + [sym_enum_class_body] = STATE(1093), + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_object] = ACTIONS(4694), + [anon_sym_fun] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_this] = ACTIONS(4694), + [anon_sym_super] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_when] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_throw] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_AT] = ACTIONS(4696), + [anon_sym_this_AT] = ACTIONS(4696), + [anon_sym_super_AT] = ACTIONS(4696), + [sym_real_literal] = ACTIONS(4696), + [sym_integer_literal] = ACTIONS(4694), + [sym_hex_literal] = ACTIONS(4696), + [sym_bin_literal] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4696), + [sym_null_literal] = ACTIONS(4694), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), + }, + [1028] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_object] = ACTIONS(4698), + [anon_sym_fun] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_this] = ACTIONS(4698), + [anon_sym_super] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_when] = ACTIONS(4698), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_throw] = ACTIONS(4698), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_suspend] = ACTIONS(4698), + [anon_sym_sealed] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_value] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_lateinit] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4698), + [anon_sym_tailrec] = ACTIONS(4698), + [anon_sym_operator] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_inline] = ACTIONS(4698), + [anon_sym_external] = ACTIONS(4698), + [sym_property_modifier] = ACTIONS(4698), + [anon_sym_abstract] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_vararg] = ACTIONS(4698), + [anon_sym_noinline] = ACTIONS(4698), + [anon_sym_crossinline] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4700), + [anon_sym_continue_AT] = ACTIONS(4700), + [anon_sym_break_AT] = ACTIONS(4700), + [anon_sym_this_AT] = ACTIONS(4700), + [anon_sym_super_AT] = ACTIONS(4700), + [sym_real_literal] = ACTIONS(4700), + [sym_integer_literal] = ACTIONS(4698), + [sym_hex_literal] = ACTIONS(4700), + [sym_bin_literal] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_SQUOTE] = ACTIONS(4700), + [sym_null_literal] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4700), + [sym__automatic_semicolon] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4700), + }, + [1029] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4702), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1030] = { + [sym__alpha_identifier] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_DOT] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_by] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_where] = ACTIONS(4704), + [anon_sym_object] = ACTIONS(4704), + [anon_sym_fun] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_get] = ACTIONS(4704), + [anon_sym_set] = ACTIONS(4704), + [anon_sym_this] = ACTIONS(4704), + [anon_sym_super] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4704), + [anon_sym_DOT_DOT] = ACTIONS(4707), + [anon_sym_QMARK_COLON] = ACTIONS(4707), + [anon_sym_AMP_AMP] = ACTIONS(4707), + [anon_sym_PIPE_PIPE] = ACTIONS(4707), + [anon_sym_if] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4704), + [anon_sym_when] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4704), + [anon_sym_throw] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4704), + [anon_sym_continue] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4704), + [anon_sym_COLON_COLON] = ACTIONS(4707), + [anon_sym_PLUS_EQ] = ACTIONS(4707), + [anon_sym_DASH_EQ] = ACTIONS(4707), + [anon_sym_STAR_EQ] = ACTIONS(4707), + [anon_sym_SLASH_EQ] = ACTIONS(4707), + [anon_sym_PERCENT_EQ] = ACTIONS(4707), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), + [anon_sym_LT_EQ] = ACTIONS(4707), + [anon_sym_GT_EQ] = ACTIONS(4707), + [anon_sym_BANGin] = ACTIONS(4707), + [anon_sym_is] = ACTIONS(4704), + [anon_sym_BANGis] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_as_QMARK] = ACTIONS(4707), + [anon_sym_PLUS_PLUS] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_BANG_BANG] = ACTIONS(4707), + [anon_sym_suspend] = ACTIONS(4704), + [anon_sym_sealed] = ACTIONS(4704), + [anon_sym_annotation] = ACTIONS(4704), + [anon_sym_data] = ACTIONS(4704), + [anon_sym_inner] = ACTIONS(4704), + [anon_sym_value] = ACTIONS(4704), + [anon_sym_override] = ACTIONS(4704), + [anon_sym_lateinit] = ACTIONS(4704), + [anon_sym_public] = ACTIONS(4704), + [anon_sym_private] = ACTIONS(4704), + [anon_sym_internal] = ACTIONS(4704), + [anon_sym_protected] = ACTIONS(4704), + [anon_sym_tailrec] = ACTIONS(4704), + [anon_sym_operator] = ACTIONS(4704), + [anon_sym_infix] = ACTIONS(4704), + [anon_sym_inline] = ACTIONS(4704), + [anon_sym_external] = ACTIONS(4704), + [sym_property_modifier] = ACTIONS(4704), + [anon_sym_abstract] = ACTIONS(4704), + [anon_sym_final] = ACTIONS(4704), + [anon_sym_open] = ACTIONS(4704), + [anon_sym_vararg] = ACTIONS(4704), + [anon_sym_noinline] = ACTIONS(4704), + [anon_sym_crossinline] = ACTIONS(4704), + [anon_sym_expect] = ACTIONS(4704), + [anon_sym_actual] = ACTIONS(4704), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4707), + [anon_sym_continue_AT] = ACTIONS(4707), + [anon_sym_break_AT] = ACTIONS(4707), + [anon_sym_this_AT] = ACTIONS(4707), + [anon_sym_super_AT] = ACTIONS(4707), + [sym_real_literal] = ACTIONS(4707), + [sym_integer_literal] = ACTIONS(4704), + [sym_hex_literal] = ACTIONS(4707), + [sym_bin_literal] = ACTIONS(4707), + [anon_sym_true] = ACTIONS(4704), + [anon_sym_false] = ACTIONS(4704), + [anon_sym_SQUOTE] = ACTIONS(4707), + [sym_null_literal] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4707), + [sym__automatic_semicolon] = ACTIONS(4707), + [sym_safe_nav] = ACTIONS(4707), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4707), + }, + [1031] = { + [sym_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [1032] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_by] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym_null_literal] = ACTIONS(4710), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), + }, + [1033] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1034] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_get] = ACTIONS(4666), + [anon_sym_set] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1035] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_object] = ACTIONS(4718), + [anon_sym_fun] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_this] = ACTIONS(4718), + [anon_sym_super] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_when] = ACTIONS(4718), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_throw] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4720), + [anon_sym_continue_AT] = ACTIONS(4720), + [anon_sym_break_AT] = ACTIONS(4720), + [anon_sym_this_AT] = ACTIONS(4720), + [anon_sym_super_AT] = ACTIONS(4720), + [sym_real_literal] = ACTIONS(4720), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4720), + [sym_bin_literal] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4720), + [sym_null_literal] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4720), + }, + [1036] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1543), + [sym__in_operator] = STATE(1544), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1551), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1556), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(4479), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(4483), + [anon_sym_DOT_DOT] = ACTIONS(4485), + [anon_sym_QMARK_COLON] = ACTIONS(4487), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4491), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_null_literal] = ACTIONS(3088), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1037] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1038] = { + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [1039] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [1040] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym_null_literal] = ACTIONS(4732), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), + }, + [1041] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(4740), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [1042] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4742), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [1043] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(4744), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [1044] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_object] = ACTIONS(4746), + [anon_sym_fun] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_this] = ACTIONS(4746), + [anon_sym_super] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4746), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4746), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_when] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4746), + [anon_sym_throw] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4746), + [anon_sym_continue] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4748), + [anon_sym_continue_AT] = ACTIONS(4748), + [anon_sym_break_AT] = ACTIONS(4748), + [anon_sym_this_AT] = ACTIONS(4748), + [anon_sym_super_AT] = ACTIONS(4748), + [sym_real_literal] = ACTIONS(4748), + [sym_integer_literal] = ACTIONS(4746), + [sym_hex_literal] = ACTIONS(4748), + [sym_bin_literal] = ACTIONS(4748), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4748), + [sym_null_literal] = ACTIONS(4746), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4748), + }, + [1045] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_object] = ACTIONS(4750), + [anon_sym_fun] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_this] = ACTIONS(4750), + [anon_sym_super] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4750), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4750), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_when] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4750), + [anon_sym_throw] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4750), + [anon_sym_continue] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4752), + [anon_sym_continue_AT] = ACTIONS(4752), + [anon_sym_break_AT] = ACTIONS(4752), + [anon_sym_this_AT] = ACTIONS(4752), + [anon_sym_super_AT] = ACTIONS(4752), + [sym_real_literal] = ACTIONS(4752), + [sym_integer_literal] = ACTIONS(4750), + [sym_hex_literal] = ACTIONS(4752), + [sym_bin_literal] = ACTIONS(4752), + [anon_sym_true] = ACTIONS(4750), + [anon_sym_false] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4752), + [sym_null_literal] = ACTIONS(4750), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4752), + }, + [1046] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_when] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_throw] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_continue] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_AT] = ACTIONS(4756), + [anon_sym_this_AT] = ACTIONS(4756), + [anon_sym_super_AT] = ACTIONS(4756), + [sym_real_literal] = ACTIONS(4756), + [sym_integer_literal] = ACTIONS(4754), + [sym_hex_literal] = ACTIONS(4756), + [sym_bin_literal] = ACTIONS(4756), + [anon_sym_true] = ACTIONS(4754), + [anon_sym_false] = ACTIONS(4754), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym_null_literal] = ACTIONS(4754), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4756), + }, + [1047] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_object] = ACTIONS(4758), + [anon_sym_fun] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_this] = ACTIONS(4758), + [anon_sym_super] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4758), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4758), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_when] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4758), + [anon_sym_throw] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4758), + [anon_sym_continue] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_AT] = ACTIONS(4760), + [anon_sym_this_AT] = ACTIONS(4760), + [anon_sym_super_AT] = ACTIONS(4760), + [sym_real_literal] = ACTIONS(4760), + [sym_integer_literal] = ACTIONS(4758), + [sym_hex_literal] = ACTIONS(4760), + [sym_bin_literal] = ACTIONS(4760), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [anon_sym_SQUOTE] = ACTIONS(4760), + [sym_null_literal] = ACTIONS(4758), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4760), + }, + [1048] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_BANG_BANG] = ACTIONS(4764), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4764), + [anon_sym_continue_AT] = ACTIONS(4764), + [anon_sym_break_AT] = ACTIONS(4764), + [anon_sym_this_AT] = ACTIONS(4764), + [anon_sym_super_AT] = ACTIONS(4764), + [sym_real_literal] = ACTIONS(4764), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4764), + [sym_bin_literal] = ACTIONS(4764), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4764), + [sym_null_literal] = ACTIONS(4762), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4764), + }, + [1049] = { + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_object] = ACTIONS(4766), + [anon_sym_fun] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_this] = ACTIONS(4766), + [anon_sym_super] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [sym_label] = ACTIONS(4766), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4766), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_when] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4766), + [anon_sym_throw] = ACTIONS(4766), + [anon_sym_return] = ACTIONS(4766), + [anon_sym_continue] = ACTIONS(4766), + [anon_sym_break] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4766), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_suspend] = ACTIONS(4766), + [anon_sym_sealed] = ACTIONS(4766), + [anon_sym_annotation] = ACTIONS(4766), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_value] = ACTIONS(4766), + [anon_sym_override] = ACTIONS(4766), + [anon_sym_lateinit] = ACTIONS(4766), + [anon_sym_public] = ACTIONS(4766), + [anon_sym_private] = ACTIONS(4766), + [anon_sym_internal] = ACTIONS(4766), + [anon_sym_protected] = ACTIONS(4766), + [anon_sym_tailrec] = ACTIONS(4766), + [anon_sym_operator] = ACTIONS(4766), + [anon_sym_infix] = ACTIONS(4766), + [anon_sym_inline] = ACTIONS(4766), + [anon_sym_external] = ACTIONS(4766), + [sym_property_modifier] = ACTIONS(4766), + [anon_sym_abstract] = ACTIONS(4766), + [anon_sym_final] = ACTIONS(4766), + [anon_sym_open] = ACTIONS(4766), + [anon_sym_vararg] = ACTIONS(4766), + [anon_sym_noinline] = ACTIONS(4766), + [anon_sym_crossinline] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4768), + [anon_sym_continue_AT] = ACTIONS(4768), + [anon_sym_break_AT] = ACTIONS(4768), + [anon_sym_this_AT] = ACTIONS(4768), + [anon_sym_super_AT] = ACTIONS(4768), + [sym_real_literal] = ACTIONS(4768), + [sym_integer_literal] = ACTIONS(4766), + [sym_hex_literal] = ACTIONS(4768), + [sym_bin_literal] = ACTIONS(4768), + [anon_sym_true] = ACTIONS(4766), + [anon_sym_false] = ACTIONS(4766), + [anon_sym_SQUOTE] = ACTIONS(4768), + [sym_null_literal] = ACTIONS(4766), + [sym__backtick_identifier] = ACTIONS(4768), + [sym__automatic_semicolon] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4768), + }, + [1050] = { + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(3966), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_object] = ACTIONS(3964), + [anon_sym_fun] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_this] = ACTIONS(3964), + [anon_sym_super] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [sym_label] = ACTIONS(3964), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_when] = ACTIONS(3964), + [anon_sym_try] = ACTIONS(3964), + [anon_sym_throw] = ACTIONS(3964), + [anon_sym_return] = ACTIONS(3964), + [anon_sym_continue] = ACTIONS(3964), + [anon_sym_break] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_suspend] = ACTIONS(3964), + [anon_sym_sealed] = ACTIONS(3964), + [anon_sym_annotation] = ACTIONS(3964), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_override] = ACTIONS(3964), + [anon_sym_lateinit] = ACTIONS(3964), + [anon_sym_public] = ACTIONS(3964), + [anon_sym_private] = ACTIONS(3964), + [anon_sym_internal] = ACTIONS(3964), + [anon_sym_protected] = ACTIONS(3964), + [anon_sym_tailrec] = ACTIONS(3964), + [anon_sym_operator] = ACTIONS(3964), + [anon_sym_infix] = ACTIONS(3964), + [anon_sym_inline] = ACTIONS(3964), + [anon_sym_external] = ACTIONS(3964), + [sym_property_modifier] = ACTIONS(3964), + [anon_sym_abstract] = ACTIONS(3964), + [anon_sym_final] = ACTIONS(3964), + [anon_sym_open] = ACTIONS(3964), + [anon_sym_vararg] = ACTIONS(3964), + [anon_sym_noinline] = ACTIONS(3964), + [anon_sym_crossinline] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3966), + [anon_sym_continue_AT] = ACTIONS(3966), + [anon_sym_break_AT] = ACTIONS(3966), + [anon_sym_this_AT] = ACTIONS(3966), + [anon_sym_super_AT] = ACTIONS(3966), + [sym_real_literal] = ACTIONS(3966), + [sym_integer_literal] = ACTIONS(3964), + [sym_hex_literal] = ACTIONS(3966), + [sym_bin_literal] = ACTIONS(3966), + [anon_sym_true] = ACTIONS(3964), + [anon_sym_false] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3966), + [sym_null_literal] = ACTIONS(3964), + [sym__backtick_identifier] = ACTIONS(3966), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3966), + }, + [1051] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_as] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_object] = ACTIONS(4770), + [anon_sym_fun] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_this] = ACTIONS(4770), + [anon_sym_super] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [sym_label] = ACTIONS(4770), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_QMARK_COLON] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4770), + [anon_sym_else] = ACTIONS(4770), + [anon_sym_when] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4770), + [anon_sym_throw] = ACTIONS(4770), + [anon_sym_return] = ACTIONS(4770), + [anon_sym_continue] = ACTIONS(4770), + [anon_sym_break] = ACTIONS(4770), + [anon_sym_COLON_COLON] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4772), + [anon_sym_DASH_EQ] = ACTIONS(4772), + [anon_sym_STAR_EQ] = ACTIONS(4772), + [anon_sym_SLASH_EQ] = ACTIONS(4772), + [anon_sym_PERCENT_EQ] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4772), + [anon_sym_BANGin] = ACTIONS(4772), + [anon_sym_is] = ACTIONS(4770), + [anon_sym_BANGis] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_as_QMARK] = ACTIONS(4772), + [anon_sym_PLUS_PLUS] = ACTIONS(4772), + [anon_sym_DASH_DASH] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_BANG_BANG] = ACTIONS(4772), + [anon_sym_suspend] = ACTIONS(4770), + [anon_sym_sealed] = ACTIONS(4770), + [anon_sym_annotation] = ACTIONS(4770), + [anon_sym_data] = ACTIONS(4770), + [anon_sym_inner] = ACTIONS(4770), + [anon_sym_value] = ACTIONS(4770), + [anon_sym_override] = ACTIONS(4770), + [anon_sym_lateinit] = ACTIONS(4770), + [anon_sym_public] = ACTIONS(4770), + [anon_sym_private] = ACTIONS(4770), + [anon_sym_internal] = ACTIONS(4770), + [anon_sym_protected] = ACTIONS(4770), + [anon_sym_tailrec] = ACTIONS(4770), + [anon_sym_operator] = ACTIONS(4770), + [anon_sym_infix] = ACTIONS(4770), + [anon_sym_inline] = ACTIONS(4770), + [anon_sym_external] = ACTIONS(4770), + [sym_property_modifier] = ACTIONS(4770), + [anon_sym_abstract] = ACTIONS(4770), + [anon_sym_final] = ACTIONS(4770), + [anon_sym_open] = ACTIONS(4770), + [anon_sym_vararg] = ACTIONS(4770), + [anon_sym_noinline] = ACTIONS(4770), + [anon_sym_crossinline] = ACTIONS(4770), + [anon_sym_expect] = ACTIONS(4770), + [anon_sym_actual] = ACTIONS(4770), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4772), + [anon_sym_continue_AT] = ACTIONS(4772), + [anon_sym_break_AT] = ACTIONS(4772), + [anon_sym_this_AT] = ACTIONS(4772), + [anon_sym_super_AT] = ACTIONS(4772), + [sym_real_literal] = ACTIONS(4772), + [sym_integer_literal] = ACTIONS(4770), + [sym_hex_literal] = ACTIONS(4772), + [sym_bin_literal] = ACTIONS(4772), + [anon_sym_true] = ACTIONS(4770), + [anon_sym_false] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4772), + [sym_null_literal] = ACTIONS(4770), + [sym__backtick_identifier] = ACTIONS(4772), + [sym__automatic_semicolon] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4772), + }, + [1052] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [anon_sym_this_AT] = ACTIONS(4776), + [anon_sym_super_AT] = ACTIONS(4776), + [sym_real_literal] = ACTIONS(4776), + [sym_integer_literal] = ACTIONS(4774), + [sym_hex_literal] = ACTIONS(4776), + [sym_bin_literal] = ACTIONS(4776), + [anon_sym_true] = ACTIONS(4774), + [anon_sym_false] = ACTIONS(4774), + [anon_sym_SQUOTE] = ACTIONS(4776), + [sym_null_literal] = ACTIONS(4774), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4776), + }, + [1053] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4782), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [1054] = { + [sym__alpha_identifier] = ACTIONS(4784), + [anon_sym_AT] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_where] = ACTIONS(4784), + [anon_sym_object] = ACTIONS(4784), + [anon_sym_fun] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(4784), + [anon_sym_set] = ACTIONS(4784), + [anon_sym_this] = ACTIONS(4784), + [anon_sym_super] = ACTIONS(4784), + [anon_sym_STAR] = ACTIONS(4784), + [sym_label] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4786), + [anon_sym_QMARK_COLON] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_when] = ACTIONS(4784), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_throw] = ACTIONS(4784), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_COLON_COLON] = ACTIONS(4786), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_PERCENT_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4786), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_BANGin] = ACTIONS(4786), + [anon_sym_is] = ACTIONS(4784), + [anon_sym_BANGis] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_PERCENT] = ACTIONS(4784), + [anon_sym_as_QMARK] = ACTIONS(4786), + [anon_sym_PLUS_PLUS] = ACTIONS(4786), + [anon_sym_DASH_DASH] = ACTIONS(4786), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_BANG_BANG] = ACTIONS(4786), + [anon_sym_suspend] = ACTIONS(4784), + [anon_sym_sealed] = ACTIONS(4784), + [anon_sym_annotation] = ACTIONS(4784), + [anon_sym_data] = ACTIONS(4784), + [anon_sym_inner] = ACTIONS(4784), + [anon_sym_value] = ACTIONS(4784), + [anon_sym_override] = ACTIONS(4784), + [anon_sym_lateinit] = ACTIONS(4784), + [anon_sym_public] = ACTIONS(4784), + [anon_sym_private] = ACTIONS(4784), + [anon_sym_internal] = ACTIONS(4784), + [anon_sym_protected] = ACTIONS(4784), + [anon_sym_tailrec] = ACTIONS(4784), + [anon_sym_operator] = ACTIONS(4784), + [anon_sym_infix] = ACTIONS(4784), + [anon_sym_inline] = ACTIONS(4784), + [anon_sym_external] = ACTIONS(4784), + [sym_property_modifier] = ACTIONS(4784), + [anon_sym_abstract] = ACTIONS(4784), + [anon_sym_final] = ACTIONS(4784), + [anon_sym_open] = ACTIONS(4784), + [anon_sym_vararg] = ACTIONS(4784), + [anon_sym_noinline] = ACTIONS(4784), + [anon_sym_crossinline] = ACTIONS(4784), + [anon_sym_expect] = ACTIONS(4784), + [anon_sym_actual] = ACTIONS(4784), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4786), + [anon_sym_continue_AT] = ACTIONS(4786), + [anon_sym_break_AT] = ACTIONS(4786), + [anon_sym_this_AT] = ACTIONS(4786), + [anon_sym_super_AT] = ACTIONS(4786), + [sym_real_literal] = ACTIONS(4786), + [sym_integer_literal] = ACTIONS(4784), + [sym_hex_literal] = ACTIONS(4786), + [sym_bin_literal] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_SQUOTE] = ACTIONS(4786), + [sym_null_literal] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4786), + [sym__automatic_semicolon] = ACTIONS(4786), + [sym_safe_nav] = ACTIONS(4786), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4786), + }, + [1055] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_object] = ACTIONS(4788), + [anon_sym_fun] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_this] = ACTIONS(4788), + [anon_sym_super] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_when] = ACTIONS(4788), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_throw] = ACTIONS(4788), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_suspend] = ACTIONS(4788), + [anon_sym_sealed] = ACTIONS(4788), + [anon_sym_annotation] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_override] = ACTIONS(4788), + [anon_sym_lateinit] = ACTIONS(4788), + [anon_sym_public] = ACTIONS(4788), + [anon_sym_private] = ACTIONS(4788), + [anon_sym_internal] = ACTIONS(4788), + [anon_sym_protected] = ACTIONS(4788), + [anon_sym_tailrec] = ACTIONS(4788), + [anon_sym_operator] = ACTIONS(4788), + [anon_sym_infix] = ACTIONS(4788), + [anon_sym_inline] = ACTIONS(4788), + [anon_sym_external] = ACTIONS(4788), + [sym_property_modifier] = ACTIONS(4788), + [anon_sym_abstract] = ACTIONS(4788), + [anon_sym_final] = ACTIONS(4788), + [anon_sym_open] = ACTIONS(4788), + [anon_sym_vararg] = ACTIONS(4788), + [anon_sym_noinline] = ACTIONS(4788), + [anon_sym_crossinline] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4790), + [anon_sym_continue_AT] = ACTIONS(4790), + [anon_sym_break_AT] = ACTIONS(4790), + [anon_sym_this_AT] = ACTIONS(4790), + [anon_sym_super_AT] = ACTIONS(4790), + [sym_real_literal] = ACTIONS(4790), + [sym_integer_literal] = ACTIONS(4788), + [sym_hex_literal] = ACTIONS(4790), + [sym_bin_literal] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_SQUOTE] = ACTIONS(4790), + [sym_null_literal] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4790), + [sym__automatic_semicolon] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4790), + }, + [1056] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_object] = ACTIONS(4792), + [anon_sym_fun] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_this] = ACTIONS(4792), + [anon_sym_super] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_when] = ACTIONS(4792), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_throw] = ACTIONS(4792), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_suspend] = ACTIONS(4792), + [anon_sym_sealed] = ACTIONS(4792), + [anon_sym_annotation] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_override] = ACTIONS(4792), + [anon_sym_lateinit] = ACTIONS(4792), + [anon_sym_public] = ACTIONS(4792), + [anon_sym_private] = ACTIONS(4792), + [anon_sym_internal] = ACTIONS(4792), + [anon_sym_protected] = ACTIONS(4792), + [anon_sym_tailrec] = ACTIONS(4792), + [anon_sym_operator] = ACTIONS(4792), + [anon_sym_infix] = ACTIONS(4792), + [anon_sym_inline] = ACTIONS(4792), + [anon_sym_external] = ACTIONS(4792), + [sym_property_modifier] = ACTIONS(4792), + [anon_sym_abstract] = ACTIONS(4792), + [anon_sym_final] = ACTIONS(4792), + [anon_sym_open] = ACTIONS(4792), + [anon_sym_vararg] = ACTIONS(4792), + [anon_sym_noinline] = ACTIONS(4792), + [anon_sym_crossinline] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4794), + [anon_sym_continue_AT] = ACTIONS(4794), + [anon_sym_break_AT] = ACTIONS(4794), + [anon_sym_this_AT] = ACTIONS(4794), + [anon_sym_super_AT] = ACTIONS(4794), + [sym_real_literal] = ACTIONS(4794), + [sym_integer_literal] = ACTIONS(4792), + [sym_hex_literal] = ACTIONS(4794), + [sym_bin_literal] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_SQUOTE] = ACTIONS(4794), + [sym_null_literal] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4794), + [sym__automatic_semicolon] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4794), + }, + [1057] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [1058] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_object] = ACTIONS(4804), + [anon_sym_fun] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_this] = ACTIONS(4804), + [anon_sym_super] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_when] = ACTIONS(4804), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_throw] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4806), + [anon_sym_continue_AT] = ACTIONS(4806), + [anon_sym_break_AT] = ACTIONS(4806), + [anon_sym_this_AT] = ACTIONS(4806), + [anon_sym_super_AT] = ACTIONS(4806), + [sym_real_literal] = ACTIONS(4806), + [sym_integer_literal] = ACTIONS(4804), + [sym_hex_literal] = ACTIONS(4806), + [sym_bin_literal] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym_null_literal] = ACTIONS(4804), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4806), + }, + [1059] = { + [sym__alpha_identifier] = ACTIONS(4808), + [anon_sym_AT] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(4810), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_as] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_LBRACE] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_COMMA] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_where] = ACTIONS(4808), + [anon_sym_object] = ACTIONS(4808), + [anon_sym_fun] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_get] = ACTIONS(4808), + [anon_sym_set] = ACTIONS(4808), + [anon_sym_this] = ACTIONS(4808), + [anon_sym_super] = ACTIONS(4808), + [anon_sym_STAR] = ACTIONS(4808), + [sym_label] = ACTIONS(4808), + [anon_sym_in] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4810), + [anon_sym_QMARK_COLON] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_when] = ACTIONS(4808), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_throw] = ACTIONS(4808), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_COLON_COLON] = ACTIONS(4810), + [anon_sym_PLUS_EQ] = ACTIONS(4810), + [anon_sym_DASH_EQ] = ACTIONS(4810), + [anon_sym_STAR_EQ] = ACTIONS(4810), + [anon_sym_SLASH_EQ] = ACTIONS(4810), + [anon_sym_PERCENT_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT_EQ] = ACTIONS(4810), + [anon_sym_GT_EQ] = ACTIONS(4810), + [anon_sym_BANGin] = ACTIONS(4810), + [anon_sym_is] = ACTIONS(4808), + [anon_sym_BANGis] = ACTIONS(4810), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_PERCENT] = ACTIONS(4808), + [anon_sym_as_QMARK] = ACTIONS(4810), + [anon_sym_PLUS_PLUS] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4810), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_BANG_BANG] = ACTIONS(4810), + [anon_sym_suspend] = ACTIONS(4808), + [anon_sym_sealed] = ACTIONS(4808), + [anon_sym_annotation] = ACTIONS(4808), + [anon_sym_data] = ACTIONS(4808), + [anon_sym_inner] = ACTIONS(4808), + [anon_sym_value] = ACTIONS(4808), + [anon_sym_override] = ACTIONS(4808), + [anon_sym_lateinit] = ACTIONS(4808), + [anon_sym_public] = ACTIONS(4808), + [anon_sym_private] = ACTIONS(4808), + [anon_sym_internal] = ACTIONS(4808), + [anon_sym_protected] = ACTIONS(4808), + [anon_sym_tailrec] = ACTIONS(4808), + [anon_sym_operator] = ACTIONS(4808), + [anon_sym_infix] = ACTIONS(4808), + [anon_sym_inline] = ACTIONS(4808), + [anon_sym_external] = ACTIONS(4808), + [sym_property_modifier] = ACTIONS(4808), + [anon_sym_abstract] = ACTIONS(4808), + [anon_sym_final] = ACTIONS(4808), + [anon_sym_open] = ACTIONS(4808), + [anon_sym_vararg] = ACTIONS(4808), + [anon_sym_noinline] = ACTIONS(4808), + [anon_sym_crossinline] = ACTIONS(4808), + [anon_sym_expect] = ACTIONS(4808), + [anon_sym_actual] = ACTIONS(4808), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4810), + [anon_sym_continue_AT] = ACTIONS(4810), + [anon_sym_break_AT] = ACTIONS(4810), + [anon_sym_this_AT] = ACTIONS(4810), + [anon_sym_super_AT] = ACTIONS(4810), + [sym_real_literal] = ACTIONS(4810), + [sym_integer_literal] = ACTIONS(4808), + [sym_hex_literal] = ACTIONS(4810), + [sym_bin_literal] = ACTIONS(4810), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_SQUOTE] = ACTIONS(4810), + [sym_null_literal] = ACTIONS(4808), + [sym__backtick_identifier] = ACTIONS(4810), + [sym__automatic_semicolon] = ACTIONS(4810), + [sym_safe_nav] = ACTIONS(4810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4810), + }, + [1060] = { + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_object] = ACTIONS(4068), + [anon_sym_fun] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_this] = ACTIONS(4068), + [anon_sym_super] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [sym_label] = ACTIONS(4068), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_when] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4068), + [anon_sym_sealed] = ACTIONS(4068), + [anon_sym_annotation] = ACTIONS(4068), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_lateinit] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_internal] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_tailrec] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_infix] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym_external] = ACTIONS(4068), + [sym_property_modifier] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_final] = ACTIONS(4068), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_vararg] = ACTIONS(4068), + [anon_sym_noinline] = ACTIONS(4068), + [anon_sym_crossinline] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4070), + [anon_sym_continue_AT] = ACTIONS(4070), + [anon_sym_break_AT] = ACTIONS(4070), + [anon_sym_this_AT] = ACTIONS(4070), + [anon_sym_super_AT] = ACTIONS(4070), + [sym_real_literal] = ACTIONS(4070), + [sym_integer_literal] = ACTIONS(4068), + [sym_hex_literal] = ACTIONS(4070), + [sym_bin_literal] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4070), + [sym_null_literal] = ACTIONS(4068), + [sym__backtick_identifier] = ACTIONS(4070), + [sym__automatic_semicolon] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4070), + }, + [1061] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4812), + [anon_sym_fun] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_this] = ACTIONS(4812), + [anon_sym_super] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_if] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_when] = ACTIONS(4812), + [anon_sym_try] = ACTIONS(4812), + [anon_sym_throw] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_continue] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4814), + [anon_sym_continue_AT] = ACTIONS(4814), + [anon_sym_break_AT] = ACTIONS(4814), + [anon_sym_this_AT] = ACTIONS(4814), + [anon_sym_super_AT] = ACTIONS(4814), + [sym_real_literal] = ACTIONS(4814), + [sym_integer_literal] = ACTIONS(4812), + [sym_hex_literal] = ACTIONS(4814), + [sym_bin_literal] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym_null_literal] = ACTIONS(4812), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4814), + }, + [1062] = { + [sym__alpha_identifier] = ACTIONS(4816), + [anon_sym_AT] = ACTIONS(4818), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_as] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4818), + [anon_sym_RBRACE] = ACTIONS(4818), + [anon_sym_LPAREN] = ACTIONS(4818), + [anon_sym_COMMA] = ACTIONS(4818), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_where] = ACTIONS(4816), + [anon_sym_object] = ACTIONS(4816), + [anon_sym_fun] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4818), + [anon_sym_get] = ACTIONS(4816), + [anon_sym_set] = ACTIONS(4816), + [anon_sym_this] = ACTIONS(4816), + [anon_sym_super] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [sym_label] = ACTIONS(4816), + [anon_sym_in] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4818), + [anon_sym_QMARK_COLON] = ACTIONS(4818), + [anon_sym_AMP_AMP] = ACTIONS(4818), + [anon_sym_PIPE_PIPE] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_when] = ACTIONS(4816), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_throw] = ACTIONS(4816), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_COLON_COLON] = ACTIONS(4818), + [anon_sym_PLUS_EQ] = ACTIONS(4818), + [anon_sym_DASH_EQ] = ACTIONS(4818), + [anon_sym_STAR_EQ] = ACTIONS(4818), + [anon_sym_SLASH_EQ] = ACTIONS(4818), + [anon_sym_PERCENT_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4818), + [anon_sym_LT_EQ] = ACTIONS(4818), + [anon_sym_GT_EQ] = ACTIONS(4818), + [anon_sym_BANGin] = ACTIONS(4818), + [anon_sym_is] = ACTIONS(4816), + [anon_sym_BANGis] = ACTIONS(4818), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_as_QMARK] = ACTIONS(4818), + [anon_sym_PLUS_PLUS] = ACTIONS(4818), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_BANG_BANG] = ACTIONS(4818), + [anon_sym_suspend] = ACTIONS(4816), + [anon_sym_sealed] = ACTIONS(4816), + [anon_sym_annotation] = ACTIONS(4816), + [anon_sym_data] = ACTIONS(4816), + [anon_sym_inner] = ACTIONS(4816), + [anon_sym_value] = ACTIONS(4816), + [anon_sym_override] = ACTIONS(4816), + [anon_sym_lateinit] = ACTIONS(4816), + [anon_sym_public] = ACTIONS(4816), + [anon_sym_private] = ACTIONS(4816), + [anon_sym_internal] = ACTIONS(4816), + [anon_sym_protected] = ACTIONS(4816), + [anon_sym_tailrec] = ACTIONS(4816), + [anon_sym_operator] = ACTIONS(4816), + [anon_sym_infix] = ACTIONS(4816), + [anon_sym_inline] = ACTIONS(4816), + [anon_sym_external] = ACTIONS(4816), + [sym_property_modifier] = ACTIONS(4816), + [anon_sym_abstract] = ACTIONS(4816), + [anon_sym_final] = ACTIONS(4816), + [anon_sym_open] = ACTIONS(4816), + [anon_sym_vararg] = ACTIONS(4816), + [anon_sym_noinline] = ACTIONS(4816), + [anon_sym_crossinline] = ACTIONS(4816), + [anon_sym_expect] = ACTIONS(4816), + [anon_sym_actual] = ACTIONS(4816), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4818), + [anon_sym_continue_AT] = ACTIONS(4818), + [anon_sym_break_AT] = ACTIONS(4818), + [anon_sym_this_AT] = ACTIONS(4818), + [anon_sym_super_AT] = ACTIONS(4818), + [sym_real_literal] = ACTIONS(4818), + [sym_integer_literal] = ACTIONS(4816), + [sym_hex_literal] = ACTIONS(4818), + [sym_bin_literal] = ACTIONS(4818), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_SQUOTE] = ACTIONS(4818), + [sym_null_literal] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4818), + [sym__automatic_semicolon] = ACTIONS(4818), + [sym_safe_nav] = ACTIONS(4818), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4818), + }, + [1063] = { + [sym__alpha_identifier] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4822), + [anon_sym_RBRACE] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4822), + [anon_sym_COMMA] = ACTIONS(4822), + [anon_sym_LT] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_where] = ACTIONS(4820), + [anon_sym_object] = ACTIONS(4820), + [anon_sym_fun] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_get] = ACTIONS(4820), + [anon_sym_set] = ACTIONS(4820), + [anon_sym_this] = ACTIONS(4820), + [anon_sym_super] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4820), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_QMARK_COLON] = ACTIONS(4822), + [anon_sym_AMP_AMP] = ACTIONS(4822), + [anon_sym_PIPE_PIPE] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(4820), + [anon_sym_when] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4820), + [anon_sym_throw] = ACTIONS(4820), + [anon_sym_return] = ACTIONS(4820), + [anon_sym_continue] = ACTIONS(4820), + [anon_sym_break] = ACTIONS(4820), + [anon_sym_COLON_COLON] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4822), + [anon_sym_DASH_EQ] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4822), + [anon_sym_SLASH_EQ] = ACTIONS(4822), + [anon_sym_PERCENT_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4822), + [anon_sym_BANGin] = ACTIONS(4822), + [anon_sym_is] = ACTIONS(4820), + [anon_sym_BANGis] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4822), + [anon_sym_PLUS_PLUS] = ACTIONS(4822), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4822), + [anon_sym_suspend] = ACTIONS(4820), + [anon_sym_sealed] = ACTIONS(4820), + [anon_sym_annotation] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4820), + [anon_sym_inner] = ACTIONS(4820), + [anon_sym_value] = ACTIONS(4820), + [anon_sym_override] = ACTIONS(4820), + [anon_sym_lateinit] = ACTIONS(4820), + [anon_sym_public] = ACTIONS(4820), + [anon_sym_private] = ACTIONS(4820), + [anon_sym_internal] = ACTIONS(4820), + [anon_sym_protected] = ACTIONS(4820), + [anon_sym_tailrec] = ACTIONS(4820), + [anon_sym_operator] = ACTIONS(4820), + [anon_sym_infix] = ACTIONS(4820), + [anon_sym_inline] = ACTIONS(4820), + [anon_sym_external] = ACTIONS(4820), + [sym_property_modifier] = ACTIONS(4820), + [anon_sym_abstract] = ACTIONS(4820), + [anon_sym_final] = ACTIONS(4820), + [anon_sym_open] = ACTIONS(4820), + [anon_sym_vararg] = ACTIONS(4820), + [anon_sym_noinline] = ACTIONS(4820), + [anon_sym_crossinline] = ACTIONS(4820), + [anon_sym_expect] = ACTIONS(4820), + [anon_sym_actual] = ACTIONS(4820), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4822), + [anon_sym_continue_AT] = ACTIONS(4822), + [anon_sym_break_AT] = ACTIONS(4822), + [anon_sym_this_AT] = ACTIONS(4822), + [anon_sym_super_AT] = ACTIONS(4822), + [sym_real_literal] = ACTIONS(4822), + [sym_integer_literal] = ACTIONS(4820), + [sym_hex_literal] = ACTIONS(4822), + [sym_bin_literal] = ACTIONS(4822), + [anon_sym_true] = ACTIONS(4820), + [anon_sym_false] = ACTIONS(4820), + [anon_sym_SQUOTE] = ACTIONS(4822), + [sym_null_literal] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4822), + [sym__automatic_semicolon] = ACTIONS(4822), + [sym_safe_nav] = ACTIONS(4822), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4822), + }, + [1064] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym_null_literal] = ACTIONS(3992), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [1065] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(1694), + [anon_sym_sealed] = ACTIONS(1694), + [anon_sym_annotation] = ACTIONS(1694), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_value] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_lateinit] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_internal] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_tailrec] = ACTIONS(1694), + [anon_sym_operator] = ACTIONS(1694), + [anon_sym_infix] = ACTIONS(1694), + [anon_sym_inline] = ACTIONS(1694), + [anon_sym_external] = ACTIONS(1694), + [sym_property_modifier] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(1694), + [anon_sym_final] = ACTIONS(1694), + [anon_sym_open] = ACTIONS(1694), + [anon_sym_vararg] = ACTIONS(1694), + [anon_sym_noinline] = ACTIONS(1694), + [anon_sym_crossinline] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [1066] = { + [sym__alpha_identifier] = ACTIONS(4824), + [anon_sym_AT] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_as] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_COMMA] = ACTIONS(4826), + [anon_sym_LT] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_where] = ACTIONS(4824), + [anon_sym_object] = ACTIONS(4824), + [anon_sym_fun] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4826), + [anon_sym_get] = ACTIONS(4824), + [anon_sym_set] = ACTIONS(4824), + [anon_sym_this] = ACTIONS(4824), + [anon_sym_super] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [sym_label] = ACTIONS(4824), + [anon_sym_in] = ACTIONS(4824), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_QMARK_COLON] = ACTIONS(4826), + [anon_sym_AMP_AMP] = ACTIONS(4826), + [anon_sym_PIPE_PIPE] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_when] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4824), + [anon_sym_throw] = ACTIONS(4824), + [anon_sym_return] = ACTIONS(4824), + [anon_sym_continue] = ACTIONS(4824), + [anon_sym_break] = ACTIONS(4824), + [anon_sym_COLON_COLON] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4826), + [anon_sym_DASH_EQ] = ACTIONS(4826), + [anon_sym_STAR_EQ] = ACTIONS(4826), + [anon_sym_SLASH_EQ] = ACTIONS(4826), + [anon_sym_PERCENT_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4826), + [anon_sym_BANGin] = ACTIONS(4826), + [anon_sym_is] = ACTIONS(4824), + [anon_sym_BANGis] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_as_QMARK] = ACTIONS(4826), + [anon_sym_PLUS_PLUS] = ACTIONS(4826), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_BANG_BANG] = ACTIONS(4826), + [anon_sym_suspend] = ACTIONS(4824), + [anon_sym_sealed] = ACTIONS(4824), + [anon_sym_annotation] = ACTIONS(4824), + [anon_sym_data] = ACTIONS(4824), + [anon_sym_inner] = ACTIONS(4824), + [anon_sym_value] = ACTIONS(4824), + [anon_sym_override] = ACTIONS(4824), + [anon_sym_lateinit] = ACTIONS(4824), + [anon_sym_public] = ACTIONS(4824), + [anon_sym_private] = ACTIONS(4824), + [anon_sym_internal] = ACTIONS(4824), + [anon_sym_protected] = ACTIONS(4824), + [anon_sym_tailrec] = ACTIONS(4824), + [anon_sym_operator] = ACTIONS(4824), + [anon_sym_infix] = ACTIONS(4824), + [anon_sym_inline] = ACTIONS(4824), + [anon_sym_external] = ACTIONS(4824), + [sym_property_modifier] = ACTIONS(4824), + [anon_sym_abstract] = ACTIONS(4824), + [anon_sym_final] = ACTIONS(4824), + [anon_sym_open] = ACTIONS(4824), + [anon_sym_vararg] = ACTIONS(4824), + [anon_sym_noinline] = ACTIONS(4824), + [anon_sym_crossinline] = ACTIONS(4824), + [anon_sym_expect] = ACTIONS(4824), + [anon_sym_actual] = ACTIONS(4824), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4826), + [anon_sym_continue_AT] = ACTIONS(4826), + [anon_sym_break_AT] = ACTIONS(4826), + [anon_sym_this_AT] = ACTIONS(4826), + [anon_sym_super_AT] = ACTIONS(4826), + [sym_real_literal] = ACTIONS(4826), + [sym_integer_literal] = ACTIONS(4824), + [sym_hex_literal] = ACTIONS(4826), + [sym_bin_literal] = ACTIONS(4826), + [anon_sym_true] = ACTIONS(4824), + [anon_sym_false] = ACTIONS(4824), + [anon_sym_SQUOTE] = ACTIONS(4826), + [sym_null_literal] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(4826), + [sym__automatic_semicolon] = ACTIONS(4826), + [sym_safe_nav] = ACTIONS(4826), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4826), + }, + [1067] = { + [sym__alpha_identifier] = ACTIONS(4828), + [anon_sym_AT] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_LT] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_where] = ACTIONS(4828), + [anon_sym_object] = ACTIONS(4828), + [anon_sym_fun] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(4828), + [anon_sym_set] = ACTIONS(4828), + [anon_sym_this] = ACTIONS(4828), + [anon_sym_super] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [sym_label] = ACTIONS(4828), + [anon_sym_in] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_QMARK_COLON] = ACTIONS(4830), + [anon_sym_AMP_AMP] = ACTIONS(4830), + [anon_sym_PIPE_PIPE] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4828), + [anon_sym_else] = ACTIONS(4828), + [anon_sym_when] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4828), + [anon_sym_throw] = ACTIONS(4828), + [anon_sym_return] = ACTIONS(4828), + [anon_sym_continue] = ACTIONS(4828), + [anon_sym_break] = ACTIONS(4828), + [anon_sym_COLON_COLON] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4830), + [anon_sym_DASH_EQ] = ACTIONS(4830), + [anon_sym_STAR_EQ] = ACTIONS(4830), + [anon_sym_SLASH_EQ] = ACTIONS(4830), + [anon_sym_PERCENT_EQ] = ACTIONS(4830), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4830), + [anon_sym_BANGin] = ACTIONS(4830), + [anon_sym_is] = ACTIONS(4828), + [anon_sym_BANGis] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_as_QMARK] = ACTIONS(4830), + [anon_sym_PLUS_PLUS] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_BANG_BANG] = ACTIONS(4830), + [anon_sym_suspend] = ACTIONS(4828), + [anon_sym_sealed] = ACTIONS(4828), + [anon_sym_annotation] = ACTIONS(4828), + [anon_sym_data] = ACTIONS(4828), + [anon_sym_inner] = ACTIONS(4828), + [anon_sym_value] = ACTIONS(4828), + [anon_sym_override] = ACTIONS(4828), + [anon_sym_lateinit] = ACTIONS(4828), + [anon_sym_public] = ACTIONS(4828), + [anon_sym_private] = ACTIONS(4828), + [anon_sym_internal] = ACTIONS(4828), + [anon_sym_protected] = ACTIONS(4828), + [anon_sym_tailrec] = ACTIONS(4828), + [anon_sym_operator] = ACTIONS(4828), + [anon_sym_infix] = ACTIONS(4828), + [anon_sym_inline] = ACTIONS(4828), + [anon_sym_external] = ACTIONS(4828), + [sym_property_modifier] = ACTIONS(4828), + [anon_sym_abstract] = ACTIONS(4828), + [anon_sym_final] = ACTIONS(4828), + [anon_sym_open] = ACTIONS(4828), + [anon_sym_vararg] = ACTIONS(4828), + [anon_sym_noinline] = ACTIONS(4828), + [anon_sym_crossinline] = ACTIONS(4828), + [anon_sym_expect] = ACTIONS(4828), + [anon_sym_actual] = ACTIONS(4828), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4830), + [anon_sym_continue_AT] = ACTIONS(4830), + [anon_sym_break_AT] = ACTIONS(4830), + [anon_sym_this_AT] = ACTIONS(4830), + [anon_sym_super_AT] = ACTIONS(4830), + [sym_real_literal] = ACTIONS(4830), + [sym_integer_literal] = ACTIONS(4828), + [sym_hex_literal] = ACTIONS(4830), + [sym_bin_literal] = ACTIONS(4830), + [anon_sym_true] = ACTIONS(4828), + [anon_sym_false] = ACTIONS(4828), + [anon_sym_SQUOTE] = ACTIONS(4830), + [sym_null_literal] = ACTIONS(4828), + [sym__backtick_identifier] = ACTIONS(4830), + [sym__automatic_semicolon] = ACTIONS(4830), + [sym_safe_nav] = ACTIONS(4830), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4830), + }, + [1068] = { + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_object] = ACTIONS(4386), + [anon_sym_fun] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_this] = ACTIONS(4386), + [anon_sym_super] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4386), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_when] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4388), + [anon_sym_continue_AT] = ACTIONS(4388), + [anon_sym_break_AT] = ACTIONS(4388), + [anon_sym_this_AT] = ACTIONS(4388), + [anon_sym_super_AT] = ACTIONS(4388), + [sym_real_literal] = ACTIONS(4388), + [sym_integer_literal] = ACTIONS(4386), + [sym_hex_literal] = ACTIONS(4388), + [sym_bin_literal] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_SQUOTE] = ACTIONS(4388), + [sym_null_literal] = ACTIONS(4386), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4388), + }, + [1069] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_object] = ACTIONS(4832), + [anon_sym_fun] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_this] = ACTIONS(4832), + [anon_sym_super] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [sym_label] = ACTIONS(4832), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4832), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_when] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4832), + [anon_sym_throw] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4832), + [anon_sym_continue] = ACTIONS(4832), + [anon_sym_break] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_suspend] = ACTIONS(4832), + [anon_sym_sealed] = ACTIONS(4832), + [anon_sym_annotation] = ACTIONS(4832), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_override] = ACTIONS(4832), + [anon_sym_lateinit] = ACTIONS(4832), + [anon_sym_public] = ACTIONS(4832), + [anon_sym_private] = ACTIONS(4832), + [anon_sym_internal] = ACTIONS(4832), + [anon_sym_protected] = ACTIONS(4832), + [anon_sym_tailrec] = ACTIONS(4832), + [anon_sym_operator] = ACTIONS(4832), + [anon_sym_infix] = ACTIONS(4832), + [anon_sym_inline] = ACTIONS(4832), + [anon_sym_external] = ACTIONS(4832), + [sym_property_modifier] = ACTIONS(4832), + [anon_sym_abstract] = ACTIONS(4832), + [anon_sym_final] = ACTIONS(4832), + [anon_sym_open] = ACTIONS(4832), + [anon_sym_vararg] = ACTIONS(4832), + [anon_sym_noinline] = ACTIONS(4832), + [anon_sym_crossinline] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4834), + [anon_sym_continue_AT] = ACTIONS(4834), + [anon_sym_break_AT] = ACTIONS(4834), + [anon_sym_this_AT] = ACTIONS(4834), + [anon_sym_super_AT] = ACTIONS(4834), + [sym_real_literal] = ACTIONS(4834), + [sym_integer_literal] = ACTIONS(4832), + [sym_hex_literal] = ACTIONS(4834), + [sym_bin_literal] = ACTIONS(4834), + [anon_sym_true] = ACTIONS(4832), + [anon_sym_false] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4834), + [sym_null_literal] = ACTIONS(4832), + [sym__backtick_identifier] = ACTIONS(4834), + [sym__automatic_semicolon] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4834), + }, + [1070] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [1071] = { + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [1072] = { + [sym__alpha_identifier] = ACTIONS(4836), + [anon_sym_AT] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_where] = ACTIONS(4836), + [anon_sym_object] = ACTIONS(4836), + [anon_sym_fun] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_get] = ACTIONS(4836), + [anon_sym_set] = ACTIONS(4836), + [anon_sym_this] = ACTIONS(4836), + [anon_sym_super] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [sym_label] = ACTIONS(4836), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4836), + [anon_sym_else] = ACTIONS(4836), + [anon_sym_when] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4836), + [anon_sym_throw] = ACTIONS(4836), + [anon_sym_return] = ACTIONS(4836), + [anon_sym_continue] = ACTIONS(4836), + [anon_sym_break] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4838), + [anon_sym_DASH_EQ] = ACTIONS(4838), + [anon_sym_STAR_EQ] = ACTIONS(4838), + [anon_sym_SLASH_EQ] = ACTIONS(4838), + [anon_sym_PERCENT_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_BANGin] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4836), + [anon_sym_BANGis] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_as_QMARK] = ACTIONS(4838), + [anon_sym_PLUS_PLUS] = ACTIONS(4838), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_BANG_BANG] = ACTIONS(4838), + [anon_sym_suspend] = ACTIONS(4836), + [anon_sym_sealed] = ACTIONS(4836), + [anon_sym_annotation] = ACTIONS(4836), + [anon_sym_data] = ACTIONS(4836), + [anon_sym_inner] = ACTIONS(4836), + [anon_sym_value] = ACTIONS(4836), + [anon_sym_override] = ACTIONS(4836), + [anon_sym_lateinit] = ACTIONS(4836), + [anon_sym_public] = ACTIONS(4836), + [anon_sym_private] = ACTIONS(4836), + [anon_sym_internal] = ACTIONS(4836), + [anon_sym_protected] = ACTIONS(4836), + [anon_sym_tailrec] = ACTIONS(4836), + [anon_sym_operator] = ACTIONS(4836), + [anon_sym_infix] = ACTIONS(4836), + [anon_sym_inline] = ACTIONS(4836), + [anon_sym_external] = ACTIONS(4836), + [sym_property_modifier] = ACTIONS(4836), + [anon_sym_abstract] = ACTIONS(4836), + [anon_sym_final] = ACTIONS(4836), + [anon_sym_open] = ACTIONS(4836), + [anon_sym_vararg] = ACTIONS(4836), + [anon_sym_noinline] = ACTIONS(4836), + [anon_sym_crossinline] = ACTIONS(4836), + [anon_sym_expect] = ACTIONS(4836), + [anon_sym_actual] = ACTIONS(4836), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4838), + [anon_sym_continue_AT] = ACTIONS(4838), + [anon_sym_break_AT] = ACTIONS(4838), + [anon_sym_this_AT] = ACTIONS(4838), + [anon_sym_super_AT] = ACTIONS(4838), + [sym_real_literal] = ACTIONS(4838), + [sym_integer_literal] = ACTIONS(4836), + [sym_hex_literal] = ACTIONS(4838), + [sym_bin_literal] = ACTIONS(4838), + [anon_sym_true] = ACTIONS(4836), + [anon_sym_false] = ACTIONS(4836), + [anon_sym_SQUOTE] = ACTIONS(4838), + [sym_null_literal] = ACTIONS(4836), + [sym__backtick_identifier] = ACTIONS(4838), + [sym__automatic_semicolon] = ACTIONS(4838), + [sym_safe_nav] = ACTIONS(4838), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4838), + }, + [1073] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4840), + [anon_sym_object] = ACTIONS(4840), + [anon_sym_fun] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_this] = ACTIONS(4840), + [anon_sym_super] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), + }, + [1074] = { + [sym__alpha_identifier] = ACTIONS(4844), + [anon_sym_AT] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4846), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_COMMA] = ACTIONS(4846), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4844), + [anon_sym_object] = ACTIONS(4844), + [anon_sym_fun] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym_get] = ACTIONS(4844), + [anon_sym_set] = ACTIONS(4844), + [anon_sym_this] = ACTIONS(4844), + [anon_sym_super] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [sym_label] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_QMARK_COLON] = ACTIONS(4846), + [anon_sym_AMP_AMP] = ACTIONS(4846), + [anon_sym_PIPE_PIPE] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(4844), + [anon_sym_when] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4844), + [anon_sym_throw] = ACTIONS(4844), + [anon_sym_return] = ACTIONS(4844), + [anon_sym_continue] = ACTIONS(4844), + [anon_sym_break] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4846), + [anon_sym_DASH_EQ] = ACTIONS(4846), + [anon_sym_STAR_EQ] = ACTIONS(4846), + [anon_sym_SLASH_EQ] = ACTIONS(4846), + [anon_sym_PERCENT_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4846), + [anon_sym_BANGin] = ACTIONS(4846), + [anon_sym_is] = ACTIONS(4844), + [anon_sym_BANGis] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_as_QMARK] = ACTIONS(4846), + [anon_sym_PLUS_PLUS] = ACTIONS(4846), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_BANG_BANG] = ACTIONS(4846), + [anon_sym_suspend] = ACTIONS(4844), + [anon_sym_sealed] = ACTIONS(4844), + [anon_sym_annotation] = ACTIONS(4844), + [anon_sym_data] = ACTIONS(4844), + [anon_sym_inner] = ACTIONS(4844), + [anon_sym_value] = ACTIONS(4844), + [anon_sym_override] = ACTIONS(4844), + [anon_sym_lateinit] = ACTIONS(4844), + [anon_sym_public] = ACTIONS(4844), + [anon_sym_private] = ACTIONS(4844), + [anon_sym_internal] = ACTIONS(4844), + [anon_sym_protected] = ACTIONS(4844), + [anon_sym_tailrec] = ACTIONS(4844), + [anon_sym_operator] = ACTIONS(4844), + [anon_sym_infix] = ACTIONS(4844), + [anon_sym_inline] = ACTIONS(4844), + [anon_sym_external] = ACTIONS(4844), + [sym_property_modifier] = ACTIONS(4844), + [anon_sym_abstract] = ACTIONS(4844), + [anon_sym_final] = ACTIONS(4844), + [anon_sym_open] = ACTIONS(4844), + [anon_sym_vararg] = ACTIONS(4844), + [anon_sym_noinline] = ACTIONS(4844), + [anon_sym_crossinline] = ACTIONS(4844), + [anon_sym_expect] = ACTIONS(4844), + [anon_sym_actual] = ACTIONS(4844), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4846), + [anon_sym_continue_AT] = ACTIONS(4846), + [anon_sym_break_AT] = ACTIONS(4846), + [anon_sym_this_AT] = ACTIONS(4846), + [anon_sym_super_AT] = ACTIONS(4846), + [sym_real_literal] = ACTIONS(4846), + [sym_integer_literal] = ACTIONS(4844), + [sym_hex_literal] = ACTIONS(4846), + [sym_bin_literal] = ACTIONS(4846), + [anon_sym_true] = ACTIONS(4844), + [anon_sym_false] = ACTIONS(4844), + [anon_sym_SQUOTE] = ACTIONS(4846), + [sym_null_literal] = ACTIONS(4844), + [sym__backtick_identifier] = ACTIONS(4846), + [sym__automatic_semicolon] = ACTIONS(4846), + [sym_safe_nav] = ACTIONS(4846), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4846), + }, + [1075] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [1076] = { + [sym__alpha_identifier] = ACTIONS(4848), + [anon_sym_AT] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_where] = ACTIONS(4848), + [anon_sym_object] = ACTIONS(4848), + [anon_sym_fun] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_get] = ACTIONS(4848), + [anon_sym_set] = ACTIONS(4848), + [anon_sym_this] = ACTIONS(4848), + [anon_sym_super] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_QMARK_COLON] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4848), + [anon_sym_when] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4848), + [anon_sym_throw] = ACTIONS(4848), + [anon_sym_return] = ACTIONS(4848), + [anon_sym_continue] = ACTIONS(4848), + [anon_sym_break] = ACTIONS(4848), + [anon_sym_COLON_COLON] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4850), + [anon_sym_DASH_EQ] = ACTIONS(4850), + [anon_sym_STAR_EQ] = ACTIONS(4850), + [anon_sym_SLASH_EQ] = ACTIONS(4850), + [anon_sym_PERCENT_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4848), + [anon_sym_BANGis] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_as_QMARK] = ACTIONS(4850), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4850), + [anon_sym_suspend] = ACTIONS(4848), + [anon_sym_sealed] = ACTIONS(4848), + [anon_sym_annotation] = ACTIONS(4848), + [anon_sym_data] = ACTIONS(4848), + [anon_sym_inner] = ACTIONS(4848), + [anon_sym_value] = ACTIONS(4848), + [anon_sym_override] = ACTIONS(4848), + [anon_sym_lateinit] = ACTIONS(4848), + [anon_sym_public] = ACTIONS(4848), + [anon_sym_private] = ACTIONS(4848), + [anon_sym_internal] = ACTIONS(4848), + [anon_sym_protected] = ACTIONS(4848), + [anon_sym_tailrec] = ACTIONS(4848), + [anon_sym_operator] = ACTIONS(4848), + [anon_sym_infix] = ACTIONS(4848), + [anon_sym_inline] = ACTIONS(4848), + [anon_sym_external] = ACTIONS(4848), + [sym_property_modifier] = ACTIONS(4848), + [anon_sym_abstract] = ACTIONS(4848), + [anon_sym_final] = ACTIONS(4848), + [anon_sym_open] = ACTIONS(4848), + [anon_sym_vararg] = ACTIONS(4848), + [anon_sym_noinline] = ACTIONS(4848), + [anon_sym_crossinline] = ACTIONS(4848), + [anon_sym_expect] = ACTIONS(4848), + [anon_sym_actual] = ACTIONS(4848), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4850), + [anon_sym_continue_AT] = ACTIONS(4850), + [anon_sym_break_AT] = ACTIONS(4850), + [anon_sym_this_AT] = ACTIONS(4850), + [anon_sym_super_AT] = ACTIONS(4850), + [sym_real_literal] = ACTIONS(4850), + [sym_integer_literal] = ACTIONS(4848), + [sym_hex_literal] = ACTIONS(4850), + [sym_bin_literal] = ACTIONS(4850), + [anon_sym_true] = ACTIONS(4848), + [anon_sym_false] = ACTIONS(4848), + [anon_sym_SQUOTE] = ACTIONS(4850), + [sym_null_literal] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4850), + [sym__automatic_semicolon] = ACTIONS(4850), + [sym_safe_nav] = ACTIONS(4850), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4850), + }, + [1077] = { + [sym__alpha_identifier] = ACTIONS(4852), + [anon_sym_AT] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_RBRACE] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4854), + [anon_sym_COMMA] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_where] = ACTIONS(4852), + [anon_sym_object] = ACTIONS(4852), + [anon_sym_fun] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym_get] = ACTIONS(4852), + [anon_sym_set] = ACTIONS(4852), + [anon_sym_this] = ACTIONS(4852), + [anon_sym_super] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4852), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_QMARK_COLON] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4852), + [anon_sym_when] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4852), + [anon_sym_throw] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4852), + [anon_sym_continue] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4854), + [anon_sym_DASH_EQ] = ACTIONS(4854), + [anon_sym_STAR_EQ] = ACTIONS(4854), + [anon_sym_SLASH_EQ] = ACTIONS(4854), + [anon_sym_PERCENT_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4854), + [anon_sym_BANGin] = ACTIONS(4854), + [anon_sym_is] = ACTIONS(4852), + [anon_sym_BANGis] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4854), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4854), + [anon_sym_suspend] = ACTIONS(4852), + [anon_sym_sealed] = ACTIONS(4852), + [anon_sym_annotation] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4852), + [anon_sym_inner] = ACTIONS(4852), + [anon_sym_value] = ACTIONS(4852), + [anon_sym_override] = ACTIONS(4852), + [anon_sym_lateinit] = ACTIONS(4852), + [anon_sym_public] = ACTIONS(4852), + [anon_sym_private] = ACTIONS(4852), + [anon_sym_internal] = ACTIONS(4852), + [anon_sym_protected] = ACTIONS(4852), + [anon_sym_tailrec] = ACTIONS(4852), + [anon_sym_operator] = ACTIONS(4852), + [anon_sym_infix] = ACTIONS(4852), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym_external] = ACTIONS(4852), + [sym_property_modifier] = ACTIONS(4852), + [anon_sym_abstract] = ACTIONS(4852), + [anon_sym_final] = ACTIONS(4852), + [anon_sym_open] = ACTIONS(4852), + [anon_sym_vararg] = ACTIONS(4852), + [anon_sym_noinline] = ACTIONS(4852), + [anon_sym_crossinline] = ACTIONS(4852), + [anon_sym_expect] = ACTIONS(4852), + [anon_sym_actual] = ACTIONS(4852), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4854), + [anon_sym_continue_AT] = ACTIONS(4854), + [anon_sym_break_AT] = ACTIONS(4854), + [anon_sym_this_AT] = ACTIONS(4854), + [anon_sym_super_AT] = ACTIONS(4854), + [sym_real_literal] = ACTIONS(4854), + [sym_integer_literal] = ACTIONS(4852), + [sym_hex_literal] = ACTIONS(4854), + [sym_bin_literal] = ACTIONS(4854), + [anon_sym_true] = ACTIONS(4852), + [anon_sym_false] = ACTIONS(4852), + [anon_sym_SQUOTE] = ACTIONS(4854), + [sym_null_literal] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4854), + [sym__automatic_semicolon] = ACTIONS(4854), + [sym_safe_nav] = ACTIONS(4854), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4854), + }, + [1078] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [1079] = { + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [1080] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [1081] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1082] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym_null_literal] = ACTIONS(4892), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), + }, + [1083] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_object] = ACTIONS(4896), + [anon_sym_fun] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_this] = ACTIONS(4896), + [anon_sym_super] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4896), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4896), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_when] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4896), + [anon_sym_throw] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4896), + [anon_sym_continue] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_suspend] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_lateinit] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_tailrec] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4896), + [anon_sym_infix] = ACTIONS(4896), + [anon_sym_inline] = ACTIONS(4896), + [anon_sym_external] = ACTIONS(4896), + [sym_property_modifier] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_final] = ACTIONS(4896), + [anon_sym_open] = ACTIONS(4896), + [anon_sym_vararg] = ACTIONS(4896), + [anon_sym_noinline] = ACTIONS(4896), + [anon_sym_crossinline] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4898), + [anon_sym_continue_AT] = ACTIONS(4898), + [anon_sym_break_AT] = ACTIONS(4898), + [anon_sym_this_AT] = ACTIONS(4898), + [anon_sym_super_AT] = ACTIONS(4898), + [sym_real_literal] = ACTIONS(4898), + [sym_integer_literal] = ACTIONS(4896), + [sym_hex_literal] = ACTIONS(4898), + [sym_bin_literal] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4896), + [anon_sym_false] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4898), + [sym_null_literal] = ACTIONS(4896), + [sym__backtick_identifier] = ACTIONS(4898), + [sym__automatic_semicolon] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4898), + }, + [1084] = { + [sym__alpha_identifier] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_object] = ACTIONS(4900), + [anon_sym_fun] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_get] = ACTIONS(4900), + [anon_sym_set] = ACTIONS(4900), + [anon_sym_this] = ACTIONS(4900), + [anon_sym_super] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [sym_label] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_QMARK_COLON] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_when] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4900), + [anon_sym_throw] = ACTIONS(4900), + [anon_sym_return] = ACTIONS(4900), + [anon_sym_continue] = ACTIONS(4900), + [anon_sym_break] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4902), + [anon_sym_BANGin] = ACTIONS(4902), + [anon_sym_is] = ACTIONS(4900), + [anon_sym_BANGis] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_as_QMARK] = ACTIONS(4902), + [anon_sym_PLUS_PLUS] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_BANG_BANG] = ACTIONS(4902), + [anon_sym_suspend] = ACTIONS(4900), + [anon_sym_sealed] = ACTIONS(4900), + [anon_sym_annotation] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4900), + [anon_sym_inner] = ACTIONS(4900), + [anon_sym_value] = ACTIONS(4900), + [anon_sym_override] = ACTIONS(4900), + [anon_sym_lateinit] = ACTIONS(4900), + [anon_sym_public] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4900), + [anon_sym_internal] = ACTIONS(4900), + [anon_sym_protected] = ACTIONS(4900), + [anon_sym_tailrec] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4900), + [anon_sym_infix] = ACTIONS(4900), + [anon_sym_inline] = ACTIONS(4900), + [anon_sym_external] = ACTIONS(4900), + [sym_property_modifier] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_final] = ACTIONS(4900), + [anon_sym_open] = ACTIONS(4900), + [anon_sym_vararg] = ACTIONS(4900), + [anon_sym_noinline] = ACTIONS(4900), + [anon_sym_crossinline] = ACTIONS(4900), + [anon_sym_expect] = ACTIONS(4900), + [anon_sym_actual] = ACTIONS(4900), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4902), + [anon_sym_continue_AT] = ACTIONS(4902), + [anon_sym_break_AT] = ACTIONS(4902), + [anon_sym_this_AT] = ACTIONS(4902), + [anon_sym_super_AT] = ACTIONS(4902), + [sym_real_literal] = ACTIONS(4902), + [sym_integer_literal] = ACTIONS(4900), + [sym_hex_literal] = ACTIONS(4902), + [sym_bin_literal] = ACTIONS(4902), + [anon_sym_true] = ACTIONS(4900), + [anon_sym_false] = ACTIONS(4900), + [anon_sym_SQUOTE] = ACTIONS(4902), + [sym_null_literal] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(4902), + [sym__automatic_semicolon] = ACTIONS(4902), + [sym_safe_nav] = ACTIONS(4902), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4902), + }, + [1085] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [1086] = { + [sym_function_body] = STATE(1077), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [1087] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym_null_literal] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [1088] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [sym_label] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(3135), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [1089] = { + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_object] = ACTIONS(4904), + [anon_sym_fun] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_this] = ACTIONS(4904), + [anon_sym_super] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_when] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4904), + [anon_sym_throw] = ACTIONS(4904), + [anon_sym_return] = ACTIONS(4904), + [anon_sym_continue] = ACTIONS(4904), + [anon_sym_break] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_suspend] = ACTIONS(4904), + [anon_sym_sealed] = ACTIONS(4904), + [anon_sym_annotation] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_override] = ACTIONS(4904), + [anon_sym_lateinit] = ACTIONS(4904), + [anon_sym_public] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4904), + [anon_sym_internal] = ACTIONS(4904), + [anon_sym_protected] = ACTIONS(4904), + [anon_sym_tailrec] = ACTIONS(4904), + [anon_sym_operator] = ACTIONS(4904), + [anon_sym_infix] = ACTIONS(4904), + [anon_sym_inline] = ACTIONS(4904), + [anon_sym_external] = ACTIONS(4904), + [sym_property_modifier] = ACTIONS(4904), + [anon_sym_abstract] = ACTIONS(4904), + [anon_sym_final] = ACTIONS(4904), + [anon_sym_open] = ACTIONS(4904), + [anon_sym_vararg] = ACTIONS(4904), + [anon_sym_noinline] = ACTIONS(4904), + [anon_sym_crossinline] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4906), + [anon_sym_continue_AT] = ACTIONS(4906), + [anon_sym_break_AT] = ACTIONS(4906), + [anon_sym_this_AT] = ACTIONS(4906), + [anon_sym_super_AT] = ACTIONS(4906), + [sym_real_literal] = ACTIONS(4906), + [sym_integer_literal] = ACTIONS(4904), + [sym_hex_literal] = ACTIONS(4906), + [sym_bin_literal] = ACTIONS(4906), + [anon_sym_true] = ACTIONS(4904), + [anon_sym_false] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4906), + [sym_null_literal] = ACTIONS(4904), + [sym__backtick_identifier] = ACTIONS(4906), + [sym__automatic_semicolon] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4906), + }, + [1090] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_object] = ACTIONS(4908), + [anon_sym_fun] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_this] = ACTIONS(4908), + [anon_sym_super] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_when] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4908), + [anon_sym_throw] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4908), + [anon_sym_continue] = ACTIONS(4908), + [anon_sym_break] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_suspend] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_override] = ACTIONS(4908), + [anon_sym_lateinit] = ACTIONS(4908), + [anon_sym_public] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4908), + [anon_sym_internal] = ACTIONS(4908), + [anon_sym_protected] = ACTIONS(4908), + [anon_sym_tailrec] = ACTIONS(4908), + [anon_sym_operator] = ACTIONS(4908), + [anon_sym_infix] = ACTIONS(4908), + [anon_sym_inline] = ACTIONS(4908), + [anon_sym_external] = ACTIONS(4908), + [sym_property_modifier] = ACTIONS(4908), + [anon_sym_abstract] = ACTIONS(4908), + [anon_sym_final] = ACTIONS(4908), + [anon_sym_open] = ACTIONS(4908), + [anon_sym_vararg] = ACTIONS(4908), + [anon_sym_noinline] = ACTIONS(4908), + [anon_sym_crossinline] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4910), + [anon_sym_continue_AT] = ACTIONS(4910), + [anon_sym_break_AT] = ACTIONS(4910), + [anon_sym_this_AT] = ACTIONS(4910), + [anon_sym_super_AT] = ACTIONS(4910), + [sym_real_literal] = ACTIONS(4910), + [sym_integer_literal] = ACTIONS(4908), + [sym_hex_literal] = ACTIONS(4910), + [sym_bin_literal] = ACTIONS(4910), + [anon_sym_true] = ACTIONS(4908), + [anon_sym_false] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4910), + [sym_null_literal] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(4910), + [sym__automatic_semicolon] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4910), + }, + [1091] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_object] = ACTIONS(4912), + [anon_sym_fun] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_this] = ACTIONS(4912), + [anon_sym_super] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_if] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_when] = ACTIONS(4912), + [anon_sym_try] = ACTIONS(4912), + [anon_sym_throw] = ACTIONS(4912), + [anon_sym_return] = ACTIONS(4912), + [anon_sym_continue] = ACTIONS(4912), + [anon_sym_break] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_suspend] = ACTIONS(4912), + [anon_sym_sealed] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_override] = ACTIONS(4912), + [anon_sym_lateinit] = ACTIONS(4912), + [anon_sym_public] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4912), + [anon_sym_internal] = ACTIONS(4912), + [anon_sym_protected] = ACTIONS(4912), + [anon_sym_tailrec] = ACTIONS(4912), + [anon_sym_operator] = ACTIONS(4912), + [anon_sym_infix] = ACTIONS(4912), + [anon_sym_inline] = ACTIONS(4912), + [anon_sym_external] = ACTIONS(4912), + [sym_property_modifier] = ACTIONS(4912), + [anon_sym_abstract] = ACTIONS(4912), + [anon_sym_final] = ACTIONS(4912), + [anon_sym_open] = ACTIONS(4912), + [anon_sym_vararg] = ACTIONS(4912), + [anon_sym_noinline] = ACTIONS(4912), + [anon_sym_crossinline] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4914), + [anon_sym_continue_AT] = ACTIONS(4914), + [anon_sym_break_AT] = ACTIONS(4914), + [anon_sym_this_AT] = ACTIONS(4914), + [anon_sym_super_AT] = ACTIONS(4914), + [sym_real_literal] = ACTIONS(4914), + [sym_integer_literal] = ACTIONS(4912), + [sym_hex_literal] = ACTIONS(4914), + [sym_bin_literal] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4912), + [anon_sym_false] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4914), + [sym_null_literal] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(4914), + [sym__automatic_semicolon] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4914), + }, + [1092] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_object] = ACTIONS(4916), + [anon_sym_fun] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_this] = ACTIONS(4916), + [anon_sym_super] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_when] = ACTIONS(4916), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_throw] = ACTIONS(4916), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_suspend] = ACTIONS(4916), + [anon_sym_sealed] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_override] = ACTIONS(4916), + [anon_sym_lateinit] = ACTIONS(4916), + [anon_sym_public] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4916), + [anon_sym_internal] = ACTIONS(4916), + [anon_sym_protected] = ACTIONS(4916), + [anon_sym_tailrec] = ACTIONS(4916), + [anon_sym_operator] = ACTIONS(4916), + [anon_sym_infix] = ACTIONS(4916), + [anon_sym_inline] = ACTIONS(4916), + [anon_sym_external] = ACTIONS(4916), + [sym_property_modifier] = ACTIONS(4916), + [anon_sym_abstract] = ACTIONS(4916), + [anon_sym_final] = ACTIONS(4916), + [anon_sym_open] = ACTIONS(4916), + [anon_sym_vararg] = ACTIONS(4916), + [anon_sym_noinline] = ACTIONS(4916), + [anon_sym_crossinline] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4918), + [anon_sym_continue_AT] = ACTIONS(4918), + [anon_sym_break_AT] = ACTIONS(4918), + [anon_sym_this_AT] = ACTIONS(4918), + [anon_sym_super_AT] = ACTIONS(4918), + [sym_real_literal] = ACTIONS(4918), + [sym_integer_literal] = ACTIONS(4916), + [sym_hex_literal] = ACTIONS(4918), + [sym_bin_literal] = ACTIONS(4918), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4918), + [sym_null_literal] = ACTIONS(4916), + [sym__backtick_identifier] = ACTIONS(4918), + [sym__automatic_semicolon] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4918), + }, + [1093] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_object] = ACTIONS(4920), + [anon_sym_fun] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_this] = ACTIONS(4920), + [anon_sym_super] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4920), + [anon_sym_throw] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4920), + [anon_sym_continue] = ACTIONS(4920), + [anon_sym_break] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_suspend] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_lateinit] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_tailrec] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4920), + [anon_sym_infix] = ACTIONS(4920), + [anon_sym_inline] = ACTIONS(4920), + [anon_sym_external] = ACTIONS(4920), + [sym_property_modifier] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_final] = ACTIONS(4920), + [anon_sym_open] = ACTIONS(4920), + [anon_sym_vararg] = ACTIONS(4920), + [anon_sym_noinline] = ACTIONS(4920), + [anon_sym_crossinline] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4922), + [anon_sym_continue_AT] = ACTIONS(4922), + [anon_sym_break_AT] = ACTIONS(4922), + [anon_sym_this_AT] = ACTIONS(4922), + [anon_sym_super_AT] = ACTIONS(4922), + [sym_real_literal] = ACTIONS(4922), + [sym_integer_literal] = ACTIONS(4920), + [sym_hex_literal] = ACTIONS(4922), + [sym_bin_literal] = ACTIONS(4922), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4922), + [sym_null_literal] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4922), + [sym__automatic_semicolon] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4922), + }, + [1094] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_object] = ACTIONS(4924), + [anon_sym_fun] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_this] = ACTIONS(4924), + [anon_sym_super] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_when] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4924), + [anon_sym_throw] = ACTIONS(4924), + [anon_sym_return] = ACTIONS(4924), + [anon_sym_continue] = ACTIONS(4924), + [anon_sym_break] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_suspend] = ACTIONS(4924), + [anon_sym_sealed] = ACTIONS(4924), + [anon_sym_annotation] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_override] = ACTIONS(4924), + [anon_sym_lateinit] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4924), + [anon_sym_internal] = ACTIONS(4924), + [anon_sym_protected] = ACTIONS(4924), + [anon_sym_tailrec] = ACTIONS(4924), + [anon_sym_operator] = ACTIONS(4924), + [anon_sym_infix] = ACTIONS(4924), + [anon_sym_inline] = ACTIONS(4924), + [anon_sym_external] = ACTIONS(4924), + [sym_property_modifier] = ACTIONS(4924), + [anon_sym_abstract] = ACTIONS(4924), + [anon_sym_final] = ACTIONS(4924), + [anon_sym_open] = ACTIONS(4924), + [anon_sym_vararg] = ACTIONS(4924), + [anon_sym_noinline] = ACTIONS(4924), + [anon_sym_crossinline] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4926), + [anon_sym_continue_AT] = ACTIONS(4926), + [anon_sym_break_AT] = ACTIONS(4926), + [anon_sym_this_AT] = ACTIONS(4926), + [anon_sym_super_AT] = ACTIONS(4926), + [sym_real_literal] = ACTIONS(4926), + [sym_integer_literal] = ACTIONS(4924), + [sym_hex_literal] = ACTIONS(4926), + [sym_bin_literal] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4924), + [anon_sym_false] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4926), + [sym_null_literal] = ACTIONS(4924), + [sym__backtick_identifier] = ACTIONS(4926), + [sym__automatic_semicolon] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4926), + }, + [1095] = { + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(3380), + [anon_sym_sealed] = ACTIONS(3380), + [anon_sym_annotation] = ACTIONS(3380), + [anon_sym_data] = ACTIONS(3380), + [anon_sym_inner] = ACTIONS(3380), + [anon_sym_value] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_lateinit] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_internal] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_tailrec] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_infix] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_external] = ACTIONS(3380), + [sym_property_modifier] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_final] = ACTIONS(3380), + [anon_sym_open] = ACTIONS(3380), + [anon_sym_vararg] = ACTIONS(3380), + [anon_sym_noinline] = ACTIONS(3380), + [anon_sym_crossinline] = ACTIONS(3380), + [anon_sym_expect] = ACTIONS(3380), + [anon_sym_actual] = ACTIONS(3380), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [1096] = { + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [1097] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [1098] = { + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [1099] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_object] = ACTIONS(4928), + [anon_sym_fun] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_this] = ACTIONS(4928), + [anon_sym_super] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_when] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4928), + [anon_sym_throw] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4928), + [anon_sym_continue] = ACTIONS(4928), + [anon_sym_break] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_suspend] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_lateinit] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_tailrec] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4928), + [anon_sym_infix] = ACTIONS(4928), + [anon_sym_inline] = ACTIONS(4928), + [anon_sym_external] = ACTIONS(4928), + [sym_property_modifier] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_final] = ACTIONS(4928), + [anon_sym_open] = ACTIONS(4928), + [anon_sym_vararg] = ACTIONS(4928), + [anon_sym_noinline] = ACTIONS(4928), + [anon_sym_crossinline] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4930), + [anon_sym_continue_AT] = ACTIONS(4930), + [anon_sym_break_AT] = ACTIONS(4930), + [anon_sym_this_AT] = ACTIONS(4930), + [anon_sym_super_AT] = ACTIONS(4930), + [sym_real_literal] = ACTIONS(4930), + [sym_integer_literal] = ACTIONS(4928), + [sym_hex_literal] = ACTIONS(4930), + [sym_bin_literal] = ACTIONS(4930), + [anon_sym_true] = ACTIONS(4928), + [anon_sym_false] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4930), + [sym_null_literal] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4930), + [sym__automatic_semicolon] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4930), + }, + [1100] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [1101] = { + [sym__alpha_identifier] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_where] = ACTIONS(4932), + [anon_sym_object] = ACTIONS(4932), + [anon_sym_fun] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(4932), + [anon_sym_set] = ACTIONS(4932), + [anon_sym_this] = ACTIONS(4932), + [anon_sym_super] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_QMARK_COLON] = ACTIONS(4934), + [anon_sym_AMP_AMP] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4932), + [anon_sym_when] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4932), + [anon_sym_throw] = ACTIONS(4932), + [anon_sym_return] = ACTIONS(4932), + [anon_sym_continue] = ACTIONS(4932), + [anon_sym_break] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4934), + [anon_sym_DASH_EQ] = ACTIONS(4934), + [anon_sym_STAR_EQ] = ACTIONS(4934), + [anon_sym_SLASH_EQ] = ACTIONS(4934), + [anon_sym_PERCENT_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4934), + [anon_sym_BANGin] = ACTIONS(4934), + [anon_sym_is] = ACTIONS(4932), + [anon_sym_BANGis] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_as_QMARK] = ACTIONS(4934), + [anon_sym_PLUS_PLUS] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4934), + [anon_sym_suspend] = ACTIONS(4932), + [anon_sym_sealed] = ACTIONS(4932), + [anon_sym_annotation] = ACTIONS(4932), + [anon_sym_data] = ACTIONS(4932), + [anon_sym_inner] = ACTIONS(4932), + [anon_sym_value] = ACTIONS(4932), + [anon_sym_override] = ACTIONS(4932), + [anon_sym_lateinit] = ACTIONS(4932), + [anon_sym_public] = ACTIONS(4932), + [anon_sym_private] = ACTIONS(4932), + [anon_sym_internal] = ACTIONS(4932), + [anon_sym_protected] = ACTIONS(4932), + [anon_sym_tailrec] = ACTIONS(4932), + [anon_sym_operator] = ACTIONS(4932), + [anon_sym_infix] = ACTIONS(4932), + [anon_sym_inline] = ACTIONS(4932), + [anon_sym_external] = ACTIONS(4932), + [sym_property_modifier] = ACTIONS(4932), + [anon_sym_abstract] = ACTIONS(4932), + [anon_sym_final] = ACTIONS(4932), + [anon_sym_open] = ACTIONS(4932), + [anon_sym_vararg] = ACTIONS(4932), + [anon_sym_noinline] = ACTIONS(4932), + [anon_sym_crossinline] = ACTIONS(4932), + [anon_sym_expect] = ACTIONS(4932), + [anon_sym_actual] = ACTIONS(4932), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4934), + [anon_sym_continue_AT] = ACTIONS(4934), + [anon_sym_break_AT] = ACTIONS(4934), + [anon_sym_this_AT] = ACTIONS(4934), + [anon_sym_super_AT] = ACTIONS(4934), + [sym_real_literal] = ACTIONS(4934), + [sym_integer_literal] = ACTIONS(4932), + [sym_hex_literal] = ACTIONS(4934), + [sym_bin_literal] = ACTIONS(4934), + [anon_sym_true] = ACTIONS(4932), + [anon_sym_false] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4934), + [sym_null_literal] = ACTIONS(4932), + [sym__backtick_identifier] = ACTIONS(4934), + [sym__automatic_semicolon] = ACTIONS(4934), + [sym_safe_nav] = ACTIONS(4934), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4934), + }, + [1102] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4936), + [anon_sym_fun] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_this] = ACTIONS(4936), + [anon_sym_super] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_if] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_try] = ACTIONS(4936), + [anon_sym_throw] = ACTIONS(4936), + [anon_sym_return] = ACTIONS(4936), + [anon_sym_continue] = ACTIONS(4936), + [anon_sym_break] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4938), + [anon_sym_continue_AT] = ACTIONS(4938), + [anon_sym_break_AT] = ACTIONS(4938), + [anon_sym_this_AT] = ACTIONS(4938), + [anon_sym_super_AT] = ACTIONS(4938), + [sym_real_literal] = ACTIONS(4938), + [sym_integer_literal] = ACTIONS(4936), + [sym_hex_literal] = ACTIONS(4938), + [sym_bin_literal] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4938), + [sym_null_literal] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4938), + }, + [1103] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_object] = ACTIONS(4940), + [anon_sym_fun] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_this] = ACTIONS(4940), + [anon_sym_super] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_when] = ACTIONS(4940), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_throw] = ACTIONS(4940), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_suspend] = ACTIONS(4940), + [anon_sym_sealed] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_override] = ACTIONS(4940), + [anon_sym_lateinit] = ACTIONS(4940), + [anon_sym_public] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4940), + [anon_sym_internal] = ACTIONS(4940), + [anon_sym_protected] = ACTIONS(4940), + [anon_sym_tailrec] = ACTIONS(4940), + [anon_sym_operator] = ACTIONS(4940), + [anon_sym_infix] = ACTIONS(4940), + [anon_sym_inline] = ACTIONS(4940), + [anon_sym_external] = ACTIONS(4940), + [sym_property_modifier] = ACTIONS(4940), + [anon_sym_abstract] = ACTIONS(4940), + [anon_sym_final] = ACTIONS(4940), + [anon_sym_open] = ACTIONS(4940), + [anon_sym_vararg] = ACTIONS(4940), + [anon_sym_noinline] = ACTIONS(4940), + [anon_sym_crossinline] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4942), + [anon_sym_continue_AT] = ACTIONS(4942), + [anon_sym_break_AT] = ACTIONS(4942), + [anon_sym_this_AT] = ACTIONS(4942), + [anon_sym_super_AT] = ACTIONS(4942), + [sym_real_literal] = ACTIONS(4942), + [sym_integer_literal] = ACTIONS(4940), + [sym_hex_literal] = ACTIONS(4942), + [sym_bin_literal] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_SQUOTE] = ACTIONS(4942), + [sym_null_literal] = ACTIONS(4940), + [sym__backtick_identifier] = ACTIONS(4942), + [sym__automatic_semicolon] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4942), + }, + [1104] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_object] = ACTIONS(4944), + [anon_sym_fun] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_this] = ACTIONS(4944), + [anon_sym_super] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_when] = ACTIONS(4944), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_throw] = ACTIONS(4944), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_suspend] = ACTIONS(4944), + [anon_sym_sealed] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_override] = ACTIONS(4944), + [anon_sym_lateinit] = ACTIONS(4944), + [anon_sym_public] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4944), + [anon_sym_internal] = ACTIONS(4944), + [anon_sym_protected] = ACTIONS(4944), + [anon_sym_tailrec] = ACTIONS(4944), + [anon_sym_operator] = ACTIONS(4944), + [anon_sym_infix] = ACTIONS(4944), + [anon_sym_inline] = ACTIONS(4944), + [anon_sym_external] = ACTIONS(4944), + [sym_property_modifier] = ACTIONS(4944), + [anon_sym_abstract] = ACTIONS(4944), + [anon_sym_final] = ACTIONS(4944), + [anon_sym_open] = ACTIONS(4944), + [anon_sym_vararg] = ACTIONS(4944), + [anon_sym_noinline] = ACTIONS(4944), + [anon_sym_crossinline] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4946), + [anon_sym_continue_AT] = ACTIONS(4946), + [anon_sym_break_AT] = ACTIONS(4946), + [anon_sym_this_AT] = ACTIONS(4946), + [anon_sym_super_AT] = ACTIONS(4946), + [sym_real_literal] = ACTIONS(4946), + [sym_integer_literal] = ACTIONS(4944), + [sym_hex_literal] = ACTIONS(4946), + [sym_bin_literal] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4946), + [sym_null_literal] = ACTIONS(4944), + [sym__backtick_identifier] = ACTIONS(4946), + [sym__automatic_semicolon] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4946), + }, + [1105] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_object] = ACTIONS(4948), + [anon_sym_fun] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_this] = ACTIONS(4948), + [anon_sym_super] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_when] = ACTIONS(4948), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_throw] = ACTIONS(4948), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_suspend] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_lateinit] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_tailrec] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4948), + [anon_sym_infix] = ACTIONS(4948), + [anon_sym_inline] = ACTIONS(4948), + [anon_sym_external] = ACTIONS(4948), + [sym_property_modifier] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_final] = ACTIONS(4948), + [anon_sym_open] = ACTIONS(4948), + [anon_sym_vararg] = ACTIONS(4948), + [anon_sym_noinline] = ACTIONS(4948), + [anon_sym_crossinline] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4950), + [anon_sym_continue_AT] = ACTIONS(4950), + [anon_sym_break_AT] = ACTIONS(4950), + [anon_sym_this_AT] = ACTIONS(4950), + [anon_sym_super_AT] = ACTIONS(4950), + [sym_real_literal] = ACTIONS(4950), + [sym_integer_literal] = ACTIONS(4948), + [sym_hex_literal] = ACTIONS(4950), + [sym_bin_literal] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_SQUOTE] = ACTIONS(4950), + [sym_null_literal] = ACTIONS(4948), + [sym__backtick_identifier] = ACTIONS(4950), + [sym__automatic_semicolon] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4950), + }, + [1106] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_object] = ACTIONS(4952), + [anon_sym_fun] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_this] = ACTIONS(4952), + [anon_sym_super] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_throw] = ACTIONS(4952), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_suspend] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_lateinit] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_tailrec] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4952), + [anon_sym_infix] = ACTIONS(4952), + [anon_sym_inline] = ACTIONS(4952), + [anon_sym_external] = ACTIONS(4952), + [sym_property_modifier] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_final] = ACTIONS(4952), + [anon_sym_open] = ACTIONS(4952), + [anon_sym_vararg] = ACTIONS(4952), + [anon_sym_noinline] = ACTIONS(4952), + [anon_sym_crossinline] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4954), + [anon_sym_continue_AT] = ACTIONS(4954), + [anon_sym_break_AT] = ACTIONS(4954), + [anon_sym_this_AT] = ACTIONS(4954), + [anon_sym_super_AT] = ACTIONS(4954), + [sym_real_literal] = ACTIONS(4954), + [sym_integer_literal] = ACTIONS(4952), + [sym_hex_literal] = ACTIONS(4954), + [sym_bin_literal] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_SQUOTE] = ACTIONS(4954), + [sym_null_literal] = ACTIONS(4952), + [sym__backtick_identifier] = ACTIONS(4954), + [sym__automatic_semicolon] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4954), + }, + [1107] = { + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [1108] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_object] = ACTIONS(4956), + [anon_sym_fun] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_this] = ACTIONS(4956), + [anon_sym_super] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_when] = ACTIONS(4956), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_throw] = ACTIONS(4956), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_suspend] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_lateinit] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_tailrec] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4956), + [anon_sym_infix] = ACTIONS(4956), + [anon_sym_inline] = ACTIONS(4956), + [anon_sym_external] = ACTIONS(4956), + [sym_property_modifier] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_final] = ACTIONS(4956), + [anon_sym_open] = ACTIONS(4956), + [anon_sym_vararg] = ACTIONS(4956), + [anon_sym_noinline] = ACTIONS(4956), + [anon_sym_crossinline] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4958), + [anon_sym_continue_AT] = ACTIONS(4958), + [anon_sym_break_AT] = ACTIONS(4958), + [anon_sym_this_AT] = ACTIONS(4958), + [anon_sym_super_AT] = ACTIONS(4958), + [sym_real_literal] = ACTIONS(4958), + [sym_integer_literal] = ACTIONS(4956), + [sym_hex_literal] = ACTIONS(4958), + [sym_bin_literal] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_SQUOTE] = ACTIONS(4958), + [sym_null_literal] = ACTIONS(4956), + [sym__backtick_identifier] = ACTIONS(4958), + [sym__automatic_semicolon] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4958), + }, + [1109] = { + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_object] = ACTIONS(4557), + [anon_sym_fun] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_this] = ACTIONS(4557), + [anon_sym_super] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_when] = ACTIONS(4557), + [anon_sym_try] = ACTIONS(4557), + [anon_sym_throw] = ACTIONS(4557), + [anon_sym_return] = ACTIONS(4557), + [anon_sym_continue] = ACTIONS(4557), + [anon_sym_break] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4559), + [anon_sym_continue_AT] = ACTIONS(4559), + [anon_sym_break_AT] = ACTIONS(4559), + [anon_sym_this_AT] = ACTIONS(4559), + [anon_sym_super_AT] = ACTIONS(4559), + [sym_real_literal] = ACTIONS(4559), + [sym_integer_literal] = ACTIONS(4557), + [sym_hex_literal] = ACTIONS(4559), + [sym_bin_literal] = ACTIONS(4559), + [anon_sym_true] = ACTIONS(4557), + [anon_sym_false] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4559), + [sym_null_literal] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4559), + }, + [1110] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(1768), + [anon_sym_sealed] = ACTIONS(1768), + [anon_sym_annotation] = ACTIONS(1768), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_value] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_lateinit] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_internal] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_tailrec] = ACTIONS(1768), + [anon_sym_operator] = ACTIONS(1768), + [anon_sym_infix] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [anon_sym_external] = ACTIONS(1768), + [sym_property_modifier] = ACTIONS(1768), + [anon_sym_abstract] = ACTIONS(1768), + [anon_sym_final] = ACTIONS(1768), + [anon_sym_open] = ACTIONS(1768), + [anon_sym_vararg] = ACTIONS(1768), + [anon_sym_noinline] = ACTIONS(1768), + [anon_sym_crossinline] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [1111] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_object] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_this] = ACTIONS(4960), + [anon_sym_super] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_when] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_throw] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_suspend] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_lateinit] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_tailrec] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4960), + [anon_sym_infix] = ACTIONS(4960), + [anon_sym_inline] = ACTIONS(4960), + [anon_sym_external] = ACTIONS(4960), + [sym_property_modifier] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_final] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_vararg] = ACTIONS(4960), + [anon_sym_noinline] = ACTIONS(4960), + [anon_sym_crossinline] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4962), + [anon_sym_continue_AT] = ACTIONS(4962), + [anon_sym_break_AT] = ACTIONS(4962), + [anon_sym_this_AT] = ACTIONS(4962), + [anon_sym_super_AT] = ACTIONS(4962), + [sym_real_literal] = ACTIONS(4962), + [sym_integer_literal] = ACTIONS(4960), + [sym_hex_literal] = ACTIONS(4962), + [sym_bin_literal] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_SQUOTE] = ACTIONS(4962), + [sym_null_literal] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(4962), + [sym__automatic_semicolon] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4962), + }, + [1112] = { + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [1113] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_object] = ACTIONS(4964), + [anon_sym_fun] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_this] = ACTIONS(4964), + [anon_sym_super] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_when] = ACTIONS(4964), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_throw] = ACTIONS(4964), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_suspend] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_lateinit] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_tailrec] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4964), + [anon_sym_infix] = ACTIONS(4964), + [anon_sym_inline] = ACTIONS(4964), + [anon_sym_external] = ACTIONS(4964), + [sym_property_modifier] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_final] = ACTIONS(4964), + [anon_sym_open] = ACTIONS(4964), + [anon_sym_vararg] = ACTIONS(4964), + [anon_sym_noinline] = ACTIONS(4964), + [anon_sym_crossinline] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4966), + [anon_sym_continue_AT] = ACTIONS(4966), + [anon_sym_break_AT] = ACTIONS(4966), + [anon_sym_this_AT] = ACTIONS(4966), + [anon_sym_super_AT] = ACTIONS(4966), + [sym_real_literal] = ACTIONS(4966), + [sym_integer_literal] = ACTIONS(4964), + [sym_hex_literal] = ACTIONS(4966), + [sym_bin_literal] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_SQUOTE] = ACTIONS(4966), + [sym_null_literal] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4966), + [sym__automatic_semicolon] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4966), + }, + [1114] = { + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(1750), + [anon_sym_sealed] = ACTIONS(1750), + [anon_sym_annotation] = ACTIONS(1750), + [anon_sym_data] = ACTIONS(1750), + [anon_sym_inner] = ACTIONS(1750), + [anon_sym_value] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_lateinit] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_internal] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_tailrec] = ACTIONS(1750), + [anon_sym_operator] = ACTIONS(1750), + [anon_sym_infix] = ACTIONS(1750), + [anon_sym_inline] = ACTIONS(1750), + [anon_sym_external] = ACTIONS(1750), + [sym_property_modifier] = ACTIONS(1750), + [anon_sym_abstract] = ACTIONS(1750), + [anon_sym_final] = ACTIONS(1750), + [anon_sym_open] = ACTIONS(1750), + [anon_sym_vararg] = ACTIONS(1750), + [anon_sym_noinline] = ACTIONS(1750), + [anon_sym_crossinline] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1750), + [anon_sym_actual] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [1115] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_object] = ACTIONS(4968), + [anon_sym_fun] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_this] = ACTIONS(4968), + [anon_sym_super] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_when] = ACTIONS(4968), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_throw] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4970), + [anon_sym_continue_AT] = ACTIONS(4970), + [anon_sym_break_AT] = ACTIONS(4970), + [anon_sym_this_AT] = ACTIONS(4970), + [anon_sym_super_AT] = ACTIONS(4970), + [sym_real_literal] = ACTIONS(4970), + [sym_integer_literal] = ACTIONS(4968), + [sym_hex_literal] = ACTIONS(4970), + [sym_bin_literal] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_SQUOTE] = ACTIONS(4970), + [sym_null_literal] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4970), + [sym__automatic_semicolon] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4970), + }, + [1116] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_object] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_this] = ACTIONS(4972), + [anon_sym_super] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_when] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_throw] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_suspend] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_lateinit] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_tailrec] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4972), + [anon_sym_infix] = ACTIONS(4972), + [anon_sym_inline] = ACTIONS(4972), + [anon_sym_external] = ACTIONS(4972), + [sym_property_modifier] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_final] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_vararg] = ACTIONS(4972), + [anon_sym_noinline] = ACTIONS(4972), + [anon_sym_crossinline] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4974), + [anon_sym_continue_AT] = ACTIONS(4974), + [anon_sym_break_AT] = ACTIONS(4974), + [anon_sym_this_AT] = ACTIONS(4974), + [anon_sym_super_AT] = ACTIONS(4974), + [sym_real_literal] = ACTIONS(4974), + [sym_integer_literal] = ACTIONS(4972), + [sym_hex_literal] = ACTIONS(4974), + [sym_bin_literal] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_SQUOTE] = ACTIONS(4974), + [sym_null_literal] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4974), + [sym__automatic_semicolon] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4974), + }, + [1117] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_object] = ACTIONS(4976), + [anon_sym_fun] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_this] = ACTIONS(4976), + [anon_sym_super] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_when] = ACTIONS(4976), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_throw] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4978), + [anon_sym_continue_AT] = ACTIONS(4978), + [anon_sym_break_AT] = ACTIONS(4978), + [anon_sym_this_AT] = ACTIONS(4978), + [anon_sym_super_AT] = ACTIONS(4978), + [sym_real_literal] = ACTIONS(4978), + [sym_integer_literal] = ACTIONS(4976), + [sym_hex_literal] = ACTIONS(4978), + [sym_bin_literal] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4978), + [sym_null_literal] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4978), + [sym__automatic_semicolon] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4978), + }, + [1118] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_object] = ACTIONS(4980), + [anon_sym_fun] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_this] = ACTIONS(4980), + [anon_sym_super] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [sym_label] = ACTIONS(4980), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_when] = ACTIONS(4980), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_throw] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4982), + [anon_sym_continue_AT] = ACTIONS(4982), + [anon_sym_break_AT] = ACTIONS(4982), + [anon_sym_this_AT] = ACTIONS(4982), + [anon_sym_super_AT] = ACTIONS(4982), + [sym_real_literal] = ACTIONS(4982), + [sym_integer_literal] = ACTIONS(4980), + [sym_hex_literal] = ACTIONS(4982), + [sym_bin_literal] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4982), + [sym_null_literal] = ACTIONS(4980), + [sym__backtick_identifier] = ACTIONS(4982), + [sym__automatic_semicolon] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4982), + }, + [1119] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_object] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_this] = ACTIONS(4984), + [anon_sym_super] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [sym_label] = ACTIONS(4984), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_when] = ACTIONS(4984), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_throw] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4986), + [anon_sym_continue_AT] = ACTIONS(4986), + [anon_sym_break_AT] = ACTIONS(4986), + [anon_sym_this_AT] = ACTIONS(4986), + [anon_sym_super_AT] = ACTIONS(4986), + [sym_real_literal] = ACTIONS(4986), + [sym_integer_literal] = ACTIONS(4984), + [sym_hex_literal] = ACTIONS(4986), + [sym_bin_literal] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4986), + [sym_null_literal] = ACTIONS(4984), + [sym__backtick_identifier] = ACTIONS(4986), + [sym__automatic_semicolon] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4986), + }, + [1120] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_object] = ACTIONS(4988), + [anon_sym_fun] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_this] = ACTIONS(4988), + [anon_sym_super] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [sym_label] = ACTIONS(4988), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_throw] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4990), + [anon_sym_continue_AT] = ACTIONS(4990), + [anon_sym_break_AT] = ACTIONS(4990), + [anon_sym_this_AT] = ACTIONS(4990), + [anon_sym_super_AT] = ACTIONS(4990), + [sym_real_literal] = ACTIONS(4990), + [sym_integer_literal] = ACTIONS(4988), + [sym_hex_literal] = ACTIONS(4990), + [sym_bin_literal] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4990), + [sym_null_literal] = ACTIONS(4988), + [sym__backtick_identifier] = ACTIONS(4990), + [sym__automatic_semicolon] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4990), + }, + [1121] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_object] = ACTIONS(4992), + [anon_sym_fun] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_this] = ACTIONS(4992), + [anon_sym_super] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4992), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_throw] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(4994), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4994), + [anon_sym_continue_AT] = ACTIONS(4994), + [anon_sym_break_AT] = ACTIONS(4994), + [anon_sym_this_AT] = ACTIONS(4994), + [anon_sym_super_AT] = ACTIONS(4994), + [sym_real_literal] = ACTIONS(4994), + [sym_integer_literal] = ACTIONS(4992), + [sym_hex_literal] = ACTIONS(4994), + [sym_bin_literal] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4994), + [sym_null_literal] = ACTIONS(4992), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4994), + }, + [1122] = { + [sym__alpha_identifier] = ACTIONS(4996), + [anon_sym_AT] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_object] = ACTIONS(4996), + [anon_sym_fun] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_get] = ACTIONS(4996), + [anon_sym_set] = ACTIONS(4996), + [anon_sym_this] = ACTIONS(4996), + [anon_sym_super] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [sym_label] = ACTIONS(4996), + [anon_sym_in] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4998), + [anon_sym_QMARK_COLON] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_when] = ACTIONS(4996), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_throw] = ACTIONS(4996), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_PERCENT_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_BANGin] = ACTIONS(4998), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_BANGis] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_as_QMARK] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_BANG_BANG] = ACTIONS(4998), + [anon_sym_suspend] = ACTIONS(4996), + [anon_sym_sealed] = ACTIONS(4996), + [anon_sym_annotation] = ACTIONS(4996), + [anon_sym_data] = ACTIONS(4996), + [anon_sym_inner] = ACTIONS(4996), + [anon_sym_value] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + [anon_sym_lateinit] = ACTIONS(4996), + [anon_sym_public] = ACTIONS(4996), + [anon_sym_private] = ACTIONS(4996), + [anon_sym_internal] = ACTIONS(4996), + [anon_sym_protected] = ACTIONS(4996), + [anon_sym_tailrec] = ACTIONS(4996), + [anon_sym_operator] = ACTIONS(4996), + [anon_sym_infix] = ACTIONS(4996), + [anon_sym_inline] = ACTIONS(4996), + [anon_sym_external] = ACTIONS(4996), + [sym_property_modifier] = ACTIONS(4996), + [anon_sym_abstract] = ACTIONS(4996), + [anon_sym_final] = ACTIONS(4996), + [anon_sym_open] = ACTIONS(4996), + [anon_sym_vararg] = ACTIONS(4996), + [anon_sym_noinline] = ACTIONS(4996), + [anon_sym_crossinline] = ACTIONS(4996), + [anon_sym_expect] = ACTIONS(4996), + [anon_sym_actual] = ACTIONS(4996), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4998), + [anon_sym_continue_AT] = ACTIONS(4998), + [anon_sym_break_AT] = ACTIONS(4998), + [anon_sym_this_AT] = ACTIONS(4998), + [anon_sym_super_AT] = ACTIONS(4998), + [sym_real_literal] = ACTIONS(4998), + [sym_integer_literal] = ACTIONS(4996), + [sym_hex_literal] = ACTIONS(4998), + [sym_bin_literal] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4998), + [sym_null_literal] = ACTIONS(4996), + [sym__backtick_identifier] = ACTIONS(4998), + [sym__automatic_semicolon] = ACTIONS(4998), + [sym_safe_nav] = ACTIONS(4998), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4998), + }, + [1123] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [1124] = { + [sym__alpha_identifier] = ACTIONS(5000), + [anon_sym_AT] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_as] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_where] = ACTIONS(5000), + [anon_sym_object] = ACTIONS(5000), + [anon_sym_fun] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_get] = ACTIONS(5000), + [anon_sym_set] = ACTIONS(5000), + [anon_sym_this] = ACTIONS(5000), + [anon_sym_super] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [sym_label] = ACTIONS(5000), + [anon_sym_in] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5002), + [anon_sym_QMARK_COLON] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_when] = ACTIONS(5000), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_throw] = ACTIONS(5000), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5002), + [anon_sym_is] = ACTIONS(5000), + [anon_sym_BANGis] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_as_QMARK] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_BANG_BANG] = ACTIONS(5002), + [anon_sym_suspend] = ACTIONS(5000), + [anon_sym_sealed] = ACTIONS(5000), + [anon_sym_annotation] = ACTIONS(5000), + [anon_sym_data] = ACTIONS(5000), + [anon_sym_inner] = ACTIONS(5000), + [anon_sym_value] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_lateinit] = ACTIONS(5000), + [anon_sym_public] = ACTIONS(5000), + [anon_sym_private] = ACTIONS(5000), + [anon_sym_internal] = ACTIONS(5000), + [anon_sym_protected] = ACTIONS(5000), + [anon_sym_tailrec] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + [anon_sym_infix] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym_external] = ACTIONS(5000), + [sym_property_modifier] = ACTIONS(5000), + [anon_sym_abstract] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_open] = ACTIONS(5000), + [anon_sym_vararg] = ACTIONS(5000), + [anon_sym_noinline] = ACTIONS(5000), + [anon_sym_crossinline] = ACTIONS(5000), + [anon_sym_expect] = ACTIONS(5000), + [anon_sym_actual] = ACTIONS(5000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5002), + [anon_sym_continue_AT] = ACTIONS(5002), + [anon_sym_break_AT] = ACTIONS(5002), + [anon_sym_this_AT] = ACTIONS(5002), + [anon_sym_super_AT] = ACTIONS(5002), + [sym_real_literal] = ACTIONS(5002), + [sym_integer_literal] = ACTIONS(5000), + [sym_hex_literal] = ACTIONS(5002), + [sym_bin_literal] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5002), + [sym_null_literal] = ACTIONS(5000), + [sym__backtick_identifier] = ACTIONS(5002), + [sym__automatic_semicolon] = ACTIONS(5002), + [sym_safe_nav] = ACTIONS(5002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5002), + }, + [1125] = { + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(3272), + [anon_sym_sealed] = ACTIONS(3272), + [anon_sym_annotation] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3272), + [anon_sym_inner] = ACTIONS(3272), + [anon_sym_value] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_lateinit] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_internal] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_tailrec] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_infix] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym_external] = ACTIONS(3272), + [sym_property_modifier] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_final] = ACTIONS(3272), + [anon_sym_open] = ACTIONS(3272), + [anon_sym_vararg] = ACTIONS(3272), + [anon_sym_noinline] = ACTIONS(3272), + [anon_sym_crossinline] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3272), + [anon_sym_actual] = ACTIONS(3272), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [1126] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_get] = ACTIONS(5006), + [anon_sym_set] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1127] = { + [sym__alpha_identifier] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_as] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_where] = ACTIONS(5010), + [anon_sym_object] = ACTIONS(5010), + [anon_sym_fun] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(5010), + [anon_sym_set] = ACTIONS(5010), + [anon_sym_this] = ACTIONS(5010), + [anon_sym_super] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [sym_label] = ACTIONS(5010), + [anon_sym_in] = ACTIONS(5010), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_QMARK_COLON] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5010), + [anon_sym_else] = ACTIONS(5010), + [anon_sym_when] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5010), + [anon_sym_throw] = ACTIONS(5010), + [anon_sym_return] = ACTIONS(5010), + [anon_sym_continue] = ACTIONS(5010), + [anon_sym_break] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_BANGin] = ACTIONS(5012), + [anon_sym_is] = ACTIONS(5010), + [anon_sym_BANGis] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_as_QMARK] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_BANG_BANG] = ACTIONS(5012), + [anon_sym_suspend] = ACTIONS(5010), + [anon_sym_sealed] = ACTIONS(5010), + [anon_sym_annotation] = ACTIONS(5010), + [anon_sym_data] = ACTIONS(5010), + [anon_sym_inner] = ACTIONS(5010), + [anon_sym_value] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_lateinit] = ACTIONS(5010), + [anon_sym_public] = ACTIONS(5010), + [anon_sym_private] = ACTIONS(5010), + [anon_sym_internal] = ACTIONS(5010), + [anon_sym_protected] = ACTIONS(5010), + [anon_sym_tailrec] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_infix] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym_external] = ACTIONS(5010), + [sym_property_modifier] = ACTIONS(5010), + [anon_sym_abstract] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_open] = ACTIONS(5010), + [anon_sym_vararg] = ACTIONS(5010), + [anon_sym_noinline] = ACTIONS(5010), + [anon_sym_crossinline] = ACTIONS(5010), + [anon_sym_expect] = ACTIONS(5010), + [anon_sym_actual] = ACTIONS(5010), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5012), + [anon_sym_continue_AT] = ACTIONS(5012), + [anon_sym_break_AT] = ACTIONS(5012), + [anon_sym_this_AT] = ACTIONS(5012), + [anon_sym_super_AT] = ACTIONS(5012), + [sym_real_literal] = ACTIONS(5012), + [sym_integer_literal] = ACTIONS(5010), + [sym_hex_literal] = ACTIONS(5012), + [sym_bin_literal] = ACTIONS(5012), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5012), + [sym_null_literal] = ACTIONS(5010), + [sym__backtick_identifier] = ACTIONS(5012), + [sym__automatic_semicolon] = ACTIONS(5012), + [sym_safe_nav] = ACTIONS(5012), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5012), + }, + [1128] = { + [sym__alpha_identifier] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_as] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_where] = ACTIONS(5014), + [anon_sym_object] = ACTIONS(5014), + [anon_sym_fun] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(5014), + [anon_sym_set] = ACTIONS(5014), + [anon_sym_this] = ACTIONS(5014), + [anon_sym_super] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [sym_label] = ACTIONS(5014), + [anon_sym_in] = ACTIONS(5014), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_QMARK_COLON] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5014), + [anon_sym_else] = ACTIONS(5014), + [anon_sym_when] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5014), + [anon_sym_throw] = ACTIONS(5014), + [anon_sym_return] = ACTIONS(5014), + [anon_sym_continue] = ACTIONS(5014), + [anon_sym_break] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_BANGin] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_BANGis] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_as_QMARK] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_BANG_BANG] = ACTIONS(5016), + [anon_sym_suspend] = ACTIONS(5014), + [anon_sym_sealed] = ACTIONS(5014), + [anon_sym_annotation] = ACTIONS(5014), + [anon_sym_data] = ACTIONS(5014), + [anon_sym_inner] = ACTIONS(5014), + [anon_sym_value] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_lateinit] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_tailrec] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym_external] = ACTIONS(5014), + [sym_property_modifier] = ACTIONS(5014), + [anon_sym_abstract] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_vararg] = ACTIONS(5014), + [anon_sym_noinline] = ACTIONS(5014), + [anon_sym_crossinline] = ACTIONS(5014), + [anon_sym_expect] = ACTIONS(5014), + [anon_sym_actual] = ACTIONS(5014), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5016), + [anon_sym_continue_AT] = ACTIONS(5016), + [anon_sym_break_AT] = ACTIONS(5016), + [anon_sym_this_AT] = ACTIONS(5016), + [anon_sym_super_AT] = ACTIONS(5016), + [sym_real_literal] = ACTIONS(5016), + [sym_integer_literal] = ACTIONS(5014), + [sym_hex_literal] = ACTIONS(5016), + [sym_bin_literal] = ACTIONS(5016), + [anon_sym_true] = ACTIONS(5014), + [anon_sym_false] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5016), + [sym_null_literal] = ACTIONS(5014), + [sym__backtick_identifier] = ACTIONS(5016), + [sym__automatic_semicolon] = ACTIONS(5016), + [sym_safe_nav] = ACTIONS(5016), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5016), + }, + [1129] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym_null_literal] = ACTIONS(4222), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [1130] = { + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1131] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [1132] = { + [sym__alpha_identifier] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_as] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_where] = ACTIONS(5018), + [anon_sym_object] = ACTIONS(5018), + [anon_sym_fun] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_get] = ACTIONS(5018), + [anon_sym_set] = ACTIONS(5018), + [anon_sym_this] = ACTIONS(5018), + [anon_sym_super] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [sym_label] = ACTIONS(5018), + [anon_sym_in] = ACTIONS(5018), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_QMARK_COLON] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5018), + [anon_sym_else] = ACTIONS(5018), + [anon_sym_when] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5018), + [anon_sym_throw] = ACTIONS(5018), + [anon_sym_return] = ACTIONS(5018), + [anon_sym_continue] = ACTIONS(5018), + [anon_sym_break] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_BANGin] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5018), + [anon_sym_BANGis] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_as_QMARK] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_BANG_BANG] = ACTIONS(5020), + [anon_sym_suspend] = ACTIONS(5018), + [anon_sym_sealed] = ACTIONS(5018), + [anon_sym_annotation] = ACTIONS(5018), + [anon_sym_data] = ACTIONS(5018), + [anon_sym_inner] = ACTIONS(5018), + [anon_sym_value] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_lateinit] = ACTIONS(5018), + [anon_sym_public] = ACTIONS(5018), + [anon_sym_private] = ACTIONS(5018), + [anon_sym_internal] = ACTIONS(5018), + [anon_sym_protected] = ACTIONS(5018), + [anon_sym_tailrec] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_infix] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym_external] = ACTIONS(5018), + [sym_property_modifier] = ACTIONS(5018), + [anon_sym_abstract] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_open] = ACTIONS(5018), + [anon_sym_vararg] = ACTIONS(5018), + [anon_sym_noinline] = ACTIONS(5018), + [anon_sym_crossinline] = ACTIONS(5018), + [anon_sym_expect] = ACTIONS(5018), + [anon_sym_actual] = ACTIONS(5018), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5020), + [anon_sym_continue_AT] = ACTIONS(5020), + [anon_sym_break_AT] = ACTIONS(5020), + [anon_sym_this_AT] = ACTIONS(5020), + [anon_sym_super_AT] = ACTIONS(5020), + [sym_real_literal] = ACTIONS(5020), + [sym_integer_literal] = ACTIONS(5018), + [sym_hex_literal] = ACTIONS(5020), + [sym_bin_literal] = ACTIONS(5020), + [anon_sym_true] = ACTIONS(5018), + [anon_sym_false] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5020), + [sym_null_literal] = ACTIONS(5018), + [sym__backtick_identifier] = ACTIONS(5020), + [sym__automatic_semicolon] = ACTIONS(5020), + [sym_safe_nav] = ACTIONS(5020), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5020), + }, + [1133] = { + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1134] = { + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1135] = { + [sym__alpha_identifier] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_where] = ACTIONS(5022), + [anon_sym_object] = ACTIONS(5022), + [anon_sym_fun] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_get] = ACTIONS(5022), + [anon_sym_set] = ACTIONS(5022), + [anon_sym_this] = ACTIONS(5022), + [anon_sym_super] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [sym_label] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_QMARK_COLON] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5022), + [anon_sym_else] = ACTIONS(5022), + [anon_sym_when] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5022), + [anon_sym_throw] = ACTIONS(5022), + [anon_sym_return] = ACTIONS(5022), + [anon_sym_continue] = ACTIONS(5022), + [anon_sym_break] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_BANGin] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5022), + [anon_sym_BANGis] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_as_QMARK] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_BANG_BANG] = ACTIONS(5024), + [anon_sym_suspend] = ACTIONS(5022), + [anon_sym_sealed] = ACTIONS(5022), + [anon_sym_annotation] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(5022), + [anon_sym_inner] = ACTIONS(5022), + [anon_sym_value] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_lateinit] = ACTIONS(5022), + [anon_sym_public] = ACTIONS(5022), + [anon_sym_private] = ACTIONS(5022), + [anon_sym_internal] = ACTIONS(5022), + [anon_sym_protected] = ACTIONS(5022), + [anon_sym_tailrec] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_infix] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym_external] = ACTIONS(5022), + [sym_property_modifier] = ACTIONS(5022), + [anon_sym_abstract] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_open] = ACTIONS(5022), + [anon_sym_vararg] = ACTIONS(5022), + [anon_sym_noinline] = ACTIONS(5022), + [anon_sym_crossinline] = ACTIONS(5022), + [anon_sym_expect] = ACTIONS(5022), + [anon_sym_actual] = ACTIONS(5022), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5024), + [anon_sym_continue_AT] = ACTIONS(5024), + [anon_sym_break_AT] = ACTIONS(5024), + [anon_sym_this_AT] = ACTIONS(5024), + [anon_sym_super_AT] = ACTIONS(5024), + [sym_real_literal] = ACTIONS(5024), + [sym_integer_literal] = ACTIONS(5022), + [sym_hex_literal] = ACTIONS(5024), + [sym_bin_literal] = ACTIONS(5024), + [anon_sym_true] = ACTIONS(5022), + [anon_sym_false] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5024), + [sym_null_literal] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(5024), + [sym__automatic_semicolon] = ACTIONS(5024), + [sym_safe_nav] = ACTIONS(5024), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5024), + }, + [1136] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_object] = ACTIONS(5026), + [anon_sym_fun] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_this] = ACTIONS(5026), + [anon_sym_super] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_when] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5026), + [anon_sym_throw] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5026), + [anon_sym_continue] = ACTIONS(5026), + [anon_sym_break] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_suspend] = ACTIONS(5026), + [anon_sym_sealed] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_lateinit] = ACTIONS(5026), + [anon_sym_public] = ACTIONS(5026), + [anon_sym_private] = ACTIONS(5026), + [anon_sym_internal] = ACTIONS(5026), + [anon_sym_protected] = ACTIONS(5026), + [anon_sym_tailrec] = ACTIONS(5026), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_infix] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym_external] = ACTIONS(5026), + [sym_property_modifier] = ACTIONS(5026), + [anon_sym_abstract] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_open] = ACTIONS(5026), + [anon_sym_vararg] = ACTIONS(5026), + [anon_sym_noinline] = ACTIONS(5026), + [anon_sym_crossinline] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5028), + [anon_sym_continue_AT] = ACTIONS(5028), + [anon_sym_break_AT] = ACTIONS(5028), + [anon_sym_this_AT] = ACTIONS(5028), + [anon_sym_super_AT] = ACTIONS(5028), + [sym_real_literal] = ACTIONS(5028), + [sym_integer_literal] = ACTIONS(5026), + [sym_hex_literal] = ACTIONS(5028), + [sym_bin_literal] = ACTIONS(5028), + [anon_sym_true] = ACTIONS(5026), + [anon_sym_false] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5028), + [sym_null_literal] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5028), + [sym__automatic_semicolon] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5028), + }, + [1137] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1138] = { + [sym__alpha_identifier] = ACTIONS(5036), + [anon_sym_AT] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_object] = ACTIONS(5036), + [anon_sym_fun] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5038), + [anon_sym_get] = ACTIONS(5036), + [anon_sym_set] = ACTIONS(5036), + [anon_sym_this] = ACTIONS(5036), + [anon_sym_super] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [sym_label] = ACTIONS(5036), + [anon_sym_in] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5038), + [anon_sym_QMARK_COLON] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5038), + [anon_sym_PIPE_PIPE] = ACTIONS(5038), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_when] = ACTIONS(5036), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_throw] = ACTIONS(5036), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_COLON_COLON] = ACTIONS(5038), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_PERCENT_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5038), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_BANGin] = ACTIONS(5038), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_BANGis] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_as_QMARK] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_BANG_BANG] = ACTIONS(5038), + [anon_sym_suspend] = ACTIONS(5036), + [anon_sym_sealed] = ACTIONS(5036), + [anon_sym_annotation] = ACTIONS(5036), + [anon_sym_data] = ACTIONS(5036), + [anon_sym_inner] = ACTIONS(5036), + [anon_sym_value] = ACTIONS(5036), + [anon_sym_override] = ACTIONS(5036), + [anon_sym_lateinit] = ACTIONS(5036), + [anon_sym_public] = ACTIONS(5036), + [anon_sym_private] = ACTIONS(5036), + [anon_sym_internal] = ACTIONS(5036), + [anon_sym_protected] = ACTIONS(5036), + [anon_sym_tailrec] = ACTIONS(5036), + [anon_sym_operator] = ACTIONS(5036), + [anon_sym_infix] = ACTIONS(5036), + [anon_sym_inline] = ACTIONS(5036), + [anon_sym_external] = ACTIONS(5036), + [sym_property_modifier] = ACTIONS(5036), + [anon_sym_abstract] = ACTIONS(5036), + [anon_sym_final] = ACTIONS(5036), + [anon_sym_open] = ACTIONS(5036), + [anon_sym_vararg] = ACTIONS(5036), + [anon_sym_noinline] = ACTIONS(5036), + [anon_sym_crossinline] = ACTIONS(5036), + [anon_sym_expect] = ACTIONS(5036), + [anon_sym_actual] = ACTIONS(5036), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5038), + [anon_sym_continue_AT] = ACTIONS(5038), + [anon_sym_break_AT] = ACTIONS(5038), + [anon_sym_this_AT] = ACTIONS(5038), + [anon_sym_super_AT] = ACTIONS(5038), + [sym_real_literal] = ACTIONS(5038), + [sym_integer_literal] = ACTIONS(5036), + [sym_hex_literal] = ACTIONS(5038), + [sym_bin_literal] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_SQUOTE] = ACTIONS(5038), + [sym_null_literal] = ACTIONS(5036), + [sym__backtick_identifier] = ACTIONS(5038), + [sym__automatic_semicolon] = ACTIONS(5038), + [sym_safe_nav] = ACTIONS(5038), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5038), + }, + [1139] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [sym_label] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(3067), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [1140] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(1774), + [anon_sym_sealed] = ACTIONS(1774), + [anon_sym_annotation] = ACTIONS(1774), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_value] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_lateinit] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_internal] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_tailrec] = ACTIONS(1774), + [anon_sym_operator] = ACTIONS(1774), + [anon_sym_infix] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1774), + [anon_sym_external] = ACTIONS(1774), + [sym_property_modifier] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_open] = ACTIONS(1774), + [anon_sym_vararg] = ACTIONS(1774), + [anon_sym_noinline] = ACTIONS(1774), + [anon_sym_crossinline] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [1141] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1142] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [1143] = { + [sym_function_body] = STATE(1038), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [1144] = { + [sym__alpha_identifier] = ACTIONS(5046), + [anon_sym_AT] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_as] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_where] = ACTIONS(5046), + [anon_sym_object] = ACTIONS(5046), + [anon_sym_fun] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_get] = ACTIONS(5046), + [anon_sym_set] = ACTIONS(5046), + [anon_sym_this] = ACTIONS(5046), + [anon_sym_super] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [sym_label] = ACTIONS(5046), + [anon_sym_in] = ACTIONS(5046), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_QMARK_COLON] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5046), + [anon_sym_else] = ACTIONS(5046), + [anon_sym_when] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5046), + [anon_sym_throw] = ACTIONS(5046), + [anon_sym_return] = ACTIONS(5046), + [anon_sym_continue] = ACTIONS(5046), + [anon_sym_break] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5048), + [anon_sym_DASH_EQ] = ACTIONS(5048), + [anon_sym_STAR_EQ] = ACTIONS(5048), + [anon_sym_SLASH_EQ] = ACTIONS(5048), + [anon_sym_PERCENT_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_BANGin] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5046), + [anon_sym_BANGis] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_as_QMARK] = ACTIONS(5048), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_BANG_BANG] = ACTIONS(5048), + [anon_sym_suspend] = ACTIONS(5046), + [anon_sym_sealed] = ACTIONS(5046), + [anon_sym_annotation] = ACTIONS(5046), + [anon_sym_data] = ACTIONS(5046), + [anon_sym_inner] = ACTIONS(5046), + [anon_sym_value] = ACTIONS(5046), + [anon_sym_override] = ACTIONS(5046), + [anon_sym_lateinit] = ACTIONS(5046), + [anon_sym_public] = ACTIONS(5046), + [anon_sym_private] = ACTIONS(5046), + [anon_sym_internal] = ACTIONS(5046), + [anon_sym_protected] = ACTIONS(5046), + [anon_sym_tailrec] = ACTIONS(5046), + [anon_sym_operator] = ACTIONS(5046), + [anon_sym_infix] = ACTIONS(5046), + [anon_sym_inline] = ACTIONS(5046), + [anon_sym_external] = ACTIONS(5046), + [sym_property_modifier] = ACTIONS(5046), + [anon_sym_abstract] = ACTIONS(5046), + [anon_sym_final] = ACTIONS(5046), + [anon_sym_open] = ACTIONS(5046), + [anon_sym_vararg] = ACTIONS(5046), + [anon_sym_noinline] = ACTIONS(5046), + [anon_sym_crossinline] = ACTIONS(5046), + [anon_sym_expect] = ACTIONS(5046), + [anon_sym_actual] = ACTIONS(5046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5048), + [anon_sym_continue_AT] = ACTIONS(5048), + [anon_sym_break_AT] = ACTIONS(5048), + [anon_sym_this_AT] = ACTIONS(5048), + [anon_sym_super_AT] = ACTIONS(5048), + [sym_real_literal] = ACTIONS(5048), + [sym_integer_literal] = ACTIONS(5046), + [sym_hex_literal] = ACTIONS(5048), + [sym_bin_literal] = ACTIONS(5048), + [anon_sym_true] = ACTIONS(5046), + [anon_sym_false] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5048), + [sym_null_literal] = ACTIONS(5046), + [sym__backtick_identifier] = ACTIONS(5048), + [sym__automatic_semicolon] = ACTIONS(5048), + [sym_safe_nav] = ACTIONS(5048), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5048), + }, + [1145] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_object] = ACTIONS(4694), + [anon_sym_fun] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_this] = ACTIONS(4694), + [anon_sym_super] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_when] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_throw] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_AT] = ACTIONS(4696), + [anon_sym_this_AT] = ACTIONS(4696), + [anon_sym_super_AT] = ACTIONS(4696), + [sym_real_literal] = ACTIONS(4696), + [sym_integer_literal] = ACTIONS(4694), + [sym_hex_literal] = ACTIONS(4696), + [sym_bin_literal] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4696), + [sym_null_literal] = ACTIONS(4694), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), + }, + [1146] = { + [sym__alpha_identifier] = ACTIONS(5050), + [anon_sym_AT] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_as] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_where] = ACTIONS(5050), + [anon_sym_object] = ACTIONS(5050), + [anon_sym_fun] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_get] = ACTIONS(5050), + [anon_sym_set] = ACTIONS(5050), + [anon_sym_this] = ACTIONS(5050), + [anon_sym_super] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5050), + [sym_label] = ACTIONS(5050), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_QMARK_COLON] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_if] = ACTIONS(5050), + [anon_sym_else] = ACTIONS(5050), + [anon_sym_when] = ACTIONS(5050), + [anon_sym_try] = ACTIONS(5050), + [anon_sym_throw] = ACTIONS(5050), + [anon_sym_return] = ACTIONS(5050), + [anon_sym_continue] = ACTIONS(5050), + [anon_sym_break] = ACTIONS(5050), + [anon_sym_COLON_COLON] = ACTIONS(5052), + [anon_sym_PLUS_EQ] = ACTIONS(5052), + [anon_sym_DASH_EQ] = ACTIONS(5052), + [anon_sym_STAR_EQ] = ACTIONS(5052), + [anon_sym_SLASH_EQ] = ACTIONS(5052), + [anon_sym_PERCENT_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_BANGin] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5050), + [anon_sym_BANGis] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5050), + [anon_sym_as_QMARK] = ACTIONS(5052), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_BANG_BANG] = ACTIONS(5052), + [anon_sym_suspend] = ACTIONS(5050), + [anon_sym_sealed] = ACTIONS(5050), + [anon_sym_annotation] = ACTIONS(5050), + [anon_sym_data] = ACTIONS(5050), + [anon_sym_inner] = ACTIONS(5050), + [anon_sym_value] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5050), + [anon_sym_lateinit] = ACTIONS(5050), + [anon_sym_public] = ACTIONS(5050), + [anon_sym_private] = ACTIONS(5050), + [anon_sym_internal] = ACTIONS(5050), + [anon_sym_protected] = ACTIONS(5050), + [anon_sym_tailrec] = ACTIONS(5050), + [anon_sym_operator] = ACTIONS(5050), + [anon_sym_infix] = ACTIONS(5050), + [anon_sym_inline] = ACTIONS(5050), + [anon_sym_external] = ACTIONS(5050), + [sym_property_modifier] = ACTIONS(5050), + [anon_sym_abstract] = ACTIONS(5050), + [anon_sym_final] = ACTIONS(5050), + [anon_sym_open] = ACTIONS(5050), + [anon_sym_vararg] = ACTIONS(5050), + [anon_sym_noinline] = ACTIONS(5050), + [anon_sym_crossinline] = ACTIONS(5050), + [anon_sym_expect] = ACTIONS(5050), + [anon_sym_actual] = ACTIONS(5050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5052), + [anon_sym_continue_AT] = ACTIONS(5052), + [anon_sym_break_AT] = ACTIONS(5052), + [anon_sym_this_AT] = ACTIONS(5052), + [anon_sym_super_AT] = ACTIONS(5052), + [sym_real_literal] = ACTIONS(5052), + [sym_integer_literal] = ACTIONS(5050), + [sym_hex_literal] = ACTIONS(5052), + [sym_bin_literal] = ACTIONS(5052), + [anon_sym_true] = ACTIONS(5050), + [anon_sym_false] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5052), + [sym_null_literal] = ACTIONS(5050), + [sym__backtick_identifier] = ACTIONS(5052), + [sym__automatic_semicolon] = ACTIONS(5052), + [sym_safe_nav] = ACTIONS(5052), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5052), + }, + [1147] = { + [sym__alpha_identifier] = ACTIONS(5054), + [anon_sym_AT] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_as] = ACTIONS(5054), + [anon_sym_EQ] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_where] = ACTIONS(5054), + [anon_sym_object] = ACTIONS(5054), + [anon_sym_fun] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_get] = ACTIONS(5054), + [anon_sym_set] = ACTIONS(5054), + [anon_sym_this] = ACTIONS(5054), + [anon_sym_super] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [sym_label] = ACTIONS(5054), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_QMARK_COLON] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5054), + [anon_sym_else] = ACTIONS(5054), + [anon_sym_when] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5054), + [anon_sym_throw] = ACTIONS(5054), + [anon_sym_return] = ACTIONS(5054), + [anon_sym_continue] = ACTIONS(5054), + [anon_sym_break] = ACTIONS(5054), + [anon_sym_COLON_COLON] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5056), + [anon_sym_DASH_EQ] = ACTIONS(5056), + [anon_sym_STAR_EQ] = ACTIONS(5056), + [anon_sym_SLASH_EQ] = ACTIONS(5056), + [anon_sym_PERCENT_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_BANGin] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5054), + [anon_sym_BANGis] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5054), + [anon_sym_as_QMARK] = ACTIONS(5056), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_BANG_BANG] = ACTIONS(5056), + [anon_sym_suspend] = ACTIONS(5054), + [anon_sym_sealed] = ACTIONS(5054), + [anon_sym_annotation] = ACTIONS(5054), + [anon_sym_data] = ACTIONS(5054), + [anon_sym_inner] = ACTIONS(5054), + [anon_sym_value] = ACTIONS(5054), + [anon_sym_override] = ACTIONS(5054), + [anon_sym_lateinit] = ACTIONS(5054), + [anon_sym_public] = ACTIONS(5054), + [anon_sym_private] = ACTIONS(5054), + [anon_sym_internal] = ACTIONS(5054), + [anon_sym_protected] = ACTIONS(5054), + [anon_sym_tailrec] = ACTIONS(5054), + [anon_sym_operator] = ACTIONS(5054), + [anon_sym_infix] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5054), + [anon_sym_external] = ACTIONS(5054), + [sym_property_modifier] = ACTIONS(5054), + [anon_sym_abstract] = ACTIONS(5054), + [anon_sym_final] = ACTIONS(5054), + [anon_sym_open] = ACTIONS(5054), + [anon_sym_vararg] = ACTIONS(5054), + [anon_sym_noinline] = ACTIONS(5054), + [anon_sym_crossinline] = ACTIONS(5054), + [anon_sym_expect] = ACTIONS(5054), + [anon_sym_actual] = ACTIONS(5054), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5056), + [anon_sym_continue_AT] = ACTIONS(5056), + [anon_sym_break_AT] = ACTIONS(5056), + [anon_sym_this_AT] = ACTIONS(5056), + [anon_sym_super_AT] = ACTIONS(5056), + [sym_real_literal] = ACTIONS(5056), + [sym_integer_literal] = ACTIONS(5054), + [sym_hex_literal] = ACTIONS(5056), + [sym_bin_literal] = ACTIONS(5056), + [anon_sym_true] = ACTIONS(5054), + [anon_sym_false] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5056), + [sym_null_literal] = ACTIONS(5054), + [sym__backtick_identifier] = ACTIONS(5056), + [sym__automatic_semicolon] = ACTIONS(5056), + [sym_safe_nav] = ACTIONS(5056), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5056), + }, + [1148] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [1149] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [1150] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [1151] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [1152] = { + [sym__alpha_identifier] = ACTIONS(5062), + [anon_sym_AT] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_as] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_where] = ACTIONS(5062), + [anon_sym_object] = ACTIONS(5062), + [anon_sym_fun] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_get] = ACTIONS(5062), + [anon_sym_set] = ACTIONS(5062), + [anon_sym_this] = ACTIONS(5062), + [anon_sym_super] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [sym_label] = ACTIONS(5062), + [anon_sym_in] = ACTIONS(5062), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_QMARK_COLON] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_if] = ACTIONS(5062), + [anon_sym_else] = ACTIONS(5062), + [anon_sym_when] = ACTIONS(5062), + [anon_sym_try] = ACTIONS(5062), + [anon_sym_throw] = ACTIONS(5062), + [anon_sym_return] = ACTIONS(5062), + [anon_sym_continue] = ACTIONS(5062), + [anon_sym_break] = ACTIONS(5062), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_PERCENT_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_BANGin] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5062), + [anon_sym_BANGis] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_as_QMARK] = ACTIONS(5064), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_BANG_BANG] = ACTIONS(5064), + [anon_sym_suspend] = ACTIONS(5062), + [anon_sym_sealed] = ACTIONS(5062), + [anon_sym_annotation] = ACTIONS(5062), + [anon_sym_data] = ACTIONS(5062), + [anon_sym_inner] = ACTIONS(5062), + [anon_sym_value] = ACTIONS(5062), + [anon_sym_override] = ACTIONS(5062), + [anon_sym_lateinit] = ACTIONS(5062), + [anon_sym_public] = ACTIONS(5062), + [anon_sym_private] = ACTIONS(5062), + [anon_sym_internal] = ACTIONS(5062), + [anon_sym_protected] = ACTIONS(5062), + [anon_sym_tailrec] = ACTIONS(5062), + [anon_sym_operator] = ACTIONS(5062), + [anon_sym_infix] = ACTIONS(5062), + [anon_sym_inline] = ACTIONS(5062), + [anon_sym_external] = ACTIONS(5062), + [sym_property_modifier] = ACTIONS(5062), + [anon_sym_abstract] = ACTIONS(5062), + [anon_sym_final] = ACTIONS(5062), + [anon_sym_open] = ACTIONS(5062), + [anon_sym_vararg] = ACTIONS(5062), + [anon_sym_noinline] = ACTIONS(5062), + [anon_sym_crossinline] = ACTIONS(5062), + [anon_sym_expect] = ACTIONS(5062), + [anon_sym_actual] = ACTIONS(5062), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5064), + [anon_sym_continue_AT] = ACTIONS(5064), + [anon_sym_break_AT] = ACTIONS(5064), + [anon_sym_this_AT] = ACTIONS(5064), + [anon_sym_super_AT] = ACTIONS(5064), + [sym_real_literal] = ACTIONS(5064), + [sym_integer_literal] = ACTIONS(5062), + [sym_hex_literal] = ACTIONS(5064), + [sym_bin_literal] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5062), + [anon_sym_false] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5064), + [sym_null_literal] = ACTIONS(5062), + [sym__backtick_identifier] = ACTIONS(5064), + [sym__automatic_semicolon] = ACTIONS(5064), + [sym_safe_nav] = ACTIONS(5064), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5064), + }, + [1153] = { + [sym__alpha_identifier] = ACTIONS(5066), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_as] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_where] = ACTIONS(5066), + [anon_sym_object] = ACTIONS(5066), + [anon_sym_fun] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_get] = ACTIONS(5066), + [anon_sym_set] = ACTIONS(5066), + [anon_sym_this] = ACTIONS(5066), + [anon_sym_super] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [sym_label] = ACTIONS(5066), + [anon_sym_in] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_QMARK_COLON] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_when] = ACTIONS(5066), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_throw] = ACTIONS(5066), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_COLON_COLON] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_PERCENT_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5066), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5066), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_BANGin] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5066), + [anon_sym_BANGis] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5066), + [anon_sym_as_QMARK] = ACTIONS(5068), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_BANG_BANG] = ACTIONS(5068), + [anon_sym_suspend] = ACTIONS(5066), + [anon_sym_sealed] = ACTIONS(5066), + [anon_sym_annotation] = ACTIONS(5066), + [anon_sym_data] = ACTIONS(5066), + [anon_sym_inner] = ACTIONS(5066), + [anon_sym_value] = ACTIONS(5066), + [anon_sym_override] = ACTIONS(5066), + [anon_sym_lateinit] = ACTIONS(5066), + [anon_sym_public] = ACTIONS(5066), + [anon_sym_private] = ACTIONS(5066), + [anon_sym_internal] = ACTIONS(5066), + [anon_sym_protected] = ACTIONS(5066), + [anon_sym_tailrec] = ACTIONS(5066), + [anon_sym_operator] = ACTIONS(5066), + [anon_sym_infix] = ACTIONS(5066), + [anon_sym_inline] = ACTIONS(5066), + [anon_sym_external] = ACTIONS(5066), + [sym_property_modifier] = ACTIONS(5066), + [anon_sym_abstract] = ACTIONS(5066), + [anon_sym_final] = ACTIONS(5066), + [anon_sym_open] = ACTIONS(5066), + [anon_sym_vararg] = ACTIONS(5066), + [anon_sym_noinline] = ACTIONS(5066), + [anon_sym_crossinline] = ACTIONS(5066), + [anon_sym_expect] = ACTIONS(5066), + [anon_sym_actual] = ACTIONS(5066), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5068), + [anon_sym_continue_AT] = ACTIONS(5068), + [anon_sym_break_AT] = ACTIONS(5068), + [anon_sym_this_AT] = ACTIONS(5068), + [anon_sym_super_AT] = ACTIONS(5068), + [sym_real_literal] = ACTIONS(5068), + [sym_integer_literal] = ACTIONS(5066), + [sym_hex_literal] = ACTIONS(5068), + [sym_bin_literal] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5068), + [sym_null_literal] = ACTIONS(5066), + [sym__backtick_identifier] = ACTIONS(5068), + [sym__automatic_semicolon] = ACTIONS(5068), + [sym_safe_nav] = ACTIONS(5068), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5068), + }, + [1154] = { + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1155] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4856), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [1156] = { + [sym__alpha_identifier] = ACTIONS(5070), + [anon_sym_AT] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_where] = ACTIONS(5070), + [anon_sym_object] = ACTIONS(5070), + [anon_sym_fun] = ACTIONS(5070), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_get] = ACTIONS(5070), + [anon_sym_set] = ACTIONS(5070), + [anon_sym_this] = ACTIONS(5070), + [anon_sym_super] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [sym_label] = ACTIONS(5070), + [anon_sym_in] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_QMARK_COLON] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_when] = ACTIONS(5070), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_throw] = ACTIONS(5070), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_BANGin] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_BANGis] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_as_QMARK] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_BANG_BANG] = ACTIONS(5072), + [anon_sym_suspend] = ACTIONS(5070), + [anon_sym_sealed] = ACTIONS(5070), + [anon_sym_annotation] = ACTIONS(5070), + [anon_sym_data] = ACTIONS(5070), + [anon_sym_inner] = ACTIONS(5070), + [anon_sym_value] = ACTIONS(5070), + [anon_sym_override] = ACTIONS(5070), + [anon_sym_lateinit] = ACTIONS(5070), + [anon_sym_public] = ACTIONS(5070), + [anon_sym_private] = ACTIONS(5070), + [anon_sym_internal] = ACTIONS(5070), + [anon_sym_protected] = ACTIONS(5070), + [anon_sym_tailrec] = ACTIONS(5070), + [anon_sym_operator] = ACTIONS(5070), + [anon_sym_infix] = ACTIONS(5070), + [anon_sym_inline] = ACTIONS(5070), + [anon_sym_external] = ACTIONS(5070), + [sym_property_modifier] = ACTIONS(5070), + [anon_sym_abstract] = ACTIONS(5070), + [anon_sym_final] = ACTIONS(5070), + [anon_sym_open] = ACTIONS(5070), + [anon_sym_vararg] = ACTIONS(5070), + [anon_sym_noinline] = ACTIONS(5070), + [anon_sym_crossinline] = ACTIONS(5070), + [anon_sym_expect] = ACTIONS(5070), + [anon_sym_actual] = ACTIONS(5070), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5072), + [anon_sym_continue_AT] = ACTIONS(5072), + [anon_sym_break_AT] = ACTIONS(5072), + [anon_sym_this_AT] = ACTIONS(5072), + [anon_sym_super_AT] = ACTIONS(5072), + [sym_real_literal] = ACTIONS(5072), + [sym_integer_literal] = ACTIONS(5070), + [sym_hex_literal] = ACTIONS(5072), + [sym_bin_literal] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5072), + [sym_null_literal] = ACTIONS(5070), + [sym__backtick_identifier] = ACTIONS(5072), + [sym__automatic_semicolon] = ACTIONS(5072), + [sym_safe_nav] = ACTIONS(5072), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5072), + }, + [1157] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_object] = ACTIONS(5074), + [anon_sym_fun] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_this] = ACTIONS(5074), + [anon_sym_super] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [sym_label] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_when] = ACTIONS(5074), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_throw] = ACTIONS(5074), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(5078), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_PERCENT_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_suspend] = ACTIONS(5074), + [anon_sym_sealed] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5074), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_lateinit] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_internal] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_tailrec] = ACTIONS(5074), + [anon_sym_operator] = ACTIONS(5074), + [anon_sym_infix] = ACTIONS(5074), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_external] = ACTIONS(5074), + [sym_property_modifier] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_final] = ACTIONS(5074), + [anon_sym_open] = ACTIONS(5074), + [anon_sym_vararg] = ACTIONS(5074), + [anon_sym_noinline] = ACTIONS(5074), + [anon_sym_crossinline] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5076), + [anon_sym_continue_AT] = ACTIONS(5076), + [anon_sym_break_AT] = ACTIONS(5076), + [anon_sym_this_AT] = ACTIONS(5076), + [anon_sym_super_AT] = ACTIONS(5076), + [sym_real_literal] = ACTIONS(5076), + [sym_integer_literal] = ACTIONS(5074), + [sym_hex_literal] = ACTIONS(5076), + [sym_bin_literal] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5076), + [sym_null_literal] = ACTIONS(5074), + [sym__backtick_identifier] = ACTIONS(5076), + [sym__automatic_semicolon] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5076), + }, + [1158] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5081), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1159] = { + [sym__alpha_identifier] = ACTIONS(5083), + [anon_sym_AT] = ACTIONS(5085), + [anon_sym_LBRACK] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5083), + [anon_sym_as] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5085), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5085), + [anon_sym_COMMA] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5083), + [anon_sym_GT] = ACTIONS(5083), + [anon_sym_where] = ACTIONS(5083), + [anon_sym_object] = ACTIONS(5083), + [anon_sym_fun] = ACTIONS(5083), + [anon_sym_SEMI] = ACTIONS(5085), + [anon_sym_get] = ACTIONS(5083), + [anon_sym_set] = ACTIONS(5083), + [anon_sym_this] = ACTIONS(5083), + [anon_sym_super] = ACTIONS(5083), + [anon_sym_STAR] = ACTIONS(5083), + [sym_label] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_QMARK_COLON] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5085), + [anon_sym_PIPE_PIPE] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5083), + [anon_sym_when] = ACTIONS(5083), + [anon_sym_try] = ACTIONS(5083), + [anon_sym_throw] = ACTIONS(5083), + [anon_sym_return] = ACTIONS(5083), + [anon_sym_continue] = ACTIONS(5083), + [anon_sym_break] = ACTIONS(5083), + [anon_sym_COLON_COLON] = ACTIONS(5085), + [anon_sym_PLUS_EQ] = ACTIONS(5085), + [anon_sym_DASH_EQ] = ACTIONS(5085), + [anon_sym_STAR_EQ] = ACTIONS(5085), + [anon_sym_SLASH_EQ] = ACTIONS(5085), + [anon_sym_PERCENT_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), + [anon_sym_LT_EQ] = ACTIONS(5085), + [anon_sym_GT_EQ] = ACTIONS(5085), + [anon_sym_BANGin] = ACTIONS(5085), + [anon_sym_is] = ACTIONS(5083), + [anon_sym_BANGis] = ACTIONS(5085), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), + [anon_sym_SLASH] = ACTIONS(5083), + [anon_sym_PERCENT] = ACTIONS(5083), + [anon_sym_as_QMARK] = ACTIONS(5085), + [anon_sym_PLUS_PLUS] = ACTIONS(5085), + [anon_sym_DASH_DASH] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5083), + [anon_sym_BANG_BANG] = ACTIONS(5085), + [anon_sym_suspend] = ACTIONS(5083), + [anon_sym_sealed] = ACTIONS(5083), + [anon_sym_annotation] = ACTIONS(5083), + [anon_sym_data] = ACTIONS(5083), + [anon_sym_inner] = ACTIONS(5083), + [anon_sym_value] = ACTIONS(5083), + [anon_sym_override] = ACTIONS(5083), + [anon_sym_lateinit] = ACTIONS(5083), + [anon_sym_public] = ACTIONS(5083), + [anon_sym_private] = ACTIONS(5083), + [anon_sym_internal] = ACTIONS(5083), + [anon_sym_protected] = ACTIONS(5083), + [anon_sym_tailrec] = ACTIONS(5083), + [anon_sym_operator] = ACTIONS(5083), + [anon_sym_infix] = ACTIONS(5083), + [anon_sym_inline] = ACTIONS(5083), + [anon_sym_external] = ACTIONS(5083), + [sym_property_modifier] = ACTIONS(5083), + [anon_sym_abstract] = ACTIONS(5083), + [anon_sym_final] = ACTIONS(5083), + [anon_sym_open] = ACTIONS(5083), + [anon_sym_vararg] = ACTIONS(5083), + [anon_sym_noinline] = ACTIONS(5083), + [anon_sym_crossinline] = ACTIONS(5083), + [anon_sym_expect] = ACTIONS(5083), + [anon_sym_actual] = ACTIONS(5083), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5085), + [anon_sym_continue_AT] = ACTIONS(5085), + [anon_sym_break_AT] = ACTIONS(5085), + [anon_sym_this_AT] = ACTIONS(5085), + [anon_sym_super_AT] = ACTIONS(5085), + [sym_real_literal] = ACTIONS(5085), + [sym_integer_literal] = ACTIONS(5083), + [sym_hex_literal] = ACTIONS(5085), + [sym_bin_literal] = ACTIONS(5085), + [anon_sym_true] = ACTIONS(5083), + [anon_sym_false] = ACTIONS(5083), + [anon_sym_SQUOTE] = ACTIONS(5085), + [sym_null_literal] = ACTIONS(5083), + [sym__backtick_identifier] = ACTIONS(5085), + [sym__automatic_semicolon] = ACTIONS(5085), + [sym_safe_nav] = ACTIONS(5085), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5085), + }, + [1160] = { + [sym__alpha_identifier] = ACTIONS(5087), + [anon_sym_AT] = ACTIONS(5089), + [anon_sym_LBRACK] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5089), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_COMMA] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5087), + [anon_sym_GT] = ACTIONS(5087), + [anon_sym_where] = ACTIONS(5087), + [anon_sym_object] = ACTIONS(5087), + [anon_sym_fun] = ACTIONS(5087), + [anon_sym_SEMI] = ACTIONS(5089), + [anon_sym_get] = ACTIONS(5087), + [anon_sym_set] = ACTIONS(5087), + [anon_sym_this] = ACTIONS(5087), + [anon_sym_super] = ACTIONS(5087), + [anon_sym_STAR] = ACTIONS(5087), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5087), + [anon_sym_DOT_DOT] = ACTIONS(5089), + [anon_sym_QMARK_COLON] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5089), + [anon_sym_if] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5087), + [anon_sym_when] = ACTIONS(5087), + [anon_sym_try] = ACTIONS(5087), + [anon_sym_throw] = ACTIONS(5087), + [anon_sym_return] = ACTIONS(5087), + [anon_sym_continue] = ACTIONS(5087), + [anon_sym_break] = ACTIONS(5087), + [anon_sym_COLON_COLON] = ACTIONS(5089), + [anon_sym_PLUS_EQ] = ACTIONS(5089), + [anon_sym_DASH_EQ] = ACTIONS(5089), + [anon_sym_STAR_EQ] = ACTIONS(5089), + [anon_sym_SLASH_EQ] = ACTIONS(5089), + [anon_sym_PERCENT_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5089), + [anon_sym_BANGin] = ACTIONS(5089), + [anon_sym_is] = ACTIONS(5087), + [anon_sym_BANGis] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5087), + [anon_sym_DASH] = ACTIONS(5087), + [anon_sym_SLASH] = ACTIONS(5087), + [anon_sym_PERCENT] = ACTIONS(5087), + [anon_sym_as_QMARK] = ACTIONS(5089), + [anon_sym_PLUS_PLUS] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5089), + [anon_sym_suspend] = ACTIONS(5087), + [anon_sym_sealed] = ACTIONS(5087), + [anon_sym_annotation] = ACTIONS(5087), + [anon_sym_data] = ACTIONS(5087), + [anon_sym_inner] = ACTIONS(5087), + [anon_sym_value] = ACTIONS(5087), + [anon_sym_override] = ACTIONS(5087), + [anon_sym_lateinit] = ACTIONS(5087), + [anon_sym_public] = ACTIONS(5087), + [anon_sym_private] = ACTIONS(5087), + [anon_sym_internal] = ACTIONS(5087), + [anon_sym_protected] = ACTIONS(5087), + [anon_sym_tailrec] = ACTIONS(5087), + [anon_sym_operator] = ACTIONS(5087), + [anon_sym_infix] = ACTIONS(5087), + [anon_sym_inline] = ACTIONS(5087), + [anon_sym_external] = ACTIONS(5087), + [sym_property_modifier] = ACTIONS(5087), + [anon_sym_abstract] = ACTIONS(5087), + [anon_sym_final] = ACTIONS(5087), + [anon_sym_open] = ACTIONS(5087), + [anon_sym_vararg] = ACTIONS(5087), + [anon_sym_noinline] = ACTIONS(5087), + [anon_sym_crossinline] = ACTIONS(5087), + [anon_sym_expect] = ACTIONS(5087), + [anon_sym_actual] = ACTIONS(5087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5089), + [anon_sym_continue_AT] = ACTIONS(5089), + [anon_sym_break_AT] = ACTIONS(5089), + [anon_sym_this_AT] = ACTIONS(5089), + [anon_sym_super_AT] = ACTIONS(5089), + [sym_real_literal] = ACTIONS(5089), + [sym_integer_literal] = ACTIONS(5087), + [sym_hex_literal] = ACTIONS(5089), + [sym_bin_literal] = ACTIONS(5089), + [anon_sym_true] = ACTIONS(5087), + [anon_sym_false] = ACTIONS(5087), + [anon_sym_SQUOTE] = ACTIONS(5089), + [sym_null_literal] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5089), + [sym__automatic_semicolon] = ACTIONS(5089), + [sym_safe_nav] = ACTIONS(5089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5089), + }, + [1161] = { + [sym__alpha_identifier] = ACTIONS(5091), + [anon_sym_AT] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5091), + [anon_sym_where] = ACTIONS(5091), + [anon_sym_object] = ACTIONS(5091), + [anon_sym_fun] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_get] = ACTIONS(5091), + [anon_sym_set] = ACTIONS(5091), + [anon_sym_this] = ACTIONS(5091), + [anon_sym_super] = ACTIONS(5091), + [anon_sym_STAR] = ACTIONS(5091), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5091), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_QMARK_COLON] = ACTIONS(5093), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_if] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5091), + [anon_sym_when] = ACTIONS(5091), + [anon_sym_try] = ACTIONS(5091), + [anon_sym_throw] = ACTIONS(5091), + [anon_sym_return] = ACTIONS(5091), + [anon_sym_continue] = ACTIONS(5091), + [anon_sym_break] = ACTIONS(5091), + [anon_sym_COLON_COLON] = ACTIONS(5093), + [anon_sym_PLUS_EQ] = ACTIONS(5093), + [anon_sym_DASH_EQ] = ACTIONS(5093), + [anon_sym_STAR_EQ] = ACTIONS(5093), + [anon_sym_SLASH_EQ] = ACTIONS(5093), + [anon_sym_PERCENT_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_BANGin] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5091), + [anon_sym_BANGis] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5091), + [anon_sym_SLASH] = ACTIONS(5091), + [anon_sym_PERCENT] = ACTIONS(5091), + [anon_sym_as_QMARK] = ACTIONS(5093), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5093), + [anon_sym_suspend] = ACTIONS(5091), + [anon_sym_sealed] = ACTIONS(5091), + [anon_sym_annotation] = ACTIONS(5091), + [anon_sym_data] = ACTIONS(5091), + [anon_sym_inner] = ACTIONS(5091), + [anon_sym_value] = ACTIONS(5091), + [anon_sym_override] = ACTIONS(5091), + [anon_sym_lateinit] = ACTIONS(5091), + [anon_sym_public] = ACTIONS(5091), + [anon_sym_private] = ACTIONS(5091), + [anon_sym_internal] = ACTIONS(5091), + [anon_sym_protected] = ACTIONS(5091), + [anon_sym_tailrec] = ACTIONS(5091), + [anon_sym_operator] = ACTIONS(5091), + [anon_sym_infix] = ACTIONS(5091), + [anon_sym_inline] = ACTIONS(5091), + [anon_sym_external] = ACTIONS(5091), + [sym_property_modifier] = ACTIONS(5091), + [anon_sym_abstract] = ACTIONS(5091), + [anon_sym_final] = ACTIONS(5091), + [anon_sym_open] = ACTIONS(5091), + [anon_sym_vararg] = ACTIONS(5091), + [anon_sym_noinline] = ACTIONS(5091), + [anon_sym_crossinline] = ACTIONS(5091), + [anon_sym_expect] = ACTIONS(5091), + [anon_sym_actual] = ACTIONS(5091), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5093), + [anon_sym_continue_AT] = ACTIONS(5093), + [anon_sym_break_AT] = ACTIONS(5093), + [anon_sym_this_AT] = ACTIONS(5093), + [anon_sym_super_AT] = ACTIONS(5093), + [sym_real_literal] = ACTIONS(5093), + [sym_integer_literal] = ACTIONS(5091), + [sym_hex_literal] = ACTIONS(5093), + [sym_bin_literal] = ACTIONS(5093), + [anon_sym_true] = ACTIONS(5091), + [anon_sym_false] = ACTIONS(5091), + [anon_sym_SQUOTE] = ACTIONS(5093), + [sym_null_literal] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(5093), + [sym__automatic_semicolon] = ACTIONS(5093), + [sym_safe_nav] = ACTIONS(5093), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5093), + }, + [1162] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_object] = ACTIONS(5095), + [anon_sym_fun] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_this] = ACTIONS(5095), + [anon_sym_super] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_if] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_when] = ACTIONS(5095), + [anon_sym_try] = ACTIONS(5095), + [anon_sym_throw] = ACTIONS(5095), + [anon_sym_return] = ACTIONS(5095), + [anon_sym_continue] = ACTIONS(5095), + [anon_sym_break] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5097), + [anon_sym_continue_AT] = ACTIONS(5097), + [anon_sym_break_AT] = ACTIONS(5097), + [anon_sym_this_AT] = ACTIONS(5097), + [anon_sym_super_AT] = ACTIONS(5097), + [sym_real_literal] = ACTIONS(5097), + [sym_integer_literal] = ACTIONS(5095), + [sym_hex_literal] = ACTIONS(5097), + [sym_bin_literal] = ACTIONS(5097), + [anon_sym_true] = ACTIONS(5095), + [anon_sym_false] = ACTIONS(5095), + [anon_sym_SQUOTE] = ACTIONS(5097), + [sym_null_literal] = ACTIONS(5095), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5097), + }, + [1163] = { + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1164] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_object] = ACTIONS(5099), + [anon_sym_fun] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_this] = ACTIONS(5099), + [anon_sym_super] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_if] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_when] = ACTIONS(5099), + [anon_sym_try] = ACTIONS(5099), + [anon_sym_throw] = ACTIONS(5099), + [anon_sym_return] = ACTIONS(5099), + [anon_sym_continue] = ACTIONS(5099), + [anon_sym_break] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5101), + [anon_sym_continue_AT] = ACTIONS(5101), + [anon_sym_break_AT] = ACTIONS(5101), + [anon_sym_this_AT] = ACTIONS(5101), + [anon_sym_super_AT] = ACTIONS(5101), + [sym_real_literal] = ACTIONS(5101), + [sym_integer_literal] = ACTIONS(5099), + [sym_hex_literal] = ACTIONS(5101), + [sym_bin_literal] = ACTIONS(5101), + [anon_sym_true] = ACTIONS(5099), + [anon_sym_false] = ACTIONS(5099), + [anon_sym_SQUOTE] = ACTIONS(5101), + [sym_null_literal] = ACTIONS(5099), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5101), + }, + [1165] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_object] = ACTIONS(5103), + [anon_sym_fun] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_this] = ACTIONS(5103), + [anon_sym_super] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_if] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_when] = ACTIONS(5103), + [anon_sym_try] = ACTIONS(5103), + [anon_sym_throw] = ACTIONS(5103), + [anon_sym_return] = ACTIONS(5103), + [anon_sym_continue] = ACTIONS(5103), + [anon_sym_break] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5105), + [anon_sym_continue_AT] = ACTIONS(5105), + [anon_sym_break_AT] = ACTIONS(5105), + [anon_sym_this_AT] = ACTIONS(5105), + [anon_sym_super_AT] = ACTIONS(5105), + [sym_real_literal] = ACTIONS(5105), + [sym_integer_literal] = ACTIONS(5103), + [sym_hex_literal] = ACTIONS(5105), + [sym_bin_literal] = ACTIONS(5105), + [anon_sym_true] = ACTIONS(5103), + [anon_sym_false] = ACTIONS(5103), + [anon_sym_SQUOTE] = ACTIONS(5105), + [sym_null_literal] = ACTIONS(5103), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5105), + }, + [1166] = { + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [anon_sym_this_AT] = ACTIONS(4392), + [anon_sym_super_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym_null_literal] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), + }, + [1167] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_object] = ACTIONS(4311), + [anon_sym_fun] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_this] = ACTIONS(4311), + [anon_sym_super] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4311), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_throw] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4313), + [anon_sym_continue_AT] = ACTIONS(4313), + [anon_sym_break_AT] = ACTIONS(4313), + [anon_sym_this_AT] = ACTIONS(4313), + [anon_sym_super_AT] = ACTIONS(4313), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4313), + [sym_null_literal] = ACTIONS(4311), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4313), + }, + [1168] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [1169] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [1170] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [1171] = { + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(1760), + [anon_sym_sealed] = ACTIONS(1760), + [anon_sym_annotation] = ACTIONS(1760), + [anon_sym_data] = ACTIONS(1760), + [anon_sym_inner] = ACTIONS(1760), + [anon_sym_value] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_lateinit] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_internal] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_tailrec] = ACTIONS(1760), + [anon_sym_operator] = ACTIONS(1760), + [anon_sym_infix] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_external] = ACTIONS(1760), + [sym_property_modifier] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_final] = ACTIONS(1760), + [anon_sym_open] = ACTIONS(1760), + [anon_sym_vararg] = ACTIONS(1760), + [anon_sym_noinline] = ACTIONS(1760), + [anon_sym_crossinline] = ACTIONS(1760), + [anon_sym_expect] = ACTIONS(1760), + [anon_sym_actual] = ACTIONS(1760), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [1172] = { + [sym__alpha_identifier] = ACTIONS(5115), + [anon_sym_AT] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_as] = ACTIONS(5115), + [anon_sym_EQ] = ACTIONS(5115), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_where] = ACTIONS(5115), + [anon_sym_object] = ACTIONS(5115), + [anon_sym_fun] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_get] = ACTIONS(5115), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_this] = ACTIONS(5115), + [anon_sym_super] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [sym_label] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5115), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_QMARK_COLON] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5115), + [anon_sym_else] = ACTIONS(5115), + [anon_sym_when] = ACTIONS(5115), + [anon_sym_try] = ACTIONS(5115), + [anon_sym_throw] = ACTIONS(5115), + [anon_sym_return] = ACTIONS(5115), + [anon_sym_continue] = ACTIONS(5115), + [anon_sym_break] = ACTIONS(5115), + [anon_sym_COLON_COLON] = ACTIONS(5117), + [anon_sym_PLUS_EQ] = ACTIONS(5117), + [anon_sym_DASH_EQ] = ACTIONS(5117), + [anon_sym_STAR_EQ] = ACTIONS(5117), + [anon_sym_SLASH_EQ] = ACTIONS(5117), + [anon_sym_PERCENT_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_BANGin] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5115), + [anon_sym_BANGis] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_as_QMARK] = ACTIONS(5117), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_BANG_BANG] = ACTIONS(5117), + [anon_sym_suspend] = ACTIONS(5115), + [anon_sym_sealed] = ACTIONS(5115), + [anon_sym_annotation] = ACTIONS(5115), + [anon_sym_data] = ACTIONS(5115), + [anon_sym_inner] = ACTIONS(5115), + [anon_sym_value] = ACTIONS(5115), + [anon_sym_override] = ACTIONS(5115), + [anon_sym_lateinit] = ACTIONS(5115), + [anon_sym_public] = ACTIONS(5115), + [anon_sym_private] = ACTIONS(5115), + [anon_sym_internal] = ACTIONS(5115), + [anon_sym_protected] = ACTIONS(5115), + [anon_sym_tailrec] = ACTIONS(5115), + [anon_sym_operator] = ACTIONS(5115), + [anon_sym_infix] = ACTIONS(5115), + [anon_sym_inline] = ACTIONS(5115), + [anon_sym_external] = ACTIONS(5115), + [sym_property_modifier] = ACTIONS(5115), + [anon_sym_abstract] = ACTIONS(5115), + [anon_sym_final] = ACTIONS(5115), + [anon_sym_open] = ACTIONS(5115), + [anon_sym_vararg] = ACTIONS(5115), + [anon_sym_noinline] = ACTIONS(5115), + [anon_sym_crossinline] = ACTIONS(5115), + [anon_sym_expect] = ACTIONS(5115), + [anon_sym_actual] = ACTIONS(5115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5117), + [anon_sym_continue_AT] = ACTIONS(5117), + [anon_sym_break_AT] = ACTIONS(5117), + [anon_sym_this_AT] = ACTIONS(5117), + [anon_sym_super_AT] = ACTIONS(5117), + [sym_real_literal] = ACTIONS(5117), + [sym_integer_literal] = ACTIONS(5115), + [sym_hex_literal] = ACTIONS(5117), + [sym_bin_literal] = ACTIONS(5117), + [anon_sym_true] = ACTIONS(5115), + [anon_sym_false] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5117), + [sym_null_literal] = ACTIONS(5115), + [sym__backtick_identifier] = ACTIONS(5117), + [sym__automatic_semicolon] = ACTIONS(5117), + [sym_safe_nav] = ACTIONS(5117), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5117), + }, + [1173] = { + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [1174] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_object] = ACTIONS(5026), + [anon_sym_fun] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_this] = ACTIONS(5026), + [anon_sym_super] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_when] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5026), + [anon_sym_throw] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5026), + [anon_sym_continue] = ACTIONS(5026), + [anon_sym_break] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_suspend] = ACTIONS(5026), + [anon_sym_sealed] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_lateinit] = ACTIONS(5026), + [anon_sym_public] = ACTIONS(5026), + [anon_sym_private] = ACTIONS(5026), + [anon_sym_internal] = ACTIONS(5026), + [anon_sym_protected] = ACTIONS(5026), + [anon_sym_tailrec] = ACTIONS(5026), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_infix] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym_external] = ACTIONS(5026), + [sym_property_modifier] = ACTIONS(5026), + [anon_sym_abstract] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_open] = ACTIONS(5026), + [anon_sym_vararg] = ACTIONS(5026), + [anon_sym_noinline] = ACTIONS(5026), + [anon_sym_crossinline] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5028), + [anon_sym_continue_AT] = ACTIONS(5028), + [anon_sym_break_AT] = ACTIONS(5028), + [anon_sym_this_AT] = ACTIONS(5028), + [anon_sym_super_AT] = ACTIONS(5028), + [sym_real_literal] = ACTIONS(5028), + [sym_integer_literal] = ACTIONS(5026), + [sym_hex_literal] = ACTIONS(5028), + [sym_bin_literal] = ACTIONS(5028), + [anon_sym_true] = ACTIONS(5026), + [anon_sym_false] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5028), + [sym_null_literal] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5028), + [sym__automatic_semicolon] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5028), + }, + [1175] = { + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_object] = ACTIONS(4632), + [anon_sym_fun] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_this] = ACTIONS(4632), + [anon_sym_super] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_when] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4634), + [anon_sym_continue_AT] = ACTIONS(4634), + [anon_sym_break_AT] = ACTIONS(4634), + [anon_sym_this_AT] = ACTIONS(4634), + [anon_sym_super_AT] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4634), + [sym_integer_literal] = ACTIONS(4632), + [sym_hex_literal] = ACTIONS(4634), + [sym_bin_literal] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_SQUOTE] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4634), + }, + [1176] = { + [sym__alpha_identifier] = ACTIONS(5119), + [anon_sym_AT] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5119), + [anon_sym_EQ] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5119), + [anon_sym_object] = ACTIONS(5119), + [anon_sym_fun] = ACTIONS(5119), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_get] = ACTIONS(5119), + [anon_sym_set] = ACTIONS(5119), + [anon_sym_this] = ACTIONS(5119), + [anon_sym_super] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5119), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_QMARK_COLON] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5119), + [anon_sym_when] = ACTIONS(5119), + [anon_sym_try] = ACTIONS(5119), + [anon_sym_throw] = ACTIONS(5119), + [anon_sym_return] = ACTIONS(5119), + [anon_sym_continue] = ACTIONS(5119), + [anon_sym_break] = ACTIONS(5119), + [anon_sym_COLON_COLON] = ACTIONS(5121), + [anon_sym_PLUS_EQ] = ACTIONS(5121), + [anon_sym_DASH_EQ] = ACTIONS(5121), + [anon_sym_STAR_EQ] = ACTIONS(5121), + [anon_sym_SLASH_EQ] = ACTIONS(5121), + [anon_sym_PERCENT_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_BANGin] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5119), + [anon_sym_BANGis] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5119), + [anon_sym_as_QMARK] = ACTIONS(5121), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5121), + [anon_sym_suspend] = ACTIONS(5119), + [anon_sym_sealed] = ACTIONS(5119), + [anon_sym_annotation] = ACTIONS(5119), + [anon_sym_data] = ACTIONS(5119), + [anon_sym_inner] = ACTIONS(5119), + [anon_sym_value] = ACTIONS(5119), + [anon_sym_override] = ACTIONS(5119), + [anon_sym_lateinit] = ACTIONS(5119), + [anon_sym_public] = ACTIONS(5119), + [anon_sym_private] = ACTIONS(5119), + [anon_sym_internal] = ACTIONS(5119), + [anon_sym_protected] = ACTIONS(5119), + [anon_sym_tailrec] = ACTIONS(5119), + [anon_sym_operator] = ACTIONS(5119), + [anon_sym_infix] = ACTIONS(5119), + [anon_sym_inline] = ACTIONS(5119), + [anon_sym_external] = ACTIONS(5119), + [sym_property_modifier] = ACTIONS(5119), + [anon_sym_abstract] = ACTIONS(5119), + [anon_sym_final] = ACTIONS(5119), + [anon_sym_open] = ACTIONS(5119), + [anon_sym_vararg] = ACTIONS(5119), + [anon_sym_noinline] = ACTIONS(5119), + [anon_sym_crossinline] = ACTIONS(5119), + [anon_sym_expect] = ACTIONS(5119), + [anon_sym_actual] = ACTIONS(5119), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5121), + [anon_sym_continue_AT] = ACTIONS(5121), + [anon_sym_break_AT] = ACTIONS(5121), + [anon_sym_this_AT] = ACTIONS(5121), + [anon_sym_super_AT] = ACTIONS(5121), + [sym_real_literal] = ACTIONS(5121), + [sym_integer_literal] = ACTIONS(5119), + [sym_hex_literal] = ACTIONS(5121), + [sym_bin_literal] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5119), + [anon_sym_false] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5121), + [sym_null_literal] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5121), + [sym__automatic_semicolon] = ACTIONS(5121), + [sym_safe_nav] = ACTIONS(5121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5121), + }, + [1177] = { + [sym__alpha_identifier] = ACTIONS(5123), + [anon_sym_AT] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_where] = ACTIONS(5123), + [anon_sym_object] = ACTIONS(5123), + [anon_sym_fun] = ACTIONS(5123), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_get] = ACTIONS(5123), + [anon_sym_set] = ACTIONS(5123), + [anon_sym_this] = ACTIONS(5123), + [anon_sym_super] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5123), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_QMARK_COLON] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5123), + [anon_sym_when] = ACTIONS(5123), + [anon_sym_try] = ACTIONS(5123), + [anon_sym_throw] = ACTIONS(5123), + [anon_sym_return] = ACTIONS(5123), + [anon_sym_continue] = ACTIONS(5123), + [anon_sym_break] = ACTIONS(5123), + [anon_sym_COLON_COLON] = ACTIONS(5125), + [anon_sym_PLUS_EQ] = ACTIONS(5125), + [anon_sym_DASH_EQ] = ACTIONS(5125), + [anon_sym_STAR_EQ] = ACTIONS(5125), + [anon_sym_SLASH_EQ] = ACTIONS(5125), + [anon_sym_PERCENT_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_BANGin] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5123), + [anon_sym_BANGis] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_as_QMARK] = ACTIONS(5125), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5125), + [anon_sym_suspend] = ACTIONS(5123), + [anon_sym_sealed] = ACTIONS(5123), + [anon_sym_annotation] = ACTIONS(5123), + [anon_sym_data] = ACTIONS(5123), + [anon_sym_inner] = ACTIONS(5123), + [anon_sym_value] = ACTIONS(5123), + [anon_sym_override] = ACTIONS(5123), + [anon_sym_lateinit] = ACTIONS(5123), + [anon_sym_public] = ACTIONS(5123), + [anon_sym_private] = ACTIONS(5123), + [anon_sym_internal] = ACTIONS(5123), + [anon_sym_protected] = ACTIONS(5123), + [anon_sym_tailrec] = ACTIONS(5123), + [anon_sym_operator] = ACTIONS(5123), + [anon_sym_infix] = ACTIONS(5123), + [anon_sym_inline] = ACTIONS(5123), + [anon_sym_external] = ACTIONS(5123), + [sym_property_modifier] = ACTIONS(5123), + [anon_sym_abstract] = ACTIONS(5123), + [anon_sym_final] = ACTIONS(5123), + [anon_sym_open] = ACTIONS(5123), + [anon_sym_vararg] = ACTIONS(5123), + [anon_sym_noinline] = ACTIONS(5123), + [anon_sym_crossinline] = ACTIONS(5123), + [anon_sym_expect] = ACTIONS(5123), + [anon_sym_actual] = ACTIONS(5123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5125), + [anon_sym_continue_AT] = ACTIONS(5125), + [anon_sym_break_AT] = ACTIONS(5125), + [anon_sym_this_AT] = ACTIONS(5125), + [anon_sym_super_AT] = ACTIONS(5125), + [sym_real_literal] = ACTIONS(5125), + [sym_integer_literal] = ACTIONS(5123), + [sym_hex_literal] = ACTIONS(5125), + [sym_bin_literal] = ACTIONS(5125), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5125), + [sym_null_literal] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5125), + [sym__automatic_semicolon] = ACTIONS(5125), + [sym_safe_nav] = ACTIONS(5125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5125), + }, + [1178] = { + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [1179] = { + [sym__alpha_identifier] = ACTIONS(5127), + [anon_sym_AT] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5127), + [anon_sym_EQ] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_object] = ACTIONS(5127), + [anon_sym_fun] = ACTIONS(5127), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(5127), + [anon_sym_set] = ACTIONS(5127), + [anon_sym_this] = ACTIONS(5127), + [anon_sym_super] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [sym_label] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5127), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_QMARK_COLON] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_if] = ACTIONS(5127), + [anon_sym_else] = ACTIONS(5127), + [anon_sym_when] = ACTIONS(5127), + [anon_sym_try] = ACTIONS(5127), + [anon_sym_throw] = ACTIONS(5127), + [anon_sym_return] = ACTIONS(5127), + [anon_sym_continue] = ACTIONS(5127), + [anon_sym_break] = ACTIONS(5127), + [anon_sym_COLON_COLON] = ACTIONS(5129), + [anon_sym_PLUS_EQ] = ACTIONS(5129), + [anon_sym_DASH_EQ] = ACTIONS(5129), + [anon_sym_STAR_EQ] = ACTIONS(5129), + [anon_sym_SLASH_EQ] = ACTIONS(5129), + [anon_sym_PERCENT_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_BANGin] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5127), + [anon_sym_BANGis] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5127), + [anon_sym_as_QMARK] = ACTIONS(5129), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_BANG_BANG] = ACTIONS(5129), + [anon_sym_suspend] = ACTIONS(5127), + [anon_sym_sealed] = ACTIONS(5127), + [anon_sym_annotation] = ACTIONS(5127), + [anon_sym_data] = ACTIONS(5127), + [anon_sym_inner] = ACTIONS(5127), + [anon_sym_value] = ACTIONS(5127), + [anon_sym_override] = ACTIONS(5127), + [anon_sym_lateinit] = ACTIONS(5127), + [anon_sym_public] = ACTIONS(5127), + [anon_sym_private] = ACTIONS(5127), + [anon_sym_internal] = ACTIONS(5127), + [anon_sym_protected] = ACTIONS(5127), + [anon_sym_tailrec] = ACTIONS(5127), + [anon_sym_operator] = ACTIONS(5127), + [anon_sym_infix] = ACTIONS(5127), + [anon_sym_inline] = ACTIONS(5127), + [anon_sym_external] = ACTIONS(5127), + [sym_property_modifier] = ACTIONS(5127), + [anon_sym_abstract] = ACTIONS(5127), + [anon_sym_final] = ACTIONS(5127), + [anon_sym_open] = ACTIONS(5127), + [anon_sym_vararg] = ACTIONS(5127), + [anon_sym_noinline] = ACTIONS(5127), + [anon_sym_crossinline] = ACTIONS(5127), + [anon_sym_expect] = ACTIONS(5127), + [anon_sym_actual] = ACTIONS(5127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5129), + [anon_sym_continue_AT] = ACTIONS(5129), + [anon_sym_break_AT] = ACTIONS(5129), + [anon_sym_this_AT] = ACTIONS(5129), + [anon_sym_super_AT] = ACTIONS(5129), + [sym_real_literal] = ACTIONS(5129), + [sym_integer_literal] = ACTIONS(5127), + [sym_hex_literal] = ACTIONS(5129), + [sym_bin_literal] = ACTIONS(5129), + [anon_sym_true] = ACTIONS(5127), + [anon_sym_false] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5129), + [sym_null_literal] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5129), + [sym__automatic_semicolon] = ACTIONS(5129), + [sym_safe_nav] = ACTIONS(5129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5129), + }, + [1180] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [1181] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_object] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_this] = ACTIONS(5131), + [anon_sym_super] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_when] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_throw] = ACTIONS(5131), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_continue] = ACTIONS(5131), + [anon_sym_break] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5133), + [anon_sym_continue_AT] = ACTIONS(5133), + [anon_sym_break_AT] = ACTIONS(5133), + [anon_sym_this_AT] = ACTIONS(5133), + [anon_sym_super_AT] = ACTIONS(5133), + [sym_real_literal] = ACTIONS(5133), + [sym_integer_literal] = ACTIONS(5131), + [sym_hex_literal] = ACTIONS(5133), + [sym_bin_literal] = ACTIONS(5133), + [anon_sym_true] = ACTIONS(5131), + [anon_sym_false] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5133), + [sym_null_literal] = ACTIONS(5131), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5133), + }, + [1182] = { + [sym_function_body] = STATE(1090), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [1183] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_object] = ACTIONS(5135), + [anon_sym_fun] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_this] = ACTIONS(5135), + [anon_sym_super] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_try] = ACTIONS(5135), + [anon_sym_throw] = ACTIONS(5135), + [anon_sym_return] = ACTIONS(5135), + [anon_sym_continue] = ACTIONS(5135), + [anon_sym_break] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5137), + [anon_sym_continue_AT] = ACTIONS(5137), + [anon_sym_break_AT] = ACTIONS(5137), + [anon_sym_this_AT] = ACTIONS(5137), + [anon_sym_super_AT] = ACTIONS(5137), + [sym_real_literal] = ACTIONS(5137), + [sym_integer_literal] = ACTIONS(5135), + [sym_hex_literal] = ACTIONS(5137), + [sym_bin_literal] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5135), + [anon_sym_false] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5137), + [sym_null_literal] = ACTIONS(5135), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5137), + }, + [1184] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_object] = ACTIONS(5139), + [anon_sym_fun] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_if] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_try] = ACTIONS(5139), + [anon_sym_throw] = ACTIONS(5139), + [anon_sym_return] = ACTIONS(5139), + [anon_sym_continue] = ACTIONS(5139), + [anon_sym_break] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5141), + [anon_sym_continue_AT] = ACTIONS(5141), + [anon_sym_break_AT] = ACTIONS(5141), + [anon_sym_this_AT] = ACTIONS(5141), + [anon_sym_super_AT] = ACTIONS(5141), + [sym_real_literal] = ACTIONS(5141), + [sym_integer_literal] = ACTIONS(5139), + [sym_hex_literal] = ACTIONS(5141), + [sym_bin_literal] = ACTIONS(5141), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym_null_literal] = ACTIONS(5139), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5141), + }, + [1185] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [1186] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_object] = ACTIONS(5143), + [anon_sym_fun] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_this] = ACTIONS(5143), + [anon_sym_super] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [sym_label] = ACTIONS(5143), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5143), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_when] = ACTIONS(5143), + [anon_sym_try] = ACTIONS(5143), + [anon_sym_throw] = ACTIONS(5143), + [anon_sym_return] = ACTIONS(5143), + [anon_sym_continue] = ACTIONS(5143), + [anon_sym_break] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5143), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_suspend] = ACTIONS(5143), + [anon_sym_sealed] = ACTIONS(5143), + [anon_sym_annotation] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_override] = ACTIONS(5143), + [anon_sym_lateinit] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_internal] = ACTIONS(5143), + [anon_sym_protected] = ACTIONS(5143), + [anon_sym_tailrec] = ACTIONS(5143), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_infix] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym_external] = ACTIONS(5143), + [sym_property_modifier] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_open] = ACTIONS(5143), + [anon_sym_vararg] = ACTIONS(5143), + [anon_sym_noinline] = ACTIONS(5143), + [anon_sym_crossinline] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5145), + [anon_sym_continue_AT] = ACTIONS(5145), + [anon_sym_break_AT] = ACTIONS(5145), + [anon_sym_this_AT] = ACTIONS(5145), + [anon_sym_super_AT] = ACTIONS(5145), + [sym_real_literal] = ACTIONS(5145), + [sym_integer_literal] = ACTIONS(5143), + [sym_hex_literal] = ACTIONS(5145), + [sym_bin_literal] = ACTIONS(5145), + [anon_sym_true] = ACTIONS(5143), + [anon_sym_false] = ACTIONS(5143), + [anon_sym_SQUOTE] = ACTIONS(5145), + [sym_null_literal] = ACTIONS(5143), + [sym__backtick_identifier] = ACTIONS(5145), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5145), + }, + [1187] = { + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [1188] = { + [sym_class_body] = STATE(1127), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [1189] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_if] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_try] = ACTIONS(5149), + [anon_sym_throw] = ACTIONS(5149), + [anon_sym_return] = ACTIONS(5149), + [anon_sym_continue] = ACTIONS(5149), + [anon_sym_break] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5151), + [anon_sym_continue_AT] = ACTIONS(5151), + [anon_sym_break_AT] = ACTIONS(5151), + [anon_sym_this_AT] = ACTIONS(5151), + [anon_sym_super_AT] = ACTIONS(5151), + [sym_real_literal] = ACTIONS(5151), + [sym_integer_literal] = ACTIONS(5149), + [sym_hex_literal] = ACTIONS(5151), + [sym_bin_literal] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym_null_literal] = ACTIONS(5149), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5151), + }, + [1190] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym_null_literal] = ACTIONS(5153), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5155), + }, + [1191] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5157), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_object] = ACTIONS(5074), + [anon_sym_fun] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_this] = ACTIONS(5074), + [anon_sym_super] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [sym_label] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_when] = ACTIONS(5074), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_throw] = ACTIONS(5074), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(5078), + [anon_sym_PLUS_EQ] = ACTIONS(5159), + [anon_sym_DASH_EQ] = ACTIONS(5159), + [anon_sym_STAR_EQ] = ACTIONS(5159), + [anon_sym_SLASH_EQ] = ACTIONS(5159), + [anon_sym_PERCENT_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_suspend] = ACTIONS(5074), + [anon_sym_sealed] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5074), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_lateinit] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_internal] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_tailrec] = ACTIONS(5074), + [anon_sym_operator] = ACTIONS(5074), + [anon_sym_infix] = ACTIONS(5074), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_external] = ACTIONS(5074), + [sym_property_modifier] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_final] = ACTIONS(5074), + [anon_sym_open] = ACTIONS(5074), + [anon_sym_vararg] = ACTIONS(5074), + [anon_sym_noinline] = ACTIONS(5074), + [anon_sym_crossinline] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5076), + [anon_sym_continue_AT] = ACTIONS(5076), + [anon_sym_break_AT] = ACTIONS(5076), + [anon_sym_this_AT] = ACTIONS(5076), + [anon_sym_super_AT] = ACTIONS(5076), + [sym_real_literal] = ACTIONS(5076), + [sym_integer_literal] = ACTIONS(5074), + [sym_hex_literal] = ACTIONS(5076), + [sym_bin_literal] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5076), + [sym_null_literal] = ACTIONS(5074), + [sym__backtick_identifier] = ACTIONS(5076), + [sym__automatic_semicolon] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5076), + }, + [1192] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(1780), + [anon_sym_sealed] = ACTIONS(1780), + [anon_sym_annotation] = ACTIONS(1780), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_value] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_lateinit] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_internal] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_tailrec] = ACTIONS(1780), + [anon_sym_operator] = ACTIONS(1780), + [anon_sym_infix] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [anon_sym_external] = ACTIONS(1780), + [sym_property_modifier] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_final] = ACTIONS(1780), + [anon_sym_open] = ACTIONS(1780), + [anon_sym_vararg] = ACTIONS(1780), + [anon_sym_noinline] = ACTIONS(1780), + [anon_sym_crossinline] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [1193] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_fun] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_this] = ACTIONS(207), + [anon_sym_super] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [sym_label] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_try] = ACTIONS(207), + [anon_sym_throw] = ACTIONS(207), + [anon_sym_return] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_break] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(207), + [anon_sym_sealed] = ACTIONS(207), + [anon_sym_annotation] = ACTIONS(207), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_value] = ACTIONS(207), + [anon_sym_override] = ACTIONS(207), + [anon_sym_lateinit] = ACTIONS(207), + [anon_sym_public] = ACTIONS(207), + [anon_sym_private] = ACTIONS(207), + [anon_sym_internal] = ACTIONS(207), + [anon_sym_protected] = ACTIONS(207), + [anon_sym_tailrec] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(207), + [anon_sym_infix] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_external] = ACTIONS(207), + [sym_property_modifier] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_open] = ACTIONS(207), + [anon_sym_vararg] = ACTIONS(207), + [anon_sym_noinline] = ACTIONS(207), + [anon_sym_crossinline] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(205), + [anon_sym_continue_AT] = ACTIONS(205), + [anon_sym_break_AT] = ACTIONS(205), + [anon_sym_this_AT] = ACTIONS(205), + [anon_sym_super_AT] = ACTIONS(205), + [sym_real_literal] = ACTIONS(205), + [sym_integer_literal] = ACTIONS(207), + [sym_hex_literal] = ACTIONS(205), + [sym_bin_literal] = ACTIONS(205), + [anon_sym_true] = ACTIONS(207), + [anon_sym_false] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(205), + [sym_null_literal] = ACTIONS(207), + [sym__backtick_identifier] = ACTIONS(205), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [1194] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_object] = ACTIONS(5161), + [anon_sym_fun] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_this] = ACTIONS(5161), + [anon_sym_super] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_when] = ACTIONS(5161), + [anon_sym_try] = ACTIONS(5161), + [anon_sym_throw] = ACTIONS(5161), + [anon_sym_return] = ACTIONS(5161), + [anon_sym_continue] = ACTIONS(5161), + [anon_sym_break] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_suspend] = ACTIONS(5161), + [anon_sym_sealed] = ACTIONS(5161), + [anon_sym_annotation] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_override] = ACTIONS(5161), + [anon_sym_lateinit] = ACTIONS(5161), + [anon_sym_public] = ACTIONS(5161), + [anon_sym_private] = ACTIONS(5161), + [anon_sym_internal] = ACTIONS(5161), + [anon_sym_protected] = ACTIONS(5161), + [anon_sym_tailrec] = ACTIONS(5161), + [anon_sym_operator] = ACTIONS(5161), + [anon_sym_infix] = ACTIONS(5161), + [anon_sym_inline] = ACTIONS(5161), + [anon_sym_external] = ACTIONS(5161), + [sym_property_modifier] = ACTIONS(5161), + [anon_sym_abstract] = ACTIONS(5161), + [anon_sym_final] = ACTIONS(5161), + [anon_sym_open] = ACTIONS(5161), + [anon_sym_vararg] = ACTIONS(5161), + [anon_sym_noinline] = ACTIONS(5161), + [anon_sym_crossinline] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5163), + [anon_sym_continue_AT] = ACTIONS(5163), + [anon_sym_break_AT] = ACTIONS(5163), + [anon_sym_this_AT] = ACTIONS(5163), + [anon_sym_super_AT] = ACTIONS(5163), + [sym_real_literal] = ACTIONS(5163), + [sym_integer_literal] = ACTIONS(5161), + [sym_hex_literal] = ACTIONS(5163), + [sym_bin_literal] = ACTIONS(5163), + [anon_sym_true] = ACTIONS(5161), + [anon_sym_false] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5163), + [sym_null_literal] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5163), + [sym__automatic_semicolon] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5163), + }, + [1195] = { + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1196] = { + [sym__alpha_identifier] = ACTIONS(5165), + [anon_sym_AT] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5165), + [anon_sym_EQ] = ACTIONS(5165), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_where] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(5165), + [anon_sym_fun] = ACTIONS(5165), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_get] = ACTIONS(5165), + [anon_sym_set] = ACTIONS(5165), + [anon_sym_this] = ACTIONS(5165), + [anon_sym_super] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [sym_label] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5165), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_QMARK_COLON] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_if] = ACTIONS(5165), + [anon_sym_else] = ACTIONS(5165), + [anon_sym_when] = ACTIONS(5165), + [anon_sym_try] = ACTIONS(5165), + [anon_sym_throw] = ACTIONS(5165), + [anon_sym_return] = ACTIONS(5165), + [anon_sym_continue] = ACTIONS(5165), + [anon_sym_break] = ACTIONS(5165), + [anon_sym_COLON_COLON] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_BANGin] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5165), + [anon_sym_BANGis] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5165), + [anon_sym_as_QMARK] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_BANG_BANG] = ACTIONS(5167), + [anon_sym_suspend] = ACTIONS(5165), + [anon_sym_sealed] = ACTIONS(5165), + [anon_sym_annotation] = ACTIONS(5165), + [anon_sym_data] = ACTIONS(5165), + [anon_sym_inner] = ACTIONS(5165), + [anon_sym_value] = ACTIONS(5165), + [anon_sym_override] = ACTIONS(5165), + [anon_sym_lateinit] = ACTIONS(5165), + [anon_sym_public] = ACTIONS(5165), + [anon_sym_private] = ACTIONS(5165), + [anon_sym_internal] = ACTIONS(5165), + [anon_sym_protected] = ACTIONS(5165), + [anon_sym_tailrec] = ACTIONS(5165), + [anon_sym_operator] = ACTIONS(5165), + [anon_sym_infix] = ACTIONS(5165), + [anon_sym_inline] = ACTIONS(5165), + [anon_sym_external] = ACTIONS(5165), + [sym_property_modifier] = ACTIONS(5165), + [anon_sym_abstract] = ACTIONS(5165), + [anon_sym_final] = ACTIONS(5165), + [anon_sym_open] = ACTIONS(5165), + [anon_sym_vararg] = ACTIONS(5165), + [anon_sym_noinline] = ACTIONS(5165), + [anon_sym_crossinline] = ACTIONS(5165), + [anon_sym_expect] = ACTIONS(5165), + [anon_sym_actual] = ACTIONS(5165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5167), + [anon_sym_continue_AT] = ACTIONS(5167), + [anon_sym_break_AT] = ACTIONS(5167), + [anon_sym_this_AT] = ACTIONS(5167), + [anon_sym_super_AT] = ACTIONS(5167), + [sym_real_literal] = ACTIONS(5167), + [sym_integer_literal] = ACTIONS(5165), + [sym_hex_literal] = ACTIONS(5167), + [sym_bin_literal] = ACTIONS(5167), + [anon_sym_true] = ACTIONS(5165), + [anon_sym_false] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5167), + [sym_null_literal] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5167), + [sym__automatic_semicolon] = ACTIONS(5167), + [sym_safe_nav] = ACTIONS(5167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5167), + }, + [1197] = { + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_object] = ACTIONS(3970), + [anon_sym_fun] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_this] = ACTIONS(3970), + [anon_sym_super] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_BANG_BANG] = ACTIONS(3972), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3972), + [anon_sym_continue_AT] = ACTIONS(3972), + [anon_sym_break_AT] = ACTIONS(3972), + [anon_sym_this_AT] = ACTIONS(3972), + [anon_sym_super_AT] = ACTIONS(3972), + [sym_real_literal] = ACTIONS(3972), + [sym_integer_literal] = ACTIONS(3970), + [sym_hex_literal] = ACTIONS(3972), + [sym_bin_literal] = ACTIONS(3972), + [anon_sym_true] = ACTIONS(3970), + [anon_sym_false] = ACTIONS(3970), + [anon_sym_SQUOTE] = ACTIONS(3972), + [sym_null_literal] = ACTIONS(3970), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3972), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3972), + }, + [1198] = { + [sym__alpha_identifier] = ACTIONS(5169), + [anon_sym_AT] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_LBRACE] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_where] = ACTIONS(5169), + [anon_sym_object] = ACTIONS(5169), + [anon_sym_fun] = ACTIONS(5169), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_get] = ACTIONS(5169), + [anon_sym_set] = ACTIONS(5169), + [anon_sym_this] = ACTIONS(5169), + [anon_sym_super] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [sym_label] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5171), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_if] = ACTIONS(5169), + [anon_sym_else] = ACTIONS(5169), + [anon_sym_when] = ACTIONS(5169), + [anon_sym_try] = ACTIONS(5169), + [anon_sym_throw] = ACTIONS(5169), + [anon_sym_return] = ACTIONS(5169), + [anon_sym_continue] = ACTIONS(5169), + [anon_sym_break] = ACTIONS(5169), + [anon_sym_COLON_COLON] = ACTIONS(5171), + [anon_sym_PLUS_EQ] = ACTIONS(5171), + [anon_sym_DASH_EQ] = ACTIONS(5171), + [anon_sym_STAR_EQ] = ACTIONS(5171), + [anon_sym_SLASH_EQ] = ACTIONS(5171), + [anon_sym_PERCENT_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_BANGin] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5169), + [anon_sym_BANGis] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5169), + [anon_sym_as_QMARK] = ACTIONS(5171), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_BANG_BANG] = ACTIONS(5171), + [anon_sym_suspend] = ACTIONS(5169), + [anon_sym_sealed] = ACTIONS(5169), + [anon_sym_annotation] = ACTIONS(5169), + [anon_sym_data] = ACTIONS(5169), + [anon_sym_inner] = ACTIONS(5169), + [anon_sym_value] = ACTIONS(5169), + [anon_sym_override] = ACTIONS(5169), + [anon_sym_lateinit] = ACTIONS(5169), + [anon_sym_public] = ACTIONS(5169), + [anon_sym_private] = ACTIONS(5169), + [anon_sym_internal] = ACTIONS(5169), + [anon_sym_protected] = ACTIONS(5169), + [anon_sym_tailrec] = ACTIONS(5169), + [anon_sym_operator] = ACTIONS(5169), + [anon_sym_infix] = ACTIONS(5169), + [anon_sym_inline] = ACTIONS(5169), + [anon_sym_external] = ACTIONS(5169), + [sym_property_modifier] = ACTIONS(5169), + [anon_sym_abstract] = ACTIONS(5169), + [anon_sym_final] = ACTIONS(5169), + [anon_sym_open] = ACTIONS(5169), + [anon_sym_vararg] = ACTIONS(5169), + [anon_sym_noinline] = ACTIONS(5169), + [anon_sym_crossinline] = ACTIONS(5169), + [anon_sym_expect] = ACTIONS(5169), + [anon_sym_actual] = ACTIONS(5169), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5171), + [anon_sym_continue_AT] = ACTIONS(5171), + [anon_sym_break_AT] = ACTIONS(5171), + [anon_sym_this_AT] = ACTIONS(5171), + [anon_sym_super_AT] = ACTIONS(5171), + [sym_real_literal] = ACTIONS(5171), + [sym_integer_literal] = ACTIONS(5169), + [sym_hex_literal] = ACTIONS(5171), + [sym_bin_literal] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5169), + [anon_sym_false] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5171), + [sym_null_literal] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(5171), + [sym__automatic_semicolon] = ACTIONS(5171), + [sym_safe_nav] = ACTIONS(5171), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5171), + }, + [1199] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [1200] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1201] = { + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_object] = ACTIONS(4582), + [anon_sym_fun] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_this] = ACTIONS(4582), + [anon_sym_super] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [sym_label] = ACTIONS(4582), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_when] = ACTIONS(4582), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_throw] = ACTIONS(4582), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_suspend] = ACTIONS(4582), + [anon_sym_sealed] = ACTIONS(4582), + [anon_sym_annotation] = ACTIONS(4582), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_override] = ACTIONS(4582), + [anon_sym_lateinit] = ACTIONS(4582), + [anon_sym_public] = ACTIONS(4582), + [anon_sym_private] = ACTIONS(4582), + [anon_sym_internal] = ACTIONS(4582), + [anon_sym_protected] = ACTIONS(4582), + [anon_sym_tailrec] = ACTIONS(4582), + [anon_sym_operator] = ACTIONS(4582), + [anon_sym_infix] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4582), + [anon_sym_external] = ACTIONS(4582), + [sym_property_modifier] = ACTIONS(4582), + [anon_sym_abstract] = ACTIONS(4582), + [anon_sym_final] = ACTIONS(4582), + [anon_sym_open] = ACTIONS(4582), + [anon_sym_vararg] = ACTIONS(4582), + [anon_sym_noinline] = ACTIONS(4582), + [anon_sym_crossinline] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4584), + [anon_sym_continue_AT] = ACTIONS(4584), + [anon_sym_break_AT] = ACTIONS(4584), + [anon_sym_this_AT] = ACTIONS(4584), + [anon_sym_super_AT] = ACTIONS(4584), + [sym_real_literal] = ACTIONS(4584), + [sym_integer_literal] = ACTIONS(4582), + [sym_hex_literal] = ACTIONS(4584), + [sym_bin_literal] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_SQUOTE] = ACTIONS(4584), + [sym_null_literal] = ACTIONS(4582), + [sym__backtick_identifier] = ACTIONS(4584), + [sym__automatic_semicolon] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4584), + }, + [1202] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_object] = ACTIONS(5175), + [anon_sym_fun] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_this] = ACTIONS(5175), + [anon_sym_super] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5175), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_if] = ACTIONS(5175), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_throw] = ACTIONS(5175), + [anon_sym_return] = ACTIONS(5175), + [anon_sym_continue] = ACTIONS(5175), + [anon_sym_break] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5175), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5177), + [anon_sym_continue_AT] = ACTIONS(5177), + [anon_sym_break_AT] = ACTIONS(5177), + [anon_sym_this_AT] = ACTIONS(5177), + [anon_sym_super_AT] = ACTIONS(5177), + [sym_real_literal] = ACTIONS(5177), + [sym_integer_literal] = ACTIONS(5175), + [sym_hex_literal] = ACTIONS(5177), + [sym_bin_literal] = ACTIONS(5177), + [anon_sym_true] = ACTIONS(5175), + [anon_sym_false] = ACTIONS(5175), + [anon_sym_SQUOTE] = ACTIONS(5177), + [sym_null_literal] = ACTIONS(5175), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5177), + }, + [1203] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5179), + [anon_sym_get] = ACTIONS(5006), + [anon_sym_set] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1204] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1205] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(5006), + [anon_sym_set] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1206] = { + [sym__alpha_identifier] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(1588), + [anon_sym_super] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [sym_label] = ACTIONS(1588), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1588), + [anon_sym_throw] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1586), + [anon_sym_continue_AT] = ACTIONS(1586), + [anon_sym_break_AT] = ACTIONS(1586), + [anon_sym_this_AT] = ACTIONS(1586), + [anon_sym_super_AT] = ACTIONS(1586), + [sym_real_literal] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1588), + [sym_hex_literal] = ACTIONS(1586), + [sym_bin_literal] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1586), + [sym_null_literal] = ACTIONS(1588), + [sym__backtick_identifier] = ACTIONS(1586), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1586), + }, + [1207] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4866), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1208] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5006), + [anon_sym_set] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1209] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(5006), + [anon_sym_set] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1210] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5191), + [anon_sym_get] = ACTIONS(5006), + [anon_sym_set] = ACTIONS(5008), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1211] = { + [sym__alpha_identifier] = ACTIONS(5193), + [anon_sym_AT] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(5193), + [anon_sym_LBRACE] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_where] = ACTIONS(5193), + [anon_sym_object] = ACTIONS(5193), + [anon_sym_fun] = ACTIONS(5193), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_get] = ACTIONS(5193), + [anon_sym_set] = ACTIONS(5193), + [anon_sym_this] = ACTIONS(5193), + [anon_sym_super] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [sym_label] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5193), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_QMARK_COLON] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_if] = ACTIONS(5193), + [anon_sym_else] = ACTIONS(5193), + [anon_sym_when] = ACTIONS(5193), + [anon_sym_try] = ACTIONS(5193), + [anon_sym_throw] = ACTIONS(5193), + [anon_sym_return] = ACTIONS(5193), + [anon_sym_continue] = ACTIONS(5193), + [anon_sym_break] = ACTIONS(5193), + [anon_sym_COLON_COLON] = ACTIONS(5195), + [anon_sym_PLUS_EQ] = ACTIONS(5195), + [anon_sym_DASH_EQ] = ACTIONS(5195), + [anon_sym_STAR_EQ] = ACTIONS(5195), + [anon_sym_SLASH_EQ] = ACTIONS(5195), + [anon_sym_PERCENT_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_BANGin] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5193), + [anon_sym_BANGis] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5193), + [anon_sym_as_QMARK] = ACTIONS(5195), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_BANG_BANG] = ACTIONS(5195), + [anon_sym_suspend] = ACTIONS(5193), + [anon_sym_sealed] = ACTIONS(5193), + [anon_sym_annotation] = ACTIONS(5193), + [anon_sym_data] = ACTIONS(5193), + [anon_sym_inner] = ACTIONS(5193), + [anon_sym_value] = ACTIONS(5193), + [anon_sym_override] = ACTIONS(5193), + [anon_sym_lateinit] = ACTIONS(5193), + [anon_sym_public] = ACTIONS(5193), + [anon_sym_private] = ACTIONS(5193), + [anon_sym_internal] = ACTIONS(5193), + [anon_sym_protected] = ACTIONS(5193), + [anon_sym_tailrec] = ACTIONS(5193), + [anon_sym_operator] = ACTIONS(5193), + [anon_sym_infix] = ACTIONS(5193), + [anon_sym_inline] = ACTIONS(5193), + [anon_sym_external] = ACTIONS(5193), + [sym_property_modifier] = ACTIONS(5193), + [anon_sym_abstract] = ACTIONS(5193), + [anon_sym_final] = ACTIONS(5193), + [anon_sym_open] = ACTIONS(5193), + [anon_sym_vararg] = ACTIONS(5193), + [anon_sym_noinline] = ACTIONS(5193), + [anon_sym_crossinline] = ACTIONS(5193), + [anon_sym_expect] = ACTIONS(5193), + [anon_sym_actual] = ACTIONS(5193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5195), + [anon_sym_continue_AT] = ACTIONS(5195), + [anon_sym_break_AT] = ACTIONS(5195), + [anon_sym_this_AT] = ACTIONS(5195), + [anon_sym_super_AT] = ACTIONS(5195), + [sym_real_literal] = ACTIONS(5195), + [sym_integer_literal] = ACTIONS(5193), + [sym_hex_literal] = ACTIONS(5195), + [sym_bin_literal] = ACTIONS(5195), + [anon_sym_true] = ACTIONS(5193), + [anon_sym_false] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5195), + [sym_null_literal] = ACTIONS(5193), + [sym__backtick_identifier] = ACTIONS(5195), + [sym__automatic_semicolon] = ACTIONS(5195), + [sym_safe_nav] = ACTIONS(5195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5195), + }, + [1212] = { + [sym__alpha_identifier] = ACTIONS(5197), + [anon_sym_AT] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5197), + [anon_sym_EQ] = ACTIONS(5197), + [anon_sym_LBRACE] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_where] = ACTIONS(5197), + [anon_sym_object] = ACTIONS(5197), + [anon_sym_fun] = ACTIONS(5197), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_get] = ACTIONS(5197), + [anon_sym_set] = ACTIONS(5197), + [anon_sym_this] = ACTIONS(5197), + [anon_sym_super] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [sym_label] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5197), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_QMARK_COLON] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_if] = ACTIONS(5197), + [anon_sym_else] = ACTIONS(5197), + [anon_sym_when] = ACTIONS(5197), + [anon_sym_try] = ACTIONS(5197), + [anon_sym_throw] = ACTIONS(5197), + [anon_sym_return] = ACTIONS(5197), + [anon_sym_continue] = ACTIONS(5197), + [anon_sym_break] = ACTIONS(5197), + [anon_sym_COLON_COLON] = ACTIONS(5199), + [anon_sym_PLUS_EQ] = ACTIONS(5199), + [anon_sym_DASH_EQ] = ACTIONS(5199), + [anon_sym_STAR_EQ] = ACTIONS(5199), + [anon_sym_SLASH_EQ] = ACTIONS(5199), + [anon_sym_PERCENT_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_BANGin] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5197), + [anon_sym_BANGis] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5197), + [anon_sym_as_QMARK] = ACTIONS(5199), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_BANG_BANG] = ACTIONS(5199), + [anon_sym_suspend] = ACTIONS(5197), + [anon_sym_sealed] = ACTIONS(5197), + [anon_sym_annotation] = ACTIONS(5197), + [anon_sym_data] = ACTIONS(5197), + [anon_sym_inner] = ACTIONS(5197), + [anon_sym_value] = ACTIONS(5197), + [anon_sym_override] = ACTIONS(5197), + [anon_sym_lateinit] = ACTIONS(5197), + [anon_sym_public] = ACTIONS(5197), + [anon_sym_private] = ACTIONS(5197), + [anon_sym_internal] = ACTIONS(5197), + [anon_sym_protected] = ACTIONS(5197), + [anon_sym_tailrec] = ACTIONS(5197), + [anon_sym_operator] = ACTIONS(5197), + [anon_sym_infix] = ACTIONS(5197), + [anon_sym_inline] = ACTIONS(5197), + [anon_sym_external] = ACTIONS(5197), + [sym_property_modifier] = ACTIONS(5197), + [anon_sym_abstract] = ACTIONS(5197), + [anon_sym_final] = ACTIONS(5197), + [anon_sym_open] = ACTIONS(5197), + [anon_sym_vararg] = ACTIONS(5197), + [anon_sym_noinline] = ACTIONS(5197), + [anon_sym_crossinline] = ACTIONS(5197), + [anon_sym_expect] = ACTIONS(5197), + [anon_sym_actual] = ACTIONS(5197), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5199), + [anon_sym_continue_AT] = ACTIONS(5199), + [anon_sym_break_AT] = ACTIONS(5199), + [anon_sym_this_AT] = ACTIONS(5199), + [anon_sym_super_AT] = ACTIONS(5199), + [sym_real_literal] = ACTIONS(5199), + [sym_integer_literal] = ACTIONS(5197), + [sym_hex_literal] = ACTIONS(5199), + [sym_bin_literal] = ACTIONS(5199), + [anon_sym_true] = ACTIONS(5197), + [anon_sym_false] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5199), + [sym_null_literal] = ACTIONS(5197), + [sym__backtick_identifier] = ACTIONS(5199), + [sym__automatic_semicolon] = ACTIONS(5199), + [sym_safe_nav] = ACTIONS(5199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5199), + }, + [1213] = { + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [1214] = { + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [1215] = { + [sym_class_body] = STATE(1159), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [1216] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1217] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1218] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1219] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [1220] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3075), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1221] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [1222] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [1223] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [1224] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3071), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1225] = { + [sym_getter] = STATE(9297), + [sym_setter] = STATE(9297), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9386), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5227), + [anon_sym_get] = ACTIONS(5229), + [anon_sym_set] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1226] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [1227] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3050), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1228] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [1229] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [1230] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [1231] = { + [sym_getter] = STATE(9227), + [sym_setter] = STATE(9227), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9386), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5233), + [anon_sym_get] = ACTIONS(5229), + [anon_sym_set] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1232] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [1233] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [1234] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [1235] = { + [sym_getter] = STATE(9183), + [sym_setter] = STATE(9183), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9386), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym_get] = ACTIONS(5229), + [anon_sym_set] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1236] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [1237] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [1238] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1239] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [1240] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1241] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1242] = { + [sym_type_constraints] = STATE(1343), + [sym_function_body] = STATE(1079), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [1243] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3056), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1244] = { + [sym_type_constraints] = STATE(1342), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [1245] = { + [sym_type_constraints] = STATE(1338), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1246] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3079), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1247] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1248] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3120), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1249] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5245), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1250] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1251] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1252] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3105), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1253] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3094), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1254] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3060), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1255] = { + [sym_getter] = STATE(9238), + [sym_setter] = STATE(9238), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9386), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5249), + [anon_sym_get] = ACTIONS(5229), + [anon_sym_set] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1256] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1257] = { + [sym_type_constraints] = STATE(1336), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1258] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1467), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1472), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1473), + [sym__multiplicative_operator] = STATE(1474), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1477), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3540), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3548), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3554), + [anon_sym_QMARK_COLON] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_PIPE_PIPE] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3566), + [anon_sym_EQ_EQ] = ACTIONS(3564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3566), + [anon_sym_LT_EQ] = ACTIONS(3568), + [anon_sym_GT_EQ] = ACTIONS(3568), + [anon_sym_BANGin] = ACTIONS(3570), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_PERCENT] = ACTIONS(3548), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1259] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [1260] = { + [sym_type_constraints] = STATE(1355), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1261] = { + [sym_getter] = STATE(9243), + [sym_setter] = STATE(9243), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9386), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5259), + [anon_sym_get] = ACTIONS(5229), + [anon_sym_set] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1262] = { + [sym_getter] = STATE(9210), + [sym_setter] = STATE(9210), + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_modifiers] = STATE(9386), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(5261), + [anon_sym_get] = ACTIONS(5229), + [anon_sym_set] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1263] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [1264] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2028), + [sym__in_operator] = STATE(2030), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2041), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2042), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(5203), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5213), + [anon_sym_DOT_DOT] = ACTIONS(5205), + [anon_sym_QMARK_COLON] = ACTIONS(5207), + [anon_sym_AMP_AMP] = ACTIONS(5215), + [anon_sym_PIPE_PIPE] = ACTIONS(5217), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(5219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5221), + [anon_sym_EQ_EQ] = ACTIONS(5219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5221), + [anon_sym_LT_EQ] = ACTIONS(5223), + [anon_sym_GT_EQ] = ACTIONS(5223), + [anon_sym_BANGin] = ACTIONS(5225), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5203), + [anon_sym_PERCENT] = ACTIONS(5203), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [1265] = { + [sym__expression] = STATE(2211), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_object] = ACTIONS(5266), + [anon_sym_fun] = ACTIONS(5269), + [anon_sym_get] = ACTIONS(5272), + [anon_sym_set] = ACTIONS(5272), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2669), + [sym_label] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_data] = ACTIONS(5272), + [anon_sym_inner] = ACTIONS(5272), + [anon_sym_value] = ACTIONS(5272), + [anon_sym_expect] = ACTIONS(5272), + [anon_sym_actual] = ACTIONS(5272), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [1266] = { + [sym_function_body] = STATE(1058), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [1267] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [1268] = { + [sym__expression] = STATE(3796), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_object] = ACTIONS(5281), + [anon_sym_fun] = ACTIONS(5284), + [anon_sym_get] = ACTIONS(5287), + [anon_sym_set] = ACTIONS(5287), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2385), + [sym_label] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2400), + [anon_sym_DASH_DASH] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_data] = ACTIONS(5287), + [anon_sym_inner] = ACTIONS(5287), + [anon_sym_value] = ACTIONS(5287), + [anon_sym_expect] = ACTIONS(5287), + [anon_sym_actual] = ACTIONS(5287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [1269] = { + [sym_type_constraints] = STATE(1330), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [1270] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [1271] = { + [sym__expression] = STATE(2447), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(5294), + [anon_sym_fun] = ACTIONS(5297), + [anon_sym_get] = ACTIONS(5300), + [anon_sym_set] = ACTIONS(5300), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2169), + [sym_label] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_data] = ACTIONS(5300), + [anon_sym_inner] = ACTIONS(5300), + [anon_sym_value] = ACTIONS(5300), + [anon_sym_expect] = ACTIONS(5300), + [anon_sym_actual] = ACTIONS(5300), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [1272] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [1273] = { + [sym_type_constraints] = STATE(1326), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [1274] = { + [sym__expression] = STATE(1431), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(5294), + [anon_sym_fun] = ACTIONS(5305), + [anon_sym_get] = ACTIONS(5300), + [anon_sym_set] = ACTIONS(5300), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2830), + [sym_label] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_data] = ACTIONS(5300), + [anon_sym_inner] = ACTIONS(5300), + [anon_sym_value] = ACTIONS(5300), + [anon_sym_expect] = ACTIONS(5300), + [anon_sym_actual] = ACTIONS(5300), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [1275] = { + [sym_type_constraints] = STATE(2206), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1276] = { + [sym_type_constraints] = STATE(1355), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1277] = { + [sym_type_constraints] = STATE(2159), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1278] = { + [sym_type_constraints] = STATE(1336), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1279] = { + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(5314), + [anon_sym_fun] = ACTIONS(5317), + [anon_sym_get] = ACTIONS(5320), + [anon_sym_set] = ACTIONS(5320), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2551), + [sym_label] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2566), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_data] = ACTIONS(5320), + [anon_sym_inner] = ACTIONS(5320), + [anon_sym_value] = ACTIONS(5320), + [anon_sym_expect] = ACTIONS(5320), + [anon_sym_actual] = ACTIONS(5320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [1280] = { + [sym_type_constraints] = STATE(1338), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1281] = { + [sym__expression] = STATE(4045), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_object] = ACTIONS(5323), + [anon_sym_fun] = ACTIONS(5326), + [anon_sym_get] = ACTIONS(5329), + [anon_sym_set] = ACTIONS(5329), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2068), + [sym_label] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_data] = ACTIONS(5329), + [anon_sym_inner] = ACTIONS(5329), + [anon_sym_value] = ACTIONS(5329), + [anon_sym_expect] = ACTIONS(5329), + [anon_sym_actual] = ACTIONS(5329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [1282] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [1283] = { + [sym__expression] = STATE(2577), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(5294), + [anon_sym_fun] = ACTIONS(5332), + [anon_sym_get] = ACTIONS(5300), + [anon_sym_set] = ACTIONS(5300), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2808), + [sym_label] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_data] = ACTIONS(5300), + [anon_sym_inner] = ACTIONS(5300), + [anon_sym_value] = ACTIONS(5300), + [anon_sym_expect] = ACTIONS(5300), + [anon_sym_actual] = ACTIONS(5300), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [1284] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [1285] = { + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_object] = ACTIONS(5281), + [anon_sym_fun] = ACTIONS(5335), + [anon_sym_get] = ACTIONS(5287), + [anon_sym_set] = ACTIONS(5287), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2786), + [sym_label] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_data] = ACTIONS(5287), + [anon_sym_inner] = ACTIONS(5287), + [anon_sym_value] = ACTIONS(5287), + [anon_sym_expect] = ACTIONS(5287), + [anon_sym_actual] = ACTIONS(5287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [1286] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_object] = ACTIONS(5323), + [anon_sym_fun] = ACTIONS(5338), + [anon_sym_get] = ACTIONS(5329), + [anon_sym_set] = ACTIONS(5329), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2621), + [sym_label] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_PLUS_PLUS] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_data] = ACTIONS(5329), + [anon_sym_inner] = ACTIONS(5329), + [anon_sym_value] = ACTIONS(5329), + [anon_sym_expect] = ACTIONS(5329), + [anon_sym_actual] = ACTIONS(5329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [1287] = { + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(5294), + [anon_sym_fun] = ACTIONS(5341), + [anon_sym_get] = ACTIONS(5300), + [anon_sym_set] = ACTIONS(5300), + [anon_sym_this] = ACTIONS(2163), + [anon_sym_super] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2962), + [sym_label] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_when] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_data] = ACTIONS(5300), + [anon_sym_inner] = ACTIONS(5300), + [anon_sym_value] = ACTIONS(5300), + [anon_sym_expect] = ACTIONS(5300), + [anon_sym_actual] = ACTIONS(5300), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2202), + [anon_sym_break_AT] = ACTIONS(2205), + [anon_sym_this_AT] = ACTIONS(2208), + [anon_sym_super_AT] = ACTIONS(2211), + [sym_real_literal] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2217), + [sym_hex_literal] = ACTIONS(2220), + [sym_bin_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_null_literal] = ACTIONS(2229), + [sym__backtick_identifier] = ACTIONS(2232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2235), + }, + [1288] = { + [sym_type_constraints] = STATE(1844), + [sym_function_body] = STATE(1079), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(5344), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [1289] = { + [sym_type_constraints] = STATE(2110), + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(5346), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [1290] = { + [sym__expression] = STATE(4327), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_object] = ACTIONS(5281), + [anon_sym_fun] = ACTIONS(5348), + [anon_sym_get] = ACTIONS(5287), + [anon_sym_set] = ACTIONS(5287), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2764), + [sym_label] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_data] = ACTIONS(5287), + [anon_sym_inner] = ACTIONS(5287), + [anon_sym_value] = ACTIONS(5287), + [anon_sym_expect] = ACTIONS(5287), + [anon_sym_actual] = ACTIONS(5287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [1291] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1292] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5355), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1293] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(5359), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [1294] = { + [sym_getter] = STATE(9680), + [sym_setter] = STATE(9680), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9339), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(5361), + [anon_sym_get] = ACTIONS(5363), + [anon_sym_set] = ACTIONS(5365), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1295] = { + [sym_getter] = STATE(9644), + [sym_setter] = STATE(9644), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9339), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(5367), + [anon_sym_get] = ACTIONS(5363), + [anon_sym_set] = ACTIONS(5365), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1296] = { + [sym_getter] = STATE(9620), + [sym_setter] = STATE(9620), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9339), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(5369), + [anon_sym_get] = ACTIONS(5363), + [anon_sym_set] = ACTIONS(5365), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1297] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [1298] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5375), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [1299] = { + [sym__expression] = STATE(427), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_object] = ACTIONS(5379), + [anon_sym_fun] = ACTIONS(5382), + [anon_sym_get] = ACTIONS(5385), + [anon_sym_set] = ACTIONS(5385), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2503), + [sym_label] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_data] = ACTIONS(5385), + [anon_sym_inner] = ACTIONS(5385), + [anon_sym_value] = ACTIONS(5385), + [anon_sym_expect] = ACTIONS(5385), + [anon_sym_actual] = ACTIONS(5385), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [1300] = { + [sym__expression] = STATE(487), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_object] = ACTIONS(5379), + [anon_sym_fun] = ACTIONS(5388), + [anon_sym_get] = ACTIONS(5385), + [anon_sym_set] = ACTIONS(5385), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2918), + [sym_label] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_data] = ACTIONS(5385), + [anon_sym_inner] = ACTIONS(5385), + [anon_sym_value] = ACTIONS(5385), + [anon_sym_expect] = ACTIONS(5385), + [anon_sym_actual] = ACTIONS(5385), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [1301] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(5391), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(5393), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [1302] = { + [sym__expression] = STATE(560), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_object] = ACTIONS(5379), + [anon_sym_fun] = ACTIONS(5395), + [anon_sym_get] = ACTIONS(5385), + [anon_sym_set] = ACTIONS(5385), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2433), + [sym_label] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2451), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2460), + [anon_sym_DASH_DASH] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_data] = ACTIONS(5385), + [anon_sym_inner] = ACTIONS(5385), + [anon_sym_value] = ACTIONS(5385), + [anon_sym_expect] = ACTIONS(5385), + [anon_sym_actual] = ACTIONS(5385), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [1303] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(5398), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [1304] = { + [sym__expression] = STATE(2292), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_object] = ACTIONS(5266), + [anon_sym_fun] = ACTIONS(5400), + [anon_sym_get] = ACTIONS(5272), + [anon_sym_set] = ACTIONS(5272), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3006), + [sym_label] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_data] = ACTIONS(5272), + [anon_sym_inner] = ACTIONS(5272), + [anon_sym_value] = ACTIONS(5272), + [anon_sym_expect] = ACTIONS(5272), + [anon_sym_actual] = ACTIONS(5272), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [1305] = { + [sym__expression] = STATE(2333), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(5314), + [anon_sym_fun] = ACTIONS(5403), + [anon_sym_get] = ACTIONS(5320), + [anon_sym_set] = ACTIONS(5320), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2852), + [sym_label] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_data] = ACTIONS(5320), + [anon_sym_inner] = ACTIONS(5320), + [anon_sym_value] = ACTIONS(5320), + [anon_sym_expect] = ACTIONS(5320), + [anon_sym_actual] = ACTIONS(5320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [1306] = { + [sym_type_constraints] = STATE(2123), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(5406), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1307] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(5314), + [anon_sym_fun] = ACTIONS(5408), + [anon_sym_get] = ACTIONS(5320), + [anon_sym_set] = ACTIONS(5320), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2742), + [sym_label] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_data] = ACTIONS(5320), + [anon_sym_inner] = ACTIONS(5320), + [anon_sym_value] = ACTIONS(5320), + [anon_sym_expect] = ACTIONS(5320), + [anon_sym_actual] = ACTIONS(5320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [1308] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5411), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [1309] = { + [sym__expression] = STATE(2505), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_object] = ACTIONS(5266), + [anon_sym_fun] = ACTIONS(5413), + [anon_sym_get] = ACTIONS(5272), + [anon_sym_set] = ACTIONS(5272), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2984), + [sym_label] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2990), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_data] = ACTIONS(5272), + [anon_sym_inner] = ACTIONS(5272), + [anon_sym_value] = ACTIONS(5272), + [anon_sym_expect] = ACTIONS(5272), + [anon_sym_actual] = ACTIONS(5272), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [1310] = { + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_object] = ACTIONS(5266), + [anon_sym_fun] = ACTIONS(5416), + [anon_sym_get] = ACTIONS(5272), + [anon_sym_set] = ACTIONS(5272), + [anon_sym_this] = ACTIONS(2663), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2896), + [sym_label] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_when] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_data] = ACTIONS(5272), + [anon_sym_inner] = ACTIONS(5272), + [anon_sym_value] = ACTIONS(5272), + [anon_sym_expect] = ACTIONS(5272), + [anon_sym_actual] = ACTIONS(5272), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2699), + [anon_sym_continue_AT] = ACTIONS(2702), + [anon_sym_break_AT] = ACTIONS(2705), + [anon_sym_this_AT] = ACTIONS(2708), + [anon_sym_super_AT] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2717), + [sym_hex_literal] = ACTIONS(2720), + [sym_bin_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_null_literal] = ACTIONS(2729), + [sym__backtick_identifier] = ACTIONS(2732), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2735), + }, + [1311] = { + [sym_function_body] = STATE(1213), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [1312] = { + [sym__expression] = STATE(4159), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_object] = ACTIONS(5323), + [anon_sym_fun] = ACTIONS(5421), + [anon_sym_get] = ACTIONS(5329), + [anon_sym_set] = ACTIONS(5329), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2341), + [sym_label] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_data] = ACTIONS(5329), + [anon_sym_inner] = ACTIONS(5329), + [anon_sym_value] = ACTIONS(5329), + [anon_sym_expect] = ACTIONS(5329), + [anon_sym_actual] = ACTIONS(5329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [1313] = { + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(2521), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(5314), + [anon_sym_fun] = ACTIONS(5424), + [anon_sym_get] = ACTIONS(5320), + [anon_sym_set] = ACTIONS(5320), + [anon_sym_this] = ACTIONS(2545), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2940), + [sym_label] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_when] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_data] = ACTIONS(5320), + [anon_sym_inner] = ACTIONS(5320), + [anon_sym_value] = ACTIONS(5320), + [anon_sym_expect] = ACTIONS(5320), + [anon_sym_actual] = ACTIONS(5320), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2581), + [anon_sym_break_AT] = ACTIONS(2584), + [anon_sym_this_AT] = ACTIONS(2587), + [anon_sym_super_AT] = ACTIONS(2590), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2596), + [sym_hex_literal] = ACTIONS(2599), + [sym_bin_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2602), + [anon_sym_false] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_null_literal] = ACTIONS(2608), + [sym__backtick_identifier] = ACTIONS(2611), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2614), + }, + [1314] = { + [sym_getter] = STATE(9530), + [sym_setter] = STATE(9530), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9339), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(5427), + [anon_sym_get] = ACTIONS(5363), + [anon_sym_set] = ACTIONS(5365), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1315] = { + [sym_getter] = STATE(9519), + [sym_setter] = STATE(9519), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9339), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_get] = ACTIONS(5363), + [anon_sym_set] = ACTIONS(5365), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1316] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [1317] = { + [sym_getter] = STATE(9559), + [sym_setter] = STATE(9559), + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_modifiers] = STATE(9339), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(6354), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(5433), + [anon_sym_get] = ACTIONS(5363), + [anon_sym_set] = ACTIONS(5365), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(1746), + [anon_sym_actual] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1318] = { + [sym__expression] = STATE(3350), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_object] = ACTIONS(5323), + [anon_sym_fun] = ACTIONS(5435), + [anon_sym_get] = ACTIONS(5329), + [anon_sym_set] = ACTIONS(5329), + [anon_sym_this] = ACTIONS(2062), + [anon_sym_super] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2363), + [sym_label] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_when] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_data] = ACTIONS(5329), + [anon_sym_inner] = ACTIONS(5329), + [anon_sym_value] = ACTIONS(5329), + [anon_sym_expect] = ACTIONS(5329), + [anon_sym_actual] = ACTIONS(5329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2100), + [anon_sym_continue_AT] = ACTIONS(2103), + [anon_sym_break_AT] = ACTIONS(2106), + [anon_sym_this_AT] = ACTIONS(2109), + [anon_sym_super_AT] = ACTIONS(2112), + [sym_real_literal] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2118), + [sym_hex_literal] = ACTIONS(2121), + [sym_bin_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2127), + [sym_null_literal] = ACTIONS(2130), + [sym__backtick_identifier] = ACTIONS(2133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2136), + }, + [1319] = { + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_object] = ACTIONS(5379), + [anon_sym_fun] = ACTIONS(5438), + [anon_sym_get] = ACTIONS(5385), + [anon_sym_set] = ACTIONS(5385), + [anon_sym_this] = ACTIONS(2427), + [anon_sym_super] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2874), + [sym_label] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_data] = ACTIONS(5385), + [anon_sym_inner] = ACTIONS(5385), + [anon_sym_value] = ACTIONS(5385), + [anon_sym_expect] = ACTIONS(5385), + [anon_sym_actual] = ACTIONS(5385), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2199), + [anon_sym_continue_AT] = ACTIONS(2463), + [anon_sym_break_AT] = ACTIONS(2466), + [anon_sym_this_AT] = ACTIONS(2469), + [anon_sym_super_AT] = ACTIONS(2472), + [sym_real_literal] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2478), + [sym_hex_literal] = ACTIONS(2481), + [sym_bin_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2487), + [sym_null_literal] = ACTIONS(2490), + [sym__backtick_identifier] = ACTIONS(2493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2496), + }, + [1320] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5441), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [1321] = { + [sym__expression] = STATE(4103), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_object] = ACTIONS(5281), + [anon_sym_fun] = ACTIONS(5443), + [anon_sym_get] = ACTIONS(5287), + [anon_sym_set] = ACTIONS(5287), + [anon_sym_this] = ACTIONS(2262), + [anon_sym_super] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2268), + [sym_label] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_when] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_data] = ACTIONS(5287), + [anon_sym_inner] = ACTIONS(5287), + [anon_sym_value] = ACTIONS(5287), + [anon_sym_expect] = ACTIONS(5287), + [anon_sym_actual] = ACTIONS(5287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2298), + [anon_sym_continue_AT] = ACTIONS(2301), + [anon_sym_break_AT] = ACTIONS(2304), + [anon_sym_this_AT] = ACTIONS(2307), + [anon_sym_super_AT] = ACTIONS(2310), + [sym_real_literal] = ACTIONS(2313), + [sym_integer_literal] = ACTIONS(2316), + [sym_hex_literal] = ACTIONS(2319), + [sym_bin_literal] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2325), + [sym_null_literal] = ACTIONS(2328), + [sym__backtick_identifier] = ACTIONS(2331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2334), + }, + [1322] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5446), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1323] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5450), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1324] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5452), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1325] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5454), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1326] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [1327] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5456), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1328] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5460), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [1329] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5464), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1330] = { + [sym_function_body] = STATE(1090), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [1331] = { + [sym_primary_constructor] = STATE(3041), + [sym_class_body] = STATE(3486), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(1454), + [sym_type_constraints] = STATE(3319), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5466), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_RBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_DASH_GT] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [1332] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1333] = { + [sym_primary_constructor] = STATE(3045), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(1453), + [sym_type_constraints] = STATE(3370), + [sym_enum_class_body] = STATE(3476), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [1334] = { + [sym_primary_constructor] = STATE(3047), + [sym_class_body] = STATE(3476), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(1452), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [1335] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1336] = { + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1337] = { + [sym_primary_constructor] = STATE(3055), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(1451), + [sym_type_constraints] = STATE(3334), + [sym_enum_class_body] = STATE(3452), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [1338] = { + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1339] = { + [sym_type_constraints] = STATE(1968), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [1340] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5490), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1341] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8888), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5492), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1342] = { + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1343] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [1344] = { + [sym_primary_constructor] = STATE(4605), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(1448), + [sym_type_constraints] = STATE(4704), + [sym_enum_class_body] = STATE(4827), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [1345] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8907), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1346] = { + [sym_type_constraints] = STATE(2052), + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [1347] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1348] = { + [sym_primary_constructor] = STATE(4602), + [sym_class_body] = STATE(4866), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(1447), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [1349] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1350] = { + [sym_type_constraints] = STATE(2123), + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [1351] = { + [sym_primary_constructor] = STATE(4600), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(1443), + [sym_type_constraints] = STATE(4687), + [sym_enum_class_body] = STATE(4866), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5514), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [1352] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1353] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8982), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1354] = { + [sym_primary_constructor] = STATE(4595), + [sym_class_body] = STATE(4895), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(1444), + [sym_type_constraints] = STATE(4678), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_RBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_DASH_GT] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [1355] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [1356] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9084), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1357] = { + [sym_type_constraints] = STATE(2206), + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [1358] = { + [sym_type_constraints] = STATE(994), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [1359] = { + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [1360] = { + [sym_class_body] = STATE(1098), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(5526), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [1361] = { + [sym_type_constraints] = STATE(958), + [sym_enum_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [1362] = { + [sym_class_body] = STATE(1107), + [sym_type_constraints] = STATE(952), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [1363] = { + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [1364] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8875), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1365] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(965), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(5532), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [1366] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1367] = { + [sym_function_body] = STATE(1038), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [1368] = { + [sym_class_body] = STATE(1071), + [sym_type_constraints] = STATE(951), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [1369] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8988), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1370] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1371] = { + [sym_type_constraints] = STATE(2159), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [1372] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1373] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9070), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1374] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5544), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1375] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1376] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8894), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5548), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1377] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1378] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5552), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1379] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5554), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1380] = { + [sym__expression] = STATE(4500), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1433), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8454), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(5556), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1381] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9014), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5558), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1382] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8987), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5560), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1383] = { + [sym_function_body] = STATE(1077), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [1384] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8961), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1385] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5564), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1386] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5566), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1387] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5568), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1388] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5570), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1389] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9064), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5572), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1390] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5574), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1391] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5576), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1392] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5578), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1393] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5580), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1394] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5582), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1395] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9090), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1396] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5586), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1397] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1398] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9104), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1399] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5592), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1400] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5594), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1401] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(8855), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5596), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1402] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9117), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5598), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1403] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5600), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1404] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5602), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1405] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9130), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1406] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [1407] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5606), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1408] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5608), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1409] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5610), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1410] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9142), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5612), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1411] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1412] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1413] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1414] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1415] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1416] = { + [sym_class_body] = STATE(1071), + [sym_type_constraints] = STATE(951), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [1417] = { + [sym_variable_declaration] = STATE(8932), + [sym__expression] = STATE(4462), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5711), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1418] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1419] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1420] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1421] = { + [sym_function_body] = STATE(1058), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [1422] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1423] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1424] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1425] = { + [sym_value_arguments] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(5618), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [1426] = { + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(965), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [1427] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1428] = { + [sym_type_constraints] = STATE(1021), + [sym_enum_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [1429] = { + [sym_class_body] = STATE(1107), + [sym_type_constraints] = STATE(952), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [1430] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1431] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1432] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1433] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_val] = ACTIONS(5625), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1434] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1435] = { + [sym_type_constraints] = STATE(958), + [sym_enum_class_body] = STATE(1098), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(5627), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [1436] = { + [sym_class_body] = STATE(1098), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(5629), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [1437] = { + [sym_class_body] = STATE(1159), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [1438] = { + [sym_class_body] = STATE(1127), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(5633), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [1439] = { + [sym_type_constraints] = STATE(978), + [sym_enum_class_body] = STATE(1214), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [1440] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1441] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1442] = { + [sym_type_constraints] = STATE(994), + [sym_enum_class_body] = STATE(1068), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(5635), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3206), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [1443] = { + [sym_primary_constructor] = STATE(4612), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4696), + [sym_enum_class_body] = STATE(4842), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [1444] = { + [sym_primary_constructor] = STATE(4598), + [sym_class_body] = STATE(4877), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4685), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [1445] = { + [sym_function_body] = STATE(1213), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(5641), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [1446] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1447] = { + [sym_primary_constructor] = STATE(4618), + [sym_class_body] = STATE(4842), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4702), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [1448] = { + [sym_primary_constructor] = STATE(4606), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4716), + [sym_enum_class_body] = STATE(4788), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [1449] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1623), + [sym__in_operator] = STATE(1614), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1610), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1600), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3634), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3642), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_QMARK_COLON] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3660), + [anon_sym_LT_EQ] = ACTIONS(3662), + [anon_sym_GT_EQ] = ACTIONS(3662), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [1450] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [1451] = { + [sym_primary_constructor] = STATE(3056), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [1452] = { + [sym_primary_constructor] = STATE(3054), + [sym_class_body] = STATE(3465), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3330), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [1453] = { + [sym_primary_constructor] = STATE(3003), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [1454] = { + [sym_primary_constructor] = STATE(3043), + [sym_class_body] = STATE(3436), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3363), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [1455] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym_value_argument] = STATE(9293), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2101), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5712), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5448), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1456] = { + [sym__expression] = STATE(345), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1457] = { + [sym__expression] = STATE(4555), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1458] = { + [sym__expression] = STATE(2598), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1459] = { + [sym__expression] = STATE(2600), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1460] = { + [sym__expression] = STATE(2605), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1461] = { + [sym__expression] = STATE(2606), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1462] = { + [sym__expression] = STATE(314), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1463] = { + [sym__expression] = STATE(2608), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1464] = { + [sym__expression] = STATE(2280), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1465] = { + [sym__expression] = STATE(2080), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1466] = { + [sym__expression] = STATE(1252), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1467] = { + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1468] = { + [sym__expression] = STATE(4462), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1469] = { + [sym__expression] = STATE(4421), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5657), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1470] = { + [sym__expression] = STATE(308), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1471] = { + [sym__expression] = STATE(1250), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1472] = { + [sym__expression] = STATE(1241), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1473] = { + [sym__expression] = STATE(1248), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1474] = { + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1475] = { + [sym__expression] = STATE(1017), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1476] = { + [sym__expression] = STATE(319), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1477] = { + [sym__expression] = STATE(1246), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1478] = { + [sym__expression] = STATE(313), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1479] = { + [sym__expression] = STATE(384), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1480] = { + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1481] = { + [sym__expression] = STATE(4426), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1482] = { + [sym__expression] = STATE(2587), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1483] = { + [sym__expression] = STATE(4561), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1484] = { + [sym__expression] = STATE(318), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1485] = { + [sym__expression] = STATE(317), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1486] = { + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1487] = { + [sym__expression] = STATE(2585), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1488] = { + [sym__expression] = STATE(2584), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1489] = { + [sym__expression] = STATE(4497), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1490] = { + [sym__expression] = STATE(342), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1491] = { + [sym__expression] = STATE(4085), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1492] = { + [sym__expression] = STATE(4487), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1493] = { + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1494] = { + [sym__expression] = STATE(355), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1495] = { + [sym__expression] = STATE(4334), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1496] = { + [sym__expression] = STATE(343), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1497] = { + [sym__expression] = STATE(4503), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1498] = { + [sym__expression] = STATE(339), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1499] = { + [sym__expression] = STATE(2624), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1500] = { + [sym__expression] = STATE(1254), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1501] = { + [sym__expression] = STATE(351), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1502] = { + [sym__expression] = STATE(4530), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1503] = { + [sym__expression] = STATE(344), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1504] = { + [sym__expression] = STATE(338), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1505] = { + [sym__expression] = STATE(4526), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1506] = { + [sym__expression] = STATE(4440), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1507] = { + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1508] = { + [sym__expression] = STATE(4517), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1509] = { + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1510] = { + [sym__expression] = STATE(4131), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1511] = { + [sym__expression] = STATE(1240), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1512] = { + [sym__expression] = STATE(4093), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1513] = { + [sym__expression] = STATE(4516), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1514] = { + [sym__expression] = STATE(4092), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1515] = { + [sym__expression] = STATE(4488), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1516] = { + [sym__expression] = STATE(4458), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1517] = { + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1518] = { + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1519] = { + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1520] = { + [sym__expression] = STATE(4491), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1521] = { + [sym__expression] = STATE(4493), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1522] = { + [sym__expression] = STATE(4511), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1523] = { + [sym__expression] = STATE(4403), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1524] = { + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1525] = { + [sym__expression] = STATE(4479), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1526] = { + [sym__expression] = STATE(4473), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1527] = { + [sym__expression] = STATE(4463), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1528] = { + [sym__expression] = STATE(4523), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1529] = { + [sym__expression] = STATE(981), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1530] = { + [sym__expression] = STATE(4527), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1531] = { + [sym__expression] = STATE(4553), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1532] = { + [sym__expression] = STATE(982), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1533] = { + [sym__expression] = STATE(983), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1534] = { + [sym__expression] = STATE(4474), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1535] = { + [sym__expression] = STATE(984), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1536] = { + [sym__expression] = STATE(4135), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1537] = { + [sym__expression] = STATE(4133), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1538] = { + [sym__expression] = STATE(1420), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1539] = { + [sym__expression] = STATE(4132), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1540] = { + [sym__expression] = STATE(489), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1541] = { + [sym__expression] = STATE(4475), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1542] = { + [sym__expression] = STATE(985), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1543] = { + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1544] = { + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1545] = { + [sym__expression] = STATE(340), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1546] = { + [sym__expression] = STATE(4376), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1547] = { + [sym__expression] = STATE(4522), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1548] = { + [sym__expression] = STATE(4504), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1549] = { + [sym__expression] = STATE(987), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1550] = { + [sym__expression] = STATE(4486), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1551] = { + [sym__expression] = STATE(988), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1552] = { + [sym__expression] = STATE(1412), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1553] = { + [sym__expression] = STATE(4499), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1554] = { + [sym__expression] = STATE(4337), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1555] = { + [sym__expression] = STATE(1640), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1556] = { + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1557] = { + [sym__expression] = STATE(2522), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1558] = { + [sym__expression] = STATE(1294), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1559] = { + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1560] = { + [sym__expression] = STATE(4483), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1561] = { + [sym__expression] = STATE(4484), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1562] = { + [sym__expression] = STATE(4485), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1563] = { + [sym__expression] = STATE(560), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1564] = { + [sym__expression] = STATE(346), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1565] = { + [sym__expression] = STATE(499), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1566] = { + [sym__expression] = STATE(4445), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1567] = { + [sym__expression] = STATE(4450), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1568] = { + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1569] = { + [sym__expression] = STATE(1446), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1570] = { + [sym__expression] = STATE(4451), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1571] = { + [sym__expression] = STATE(4456), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1572] = { + [sym__expression] = STATE(4327), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1573] = { + [sym__expression] = STATE(4482), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1574] = { + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1575] = { + [sym__expression] = STATE(4469), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1576] = { + [sym__expression] = STATE(4441), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1577] = { + [sym__expression] = STATE(2577), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1578] = { + [sym__expression] = STATE(4465), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1579] = { + [sym__expression] = STATE(4464), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1580] = { + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1581] = { + [sym__expression] = STATE(383), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1582] = { + [sym__expression] = STATE(390), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1583] = { + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1584] = { + [sym__expression] = STATE(395), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1585] = { + [sym__expression] = STATE(341), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1586] = { + [sym__expression] = STATE(1427), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1587] = { + [sym__expression] = STATE(385), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1588] = { + [sym__expression] = STATE(2532), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1589] = { + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1590] = { + [sym__expression] = STATE(559), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1591] = { + [sym__expression] = STATE(561), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1592] = { + [sym__expression] = STATE(4422), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1593] = { + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1594] = { + [sym__expression] = STATE(392), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1595] = { + [sym__expression] = STATE(394), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1596] = { + [sym__expression] = STATE(954), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1597] = { + [sym__expression] = STATE(402), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1598] = { + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1599] = { + [sym__expression] = STATE(399), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1600] = { + [sym__expression] = STATE(1424), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1601] = { + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1602] = { + [sym__expression] = STATE(393), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1603] = { + [sym__expression] = STATE(2273), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1604] = { + [sym__expression] = STATE(389), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1605] = { + [sym__expression] = STATE(4547), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1606] = { + [sym__expression] = STATE(4545), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1607] = { + [sym__expression] = STATE(4501), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1608] = { + [sym__expression] = STATE(4392), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1609] = { + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1610] = { + [sym__expression] = STATE(1423), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1611] = { + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1612] = { + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1613] = { + [sym__expression] = STATE(3315), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1614] = { + [sym__expression] = STATE(1441), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1615] = { + [sym__expression] = STATE(494), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1616] = { + [sym__expression] = STATE(4305), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1617] = { + [sym__expression] = STATE(500), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1618] = { + [sym__expression] = STATE(501), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1619] = { + [sym__expression] = STATE(502), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1620] = { + [sym__expression] = STATE(493), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1621] = { + [sym__expression] = STATE(497), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1622] = { + [sym__expression] = STATE(495), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1623] = { + [sym__expression] = STATE(1419), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1624] = { + [sym__expression] = STATE(492), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1625] = { + [sym__expression] = STATE(485), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1626] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_when] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_throw] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3090), + [anon_sym_continue_AT] = ACTIONS(3090), + [anon_sym_break_AT] = ACTIONS(3090), + [anon_sym_this_AT] = ACTIONS(3090), + [anon_sym_super_AT] = ACTIONS(3090), + [sym_real_literal] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [sym_hex_literal] = ACTIONS(3090), + [sym_bin_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_null_literal] = ACTIONS(3088), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1627] = { + [sym__expression] = STATE(491), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1628] = { + [sym__expression] = STATE(498), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1629] = { + [sym__expression] = STATE(484), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1630] = { + [sym__expression] = STATE(487), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1631] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1632] = { + [sym__expression] = STATE(486), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1633] = { + [sym__expression] = STATE(488), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1634] = { + [sym__expression] = STATE(1418), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1635] = { + [sym__expression] = STATE(1415), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1636] = { + [sym__expression] = STATE(2578), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1637] = { + [sym__expression] = STATE(1414), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1638] = { + [sym__expression] = STATE(2574), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1639] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1640] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1641] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [1642] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [1643] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [1644] = { + [sym__expression] = STATE(4439), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1645] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [1646] = { + [sym__expression] = STATE(4288), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1647] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [1648] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1649] = { + [sym__expression] = STATE(4311), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1650] = { + [sym__expression] = STATE(4310), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1651] = { + [sym__expression] = STATE(4309), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1652] = { + [sym__expression] = STATE(4320), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1653] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [1654] = { + [sym__expression] = STATE(4317), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1655] = { + [sym__expression] = STATE(1018), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1656] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [1657] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [1658] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [1659] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [1660] = { + [sym__expression] = STATE(2143), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1661] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1662] = { + [sym__expression] = STATE(1641), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1663] = { + [sym__expression] = STATE(1642), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1664] = { + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1665] = { + [sym__expression] = STATE(1643), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1666] = { + [sym__expression] = STATE(1645), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1667] = { + [sym__expression] = STATE(1647), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1668] = { + [sym__expression] = STATE(1653), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1669] = { + [sym__expression] = STATE(1656), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1670] = { + [sym__expression] = STATE(1657), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1671] = { + [sym__expression] = STATE(1658), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1672] = { + [sym__expression] = STATE(1659), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1673] = { + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1674] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1675] = { + [sym__expression] = STATE(4316), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1676] = { + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1677] = { + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1678] = { + [sym__expression] = STATE(758), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1679] = { + [sym__expression] = STATE(4315), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1680] = { + [sym__expression] = STATE(4314), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1681] = { + [sym__expression] = STATE(1413), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1682] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1683] = { + [sym__expression] = STATE(1431), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1684] = { + [sym__expression] = STATE(4318), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1685] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1686] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1687] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1688] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1689] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1690] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1691] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1692] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1693] = { + [sym__expression] = STATE(4145), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1694] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1695] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [1696] = { + [sym__expression] = STATE(825), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1697] = { + [sym__expression] = STATE(826), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1698] = { + [sym__expression] = STATE(1682), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1699] = { + [sym__expression] = STATE(1081), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1700] = { + [sym__expression] = STATE(4312), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1701] = { + [sym__expression] = STATE(4413), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1702] = { + [sym__expression] = STATE(828), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1703] = { + [sym__expression] = STATE(4540), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1704] = { + [sym__expression] = STATE(3858), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1705] = { + [sym__expression] = STATE(2262), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1706] = { + [sym__expression] = STATE(543), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1707] = { + [sym__expression] = STATE(1430), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1708] = { + [sym__expression] = STATE(2490), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1709] = { + [sym__expression] = STATE(1685), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1710] = { + [sym__expression] = STATE(1686), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1711] = { + [sym__expression] = STATE(1687), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1712] = { + [sym__expression] = STATE(1688), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1713] = { + [sym__expression] = STATE(1689), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1714] = { + [sym__expression] = STATE(1690), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1715] = { + [sym__expression] = STATE(1691), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1716] = { + [sym__expression] = STATE(1692), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1717] = { + [sym__expression] = STATE(1694), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1718] = { + [sym__expression] = STATE(1695), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1719] = { + [sym__expression] = STATE(544), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1720] = { + [sym__expression] = STATE(829), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1721] = { + [sym__expression] = STATE(2211), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1722] = { + [sym__expression] = STATE(545), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1723] = { + [sym__expression] = STATE(1432), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1724] = { + [sym__expression] = STATE(2212), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1725] = { + [sym__expression] = STATE(823), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1726] = { + [sym__expression] = STATE(2210), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1727] = { + [sym__expression] = STATE(546), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1728] = { + [sym__expression] = STATE(2481), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1729] = { + [sym__expression] = STATE(1262), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1730] = { + [sym__expression] = STATE(2264), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1731] = { + [sym__expression] = STATE(564), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1732] = { + [sym__expression] = STATE(354), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1733] = { + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1734] = { + [sym__expression] = STATE(553), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1735] = { + [sym__expression] = STATE(554), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1736] = { + [sym__expression] = STATE(1158), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1737] = { + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1738] = { + [sym__expression] = STATE(2242), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1739] = { + [sym__expression] = STATE(2238), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1740] = { + [sym__expression] = STATE(4494), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1741] = { + [sym__expression] = STATE(2236), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1742] = { + [sym__expression] = STATE(2233), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1743] = { + [sym__expression] = STATE(2218), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1744] = { + [sym__expression] = STATE(755), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1745] = { + [sym__expression] = STATE(2219), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1746] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(5618), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [1747] = { + [sym__expression] = STATE(4495), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1748] = { + [sym__expression] = STATE(2220), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1749] = { + [sym__expression] = STATE(2222), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1750] = { + [sym__expression] = STATE(2488), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1751] = { + [sym__expression] = STATE(2113), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1752] = { + [sym__expression] = STATE(2487), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1753] = { + [sym__expression] = STATE(2485), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1754] = { + [sym__expression] = STATE(2484), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1755] = { + [sym__expression] = STATE(2483), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1756] = { + [sym__expression] = STATE(2224), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1757] = { + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1758] = { + [sym__expression] = STATE(2479), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1759] = { + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1760] = { + [sym__expression] = STATE(2472), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1761] = { + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1762] = { + [sym__expression] = STATE(2469), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1763] = { + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1764] = { + [sym__expression] = STATE(2447), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1765] = { + [sym__expression] = STATE(2226), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1766] = { + [sym__expression] = STATE(555), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1767] = { + [sym__expression] = STATE(541), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1768] = { + [sym__expression] = STATE(556), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1769] = { + [sym__expression] = STATE(4460), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1770] = { + [sym__expression] = STATE(2474), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1771] = { + [sym__expression] = STATE(557), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1772] = { + [sym__expression] = STATE(4368), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1773] = { + [sym__expression] = STATE(2475), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1774] = { + [sym__expression] = STATE(4544), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1775] = { + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1776] = { + [sym__expression] = STATE(757), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1777] = { + [sym__expression] = STATE(4332), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1778] = { + [sym__expression] = STATE(4331), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1779] = { + [sym__expression] = STATE(4457), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1780] = { + [sym__expression] = STATE(4447), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1781] = { + [sym__expression] = STATE(4330), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1782] = { + [sym__expression] = STATE(4134), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1783] = { + [sym__expression] = STATE(4442), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1784] = { + [sym__expression] = STATE(4506), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1785] = { + [sym__expression] = STATE(4329), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1786] = { + [sym__expression] = STATE(4409), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1787] = { + [sym__expression] = STATE(4470), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1788] = { + [sym__expression] = STATE(4326), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1789] = { + [sym__expression] = STATE(3890), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1790] = { + [sym__expression] = STATE(4333), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1791] = { + [sym__expression] = STATE(4050), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1792] = { + [sym__expression] = STATE(3889), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1793] = { + [sym__expression] = STATE(3888), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1794] = { + [sym__expression] = STATE(4338), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1795] = { + [sym__expression] = STATE(3885), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1796] = { + [sym__expression] = STATE(3884), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1797] = { + [sym__expression] = STATE(4340), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1798] = { + [sym__expression] = STATE(4348), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1799] = { + [sym__expression] = STATE(4477), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1800] = { + [sym__expression] = STATE(4341), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1801] = { + [sym__expression] = STATE(2557), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1802] = { + [sym__expression] = STATE(4343), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1803] = { + [sym__expression] = STATE(2533), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1804] = { + [sym__expression] = STATE(4344), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1805] = { + [sym__expression] = STATE(4119), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1806] = { + [sym__expression] = STATE(762), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1807] = { + [sym__expression] = STATE(3883), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1808] = { + [sym__expression] = STATE(4434), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1809] = { + [sym__expression] = STATE(759), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1810] = { + [sym__expression] = STATE(4507), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1811] = { + [sym__expression] = STATE(3882), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1812] = { + [sym__expression] = STATE(4548), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1813] = { + [sym__expression] = STATE(783), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1814] = { + [sym__expression] = STATE(4102), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1815] = { + [sym__expression] = STATE(2505), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1816] = { + [sym__expression] = STATE(4448), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1817] = { + [sym__expression] = STATE(3880), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1818] = { + [sym__expression] = STATE(4529), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1819] = { + [sym__expression] = STATE(4528), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1820] = { + [sym__expression] = STATE(3879), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1821] = { + [sym__expression] = STATE(4101), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1822] = { + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1823] = { + [sym__expression] = STATE(3878), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1824] = { + [sym__expression] = STATE(3877), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1825] = { + [sym__expression] = STATE(4466), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1826] = { + [sym__expression] = STATE(4045), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1827] = { + [sym__expression] = STATE(4467), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1828] = { + [sym__expression] = STATE(821), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1829] = { + [sym__expression] = STATE(1141), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1830] = { + [sym__expression] = STATE(4490), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1831] = { + [sym__expression] = STATE(4520), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1832] = { + [sym__expression] = STATE(4044), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1833] = { + [sym_type_constraints] = STATE(2225), + [sym_property_delegate] = STATE(2373), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5685), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [1834] = { + [sym__expression] = STATE(4546), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1835] = { + [sym__expression] = STATE(4496), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1836] = { + [sym__expression] = STATE(4046), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1826), + [sym_annotation] = STATE(1826), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(322), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(761), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1837] = { + [sym__expression] = STATE(4541), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1838] = { + [sym__expression] = STATE(787), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1839] = { + [sym__expression] = STATE(4411), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1840] = { + [sym__expression] = STATE(4103), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1841] = { + [sym__expression] = STATE(4510), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1842] = { + [sym__expression] = STATE(4438), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1843] = { + [sym__expression] = STATE(1626), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(380), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(929), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1844] = { + [sym_function_body] = STATE(1130), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [1845] = { + [sym__expression] = STATE(814), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1846] = { + [sym__expression] = STATE(4325), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1572), + [sym_annotation] = STATE(1572), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(401), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(67), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1847] = { + [sym__expression] = STATE(2298), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1848] = { + [sym__expression] = STATE(2524), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1849] = { + [sym__expression] = STATE(2496), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1850] = { + [sym__expression] = STATE(2497), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1851] = { + [sym__expression] = STATE(2498), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1852] = { + [sym__expression] = STATE(2290), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1853] = { + [sym__expression] = STATE(2310), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1854] = { + [sym_type_constraints] = STATE(2228), + [sym_property_delegate] = STATE(2378), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(5693), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [1855] = { + [sym__expression] = STATE(834), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1856] = { + [sym__expression] = STATE(4505), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1857] = { + [sym__expression] = STATE(2292), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1858] = { + [sym__expression] = STATE(2514), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1859] = { + [sym__expression] = STATE(2506), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1860] = { + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1861] = { + [sym__expression] = STATE(2510), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1862] = { + [sym__expression] = STATE(2511), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1863] = { + [sym__expression] = STATE(806), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1864] = { + [sym__expression] = STATE(2516), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1865] = { + [sym__expression] = STATE(2562), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1866] = { + [sym__expression] = STATE(2476), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1867] = { + [sym__expression] = STATE(4272), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1868] = { + [sym__expression] = STATE(296), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1869] = { + [sym__expression] = STATE(4498), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1870] = { + [sym_type_constraints] = STATE(2229), + [sym_property_delegate] = STATE(2386), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(5695), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [1871] = { + [sym__expression] = STATE(4276), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1872] = { + [sym__expression] = STATE(761), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1873] = { + [sym__expression] = STATE(776), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1874] = { + [sym__expression] = STATE(797), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1875] = { + [sym__expression] = STATE(815), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1876] = { + [sym__expression] = STATE(799), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1877] = { + [sym__expression] = STATE(818), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1878] = { + [sym__expression] = STATE(807), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1879] = { + [sym__expression] = STATE(2319), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1880] = { + [sym__expression] = STATE(804), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1881] = { + [sym__expression] = STATE(2320), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1882] = { + [sym__expression] = STATE(2322), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1883] = { + [sym__expression] = STATE(4542), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1884] = { + [sym__expression] = STATE(2323), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1885] = { + [sym__expression] = STATE(4502), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1886] = { + [sym__expression] = STATE(2325), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1887] = { + [sym__expression] = STATE(4549), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1888] = { + [sym__expression] = STATE(563), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1889] = { + [sym__expression] = STATE(4550), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1890] = { + [sym__expression] = STATE(4354), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1891] = { + [sym__expression] = STATE(4551), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1892] = { + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1893] = { + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1894] = { + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1895] = { + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1896] = { + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1897] = { + [sym__expression] = STATE(2525), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1898] = { + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1899] = { + [sym__expression] = STATE(1126), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1900] = { + [sym__expression] = STATE(4143), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1901] = { + [sym__expression] = STATE(309), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1902] = { + [sym__expression] = STATE(316), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1903] = { + [sym__expression] = STATE(315), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1904] = { + [sym__expression] = STATE(4552), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1905] = { + [sym_type_constraints] = STATE(2232), + [sym_property_delegate] = STATE(2394), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5699), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [1906] = { + [sym__expression] = STATE(310), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1907] = { + [sym__expression] = STATE(4472), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1908] = { + [sym__expression] = STATE(2326), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1909] = { + [sym__expression] = STATE(2327), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1910] = { + [sym__expression] = STATE(2329), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1911] = { + [sym__expression] = STATE(4427), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1912] = { + [sym__expression] = STATE(2330), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1913] = { + [sym__expression] = STATE(2332), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1914] = { + [sym__expression] = STATE(311), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1915] = { + [sym__expression] = STATE(312), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1916] = { + [sym__expression] = STATE(2252), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1733), + [sym_annotation] = STATE(1733), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(288), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1634), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(677), + [anon_sym_if] = ACTIONS(671), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_return] = ACTIONS(675), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [1917] = { + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1918] = { + [sym__expression] = STATE(4492), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1919] = { + [sym__expression] = STATE(4147), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1920] = { + [sym__expression] = STATE(4538), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1921] = { + [sym__expression] = STATE(3391), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1922] = { + [sym__expression] = STATE(3380), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1923] = { + [sym__expression] = STATE(4525), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1924] = { + [sym__expression] = STATE(2339), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1925] = { + [sym__expression] = STATE(3314), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1926] = { + [sym__expression] = STATE(3369), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1927] = { + [sym__expression] = STATE(3399), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1928] = { + [sym__expression] = STATE(3398), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1929] = { + [sym__expression] = STATE(3397), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1930] = { + [sym__expression] = STATE(4524), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1931] = { + [sym__expression] = STATE(1296), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1932] = { + [sym__expression] = STATE(4515), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1933] = { + [sym__expression] = STATE(4449), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1934] = { + [sym__expression] = STATE(3796), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1935] = { + [sym__expression] = STATE(353), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1936] = { + [sym__expression] = STATE(4461), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1937] = { + [sym__expression] = STATE(352), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1938] = { + [sym__expression] = STATE(350), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1939] = { + [sym__expression] = STATE(348), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1940] = { + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1941] = { + [sym__expression] = STATE(347), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1942] = { + [sym__expression] = STATE(349), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1943] = { + [sym_type_constraints] = STATE(2240), + [sym_property_delegate] = STATE(2406), + [sym_getter] = STATE(3479), + [sym_setter] = STATE(3479), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(5701), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_DASH_GT] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [1944] = { + [sym__expression] = STATE(835), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1945] = { + [sym__expression] = STATE(765), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1946] = { + [sym__expression] = STATE(833), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1947] = { + [sym__expression] = STATE(831), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1948] = { + [sym__expression] = STATE(830), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1949] = { + [sym__expression] = STATE(827), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1950] = { + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1951] = { + [sym__expression] = STATE(391), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1952] = { + [sym__expression] = STATE(824), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1953] = { + [sym__expression] = STATE(4519), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1954] = { + [sym__expression] = STATE(4567), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1955] = { + [sym__expression] = STATE(4566), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1956] = { + [sym__expression] = STATE(3776), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1957] = { + [sym__expression] = STATE(403), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1958] = { + [sym__expression] = STATE(1001), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1959] = { + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1960] = { + [sym__expression] = STATE(999), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1961] = { + [sym__expression] = STATE(998), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1962] = { + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1963] = { + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1964] = { + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1965] = { + [sym__expression] = STATE(3775), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1966] = { + [sym__expression] = STATE(388), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1967] = { + [sym__expression] = STATE(658), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1968] = { + [sym_function_body] = STATE(1090), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [1969] = { + [sym__expression] = STATE(660), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1970] = { + [sym__expression] = STATE(650), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1971] = { + [sym__expression] = STATE(653), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1972] = { + [sym__expression] = STATE(657), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1973] = { + [sym__expression] = STATE(408), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1974] = { + [sym__expression] = STATE(659), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1975] = { + [sym__expression] = STATE(3768), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1976] = { + [sym__expression] = STATE(654), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1977] = { + [sym__expression] = STATE(3761), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1978] = { + [sym__expression] = STATE(652), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1979] = { + [sym__expression] = STATE(649), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1980] = { + [sym__expression] = STATE(651), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1981] = { + [sym__expression] = STATE(655), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1982] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2108), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [1983] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1984] = { + [sym__expression] = STATE(3805), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1985] = { + [sym__expression] = STATE(3396), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1986] = { + [sym__expression] = STATE(3754), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [1987] = { + [sym__expression] = STATE(4565), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1988] = { + [sym__expression] = STATE(656), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1517), + [sym_annotation] = STATE(1517), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(280), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1594), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1285), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1989] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1990] = { + [sym__expression] = STATE(298), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1991] = { + [sym_type_constraints] = STATE(2254), + [sym_property_delegate] = STATE(2350), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [1992] = { + [sym__expression] = STATE(1236), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1993] = { + [sym__expression] = STATE(300), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1994] = { + [sym__expression] = STATE(301), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1995] = { + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1996] = { + [sym__expression] = STATE(306), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1997] = { + [sym__expression] = STATE(4564), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1998] = { + [sym__expression] = STATE(4324), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [1999] = { + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2000] = { + [sym__expression] = STATE(299), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2001] = { + [sym__expression] = STATE(305), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2002] = { + [sym__expression] = STATE(295), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2003] = { + [sym__expression] = STATE(4140), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2004] = { + [sym__expression] = STATE(4142), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2005] = { + [sym__expression] = STATE(304), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2006] = { + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2007] = { + [sym__expression] = STATE(4352), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2008] = { + [sym__expression] = STATE(4512), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2009] = { + [sym__expression] = STATE(429), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2010] = { + [sym__expression] = STATE(4150), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2011] = { + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2012] = { + [sym__expression] = STATE(303), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2013] = { + [sym__expression] = STATE(3759), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2014] = { + [sym__expression] = STATE(297), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2015] = { + [sym__expression] = STATE(302), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1583), + [sym_annotation] = STATE(1583), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(285), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1203), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2016] = { + [sym__expression] = STATE(712), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2017] = { + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2018] = { + [sym__expression] = STATE(711), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2019] = { + [sym__expression] = STATE(708), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2020] = { + [sym__expression] = STATE(3760), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2021] = { + [sym__expression] = STATE(4153), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2022] = { + [sym__expression] = STATE(3771), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2023] = { + [sym__expression] = STATE(3774), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2024] = { + [sym__expression] = STATE(4108), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2025] = { + [sym__expression] = STATE(4155), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2026] = { + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2027] = { + [sym__expression] = STATE(3395), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2028] = { + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2029] = { + [sym__expression] = STATE(4563), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2030] = { + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2031] = { + [sym__expression] = STATE(2315), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2032] = { + [sym__expression] = STATE(1263), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2033] = { + [sym__expression] = STATE(4562), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2034] = { + [sym__expression] = STATE(4156), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2035] = { + [sym__expression] = STATE(4157), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2036] = { + [sym__expression] = STATE(707), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2037] = { + [sym__expression] = STATE(705), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2038] = { + [sym__expression] = STATE(3394), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2039] = { + [sym__expression] = STATE(4297), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2040] = { + [sym__expression] = STATE(4560), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2041] = { + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2042] = { + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2043] = { + [sym__expression] = STATE(701), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2044] = { + [sym_type_constraints] = STATE(2256), + [sym_property_delegate] = STATE(2348), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2045] = { + [sym__expression] = STATE(734), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2046] = { + [sym__expression] = STATE(730), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2047] = { + [sym__expression] = STATE(715), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2048] = { + [sym__expression] = STATE(732), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2049] = { + [sym__expression] = STATE(716), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2050] = { + [sym__expression] = STATE(2297), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2051] = { + [sym__expression] = STATE(709), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2052] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [2053] = { + [sym__expression] = STATE(4104), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1840), + [sym_annotation] = STATE(1840), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(325), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1271), + [sym_label] = ACTIONS(647), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2054] = { + [sym__expression] = STATE(3831), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2055] = { + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2056] = { + [sym__expression] = STATE(4277), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2057] = { + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2058] = { + [sym__expression] = STATE(4282), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2059] = { + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1524), + [sym_annotation] = STATE(1524), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(320), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1291), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2060] = { + [sym_function_body] = STATE(1187), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [2061] = { + [sym__expression] = STATE(4558), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2062] = { + [sym_type_constraints] = STATE(2272), + [sym_property_delegate] = STATE(2377), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2063] = { + [sym__expression] = STATE(2317), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1857), + [sym_annotation] = STATE(1857), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(289), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1636), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2064] = { + [sym__expression] = STATE(4268), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2065] = { + [sym__expression] = STATE(4269), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2066] = { + [sym__expression] = STATE(4270), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2067] = { + [sym__expression] = STATE(4280), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2068] = { + [sym__expression] = STATE(4266), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2069] = { + [sym__expression] = STATE(4286), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2070] = { + [sym__expression] = STATE(4159), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2071] = { + [sym__expression] = STATE(4290), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2072] = { + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(2055), + [sym_annotation] = STATE(2055), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(381), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2073] = { + [sym__expression] = STATE(3832), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2074] = { + [sym__expression] = STATE(1295), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2075] = { + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2076] = { + [sym__expression] = STATE(3393), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2077] = { + [sym__expression] = STATE(4508), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2078] = { + [sym__expression] = STATE(939), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2079] = { + [sym__expression] = STATE(4559), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2080] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2081] = { + [sym_type_constraints] = STATE(2268), + [sym_property_delegate] = STATE(2381), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5717), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2082] = { + [sym_type_constraints] = STATE(2270), + [sym_property_delegate] = STATE(2390), + [sym_getter] = STATE(4886), + [sym_setter] = STATE(4886), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(5719), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5721), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_DASH_GT] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2083] = { + [sym__expression] = STATE(4518), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2084] = { + [sym__expression] = STATE(4158), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2085] = { + [sym__expression] = STATE(4179), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2086] = { + [sym__expression] = STATE(739), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2087] = { + [sym__expression] = STATE(741), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2088] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [2089] = { + [sym__expression] = STATE(742), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2090] = { + [sym__expression] = STATE(4557), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2091] = { + [sym__expression] = STATE(4433), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2092] = { + [sym__expression] = STATE(744), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2093] = { + [sym__expression] = STATE(745), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1721), + [sym_annotation] = STATE(1721), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(286), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1630), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1259), + [sym_label] = ACTIONS(707), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2094] = { + [sym__expression] = STATE(3795), + [sym__unary_expression] = STATE(5134), + [sym_postfix_expression] = STATE(5134), + [sym_call_expression] = STATE(5134), + [sym_indexing_expression] = STATE(5134), + [sym_navigation_expression] = STATE(5134), + [sym_prefix_expression] = STATE(5134), + [sym_as_expression] = STATE(5134), + [sym_spread_expression] = STATE(5134), + [sym__binary_expression] = STATE(5134), + [sym_multiplicative_expression] = STATE(5134), + [sym_additive_expression] = STATE(5134), + [sym_range_expression] = STATE(5134), + [sym_infix_expression] = STATE(5134), + [sym_elvis_expression] = STATE(5134), + [sym_check_expression] = STATE(5134), + [sym_comparison_expression] = STATE(5134), + [sym_equality_expression] = STATE(5134), + [sym_conjunction_expression] = STATE(5134), + [sym_disjunction_expression] = STATE(5134), + [sym__primary_expression] = STATE(5134), + [sym_parenthesized_expression] = STATE(5134), + [sym_collection_literal] = STATE(5134), + [sym__literal_constant] = STATE(5134), + [sym_string_literal] = STATE(5134), + [sym_lambda_literal] = STATE(5134), + [sym_anonymous_function] = STATE(5134), + [sym__function_literal] = STATE(5134), + [sym_object_literal] = STATE(5134), + [sym_this_expression] = STATE(5134), + [sym_super_expression] = STATE(5134), + [sym_if_expression] = STATE(5134), + [sym_when_expression] = STATE(5134), + [sym_try_expression] = STATE(5134), + [sym_jump_expression] = STATE(5134), + [sym_callable_reference] = STATE(5134), + [sym__prefix_unary_operator] = STATE(1934), + [sym_annotation] = STATE(1934), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5313), + [sym__return_at] = STATE(321), + [sym__continue_at] = STATE(5120), + [sym__break_at] = STATE(5120), + [sym__this_at] = STATE(5116), + [sym__super_at] = STATE(5143), + [sym_unsigned_literal] = STATE(5134), + [sym_long_literal] = STATE(5134), + [sym_boolean_literal] = STATE(5134), + [sym_character_literal] = STATE(5134), + [sym__lexical_identifier] = STATE(4657), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1876), + [anon_sym_fun] = ACTIONS(1878), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(537), + [anon_sym_if] = ACTIONS(531), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_data] = ACTIONS(1880), + [anon_sym_inner] = ACTIONS(1880), + [anon_sym_value] = ACTIONS(1880), + [anon_sym_expect] = ACTIONS(1880), + [anon_sym_actual] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1884), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [2095] = { + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2096] = { + [sym__expression] = STATE(328), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2097] = { + [sym__expression] = STATE(1317), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2098] = { + [sym__expression] = STATE(2590), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2099] = { + [sym__expression] = STATE(4432), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2100] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [2101] = { + [sym__expression] = STATE(4431), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(5708), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5723), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2102] = { + [sym__expression] = STATE(4509), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2103] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2104] = { + [sym__expression] = STATE(4556), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2105] = { + [sym__expression] = STATE(1314), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2106] = { + [sym__expression] = STATE(4535), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2107] = { + [sym__expression] = STATE(2597), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2108] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2108), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(5725), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_object] = ACTIONS(4557), + [anon_sym_fun] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_this] = ACTIONS(4557), + [anon_sym_super] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_when] = ACTIONS(4557), + [anon_sym_try] = ACTIONS(4557), + [anon_sym_throw] = ACTIONS(4557), + [anon_sym_return] = ACTIONS(4557), + [anon_sym_continue] = ACTIONS(4557), + [anon_sym_break] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4559), + [anon_sym_continue_AT] = ACTIONS(4559), + [anon_sym_break_AT] = ACTIONS(4559), + [anon_sym_this_AT] = ACTIONS(4559), + [anon_sym_super_AT] = ACTIONS(4559), + [sym_real_literal] = ACTIONS(4559), + [sym_integer_literal] = ACTIONS(4557), + [sym_hex_literal] = ACTIONS(4559), + [sym_bin_literal] = ACTIONS(4559), + [anon_sym_true] = ACTIONS(4557), + [anon_sym_false] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4559), + [sym_null_literal] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4559), + }, + [2109] = { + [sym__expression] = STATE(4146), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2110] = { + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [2111] = { + [sym__expression] = STATE(4554), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2112] = { + [sym__expression] = STATE(323), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2113] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [2114] = { + [sym__expression] = STATE(3350), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2115] = { + [sym__expression] = STATE(3349), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2116] = { + [sym__expression] = STATE(4539), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2117] = { + [sym__expression] = STATE(4428), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(5728), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2118] = { + [sym__expression] = STATE(558), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(294), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2119] = { + [sym__expression] = STATE(4471), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2120] = { + [sym__expression] = STATE(4480), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2121] = { + [sym__expression] = STATE(4423), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2122] = { + [sym__expression] = STATE(1315), + [sym__unary_expression] = STATE(3403), + [sym_postfix_expression] = STATE(3403), + [sym_call_expression] = STATE(3403), + [sym_indexing_expression] = STATE(3403), + [sym_navigation_expression] = STATE(3403), + [sym_prefix_expression] = STATE(3403), + [sym_as_expression] = STATE(3403), + [sym_spread_expression] = STATE(3403), + [sym__binary_expression] = STATE(3403), + [sym_multiplicative_expression] = STATE(3403), + [sym_additive_expression] = STATE(3403), + [sym_range_expression] = STATE(3403), + [sym_infix_expression] = STATE(3403), + [sym_elvis_expression] = STATE(3403), + [sym_check_expression] = STATE(3403), + [sym_comparison_expression] = STATE(3403), + [sym_equality_expression] = STATE(3403), + [sym_conjunction_expression] = STATE(3403), + [sym_disjunction_expression] = STATE(3403), + [sym__primary_expression] = STATE(3403), + [sym_parenthesized_expression] = STATE(3403), + [sym_collection_literal] = STATE(3403), + [sym__literal_constant] = STATE(3403), + [sym_string_literal] = STATE(3403), + [sym_lambda_literal] = STATE(3403), + [sym_anonymous_function] = STATE(3403), + [sym__function_literal] = STATE(3403), + [sym_object_literal] = STATE(3403), + [sym_this_expression] = STATE(3403), + [sym_super_expression] = STATE(3403), + [sym_if_expression] = STATE(3403), + [sym_when_expression] = STATE(3403), + [sym_try_expression] = STATE(3403), + [sym_jump_expression] = STATE(3403), + [sym_callable_reference] = STATE(3403), + [sym__prefix_unary_operator] = STATE(1815), + [sym_annotation] = STATE(1815), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3428), + [sym__return_at] = STATE(292), + [sym__continue_at] = STATE(3552), + [sym__break_at] = STATE(3552), + [sym__this_at] = STATE(3562), + [sym__super_at] = STATE(3413), + [sym_unsigned_literal] = STATE(3403), + [sym_long_literal] = STATE(3403), + [sym_boolean_literal] = STATE(3403), + [sym_character_literal] = STATE(3403), + [sym__lexical_identifier] = STATE(2922), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1592), + [anon_sym_fun] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1596), + [anon_sym_set] = ACTIONS(1596), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1037), + [sym_label] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_data] = ACTIONS(1596), + [anon_sym_inner] = ACTIONS(1596), + [anon_sym_value] = ACTIONS(1596), + [anon_sym_expect] = ACTIONS(1596), + [anon_sym_actual] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1600), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2123] = { + [sym_function_body] = STATE(1123), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [2124] = { + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2125] = { + [sym__expression] = STATE(332), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2126] = { + [sym__expression] = STATE(334), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2127] = { + [sym__expression] = STATE(335), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2128] = { + [sym__expression] = STATE(331), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2129] = { + [sym__expression] = STATE(326), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2130] = { + [sym__expression] = STATE(3358), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2131] = { + [sym__expression] = STATE(330), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2132] = { + [sym__expression] = STATE(333), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2133] = { + [sym__expression] = STATE(324), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2134] = { + [sym__expression] = STATE(336), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2135] = { + [sym__expression] = STATE(327), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(1630), + [sym_annotation] = STATE(1630), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(291), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1652), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(873), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2136] = { + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2137] = { + [sym__expression] = STATE(941), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2138] = { + [sym__expression] = STATE(4453), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2139] = { + [sym__expression] = STATE(1239), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2140] = { + [sym__expression] = STATE(4452), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2141] = { + [sym__expression] = STATE(4429), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2142] = { + [sym__expression] = STATE(4437), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2143] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [2144] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2151), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_object] = ACTIONS(4549), + [anon_sym_fun] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_this] = ACTIONS(4549), + [anon_sym_super] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_when] = ACTIONS(4549), + [anon_sym_try] = ACTIONS(4549), + [anon_sym_throw] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4549), + [anon_sym_continue] = ACTIONS(4549), + [anon_sym_break] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_suspend] = ACTIONS(4549), + [anon_sym_sealed] = ACTIONS(4549), + [anon_sym_annotation] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_lateinit] = ACTIONS(4549), + [anon_sym_public] = ACTIONS(4549), + [anon_sym_private] = ACTIONS(4549), + [anon_sym_internal] = ACTIONS(4549), + [anon_sym_protected] = ACTIONS(4549), + [anon_sym_tailrec] = ACTIONS(4549), + [anon_sym_operator] = ACTIONS(4549), + [anon_sym_infix] = ACTIONS(4549), + [anon_sym_inline] = ACTIONS(4549), + [anon_sym_external] = ACTIONS(4549), + [sym_property_modifier] = ACTIONS(4549), + [anon_sym_abstract] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_open] = ACTIONS(4549), + [anon_sym_vararg] = ACTIONS(4549), + [anon_sym_noinline] = ACTIONS(4549), + [anon_sym_crossinline] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4551), + [anon_sym_continue_AT] = ACTIONS(4551), + [anon_sym_break_AT] = ACTIONS(4551), + [anon_sym_this_AT] = ACTIONS(4551), + [anon_sym_super_AT] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4551), + [sym_integer_literal] = ACTIONS(4549), + [sym_hex_literal] = ACTIONS(4551), + [sym_bin_literal] = ACTIONS(4551), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [anon_sym_SQUOTE] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4551), + [sym__automatic_semicolon] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4551), + }, + [2145] = { + [sym__expression] = STATE(4160), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2146] = { + [sym__expression] = STATE(426), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2147] = { + [sym__expression] = STATE(428), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2148] = { + [sym_function_body] = STATE(1077), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [2149] = { + [sym__expression] = STATE(1434), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1683), + [sym_annotation] = STATE(1683), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(284), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(473), + [anon_sym_if] = ACTIONS(459), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(465), + [anon_sym_return] = ACTIONS(467), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2150] = { + [sym__expression] = STATE(4514), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2151] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2108), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [2152] = { + [sym__expression] = STATE(4481), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2153] = { + [sym__expression] = STATE(427), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2154] = { + [sym__expression] = STATE(4543), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2155] = { + [sym__expression] = STATE(423), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2156] = { + [sym__expression] = STATE(4536), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2157] = { + [sym__expression] = STATE(4533), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2158] = { + [sym__expression] = STATE(422), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2159] = { + [sym_function_body] = STATE(1195), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [2160] = { + [sym__expression] = STATE(421), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2161] = { + [sym__expression] = STATE(420), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2162] = { + [sym__expression] = STATE(419), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2163] = { + [sym__expression] = STATE(4430), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2070), + [sym_annotation] = STATE(2070), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(337), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2164] = { + [sym__expression] = STATE(418), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2165] = { + [sym__expression] = STATE(940), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2166] = { + [sym__expression] = STATE(4537), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2167] = { + [sym__expression] = STATE(4489), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2168] = { + [sym__expression] = STATE(417), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2169] = { + [sym__expression] = STATE(412), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2170] = { + [sym__expression] = STATE(4521), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2171] = { + [sym__expression] = STATE(411), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2172] = { + [sym__expression] = STATE(410), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2173] = { + [sym__expression] = STATE(893), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2174] = { + [sym__expression] = STATE(407), + [sym__unary_expression] = STATE(1197), + [sym_postfix_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_indexing_expression] = STATE(1197), + [sym_navigation_expression] = STATE(1197), + [sym_prefix_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_spread_expression] = STATE(1197), + [sym__binary_expression] = STATE(1197), + [sym_multiplicative_expression] = STATE(1197), + [sym_additive_expression] = STATE(1197), + [sym_range_expression] = STATE(1197), + [sym_infix_expression] = STATE(1197), + [sym_elvis_expression] = STATE(1197), + [sym_check_expression] = STATE(1197), + [sym_comparison_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_conjunction_expression] = STATE(1197), + [sym_disjunction_expression] = STATE(1197), + [sym__primary_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_collection_literal] = STATE(1197), + [sym__literal_constant] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_lambda_literal] = STATE(1197), + [sym_anonymous_function] = STATE(1197), + [sym__function_literal] = STATE(1197), + [sym_object_literal] = STATE(1197), + [sym_this_expression] = STATE(1197), + [sym_super_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_when_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_jump_expression] = STATE(1197), + [sym_callable_reference] = STATE(1197), + [sym__prefix_unary_operator] = STATE(2153), + [sym_annotation] = STATE(2153), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(1157), + [sym__return_at] = STATE(287), + [sym__continue_at] = STATE(1206), + [sym__break_at] = STATE(1206), + [sym__this_at] = STATE(1128), + [sym__super_at] = STATE(1174), + [sym_unsigned_literal] = STATE(1197), + [sym_long_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_character_literal] = STATE(1197), + [sym__lexical_identifier] = STATE(840), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1297), + [sym_label] = ACTIONS(737), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1628), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2175] = { + [sym__expression] = STATE(2312), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2176] = { + [sym__expression] = STATE(4531), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2177] = { + [sym__expression] = STATE(2309), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2178] = { + [sym__expression] = STATE(2308), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2179] = { + [sym_function_body] = STATE(1038), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [2180] = { + [sym__expression] = STATE(4443), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2181] = { + [sym__expression] = STATE(2279), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2182] = { + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(1989), + [sym_annotation] = STATE(1989), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(329), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(791), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2183] = { + [sym__expression] = STATE(2306), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2184] = { + [sym__expression] = STATE(3392), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(2114), + [sym_annotation] = STATE(2114), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(1800), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1265), + [sym_label] = ACTIONS(259), + [anon_sym_if] = ACTIONS(245), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(251), + [anon_sym_return] = ACTIONS(253), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2185] = { + [sym__expression] = STATE(938), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2186] = { + [sym__expression] = STATE(935), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2187] = { + [sym__expression] = STATE(4444), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2188] = { + [sym__expression] = STATE(2305), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2189] = { + [sym__expression] = STATE(899), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2190] = { + [sym__expression] = STATE(2304), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2191] = { + [sym__expression] = STATE(4446), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2192] = { + [sym__expression] = STATE(1235), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1577), + [sym_annotation] = STATE(1577), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(293), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(1061), + [sym_label] = ACTIONS(1069), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2193] = { + [sym__expression] = STATE(2333), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2194] = { + [sym__expression] = STATE(4454), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2195] = { + [sym__expression] = STATE(895), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2196] = { + [sym__expression] = STATE(4513), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2197] = { + [sym__expression] = STATE(898), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2198] = { + [sym__expression] = STATE(2302), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2199] = { + [sym__expression] = STATE(897), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2200] = { + [sym__expression] = STATE(4532), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2201] = { + [sym__expression] = STATE(2301), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2202] = { + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2203] = { + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3105), + [sym_postfix_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_indexing_expression] = STATE(3105), + [sym_navigation_expression] = STATE(3105), + [sym_prefix_expression] = STATE(3105), + [sym_as_expression] = STATE(3105), + [sym_spread_expression] = STATE(3105), + [sym__binary_expression] = STATE(3105), + [sym_multiplicative_expression] = STATE(3105), + [sym_additive_expression] = STATE(3105), + [sym_range_expression] = STATE(3105), + [sym_infix_expression] = STATE(3105), + [sym_elvis_expression] = STATE(3105), + [sym_check_expression] = STATE(3105), + [sym_comparison_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_conjunction_expression] = STATE(3105), + [sym_disjunction_expression] = STATE(3105), + [sym__primary_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_collection_literal] = STATE(3105), + [sym__literal_constant] = STATE(3105), + [sym_string_literal] = STATE(3105), + [sym_lambda_literal] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [sym__function_literal] = STATE(3105), + [sym_object_literal] = STATE(3105), + [sym_this_expression] = STATE(3105), + [sym_super_expression] = STATE(3105), + [sym_if_expression] = STATE(3105), + [sym_when_expression] = STATE(3105), + [sym_try_expression] = STATE(3105), + [sym_jump_expression] = STATE(3105), + [sym_callable_reference] = STATE(3105), + [sym__prefix_unary_operator] = STATE(2193), + [sym_annotation] = STATE(2193), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3208), + [sym__return_at] = STATE(398), + [sym__continue_at] = STATE(3139), + [sym__break_at] = STATE(3139), + [sym__this_at] = STATE(3153), + [sym__super_at] = STATE(3163), + [sym_unsigned_literal] = STATE(3105), + [sym_long_literal] = STATE(3105), + [sym_boolean_literal] = STATE(3105), + [sym_character_literal] = STATE(3105), + [sym__lexical_identifier] = STATE(2801), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1866), + [anon_sym_fun] = ACTIONS(3125), + [anon_sym_get] = ACTIONS(1870), + [anon_sym_set] = ACTIONS(1870), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1870), + [anon_sym_inner] = ACTIONS(1870), + [anon_sym_value] = ACTIONS(1870), + [anon_sym_expect] = ACTIONS(1870), + [anon_sym_actual] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1874), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2204] = { + [sym__expression] = STATE(4534), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2205] = { + [sym__expression] = STATE(4478), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2206] = { + [sym_function_body] = STATE(1173), + [sym__block] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [2207] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [2208] = { + [sym__expression] = STATE(4476), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2209] = { + [sym__expression] = STATE(896), + [sym__unary_expression] = STATE(4000), + [sym_postfix_expression] = STATE(4000), + [sym_call_expression] = STATE(4000), + [sym_indexing_expression] = STATE(4000), + [sym_navigation_expression] = STATE(4000), + [sym_prefix_expression] = STATE(4000), + [sym_as_expression] = STATE(4000), + [sym_spread_expression] = STATE(4000), + [sym__binary_expression] = STATE(4000), + [sym_multiplicative_expression] = STATE(4000), + [sym_additive_expression] = STATE(4000), + [sym_range_expression] = STATE(4000), + [sym_infix_expression] = STATE(4000), + [sym_elvis_expression] = STATE(4000), + [sym_check_expression] = STATE(4000), + [sym_comparison_expression] = STATE(4000), + [sym_equality_expression] = STATE(4000), + [sym_conjunction_expression] = STATE(4000), + [sym_disjunction_expression] = STATE(4000), + [sym__primary_expression] = STATE(4000), + [sym_parenthesized_expression] = STATE(4000), + [sym_collection_literal] = STATE(4000), + [sym__literal_constant] = STATE(4000), + [sym_string_literal] = STATE(4000), + [sym_lambda_literal] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [sym__function_literal] = STATE(4000), + [sym_object_literal] = STATE(4000), + [sym_this_expression] = STATE(4000), + [sym_super_expression] = STATE(4000), + [sym_if_expression] = STATE(4000), + [sym_when_expression] = STATE(4000), + [sym_try_expression] = STATE(4000), + [sym_jump_expression] = STATE(4000), + [sym_callable_reference] = STATE(4000), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(3997), + [sym__return_at] = STATE(290), + [sym__continue_at] = STATE(4003), + [sym__break_at] = STATE(4003), + [sym__this_at] = STATE(3994), + [sym__super_at] = STATE(3999), + [sym_unsigned_literal] = STATE(4000), + [sym_long_literal] = STATE(4000), + [sym_boolean_literal] = STATE(4000), + [sym_character_literal] = STATE(4000), + [sym__lexical_identifier] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1644), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(445), + [anon_sym_super] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(959), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(461), + [anon_sym_try] = ACTIONS(463), + [anon_sym_throw] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(481), + [anon_sym_break_AT] = ACTIONS(483), + [anon_sym_this_AT] = ACTIONS(485), + [anon_sym_super_AT] = ACTIONS(487), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(491), + [sym_hex_literal] = ACTIONS(493), + [sym_bin_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_SQUOTE] = ACTIONS(497), + [sym_null_literal] = ACTIONS(1616), + [sym__backtick_identifier] = ACTIONS(501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(503), + }, + [2210] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2211] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2212] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1713), + [sym__in_operator] = STATE(1712), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1710), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1709), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3858), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3862), + [anon_sym_QMARK_COLON] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_PIPE_PIPE] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3872), + [anon_sym_EQ_EQ] = ACTIONS(3870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3872), + [anon_sym_LT_EQ] = ACTIONS(3874), + [anon_sym_GT_EQ] = ACTIONS(3874), + [anon_sym_BANGin] = ACTIONS(3876), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_SLASH] = ACTIONS(3858), + [anon_sym_PERCENT] = ACTIONS(3858), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2213] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [2214] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1667), + [sym__in_operator] = STATE(1666), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1663), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1662), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5659), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(5661), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5663), + [anon_sym_DOT_DOT] = ACTIONS(5665), + [anon_sym_QMARK_COLON] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5675), + [anon_sym_EQ_EQ] = ACTIONS(5673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5677), + [anon_sym_BANGin] = ACTIONS(5679), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5683), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [2215] = { + [sym__expression] = STATE(4455), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2216] = { + [sym__expression] = STATE(4459), + [sym__unary_expression] = STATE(4831), + [sym_postfix_expression] = STATE(4831), + [sym_call_expression] = STATE(4831), + [sym_indexing_expression] = STATE(4831), + [sym_navigation_expression] = STATE(4831), + [sym_prefix_expression] = STATE(4831), + [sym_as_expression] = STATE(4831), + [sym_spread_expression] = STATE(4831), + [sym__binary_expression] = STATE(4831), + [sym_multiplicative_expression] = STATE(4831), + [sym_additive_expression] = STATE(4831), + [sym_range_expression] = STATE(4831), + [sym_infix_expression] = STATE(4831), + [sym_elvis_expression] = STATE(4831), + [sym_check_expression] = STATE(4831), + [sym_comparison_expression] = STATE(4831), + [sym_equality_expression] = STATE(4831), + [sym_conjunction_expression] = STATE(4831), + [sym_disjunction_expression] = STATE(4831), + [sym__primary_expression] = STATE(4831), + [sym_parenthesized_expression] = STATE(4831), + [sym_collection_literal] = STATE(4831), + [sym__literal_constant] = STATE(4831), + [sym_string_literal] = STATE(4831), + [sym_lambda_literal] = STATE(4831), + [sym_anonymous_function] = STATE(4831), + [sym__function_literal] = STATE(4831), + [sym_object_literal] = STATE(4831), + [sym_this_expression] = STATE(4831), + [sym_super_expression] = STATE(4831), + [sym_if_expression] = STATE(4831), + [sym_when_expression] = STATE(4831), + [sym_try_expression] = STATE(4831), + [sym_jump_expression] = STATE(4831), + [sym_callable_reference] = STATE(4831), + [sym__prefix_unary_operator] = STATE(1639), + [sym_annotation] = STATE(1639), + [sym__single_annotation] = STATE(5648), + [sym__multi_annotation] = STATE(5648), + [sym_simple_identifier] = STATE(4904), + [sym__return_at] = STATE(382), + [sym__continue_at] = STATE(4911), + [sym__break_at] = STATE(4911), + [sym__this_at] = STATE(4914), + [sym__super_at] = STATE(4810), + [sym_unsigned_literal] = STATE(4831), + [sym_long_literal] = STATE(4831), + [sym_boolean_literal] = STATE(4831), + [sym_character_literal] = STATE(4831), + [sym__lexical_identifier] = STATE(4581), + [sym__alpha_identifier] = ACTIONS(209), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_fun] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(231), + [anon_sym_super] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(331), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_when] = ACTIONS(247), + [anon_sym_try] = ACTIONS(249), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_COLON_COLON] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_data] = ACTIONS(1802), + [anon_sym_inner] = ACTIONS(1802), + [anon_sym_value] = ACTIONS(1802), + [anon_sym_expect] = ACTIONS(1802), + [anon_sym_actual] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(267), + [anon_sym_continue_AT] = ACTIONS(269), + [anon_sym_break_AT] = ACTIONS(271), + [anon_sym_this_AT] = ACTIONS(273), + [anon_sym_super_AT] = ACTIONS(275), + [sym_real_literal] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(279), + [sym_hex_literal] = ACTIONS(281), + [sym_bin_literal] = ACTIONS(281), + [anon_sym_true] = ACTIONS(283), + [anon_sym_false] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_null_literal] = ACTIONS(1806), + [sym__backtick_identifier] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(291), + }, + [2217] = { + [sym_primary_constructor] = STATE(4928), + [sym_class_body] = STATE(5290), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2331), + [sym_type_constraints] = STATE(5018), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2218] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2219] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2220] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2221] = { + [sym_primary_constructor] = STATE(3597), + [sym_class_body] = STATE(4074), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2313), + [sym_type_constraints] = STATE(3790), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2222] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2223] = { + [sym_primary_constructor] = STATE(3598), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2318), + [sym_type_constraints] = STATE(3797), + [sym_enum_class_body] = STATE(4074), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2224] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2225] = { + [sym_property_delegate] = STATE(2365), + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2226] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2227] = { + [sym_primary_constructor] = STATE(4964), + [sym_class_body] = STATE(5467), + [sym__class_parameters] = STATE(5188), + [sym_type_parameters] = STATE(2403), + [sym_type_constraints] = STATE(5333), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_LT] = ACTIONS(5768), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_fun] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_this] = ACTIONS(3214), + [anon_sym_super] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_when] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3218), + [anon_sym_continue_AT] = ACTIONS(3218), + [anon_sym_break_AT] = ACTIONS(3218), + [anon_sym_this_AT] = ACTIONS(3218), + [anon_sym_super_AT] = ACTIONS(3218), + [sym_real_literal] = ACTIONS(3218), + [sym_integer_literal] = ACTIONS(3214), + [sym_hex_literal] = ACTIONS(3218), + [sym_bin_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3218), + [sym_null_literal] = ACTIONS(3214), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3218), + }, + [2228] = { + [sym_property_delegate] = STATE(2373), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5685), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2229] = { + [sym_property_delegate] = STATE(2378), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(5693), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2230] = { + [sym_class_body] = STATE(1127), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [2231] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2232] = { + [sym_property_delegate] = STATE(2386), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(5695), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2233] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2234] = { + [sym_primary_constructor] = STATE(4997), + [sym__class_parameters] = STATE(5188), + [sym_type_parameters] = STATE(2361), + [sym_type_constraints] = STATE(5346), + [sym_enum_class_body] = STATE(5413), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_LT] = ACTIONS(5768), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [2235] = { + [sym_primary_constructor] = STATE(4874), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2291), + [sym_type_constraints] = STATE(4704), + [sym_enum_class_body] = STATE(4827), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2236] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2237] = { + [sym_primary_constructor] = STATE(4878), + [sym_class_body] = STATE(4866), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2293), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2238] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2239] = { + [sym_primary_constructor] = STATE(4880), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2294), + [sym_type_constraints] = STATE(4687), + [sym_enum_class_body] = STATE(4866), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2240] = { + [sym_property_delegate] = STATE(2394), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5699), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2241] = { + [sym_primary_constructor] = STATE(3498), + [sym_class_body] = STATE(3476), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2284), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2242] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2243] = { + [sym_primary_constructor] = STATE(3601), + [sym_class_body] = STATE(4056), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2283), + [sym_type_constraints] = STATE(3803), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2244] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2245] = { + [sym_primary_constructor] = STATE(3592), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2286), + [sym_type_constraints] = STATE(3765), + [sym_enum_class_body] = STATE(4058), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2246] = { + [sym_class_body] = STATE(1159), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [2247] = { + [sym_primary_constructor] = STATE(3500), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2289), + [sym_type_constraints] = STATE(3370), + [sym_enum_class_body] = STATE(3476), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2248] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2249] = { + [sym_primary_constructor] = STATE(4885), + [sym_class_body] = STATE(4895), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2307), + [sym_type_constraints] = STATE(4678), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2250] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(5796), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [2251] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(5798), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [2252] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2253] = { + [sym_primary_constructor] = STATE(5002), + [sym_class_body] = STATE(5413), + [sym__class_parameters] = STATE(5188), + [sym_type_parameters] = STATE(2347), + [sym_type_constraints] = STATE(5331), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_LT] = ACTIONS(5768), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_fun] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_this] = ACTIONS(3194), + [anon_sym_super] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_when] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3198), + [anon_sym_continue_AT] = ACTIONS(3198), + [anon_sym_break_AT] = ACTIONS(3198), + [anon_sym_this_AT] = ACTIONS(3198), + [anon_sym_super_AT] = ACTIONS(3198), + [sym_real_literal] = ACTIONS(3198), + [sym_integer_literal] = ACTIONS(3194), + [sym_hex_literal] = ACTIONS(3198), + [sym_bin_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3194), + [anon_sym_false] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3198), + [sym_null_literal] = ACTIONS(3194), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3198), + }, + [2254] = { + [sym_property_delegate] = STATE(2354), + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2255] = { + [sym_primary_constructor] = STATE(5000), + [sym__class_parameters] = STATE(5188), + [sym_type_parameters] = STATE(2382), + [sym_type_constraints] = STATE(5350), + [sym_enum_class_body] = STATE(5398), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_LT] = ACTIONS(5768), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_this] = ACTIONS(3160), + [anon_sym_super] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_when] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3166), + [anon_sym_continue_AT] = ACTIONS(3166), + [anon_sym_break_AT] = ACTIONS(3166), + [anon_sym_this_AT] = ACTIONS(3166), + [anon_sym_super_AT] = ACTIONS(3166), + [sym_real_literal] = ACTIONS(3166), + [sym_integer_literal] = ACTIONS(3160), + [sym_hex_literal] = ACTIONS(3166), + [sym_bin_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3166), + [sym_null_literal] = ACTIONS(3160), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3166), + }, + [2256] = { + [sym_property_delegate] = STATE(2350), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2257] = { + [sym_primary_constructor] = STATE(3505), + [sym_class_body] = STATE(3486), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2336), + [sym_type_constraints] = STATE(3319), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2258] = { + [sym_primary_constructor] = STATE(4931), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2337), + [sym_type_constraints] = STATE(5062), + [sym_enum_class_body] = STATE(5135), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2259] = { + [sym_primary_constructor] = STATE(4935), + [sym_class_body] = STATE(5265), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2335), + [sym_type_constraints] = STATE(5032), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2260] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5816), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [2261] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5818), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [2262] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2263] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2264] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2265] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5824), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2266] = { + [sym_primary_constructor] = STATE(4856), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2334), + [sym_type_constraints] = STATE(5027), + [sym_enum_class_body] = STATE(5265), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2267] = { + [sym_primary_constructor] = STATE(3477), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2288), + [sym_type_constraints] = STATE(3334), + [sym_enum_class_body] = STATE(3452), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2268] = { + [sym_property_delegate] = STATE(2377), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2269] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [2270] = { + [sym_property_delegate] = STATE(2381), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5717), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2271] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [2272] = { + [sym_property_delegate] = STATE(2348), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5687), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2273] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2274] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1743), + [sym__in_operator] = STATE(1745), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1749), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3914), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3918), + [anon_sym_QMARK_COLON] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3922), + [anon_sym_PIPE_PIPE] = ACTIONS(3924), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3926), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3928), + [anon_sym_EQ_EQ] = ACTIONS(3926), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3928), + [anon_sym_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_BANGin] = ACTIONS(3932), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_SLASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2275] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(5832), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [2276] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(5834), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [2277] = { + [sym_primary_constructor] = STATE(5007), + [sym_class_body] = STATE(5290), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2410), + [sym_type_constraints] = STATE(5018), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5836), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2278] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3071), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2279] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3048), + [anon_sym_fun] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_when] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3050), + [anon_sym_continue_AT] = ACTIONS(3050), + [anon_sym_break_AT] = ACTIONS(3050), + [anon_sym_this_AT] = ACTIONS(3050), + [anon_sym_super_AT] = ACTIONS(3050), + [sym_real_literal] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [sym_hex_literal] = ACTIONS(3050), + [sym_bin_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_null_literal] = ACTIONS(3048), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3050), + }, + [2280] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_super] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_when] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3075), + [anon_sym_continue_AT] = ACTIONS(3075), + [anon_sym_break_AT] = ACTIONS(3075), + [anon_sym_this_AT] = ACTIONS(3075), + [anon_sym_super_AT] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [sym_hex_literal] = ACTIONS(3075), + [sym_bin_literal] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [sym_null_literal] = ACTIONS(3073), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3075), + }, + [2281] = { + [sym_type_constraints] = STATE(2419), + [sym_property_delegate] = STATE(2566), + [sym_getter] = STATE(5436), + [sym_setter] = STATE(5436), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_EQ] = ACTIONS(5864), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_object] = ACTIONS(3310), + [anon_sym_fun] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(5868), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(3310), + [anon_sym_super] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_when] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3312), + [anon_sym_continue_AT] = ACTIONS(3312), + [anon_sym_break_AT] = ACTIONS(3312), + [anon_sym_this_AT] = ACTIONS(3312), + [anon_sym_super_AT] = ACTIONS(3312), + [sym_real_literal] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [sym_hex_literal] = ACTIONS(3312), + [sym_bin_literal] = ACTIONS(3312), + [anon_sym_true] = ACTIONS(3310), + [anon_sym_false] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_null_literal] = ACTIONS(3310), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3312), + }, + [2282] = { + [sym_primary_constructor] = STATE(5005), + [sym_class_body] = STATE(5265), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2380), + [sym_type_constraints] = STATE(5032), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2283] = { + [sym_primary_constructor] = STATE(3599), + [sym_class_body] = STATE(4073), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3798), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2284] = { + [sym_primary_constructor] = STATE(3480), + [sym_class_body] = STATE(3465), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3330), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2285] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [2286] = { + [sym_primary_constructor] = STATE(3616), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2287] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [2288] = { + [sym_primary_constructor] = STATE(3474), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2289] = { + [sym_primary_constructor] = STATE(3484), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2290] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2291] = { + [sym_primary_constructor] = STATE(4872), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4716), + [sym_enum_class_body] = STATE(4788), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2292] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2293] = { + [sym_primary_constructor] = STATE(4875), + [sym_class_body] = STATE(4842), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4702), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2294] = { + [sym_primary_constructor] = STATE(4876), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4696), + [sym_enum_class_body] = STATE(4842), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2295] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_super] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_when] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3071), + [anon_sym_continue_AT] = ACTIONS(3071), + [anon_sym_break_AT] = ACTIONS(3071), + [anon_sym_this_AT] = ACTIONS(3071), + [anon_sym_super_AT] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [sym_hex_literal] = ACTIONS(3071), + [sym_bin_literal] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_null_literal] = ACTIONS(3069), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3071), + }, + [2296] = { + [sym_type_constraints] = STATE(2421), + [sym_property_delegate] = STATE(2612), + [sym_getter] = STATE(5441), + [sym_setter] = STATE(5441), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(5892), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [2297] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3054), + [anon_sym_super] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_when] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_throw] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3056), + [anon_sym_continue_AT] = ACTIONS(3056), + [anon_sym_break_AT] = ACTIONS(3056), + [anon_sym_this_AT] = ACTIONS(3056), + [anon_sym_super_AT] = ACTIONS(3056), + [sym_real_literal] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [sym_hex_literal] = ACTIONS(3056), + [sym_bin_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [sym_null_literal] = ACTIONS(3054), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3056), + }, + [2298] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3050), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2299] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [2300] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_object] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3058), + [anon_sym_super] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_when] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_throw] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3060), + [anon_sym_continue_AT] = ACTIONS(3060), + [anon_sym_break_AT] = ACTIONS(3060), + [anon_sym_this_AT] = ACTIONS(3060), + [anon_sym_super_AT] = ACTIONS(3060), + [sym_real_literal] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [sym_hex_literal] = ACTIONS(3060), + [sym_bin_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [sym_null_literal] = ACTIONS(3058), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3060), + }, + [2301] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_when] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3094), + [anon_sym_continue_AT] = ACTIONS(3094), + [anon_sym_break_AT] = ACTIONS(3094), + [anon_sym_this_AT] = ACTIONS(3094), + [anon_sym_super_AT] = ACTIONS(3094), + [sym_real_literal] = ACTIONS(3094), + [sym_integer_literal] = ACTIONS(3092), + [sym_hex_literal] = ACTIONS(3094), + [sym_bin_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_null_literal] = ACTIONS(3092), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3094), + }, + [2302] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_fun] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3103), + [anon_sym_super] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_when] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3105), + [anon_sym_continue_AT] = ACTIONS(3105), + [anon_sym_break_AT] = ACTIONS(3105), + [anon_sym_this_AT] = ACTIONS(3105), + [anon_sym_super_AT] = ACTIONS(3105), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3105), + [sym_null_literal] = ACTIONS(3103), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3105), + }, + [2303] = { + [sym_primary_constructor] = STATE(4939), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2345), + [sym_type_constraints] = STATE(5027), + [sym_enum_class_body] = STATE(5265), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2304] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3152), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [2305] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_when] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3142), + [anon_sym_continue_AT] = ACTIONS(3142), + [anon_sym_break_AT] = ACTIONS(3142), + [anon_sym_this_AT] = ACTIONS(3142), + [anon_sym_super_AT] = ACTIONS(3142), + [sym_real_literal] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(3140), + [sym_hex_literal] = ACTIONS(3142), + [sym_bin_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3142), + [sym_null_literal] = ACTIONS(3140), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [2306] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [2307] = { + [sym_primary_constructor] = STATE(4881), + [sym_class_body] = STATE(4877), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4685), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2308] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_object] = ACTIONS(3118), + [anon_sym_fun] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_this] = ACTIONS(3118), + [anon_sym_super] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_when] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3120), + [anon_sym_continue_AT] = ACTIONS(3120), + [anon_sym_break_AT] = ACTIONS(3120), + [anon_sym_this_AT] = ACTIONS(3120), + [anon_sym_super_AT] = ACTIONS(3120), + [sym_real_literal] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [sym_hex_literal] = ACTIONS(3120), + [sym_bin_literal] = ACTIONS(3120), + [anon_sym_true] = ACTIONS(3118), + [anon_sym_false] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_null_literal] = ACTIONS(3118), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3120), + }, + [2309] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [2310] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2311] = { + [sym_type_constraints] = STATE(2445), + [sym_property_delegate] = STATE(2596), + [sym_getter] = STATE(5437), + [sym_setter] = STATE(5437), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(5898), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5900), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [2312] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_object] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_super] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_when] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3079), + [anon_sym_continue_AT] = ACTIONS(3079), + [anon_sym_break_AT] = ACTIONS(3079), + [anon_sym_this_AT] = ACTIONS(3079), + [anon_sym_super_AT] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [sym_hex_literal] = ACTIONS(3079), + [sym_bin_literal] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [sym_null_literal] = ACTIONS(3077), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3079), + }, + [2313] = { + [sym_primary_constructor] = STATE(3593), + [sym_class_body] = STATE(4082), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3763), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2314] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5904), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2315] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3075), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2316] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5908), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2317] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2318] = { + [sym_primary_constructor] = STATE(3594), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2319] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2320] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3060), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2321] = { + [sym_primary_constructor] = STATE(3652), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2405), + [sym_type_constraints] = STATE(3765), + [sym_enum_class_body] = STATE(4058), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2322] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3094), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2323] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3105), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2324] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2325] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2326] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2327] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2328] = { + [sym_type_constraints] = STATE(2424), + [sym_property_delegate] = STATE(2607), + [sym_getter] = STATE(5399), + [sym_setter] = STATE(5399), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(5916), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [2329] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3120), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2330] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2331] = { + [sym_primary_constructor] = STATE(4924), + [sym_class_body] = STATE(5270), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5025), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2332] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3079), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2333] = { + [sym_indexing_suffix] = STATE(3260), + [sym_navigation_suffix] = STATE(3244), + [sym_call_suffix] = STATE(3236), + [sym_annotated_lambda] = STATE(3229), + [sym_type_arguments] = STATE(8206), + [sym_value_arguments] = STATE(2766), + [sym_lambda_literal] = STATE(3228), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2188), + [sym__in_operator] = STATE(2183), + [sym__is_operator] = STATE(5952), + [sym__additive_operator] = STATE(2178), + [sym__multiplicative_operator] = STATE(2177), + [sym__as_operator] = STATE(5950), + [sym__postfix_unary_operator] = STATE(3225), + [sym__member_access_operator] = STATE(7665), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2175), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_as] = ACTIONS(4475), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_object] = ACTIONS(3114), + [anon_sym_fun] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3114), + [anon_sym_super] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(5840), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(5842), + [anon_sym_DOT_DOT] = ACTIONS(5844), + [anon_sym_QMARK_COLON] = ACTIONS(5846), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE_PIPE] = ACTIONS(5850), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_when] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(4489), + [anon_sym_BANG_EQ] = ACTIONS(5852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5854), + [anon_sym_EQ_EQ] = ACTIONS(5852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5854), + [anon_sym_LT_EQ] = ACTIONS(5856), + [anon_sym_GT_EQ] = ACTIONS(5856), + [anon_sym_BANGin] = ACTIONS(5858), + [anon_sym_is] = ACTIONS(4493), + [anon_sym_BANGis] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_SLASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5840), + [anon_sym_as_QMARK] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3116), + [anon_sym_continue_AT] = ACTIONS(3116), + [anon_sym_break_AT] = ACTIONS(3116), + [anon_sym_this_AT] = ACTIONS(3116), + [anon_sym_super_AT] = ACTIONS(3116), + [sym_real_literal] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [sym_hex_literal] = ACTIONS(3116), + [sym_bin_literal] = ACTIONS(3116), + [anon_sym_true] = ACTIONS(3114), + [anon_sym_false] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [sym_null_literal] = ACTIONS(3114), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(4489), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3116), + }, + [2334] = { + [sym_primary_constructor] = STATE(4933), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5242), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5920), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2335] = { + [sym_primary_constructor] = STATE(4932), + [sym_class_body] = STATE(5242), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5102), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5922), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2336] = { + [sym_primary_constructor] = STATE(3501), + [sym_class_body] = STATE(3436), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3363), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2337] = { + [sym_primary_constructor] = STATE(4930), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5083), + [sym_enum_class_body] = STATE(5187), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2338] = { + [sym_primary_constructor] = STATE(4981), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2370), + [sym_type_constraints] = STATE(5062), + [sym_enum_class_body] = STATE(5135), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3160), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2339] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1908), + [sym__in_operator] = STATE(1909), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1912), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1913), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_DASH_GT] = ACTIONS(3056), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(4028), + [anon_sym_QMARK_COLON] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4038), + [anon_sym_EQ_EQ] = ACTIONS(4036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4038), + [anon_sym_LT_EQ] = ACTIONS(4040), + [anon_sym_GT_EQ] = ACTIONS(4040), + [anon_sym_BANGin] = ACTIONS(4042), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2340] = { + [sym_primary_constructor] = STATE(3661), + [sym_class_body] = STATE(4056), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2366), + [sym_type_constraints] = STATE(3803), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2341] = { + [sym_primary_constructor] = STATE(3659), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2353), + [sym_type_constraints] = STATE(3797), + [sym_enum_class_body] = STATE(4074), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5932), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2342] = { + [sym_type_constraints] = STATE(2415), + [sym_property_delegate] = STATE(2575), + [sym_getter] = STATE(5403), + [sym_setter] = STATE(5403), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_where] = ACTIONS(5866), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [2343] = { + [sym_primary_constructor] = STATE(3658), + [sym_class_body] = STATE(4074), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2371), + [sym_type_constraints] = STATE(3790), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2344] = { + [sym_type_constraints] = STATE(2452), + [sym_property_delegate] = STATE(2568), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2345] = { + [sym_primary_constructor] = STATE(4998), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5242), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2346] = { + [sym_type_constraints] = STATE(2465), + [sym_property_delegate] = STATE(2604), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5952), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2347] = { + [sym_primary_constructor] = STATE(4955), + [sym_class_body] = STATE(5428), + [sym__class_parameters] = STATE(5188), + [sym_type_constraints] = STATE(5349), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [2348] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2349] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2350] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2351] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2352] = { + [sym_getter] = STATE(3408), + [sym_setter] = STATE(3408), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_RBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_DASH_GT] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2353] = { + [sym_primary_constructor] = STATE(3655), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2354] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2355] = { + [sym_type_constraints] = STATE(2440), + [sym_property_delegate] = STATE(2517), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5970), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2356] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2357] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2358] = { + [sym_getter] = STATE(4845), + [sym_setter] = STATE(4845), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_RBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_DASH_GT] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2359] = { + [sym_type_constraints] = STATE(2435), + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2360] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(5371), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [2361] = { + [sym_primary_constructor] = STATE(4941), + [sym__class_parameters] = STATE(5188), + [sym_type_constraints] = STATE(5339), + [sym_enum_class_body] = STATE(5428), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [2362] = { + [sym_type_constraints] = STATE(2449), + [sym_property_delegate] = STATE(2564), + [sym_getter] = STATE(4886), + [sym_setter] = STATE(4886), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5982), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2363] = { + [sym_type_constraints] = STATE(2468), + [sym_property_delegate] = STATE(2619), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2364] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(5375), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [2365] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2366] = { + [sym_primary_constructor] = STATE(3660), + [sym_class_body] = STATE(4073), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3798), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2367] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2368] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(5988), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [2369] = { + [sym_type_constraints] = STATE(2429), + [sym_property_delegate] = STATE(2555), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(5990), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2370] = { + [sym_primary_constructor] = STATE(4967), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5083), + [sym_enum_class_body] = STATE(5187), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2371] = { + [sym_primary_constructor] = STATE(3654), + [sym_class_body] = STATE(4082), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3763), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2372] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(5996), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(5998), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [2373] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2374] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(6000), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [2375] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2376] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2377] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2378] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2379] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2380] = { + [sym_primary_constructor] = STATE(4982), + [sym_class_body] = STATE(5242), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5102), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6002), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2381] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2382] = { + [sym_primary_constructor] = STATE(4985), + [sym__class_parameters] = STATE(5188), + [sym_type_constraints] = STATE(5328), + [sym_enum_class_body] = STATE(5449), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5776), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [2383] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2384] = { + [sym_type_constraints] = STATE(2428), + [sym_property_delegate] = STATE(2526), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2385] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2386] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2387] = { + [sym_type_constraints] = STATE(2466), + [sym_property_delegate] = STATE(2560), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2388] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2389] = { + [sym_type_constraints] = STATE(2454), + [sym_property_delegate] = STATE(2571), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6010), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2390] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5717), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2391] = { + [sym_type_constraints] = STATE(2426), + [sym_property_delegate] = STATE(2494), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2392] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9311), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(5707), + [anon_sym_set] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2393] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2394] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2395] = { + [sym_type_constraints] = STATE(2442), + [sym_property_delegate] = STATE(2520), + [sym_getter] = STATE(4065), + [sym_setter] = STATE(4065), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6020), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2396] = { + [sym_type_constraints] = STATE(2467), + [sym_property_delegate] = STATE(2616), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2397] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2398] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6028), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [2399] = { + [sym_type_constraints] = STATE(2414), + [sym_property_delegate] = STATE(2529), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2400] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(6032), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [2401] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6034), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [2402] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2403] = { + [sym_primary_constructor] = STATE(4996), + [sym_class_body] = STATE(5417), + [sym__class_parameters] = STATE(5188), + [sym_type_constraints] = STATE(5344), + [sym_modifiers] = STATE(10117), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6036), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_constructor] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5766), + [anon_sym_where] = ACTIONS(5770), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [2404] = { + [sym_type_constraints] = STATE(2457), + [sym_property_delegate] = STATE(2581), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6038), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2405] = { + [sym_primary_constructor] = STATE(3649), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6040), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2406] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5699), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2407] = { + [sym_type_constraints] = STATE(2417), + [sym_property_delegate] = STATE(2536), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6042), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2408] = { + [sym_type_constraints] = STATE(2456), + [sym_property_delegate] = STATE(2573), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3894), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2409] = { + [sym_type_constraints] = STATE(2420), + [sym_property_delegate] = STATE(2549), + [sym_getter] = STATE(5277), + [sym_setter] = STATE(5277), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6048), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2410] = { + [sym_primary_constructor] = STATE(5008), + [sym_class_body] = STATE(5270), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5025), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6050), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2411] = { + [sym_type_constraints] = STATE(2416), + [sym_property_delegate] = STATE(2539), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6054), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2412] = { + [sym_type_constraints] = STATE(2464), + [sym_property_delegate] = STATE(2601), + [sym_getter] = STATE(3479), + [sym_setter] = STATE(3479), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2413] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9299), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(5689), + [anon_sym_set] = ACTIONS(5691), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2414] = { + [sym_property_delegate] = STATE(2501), + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2415] = { + [sym_property_delegate] = STATE(2607), + [sym_getter] = STATE(5399), + [sym_setter] = STATE(5399), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(5916), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [2416] = { + [sym_property_delegate] = STATE(2536), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6042), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2417] = { + [sym_property_delegate] = STATE(2494), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2418] = { + [sym_type_constraints] = STATE(2547), + [sym_property_delegate] = STATE(2670), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2419] = { + [sym_property_delegate] = STATE(2596), + [sym_getter] = STATE(5437), + [sym_setter] = STATE(5437), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(5898), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5900), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [2420] = { + [sym_property_delegate] = STATE(2539), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6054), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2421] = { + [sym_property_delegate] = STATE(2593), + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [2422] = { + [sym_primary_constructor] = STATE(3943), + [sym_class_body] = STATE(3476), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2450), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6072), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2423] = { + [sym_primary_constructor] = STATE(5118), + [sym_class_body] = STATE(4866), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2448), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6074), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2424] = { + [sym_property_delegate] = STATE(2612), + [sym_getter] = STATE(5441), + [sym_setter] = STATE(5441), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(5892), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [2425] = { + [sym_type_constraints] = STATE(2538), + [sym_property_delegate] = STATE(2699), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3962), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2426] = { + [sym_property_delegate] = STATE(2529), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2427] = { + [sym_type_constraints] = STATE(2545), + [sym_property_delegate] = STATE(2675), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6082), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2428] = { + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2429] = { + [sym_property_delegate] = STATE(2526), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2430] = { + [sym_primary_constructor] = STATE(3950), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2463), + [sym_type_constraints] = STATE(3334), + [sym_enum_class_body] = STATE(3452), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6086), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2431] = { + [sym_type_constraints] = STATE(2559), + [sym_property_delegate] = STATE(2677), + [sym_getter] = STATE(4065), + [sym_setter] = STATE(4065), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6088), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6090), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2432] = { + [sym_type_constraints] = STATE(2512), + [sym_property_delegate] = STATE(2687), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2433] = { + [sym_type_constraints] = STATE(2531), + [sym_property_delegate] = STATE(2674), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6096), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2434] = { + [sym_primary_constructor] = STATE(3917), + [sym_class_body] = STATE(3486), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2461), + [sym_type_constraints] = STATE(3319), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_RBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2435] = { + [sym_property_delegate] = STATE(2555), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(5990), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2436] = { + [sym_primary_constructor] = STATE(5130), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2459), + [sym_type_constraints] = STATE(4704), + [sym_enum_class_body] = STATE(4827), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6100), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2437] = { + [sym_type_constraints] = STATE(2541), + [sym_property_delegate] = STATE(2664), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6102), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2438] = { + [sym_type_constraints] = STATE(2500), + [sym_property_delegate] = STATE(2691), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2439] = { + [sym_type_constraints] = STATE(2543), + [sym_property_delegate] = STATE(2660), + [sym_getter] = STATE(5277), + [sym_setter] = STATE(5277), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6106), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6108), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3310), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PLUS_EQ] = ACTIONS(3312), + [anon_sym_DASH_EQ] = ACTIONS(3312), + [anon_sym_STAR_EQ] = ACTIONS(3312), + [anon_sym_SLASH_EQ] = ACTIONS(3312), + [anon_sym_PERCENT_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2440] = { + [sym_property_delegate] = STATE(2513), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2441] = { + [sym_primary_constructor] = STATE(5205), + [sym_class_body] = STATE(4895), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2458), + [sym_type_constraints] = STATE(4678), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6110), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_RBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2442] = { + [sym_property_delegate] = STATE(2517), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5968), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5970), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2443] = { + [sym_primary_constructor] = STATE(5191), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2477), + [sym_type_constraints] = STATE(4687), + [sym_enum_class_body] = STATE(4866), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6112), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2444] = { + [sym_type_constraints] = STATE(2550), + [sym_property_delegate] = STATE(2673), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6116), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2445] = { + [sym_property_delegate] = STATE(2575), + [sym_getter] = STATE(5403), + [sym_setter] = STATE(5403), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(5934), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [2446] = { + [sym_primary_constructor] = STATE(3939), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2453), + [sym_type_constraints] = STATE(3370), + [sym_enum_class_body] = STATE(3476), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_RBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_DASH_GT] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2447] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2448] = { + [sym_primary_constructor] = STATE(5129), + [sym_class_body] = STATE(4842), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4702), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6120), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2449] = { + [sym_property_delegate] = STATE(2568), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5938), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2450] = { + [sym_primary_constructor] = STATE(3948), + [sym_class_body] = STATE(3465), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3330), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6122), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2451] = { + [sym_type_constraints] = STATE(2528), + [sym_property_delegate] = STATE(2736), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2452] = { + [sym_property_delegate] = STATE(2571), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6010), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2453] = { + [sym_primary_constructor] = STATE(3946), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6132), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2454] = { + [sym_property_delegate] = STATE(2573), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3894), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2455] = { + [sym_type_constraints] = STATE(2527), + [sym_property_delegate] = STATE(2753), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2456] = { + [sym_property_delegate] = STATE(2581), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6038), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2457] = { + [sym_property_delegate] = STATE(2586), + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3898), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2458] = { + [sym_primary_constructor] = STATE(5199), + [sym_class_body] = STATE(4877), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4685), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2459] = { + [sym_primary_constructor] = STATE(5169), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4716), + [sym_enum_class_body] = STATE(4788), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2460] = { + [sym_type_constraints] = STATE(2558), + [sym_property_delegate] = STATE(2711), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6144), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2461] = { + [sym_primary_constructor] = STATE(3873), + [sym_class_body] = STATE(3436), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3363), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6146), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2462] = { + [sym_type_constraints] = STATE(2552), + [sym_property_delegate] = STATE(2713), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6148), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2463] = { + [sym_primary_constructor] = STATE(3954), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2464] = { + [sym_property_delegate] = STATE(2604), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5952), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2465] = { + [sym_property_delegate] = STATE(2560), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2466] = { + [sym_property_delegate] = STATE(2616), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2467] = { + [sym_property_delegate] = STATE(2619), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2468] = { + [sym_property_delegate] = STATE(2622), + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6156), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2469] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2470] = { + [sym_type_constraints] = STATE(2504), + [sym_property_delegate] = STATE(2756), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6158), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2471] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2472] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2473] = { + [sym_type_constraints] = STATE(2523), + [sym_property_delegate] = STATE(2747), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6160), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6162), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2474] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2475] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2476] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2477] = { + [sym_primary_constructor] = STATE(5175), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4696), + [sym_enum_class_body] = STATE(4842), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6164), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2478] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2479] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2480] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2481] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3088), + [anon_sym_sealed] = ACTIONS(3088), + [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3088), + [anon_sym_lateinit] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_internal] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_tailrec] = ACTIONS(3088), + [anon_sym_operator] = ACTIONS(3088), + [anon_sym_infix] = ACTIONS(3088), + [anon_sym_inline] = ACTIONS(3088), + [anon_sym_external] = ACTIONS(3088), + [sym_property_modifier] = ACTIONS(3088), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_final] = ACTIONS(3088), + [anon_sym_open] = ACTIONS(3088), + [anon_sym_vararg] = ACTIONS(3088), + [anon_sym_noinline] = ACTIONS(3088), + [anon_sym_crossinline] = ACTIONS(3088), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2482] = { + [sym_type_constraints] = STATE(2553), + [sym_property_delegate] = STATE(2710), + [sym_getter] = STATE(3479), + [sym_setter] = STATE(3479), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6166), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6168), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_DASH_GT] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2483] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2484] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2485] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2486] = { + [sym_type_constraints] = STATE(2535), + [sym_property_delegate] = STATE(2728), + [sym_getter] = STATE(4886), + [sym_setter] = STATE(4886), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6170), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6172), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_DASH_GT] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2487] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2488] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2489] = { + [sym_type_constraints] = STATE(2548), + [sym_property_delegate] = STATE(2709), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2490] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2491] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2492] = { + [sym_type_constraints] = STATE(2519), + [sym_property_delegate] = STATE(2743), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2493] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1757), + [sym__in_operator] = STATE(1755), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1753), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1752), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4315), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_BANGin] = ACTIONS(4341), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4345), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2494] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2495] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2496] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2497] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2498] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2499] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2500] = { + [sym_property_delegate] = STATE(2699), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6076), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3962), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2501] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2502] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2503] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2504] = { + [sym_property_delegate] = STATE(2751), + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6178), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2505] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2506] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2507] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2508] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2509] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2510] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2511] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2512] = { + [sym_property_delegate] = STATE(2691), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2513] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2514] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2515] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2516] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2517] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2518] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2519] = { + [sym_property_delegate] = STATE(2715), + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6180), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2520] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5970), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2521] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2522] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2523] = { + [sym_property_delegate] = STATE(2709), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6174), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2524] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2525] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2526] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2527] = { + [sym_property_delegate] = STATE(2743), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2528] = { + [sym_property_delegate] = STATE(2753), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2529] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2530] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2531] = { + [sym_property_delegate] = STATE(2687), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2532] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2533] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2534] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2535] = { + [sym_property_delegate] = STATE(2747), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6160), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6162), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2536] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2537] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2538] = { + [sym_property_delegate] = STATE(2695), + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6182), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2539] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2540] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3820), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2541] = { + [sym_property_delegate] = STATE(2659), + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2542] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2543] = { + [sym_property_delegate] = STATE(2674), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6096), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2544] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2545] = { + [sym_property_delegate] = STATE(2664), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6102), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2546] = { + [sym_getter] = STATE(3887), + [sym_setter] = STATE(3887), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2547] = { + [sym_property_delegate] = STATE(2675), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6082), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2548] = { + [sym_property_delegate] = STATE(2713), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6148), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2549] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6054), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2550] = { + [sym_property_delegate] = STATE(2670), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2551] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2552] = { + [sym_property_delegate] = STATE(2756), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6158), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2553] = { + [sym_property_delegate] = STATE(2711), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6144), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2554] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9254), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6014), + [anon_sym_set] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2555] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9308), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3818), + [anon_sym_get] = ACTIONS(5972), + [anon_sym_set] = ACTIONS(5974), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2556] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2557] = { + [sym_indexing_suffix] = STATE(3502), + [sym_navigation_suffix] = STATE(3503), + [sym_call_suffix] = STATE(3504), + [sym_annotated_lambda] = STATE(3506), + [sym_type_arguments] = STATE(8315), + [sym_value_arguments] = STATE(2804), + [sym_lambda_literal] = STATE(3507), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1859), + [sym__in_operator] = STATE(1860), + [sym__is_operator] = STATE(5986), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1862), + [sym__as_operator] = STATE(5994), + [sym__postfix_unary_operator] = STATE(3508), + [sym__member_access_operator] = STATE(7792), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1864), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_as] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4598), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(4600), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(4602), + [anon_sym_QMARK_COLON] = ACTIONS(4604), + [anon_sym_AMP_AMP] = ACTIONS(4606), + [anon_sym_PIPE_PIPE] = ACTIONS(4608), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_BANG_EQ] = ACTIONS(4610), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4612), + [anon_sym_EQ_EQ] = ACTIONS(4610), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4612), + [anon_sym_LT_EQ] = ACTIONS(4614), + [anon_sym_GT_EQ] = ACTIONS(4614), + [anon_sym_BANGin] = ACTIONS(4616), + [anon_sym_is] = ACTIONS(3572), + [anon_sym_BANGis] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4598), + [anon_sym_as_QMARK] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [anon_sym_BANG_BANG] = ACTIONS(3580), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(3562), + [sym_multiline_comment] = ACTIONS(3), + }, + [2558] = { + [sym_property_delegate] = STATE(2736), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6126), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2559] = { + [sym_property_delegate] = STATE(2673), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6064), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6116), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2560] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2561] = { + [sym_getter] = STATE(3408), + [sym_setter] = STATE(3408), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2562] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3073), + [anon_sym_sealed] = ACTIONS(3073), + [anon_sym_annotation] = ACTIONS(3073), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_lateinit] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_internal] = ACTIONS(3073), + [anon_sym_protected] = ACTIONS(3073), + [anon_sym_tailrec] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3073), + [anon_sym_infix] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_external] = ACTIONS(3073), + [sym_property_modifier] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_vararg] = ACTIONS(3073), + [anon_sym_noinline] = ACTIONS(3073), + [anon_sym_crossinline] = ACTIONS(3073), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2563] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2564] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2565] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2566] = { + [sym_getter] = STATE(5437), + [sym_setter] = STATE(5437), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5900), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [2567] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2568] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2569] = { + [sym_primary_constructor] = STATE(5484), + [sym_class_body] = STATE(4895), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2641), + [sym_type_constraints] = STATE(4678), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6186), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2570] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2571] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(3894), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2572] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2573] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2574] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3048), + [anon_sym_sealed] = ACTIONS(3048), + [anon_sym_annotation] = ACTIONS(3048), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3048), + [anon_sym_lateinit] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_internal] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_tailrec] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_infix] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_external] = ACTIONS(3048), + [sym_property_modifier] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3048), + [anon_sym_vararg] = ACTIONS(3048), + [anon_sym_noinline] = ACTIONS(3048), + [anon_sym_crossinline] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2575] = { + [sym_getter] = STATE(5399), + [sym_setter] = STATE(5399), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [2576] = { + [sym_primary_constructor] = STATE(4227), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2656), + [sym_type_constraints] = STATE(3765), + [sym_enum_class_body] = STATE(4058), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2577] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3114), + [anon_sym_sealed] = ACTIONS(3114), + [anon_sym_annotation] = ACTIONS(3114), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3114), + [anon_sym_lateinit] = ACTIONS(3114), + [anon_sym_public] = ACTIONS(3114), + [anon_sym_private] = ACTIONS(3114), + [anon_sym_internal] = ACTIONS(3114), + [anon_sym_protected] = ACTIONS(3114), + [anon_sym_tailrec] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_infix] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym_external] = ACTIONS(3114), + [sym_property_modifier] = ACTIONS(3114), + [anon_sym_abstract] = ACTIONS(3114), + [anon_sym_final] = ACTIONS(3114), + [anon_sym_open] = ACTIONS(3114), + [anon_sym_vararg] = ACTIONS(3114), + [anon_sym_noinline] = ACTIONS(3114), + [anon_sym_crossinline] = ACTIONS(3114), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2578] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2579] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2580] = { + [sym_primary_constructor] = STATE(5480), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2680), + [sym_type_constraints] = STATE(4687), + [sym_enum_class_body] = STATE(4866), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6190), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2581] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3898), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2582] = { + [sym_primary_constructor] = STATE(5486), + [sym_class_body] = STATE(4866), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2686), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6192), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2583] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2584] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2585] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3058), + [anon_sym_sealed] = ACTIONS(3058), + [anon_sym_annotation] = ACTIONS(3058), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3058), + [anon_sym_lateinit] = ACTIONS(3058), + [anon_sym_public] = ACTIONS(3058), + [anon_sym_private] = ACTIONS(3058), + [anon_sym_internal] = ACTIONS(3058), + [anon_sym_protected] = ACTIONS(3058), + [anon_sym_tailrec] = ACTIONS(3058), + [anon_sym_operator] = ACTIONS(3058), + [anon_sym_infix] = ACTIONS(3058), + [anon_sym_inline] = ACTIONS(3058), + [anon_sym_external] = ACTIONS(3058), + [sym_property_modifier] = ACTIONS(3058), + [anon_sym_abstract] = ACTIONS(3058), + [anon_sym_final] = ACTIONS(3058), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_vararg] = ACTIONS(3058), + [anon_sym_noinline] = ACTIONS(3058), + [anon_sym_crossinline] = ACTIONS(3058), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2586] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3900), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2587] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3092), + [anon_sym_sealed] = ACTIONS(3092), + [anon_sym_annotation] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_lateinit] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_internal] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_tailrec] = ACTIONS(3092), + [anon_sym_operator] = ACTIONS(3092), + [anon_sym_infix] = ACTIONS(3092), + [anon_sym_inline] = ACTIONS(3092), + [anon_sym_external] = ACTIONS(3092), + [sym_property_modifier] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_vararg] = ACTIONS(3092), + [anon_sym_noinline] = ACTIONS(3092), + [anon_sym_crossinline] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2588] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2589] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3069), + [anon_sym_sealed] = ACTIONS(3069), + [anon_sym_annotation] = ACTIONS(3069), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_lateinit] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_internal] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_tailrec] = ACTIONS(3069), + [anon_sym_operator] = ACTIONS(3069), + [anon_sym_infix] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_external] = ACTIONS(3069), + [sym_property_modifier] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_vararg] = ACTIONS(3069), + [anon_sym_noinline] = ACTIONS(3069), + [anon_sym_crossinline] = ACTIONS(3069), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2590] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3156), + [anon_sym_sealed] = ACTIONS(3156), + [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_lateinit] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_internal] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_tailrec] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_infix] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_external] = ACTIONS(3156), + [sym_property_modifier] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_final] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3156), + [anon_sym_vararg] = ACTIONS(3156), + [anon_sym_noinline] = ACTIONS(3156), + [anon_sym_crossinline] = ACTIONS(3156), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2591] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3103), + [anon_sym_sealed] = ACTIONS(3103), + [anon_sym_annotation] = ACTIONS(3103), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_lateinit] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_internal] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_tailrec] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_infix] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_external] = ACTIONS(3103), + [sym_property_modifier] = ACTIONS(3103), + [anon_sym_abstract] = ACTIONS(3103), + [anon_sym_final] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3103), + [anon_sym_vararg] = ACTIONS(3103), + [anon_sym_noinline] = ACTIONS(3103), + [anon_sym_crossinline] = ACTIONS(3103), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2592] = { + [sym_getter] = STATE(4845), + [sym_setter] = STATE(4845), + [sym_modifiers] = STATE(9504), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(5944), + [anon_sym_set] = ACTIONS(5946), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2593] = { + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [2594] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2595] = { + [sym_primary_constructor] = STATE(4235), + [sym_class_body] = STATE(4074), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2646), + [sym_type_constraints] = STATE(3790), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2596] = { + [sym_getter] = STATE(5403), + [sym_setter] = STATE(5403), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [2597] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2598] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_lateinit] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_internal] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_tailrec] = ACTIONS(3140), + [anon_sym_operator] = ACTIONS(3140), + [anon_sym_infix] = ACTIONS(3140), + [anon_sym_inline] = ACTIONS(3140), + [anon_sym_external] = ACTIONS(3140), + [sym_property_modifier] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_final] = ACTIONS(3140), + [anon_sym_open] = ACTIONS(3140), + [anon_sym_vararg] = ACTIONS(3140), + [anon_sym_noinline] = ACTIONS(3140), + [anon_sym_crossinline] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2599] = { + [sym_primary_constructor] = STATE(5495), + [sym__class_parameters] = STATE(4677), + [sym_type_parameters] = STATE(2697), + [sym_type_constraints] = STATE(4704), + [sym_enum_class_body] = STATE(4827), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2600] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2601] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(5952), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2602] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2603] = { + [sym_primary_constructor] = STATE(4234), + [sym_class_body] = STATE(4056), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2690), + [sym_type_constraints] = STATE(3803), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2604] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2605] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3118), + [anon_sym_sealed] = ACTIONS(3118), + [anon_sym_annotation] = ACTIONS(3118), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_lateinit] = ACTIONS(3118), + [anon_sym_public] = ACTIONS(3118), + [anon_sym_private] = ACTIONS(3118), + [anon_sym_internal] = ACTIONS(3118), + [anon_sym_protected] = ACTIONS(3118), + [anon_sym_tailrec] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_infix] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym_external] = ACTIONS(3118), + [sym_property_modifier] = ACTIONS(3118), + [anon_sym_abstract] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_open] = ACTIONS(3118), + [anon_sym_vararg] = ACTIONS(3118), + [anon_sym_noinline] = ACTIONS(3118), + [anon_sym_crossinline] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2606] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2607] = { + [sym_getter] = STATE(5441), + [sym_setter] = STATE(5441), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [2608] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3077), + [anon_sym_sealed] = ACTIONS(3077), + [anon_sym_annotation] = ACTIONS(3077), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_lateinit] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_internal] = ACTIONS(3077), + [anon_sym_protected] = ACTIONS(3077), + [anon_sym_tailrec] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3077), + [anon_sym_infix] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_external] = ACTIONS(3077), + [sym_property_modifier] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_vararg] = ACTIONS(3077), + [anon_sym_noinline] = ACTIONS(3077), + [anon_sym_crossinline] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2609] = { + [sym_primary_constructor] = STATE(4237), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2636), + [sym_type_constraints] = STATE(3797), + [sym_enum_class_body] = STATE(4074), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2610] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2611] = { + [sym_primary_constructor] = STATE(4204), + [sym_class_body] = STATE(3476), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2707), + [sym_type_constraints] = STATE(3329), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6202), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2612] = { + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [2613] = { + [sym_primary_constructor] = STATE(4232), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2705), + [sym_type_constraints] = STATE(3370), + [sym_enum_class_body] = STATE(3476), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2614] = { + [sym_primary_constructor] = STATE(4198), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2701), + [sym_type_constraints] = STATE(3334), + [sym_enum_class_body] = STATE(3452), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2615] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2616] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2617] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2618] = { + [sym_primary_constructor] = STATE(5517), + [sym_class_body] = STATE(5290), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2663), + [sym_type_constraints] = STATE(5018), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2619] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2620] = { + [sym_primary_constructor] = STATE(5535), + [sym_class_body] = STATE(5265), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2652), + [sym_type_constraints] = STATE(5032), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2621] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2622] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2623] = { + [sym_primary_constructor] = STATE(4208), + [sym_class_body] = STATE(3486), + [sym__class_parameters] = STATE(3333), + [sym_type_parameters] = STATE(2700), + [sym_type_constraints] = STATE(3319), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(5474), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2624] = { + [sym_indexing_suffix] = STATE(3987), + [sym_navigation_suffix] = STATE(3986), + [sym_call_suffix] = STATE(3985), + [sym_annotated_lambda] = STATE(3984), + [sym_type_arguments] = STATE(8152), + [sym_value_arguments] = STATE(3030), + [sym_lambda_literal] = STATE(3983), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(1458), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6421), + [sym__additive_operator] = STATE(1460), + [sym__multiplicative_operator] = STATE(1461), + [sym__as_operator] = STATE(6414), + [sym__postfix_unary_operator] = STATE(3982), + [sym__member_access_operator] = STATE(7887), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1463), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_as] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(4860), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(3666), + [anon_sym_BANGis] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_BANG_BANG] = ACTIONS(3674), + [anon_sym_suspend] = ACTIONS(3054), + [anon_sym_sealed] = ACTIONS(3054), + [anon_sym_annotation] = ACTIONS(3054), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3054), + [anon_sym_lateinit] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_internal] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_tailrec] = ACTIONS(3054), + [anon_sym_operator] = ACTIONS(3054), + [anon_sym_infix] = ACTIONS(3054), + [anon_sym_inline] = ACTIONS(3054), + [anon_sym_external] = ACTIONS(3054), + [sym_property_modifier] = ACTIONS(3054), + [anon_sym_abstract] = ACTIONS(3054), + [anon_sym_final] = ACTIONS(3054), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_vararg] = ACTIONS(3054), + [anon_sym_noinline] = ACTIONS(3054), + [anon_sym_crossinline] = ACTIONS(3054), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(3656), + [sym_multiline_comment] = ACTIONS(3), + }, + [2625] = { + [sym_primary_constructor] = STATE(5475), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2657), + [sym_type_constraints] = STATE(5027), + [sym_enum_class_body] = STATE(5265), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2626] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(5954), + [anon_sym_set] = ACTIONS(5956), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2627] = { + [sym_primary_constructor] = STATE(5500), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2650), + [sym_type_constraints] = STATE(5062), + [sym_enum_class_body] = STATE(5135), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2628] = { + [sym_primary_constructor] = STATE(4262), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2724), + [sym_type_constraints] = STATE(3765), + [sym_enum_class_body] = STATE(4058), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2629] = { + [sym_primary_constructor] = STATE(4246), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2735), + [sym_type_constraints] = STATE(3797), + [sym_enum_class_body] = STATE(4074), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2630] = { + [sym_type_constraints] = STATE(2761), + [sym_property_delegate] = STATE(2826), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6222), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2631] = { + [sym_getter] = STATE(5403), + [sym_setter] = STATE(5403), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [2632] = { + [sym_type_constraints] = STATE(2778), + [sym_property_delegate] = STATE(2850), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2633] = { + [sym_type_constraints] = STATE(2764), + [sym_property_delegate] = STATE(2895), + [sym_getter] = STATE(4886), + [sym_setter] = STATE(4886), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6240), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2634] = { + [sym_type_constraints] = STATE(2777), + [sym_property_delegate] = STATE(2859), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6250), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2635] = { + [sym_type_constraints] = STATE(2714), + [sym_property_delegate] = STATE(2818), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2636] = { + [sym_primary_constructor] = STATE(4230), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2637] = { + [sym_getter] = STATE(5437), + [sym_setter] = STATE(5437), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [2638] = { + [sym_type_constraints] = STATE(2717), + [sym_property_delegate] = STATE(2832), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2639] = { + [sym_primary_constructor] = STATE(4244), + [sym_class_body] = STATE(4056), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2739), + [sym_type_constraints] = STATE(3803), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2640] = { + [sym_primary_constructor] = STATE(5576), + [sym_class_body] = STATE(5265), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2759), + [sym_type_constraints] = STATE(5032), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2641] = { + [sym_primary_constructor] = STATE(5526), + [sym_class_body] = STATE(4877), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4685), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6266), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2642] = { + [sym_type_constraints] = STATE(2723), + [sym_property_delegate] = STATE(2820), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6268), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4359), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2643] = { + [sym_type_constraints] = STATE(2740), + [sym_property_delegate] = STATE(2836), + [sym_getter] = STATE(4065), + [sym_setter] = STATE(4065), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2644] = { + [sym_getter] = STATE(5411), + [sym_setter] = STATE(5411), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [2645] = { + [sym_type_constraints] = STATE(2776), + [sym_property_delegate] = STATE(2848), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2646] = { + [sym_primary_constructor] = STATE(4228), + [sym_class_body] = STATE(4082), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3763), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6276), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2647] = { + [sym_getter] = STATE(5399), + [sym_setter] = STATE(5399), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [2648] = { + [sym_type_constraints] = STATE(2769), + [sym_property_delegate] = STATE(2843), + [sym_getter] = STATE(3479), + [sym_setter] = STATE(3479), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6278), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6280), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2649] = { + [sym_getter] = STATE(3887), + [sym_setter] = STATE(3887), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2650] = { + [sym_primary_constructor] = STATE(5498), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5083), + [sym_enum_class_body] = STATE(5187), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6282), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2651] = { + [sym_type_constraints] = STATE(2716), + [sym_property_delegate] = STATE(2807), + [sym_getter] = STATE(5277), + [sym_setter] = STATE(5277), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6284), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6286), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2652] = { + [sym_primary_constructor] = STATE(5538), + [sym_class_body] = STATE(5242), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5102), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6288), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2653] = { + [sym_type_constraints] = STATE(2730), + [sym_property_delegate] = STATE(2833), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2654] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2655] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2656] = { + [sym_primary_constructor] = STATE(4224), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2657] = { + [sym_primary_constructor] = STATE(5525), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5242), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2658] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2659] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2660] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6096), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2661] = { + [sym_primary_constructor] = STATE(5593), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2731), + [sym_type_constraints] = STATE(5062), + [sym_enum_class_body] = STATE(5135), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6296), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3160), + [anon_sym_as] = ACTIONS(3160), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3166), + [sym_label] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3160), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_QMARK_COLON] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3160), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_as_QMARK] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_BANG_BANG] = ACTIONS(3166), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3166), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_safe_nav] = ACTIONS(3166), + [sym_multiline_comment] = ACTIONS(3), + }, + [2662] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2663] = { + [sym_primary_constructor] = STATE(5536), + [sym_class_body] = STATE(5270), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5025), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6298), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2664] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2665] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2666] = { + [sym_getter] = STATE(5407), + [sym_setter] = STATE(5407), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [2667] = { + [sym_type_constraints] = STATE(2742), + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6300), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2668] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2669] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2670] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2671] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2672] = { + [sym_primary_constructor] = STATE(4254), + [sym_class_body] = STATE(4074), + [sym__class_parameters] = STATE(3806), + [sym_type_parameters] = STATE(2732), + [sym_type_constraints] = STATE(3790), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6302), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2673] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2674] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2675] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2676] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2677] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6116), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2678] = { + [sym_type_constraints] = STATE(2773), + [sym_property_delegate] = STATE(2871), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6304), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2679] = { + [sym_type_constraints] = STATE(2775), + [sym_property_delegate] = STATE(2898), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6306), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(6308), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2680] = { + [sym_primary_constructor] = STATE(5488), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4696), + [sym_enum_class_body] = STATE(4842), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6310), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2681] = { + [sym_primary_constructor] = STATE(5600), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2752), + [sym_type_constraints] = STATE(5027), + [sym_enum_class_body] = STATE(5265), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3198), + [sym_label] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_QMARK_COLON] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_as_QMARK] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_BANG_BANG] = ACTIONS(3198), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3198), + [sym__automatic_semicolon] = ACTIONS(3198), + [sym_safe_nav] = ACTIONS(3198), + [sym_multiline_comment] = ACTIONS(3), + }, + [2682] = { + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [2683] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9200), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6066), + [anon_sym_set] = ACTIONS(6068), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2684] = { + [sym_type_constraints] = STATE(2760), + [sym_property_delegate] = STATE(2838), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6316), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2685] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2686] = { + [sym_primary_constructor] = STATE(5492), + [sym_class_body] = STATE(4842), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4702), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6318), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5510), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2687] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2688] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2689] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2690] = { + [sym_primary_constructor] = STATE(4236), + [sym_class_body] = STATE(4073), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3798), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2691] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(3962), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2692] = { + [sym_primary_constructor] = STATE(5575), + [sym_class_body] = STATE(5290), + [sym__class_parameters] = STATE(5017), + [sym_type_parameters] = STATE(2762), + [sym_type_constraints] = STATE(5018), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_QMARK_COLON] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3218), + [sym__automatic_semicolon] = ACTIONS(3218), + [sym_safe_nav] = ACTIONS(3218), + [sym_multiline_comment] = ACTIONS(3), + }, + [2693] = { + [sym_type_constraints] = STATE(2771), + [sym_property_delegate] = STATE(2869), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2694] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2695] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2696] = { + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [2697] = { + [sym_primary_constructor] = STATE(5474), + [sym__class_parameters] = STATE(4677), + [sym_type_constraints] = STATE(4716), + [sym_enum_class_body] = STATE(4788), + [sym_modifiers] = STATE(10098), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5496), + [anon_sym_LBRACE] = ACTIONS(5498), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2698] = { + [sym_type_constraints] = STATE(2767), + [sym_property_delegate] = STATE(2875), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4622), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2699] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2700] = { + [sym_primary_constructor] = STATE(4231), + [sym_class_body] = STATE(3436), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3363), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2701] = { + [sym_primary_constructor] = STATE(4195), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2702] = { + [sym_type_constraints] = STATE(2738), + [sym_property_delegate] = STATE(2821), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2703] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9486), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2704] = { + [sym_getter] = STATE(5441), + [sym_setter] = STATE(5441), + [sym_modifiers] = STATE(9398), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(5870), + [anon_sym_set] = ACTIONS(5872), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [2705] = { + [sym_primary_constructor] = STATE(4202), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2706] = { + [sym_type_constraints] = STATE(2781), + [sym_property_delegate] = STATE(2882), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4624), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2707] = { + [sym_primary_constructor] = STATE(4200), + [sym_class_body] = STATE(3465), + [sym__class_parameters] = STATE(3333), + [sym_type_constraints] = STATE(3330), + [sym_modifiers] = STATE(10058), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5468), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2708] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2709] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2710] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6144), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2711] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2712] = { + [sym_getter] = STATE(4845), + [sym_setter] = STATE(4845), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_RBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_DASH_GT] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2713] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2714] = { + [sym_property_delegate] = STATE(2815), + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2715] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2716] = { + [sym_property_delegate] = STATE(2826), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6222), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2717] = { + [sym_property_delegate] = STATE(2821), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2718] = { + [sym_type_constraints] = STATE(2793), + [sym_property_delegate] = STATE(2921), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6344), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2719] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2720] = { + [sym_type_constraints] = STATE(2784), + [sym_property_delegate] = STATE(2944), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6352), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2721] = { + [sym_type_constraints] = STATE(2791), + [sym_property_delegate] = STATE(2995), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2722] = { + [sym_getter] = STATE(3408), + [sym_setter] = STATE(3408), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_RBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_DASH_GT] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2723] = { + [sym_property_delegate] = STATE(2818), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2724] = { + [sym_primary_constructor] = STATE(4240), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6360), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2725] = { + [sym_type_constraints] = STATE(2792), + [sym_property_delegate] = STATE(2914), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6362), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5191), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2726] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2727] = { + [sym_type_constraints] = STATE(2786), + [sym_property_delegate] = STATE(2916), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6364), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6366), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2728] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6162), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2729] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2730] = { + [sym_property_delegate] = STATE(2832), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2731] = { + [sym_primary_constructor] = STATE(5552), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5083), + [sym_enum_class_body] = STATE(5187), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6368), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2732] = { + [sym_primary_constructor] = STATE(4258), + [sym_class_body] = STATE(4082), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3763), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2733] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2734] = { + [sym_type_constraints] = STATE(2788), + [sym_property_delegate] = STATE(2913), + [sym_getter] = STATE(5277), + [sym_setter] = STATE(5277), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6372), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6374), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2735] = { + [sym_primary_constructor] = STATE(4257), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6376), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2736] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2737] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2738] = { + [sym_property_delegate] = STATE(2817), + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2739] = { + [sym_primary_constructor] = STATE(4245), + [sym_class_body] = STATE(4073), + [sym__class_parameters] = STATE(3806), + [sym_type_constraints] = STATE(3798), + [sym_modifiers] = STATE(10074), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6380), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2740] = { + [sym_property_delegate] = STATE(2838), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6316), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2741] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2742] = { + [sym_property_delegate] = STATE(2820), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6268), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4359), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2743] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2744] = { + [sym_type_constraints] = STATE(2785), + [sym_property_delegate] = STATE(2928), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6382), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5081), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2745] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2746] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2747] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2748] = { + [sym_type_constraints] = STATE(2790), + [sym_property_delegate] = STATE(2964), + [sym_getter] = STATE(4065), + [sym_setter] = STATE(4065), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(6384), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6386), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(3312), + [sym_label] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_QMARK_COLON] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3312), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_as_QMARK] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_BANG_BANG] = ACTIONS(3312), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3312), + [sym__automatic_semicolon] = ACTIONS(3312), + [sym_safe_nav] = ACTIONS(3312), + [sym_multiline_comment] = ACTIONS(3), + }, + [2749] = { + [sym_type_constraints] = STATE(2789), + [sym_property_delegate] = STATE(2945), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2750] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2751] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2752] = { + [sym_primary_constructor] = STATE(5591), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5242), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5812), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2753] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2754] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2755] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2756] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9355), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(6150), + [anon_sym_set] = ACTIONS(6152), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2757] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2758] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9191), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6128), + [anon_sym_set] = ACTIONS(6130), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2759] = { + [sym_primary_constructor] = STATE(5540), + [sym_class_body] = STATE(5242), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5102), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6392), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [2760] = { + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6300), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2761] = { + [sym_property_delegate] = STATE(2833), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6224), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2762] = { + [sym_primary_constructor] = STATE(5580), + [sym_class_body] = STATE(5270), + [sym__class_parameters] = STATE(5017), + [sym_type_constraints] = STATE(5025), + [sym_modifiers] = STATE(10139), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(6394), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3178), + [anon_sym_sealed] = ACTIONS(3180), + [anon_sym_annotation] = ACTIONS(3180), + [anon_sym_data] = ACTIONS(3180), + [anon_sym_inner] = ACTIONS(3180), + [anon_sym_value] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_lateinit] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_internal] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_tailrec] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_infix] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym_external] = ACTIONS(3178), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_final] = ACTIONS(3188), + [anon_sym_open] = ACTIONS(3188), + [anon_sym_vararg] = ACTIONS(3190), + [anon_sym_noinline] = ACTIONS(3190), + [anon_sym_crossinline] = ACTIONS(3190), + [anon_sym_expect] = ACTIONS(3192), + [anon_sym_actual] = ACTIONS(3192), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [2763] = { + [sym_type_constraints] = STATE(2783), + [sym_property_delegate] = STATE(2984), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6396), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(6398), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2764] = { + [sym_property_delegate] = STATE(2859), + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6250), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2765] = { + [sym_annotated_lambda] = STATE(3182), + [sym_lambda_literal] = STATE(3228), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym_null_literal] = ACTIONS(3992), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [2766] = { + [sym_annotated_lambda] = STATE(3107), + [sym_lambda_literal] = STATE(3228), + [sym_annotation] = STATE(8400), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8400), + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_object] = ACTIONS(3964), + [anon_sym_fun] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_this] = ACTIONS(3964), + [anon_sym_super] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [sym_label] = ACTIONS(4481), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_when] = ACTIONS(3964), + [anon_sym_try] = ACTIONS(3964), + [anon_sym_throw] = ACTIONS(3964), + [anon_sym_return] = ACTIONS(3964), + [anon_sym_continue] = ACTIONS(3964), + [anon_sym_break] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3966), + [anon_sym_continue_AT] = ACTIONS(3966), + [anon_sym_break_AT] = ACTIONS(3966), + [anon_sym_this_AT] = ACTIONS(3966), + [anon_sym_super_AT] = ACTIONS(3966), + [sym_real_literal] = ACTIONS(3966), + [sym_integer_literal] = ACTIONS(3964), + [sym_hex_literal] = ACTIONS(3966), + [sym_bin_literal] = ACTIONS(3966), + [anon_sym_true] = ACTIONS(3964), + [anon_sym_false] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3966), + [sym_null_literal] = ACTIONS(3964), + [sym__backtick_identifier] = ACTIONS(3966), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3966), + }, + [2767] = { + [sym_property_delegate] = STATE(2882), + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4624), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2768] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_object] = ACTIONS(3970), + [anon_sym_fun] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_this] = ACTIONS(3970), + [anon_sym_super] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_STAR_EQ] = ACTIONS(3985), + [anon_sym_SLASH_EQ] = ACTIONS(3985), + [anon_sym_PERCENT_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3972), + [anon_sym_continue_AT] = ACTIONS(3972), + [anon_sym_break_AT] = ACTIONS(3972), + [anon_sym_this_AT] = ACTIONS(3972), + [anon_sym_super_AT] = ACTIONS(3972), + [sym_real_literal] = ACTIONS(3972), + [sym_integer_literal] = ACTIONS(3970), + [sym_hex_literal] = ACTIONS(3972), + [sym_bin_literal] = ACTIONS(3972), + [anon_sym_true] = ACTIONS(3970), + [anon_sym_false] = ACTIONS(3970), + [anon_sym_SQUOTE] = ACTIONS(3972), + [sym_null_literal] = ACTIONS(3970), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3972), + }, + [2769] = { + [sym_property_delegate] = STATE(2898), + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6306), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6308), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2770] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3957), + [anon_sym_interface] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3959), + [anon_sym_sealed] = ACTIONS(3959), + [anon_sym_annotation] = ACTIONS(3959), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3959), + [anon_sym_lateinit] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_internal] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_tailrec] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_infix] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym_external] = ACTIONS(3959), + [sym_property_modifier] = ACTIONS(3959), + [anon_sym_abstract] = ACTIONS(3959), + [anon_sym_final] = ACTIONS(3959), + [anon_sym_open] = ACTIONS(3959), + [anon_sym_vararg] = ACTIONS(3959), + [anon_sym_noinline] = ACTIONS(3959), + [anon_sym_crossinline] = ACTIONS(3959), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2771] = { + [sym_property_delegate] = STATE(2878), + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4702), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2772] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3949), + [anon_sym_sealed] = ACTIONS(3949), + [anon_sym_annotation] = ACTIONS(3949), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3949), + [anon_sym_lateinit] = ACTIONS(3949), + [anon_sym_public] = ACTIONS(3949), + [anon_sym_private] = ACTIONS(3949), + [anon_sym_internal] = ACTIONS(3949), + [anon_sym_protected] = ACTIONS(3949), + [anon_sym_tailrec] = ACTIONS(3949), + [anon_sym_operator] = ACTIONS(3949), + [anon_sym_infix] = ACTIONS(3949), + [anon_sym_inline] = ACTIONS(3949), + [anon_sym_external] = ACTIONS(3949), + [sym_property_modifier] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3949), + [anon_sym_final] = ACTIONS(3949), + [anon_sym_open] = ACTIONS(3949), + [anon_sym_vararg] = ACTIONS(3949), + [anon_sym_noinline] = ACTIONS(3949), + [anon_sym_crossinline] = ACTIONS(3949), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2773] = { + [sym_property_delegate] = STATE(2875), + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4622), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2774] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3951), + [anon_sym_sealed] = ACTIONS(3951), + [anon_sym_annotation] = ACTIONS(3951), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3951), + [anon_sym_lateinit] = ACTIONS(3951), + [anon_sym_public] = ACTIONS(3951), + [anon_sym_private] = ACTIONS(3951), + [anon_sym_internal] = ACTIONS(3951), + [anon_sym_protected] = ACTIONS(3951), + [anon_sym_tailrec] = ACTIONS(3951), + [anon_sym_operator] = ACTIONS(3951), + [anon_sym_infix] = ACTIONS(3951), + [anon_sym_inline] = ACTIONS(3951), + [anon_sym_external] = ACTIONS(3951), + [sym_property_modifier] = ACTIONS(3951), + [anon_sym_abstract] = ACTIONS(3951), + [anon_sym_final] = ACTIONS(3951), + [anon_sym_open] = ACTIONS(3951), + [anon_sym_vararg] = ACTIONS(3951), + [anon_sym_noinline] = ACTIONS(3951), + [anon_sym_crossinline] = ACTIONS(3951), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2775] = { + [sym_property_delegate] = STATE(2850), + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6232), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2776] = { + [sym_property_delegate] = STATE(2869), + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2777] = { + [sym_property_delegate] = STATE(2871), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6304), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2778] = { + [sym_property_delegate] = STATE(2848), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2779] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3957), + [anon_sym_interface] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3957), + [anon_sym_sealed] = ACTIONS(3957), + [anon_sym_annotation] = ACTIONS(3957), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3957), + [anon_sym_lateinit] = ACTIONS(3957), + [anon_sym_public] = ACTIONS(3957), + [anon_sym_private] = ACTIONS(3957), + [anon_sym_internal] = ACTIONS(3957), + [anon_sym_protected] = ACTIONS(3957), + [anon_sym_tailrec] = ACTIONS(3957), + [anon_sym_operator] = ACTIONS(3957), + [anon_sym_infix] = ACTIONS(3957), + [anon_sym_inline] = ACTIONS(3957), + [anon_sym_external] = ACTIONS(3957), + [sym_property_modifier] = ACTIONS(3957), + [anon_sym_abstract] = ACTIONS(3957), + [anon_sym_final] = ACTIONS(3957), + [anon_sym_open] = ACTIONS(3957), + [anon_sym_vararg] = ACTIONS(3957), + [anon_sym_noinline] = ACTIONS(3957), + [anon_sym_crossinline] = ACTIONS(3957), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2780] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_object] = ACTIONS(3970), + [anon_sym_fun] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_this] = ACTIONS(3970), + [anon_sym_super] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(4005), + [anon_sym_DASH_EQ] = ACTIONS(4005), + [anon_sym_STAR_EQ] = ACTIONS(4005), + [anon_sym_SLASH_EQ] = ACTIONS(4005), + [anon_sym_PERCENT_EQ] = ACTIONS(4005), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3972), + [anon_sym_continue_AT] = ACTIONS(3972), + [anon_sym_break_AT] = ACTIONS(3972), + [anon_sym_this_AT] = ACTIONS(3972), + [anon_sym_super_AT] = ACTIONS(3972), + [sym_real_literal] = ACTIONS(3972), + [sym_integer_literal] = ACTIONS(3970), + [sym_hex_literal] = ACTIONS(3972), + [sym_bin_literal] = ACTIONS(3972), + [anon_sym_true] = ACTIONS(3970), + [anon_sym_false] = ACTIONS(3970), + [anon_sym_SQUOTE] = ACTIONS(3972), + [sym_null_literal] = ACTIONS(3970), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3972), + }, + [2781] = { + [sym_property_delegate] = STATE(2884), + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6402), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6234), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4626), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2782] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3949), + [anon_sym_sealed] = ACTIONS(3949), + [anon_sym_annotation] = ACTIONS(3949), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3949), + [anon_sym_lateinit] = ACTIONS(3949), + [anon_sym_public] = ACTIONS(3949), + [anon_sym_private] = ACTIONS(3949), + [anon_sym_internal] = ACTIONS(3949), + [anon_sym_protected] = ACTIONS(3949), + [anon_sym_tailrec] = ACTIONS(3949), + [anon_sym_operator] = ACTIONS(3949), + [anon_sym_infix] = ACTIONS(3949), + [anon_sym_inline] = ACTIONS(3949), + [anon_sym_external] = ACTIONS(3949), + [sym_property_modifier] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3949), + [anon_sym_final] = ACTIONS(3949), + [anon_sym_open] = ACTIONS(3949), + [anon_sym_vararg] = ACTIONS(3949), + [anon_sym_noinline] = ACTIONS(3949), + [anon_sym_crossinline] = ACTIONS(3949), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2783] = { + [sym_property_delegate] = STATE(2995), + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2784] = { + [sym_property_delegate] = STATE(2958), + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6404), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2785] = { + [sym_property_delegate] = STATE(2945), + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2786] = { + [sym_property_delegate] = STATE(2921), + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(6344), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2787] = { + [sym_catch_block] = STATE(2802), + [sym_finally_block] = STATE(3179), + [aux_sym_try_expression_repeat1] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_object] = ACTIONS(4068), + [anon_sym_fun] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_this] = ACTIONS(4068), + [anon_sym_super] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [sym_label] = ACTIONS(4068), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_when] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_catch] = ACTIONS(6406), + [anon_sym_finally] = ACTIONS(6408), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4070), + [anon_sym_continue_AT] = ACTIONS(4070), + [anon_sym_break_AT] = ACTIONS(4070), + [anon_sym_this_AT] = ACTIONS(4070), + [anon_sym_super_AT] = ACTIONS(4070), + [sym_real_literal] = ACTIONS(4070), + [sym_integer_literal] = ACTIONS(4068), + [sym_hex_literal] = ACTIONS(4070), + [sym_bin_literal] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4070), + [sym_null_literal] = ACTIONS(4068), + [sym__backtick_identifier] = ACTIONS(4070), + [sym__automatic_semicolon] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4070), + }, + [2788] = { + [sym_property_delegate] = STATE(2916), + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6364), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6366), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2789] = { + [sym_property_delegate] = STATE(2911), + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2790] = { + [sym_property_delegate] = STATE(2984), + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(6396), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6398), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2791] = { + [sym_property_delegate] = STATE(2928), + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6382), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(5081), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2792] = { + [sym_property_delegate] = STATE(2944), + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(6352), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2793] = { + [sym_property_delegate] = STATE(2914), + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(6362), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_by] = ACTIONS(6346), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(5191), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2794] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3957), + [anon_sym_interface] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3957), + [anon_sym_sealed] = ACTIONS(3957), + [anon_sym_annotation] = ACTIONS(3957), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3957), + [anon_sym_lateinit] = ACTIONS(3957), + [anon_sym_public] = ACTIONS(3957), + [anon_sym_private] = ACTIONS(3957), + [anon_sym_internal] = ACTIONS(3957), + [anon_sym_protected] = ACTIONS(3957), + [anon_sym_tailrec] = ACTIONS(3957), + [anon_sym_operator] = ACTIONS(3957), + [anon_sym_infix] = ACTIONS(3957), + [anon_sym_inline] = ACTIONS(3957), + [anon_sym_external] = ACTIONS(3957), + [sym_property_modifier] = ACTIONS(3957), + [anon_sym_abstract] = ACTIONS(3957), + [anon_sym_final] = ACTIONS(3957), + [anon_sym_open] = ACTIONS(3957), + [anon_sym_vararg] = ACTIONS(3957), + [anon_sym_noinline] = ACTIONS(3957), + [anon_sym_crossinline] = ACTIONS(3957), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2795] = { + [sym_type_constraints] = STATE(2987), + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6412), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [2796] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2797] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4156), + [sym__quest] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [2798] = { + [sym_annotated_lambda] = STATE(3542), + [sym_lambda_literal] = STATE(3507), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [2799] = { + [sym_type_arguments] = STATE(2860), + [sym__alpha_identifier] = ACTIONS(4104), + [anon_sym_AT] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(6418), + [anon_sym_GT] = ACTIONS(4104), + [anon_sym_where] = ACTIONS(4104), + [anon_sym_object] = ACTIONS(4104), + [anon_sym_fun] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_this] = ACTIONS(4104), + [anon_sym_super] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4104), + [anon_sym_DOT_DOT] = ACTIONS(4146), + [anon_sym_QMARK_COLON] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_PIPE_PIPE] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4104), + [anon_sym_when] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4146), + [anon_sym_DASH_EQ] = ACTIONS(4146), + [anon_sym_STAR_EQ] = ACTIONS(4146), + [anon_sym_SLASH_EQ] = ACTIONS(4146), + [anon_sym_PERCENT_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4146), + [anon_sym_LT_EQ] = ACTIONS(4146), + [anon_sym_GT_EQ] = ACTIONS(4146), + [anon_sym_BANGin] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4104), + [anon_sym_BANGis] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_SLASH] = ACTIONS(4104), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_BANG_BANG] = ACTIONS(4146), + [anon_sym_data] = ACTIONS(4104), + [anon_sym_inner] = ACTIONS(4104), + [anon_sym_value] = ACTIONS(4104), + [anon_sym_expect] = ACTIONS(4104), + [anon_sym_actual] = ACTIONS(4104), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4146), + [anon_sym_continue_AT] = ACTIONS(4146), + [anon_sym_break_AT] = ACTIONS(4146), + [anon_sym_this_AT] = ACTIONS(4146), + [anon_sym_super_AT] = ACTIONS(4146), + [sym_real_literal] = ACTIONS(4146), + [sym_integer_literal] = ACTIONS(4104), + [sym_hex_literal] = ACTIONS(4146), + [sym_bin_literal] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4146), + [sym__automatic_semicolon] = ACTIONS(4146), + [sym_safe_nav] = ACTIONS(4146), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4146), + }, + [2800] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_STAR_EQ] = ACTIONS(3985), + [anon_sym_SLASH_EQ] = ACTIONS(3985), + [anon_sym_PERCENT_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + }, + [2801] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), + [sym__quest] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2802] = { + [sym_catch_block] = STATE(2802), + [aux_sym_try_expression_repeat1] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_object] = ACTIONS(4106), + [anon_sym_fun] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_this] = ACTIONS(4106), + [anon_sym_super] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(6420), + [anon_sym_finally] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4108), + [anon_sym_continue_AT] = ACTIONS(4108), + [anon_sym_break_AT] = ACTIONS(4108), + [anon_sym_this_AT] = ACTIONS(4108), + [anon_sym_super_AT] = ACTIONS(4108), + [sym_real_literal] = ACTIONS(4108), + [sym_integer_literal] = ACTIONS(4106), + [sym_hex_literal] = ACTIONS(4108), + [sym_bin_literal] = ACTIONS(4108), + [anon_sym_true] = ACTIONS(4106), + [anon_sym_false] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4108), + [sym_null_literal] = ACTIONS(4106), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4108), + }, + [2803] = { + [aux_sym_user_type_repeat1] = STATE(2825), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6423), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4120), + [sym__quest] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [2804] = { + [sym_annotated_lambda] = STATE(3401), + [sym_lambda_literal] = STATE(3507), + [sym_annotation] = STATE(8389), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8389), + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_RBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_RPAREN] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_DASH_GT] = ACTIONS(3966), + [sym_label] = ACTIONS(3550), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_while] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_suspend] = ACTIONS(3964), + [anon_sym_sealed] = ACTIONS(3964), + [anon_sym_annotation] = ACTIONS(3964), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_override] = ACTIONS(3964), + [anon_sym_lateinit] = ACTIONS(3964), + [anon_sym_public] = ACTIONS(3964), + [anon_sym_private] = ACTIONS(3964), + [anon_sym_internal] = ACTIONS(3964), + [anon_sym_protected] = ACTIONS(3964), + [anon_sym_tailrec] = ACTIONS(3964), + [anon_sym_operator] = ACTIONS(3964), + [anon_sym_infix] = ACTIONS(3964), + [anon_sym_inline] = ACTIONS(3964), + [anon_sym_external] = ACTIONS(3964), + [sym_property_modifier] = ACTIONS(3964), + [anon_sym_abstract] = ACTIONS(3964), + [anon_sym_final] = ACTIONS(3964), + [anon_sym_open] = ACTIONS(3964), + [anon_sym_vararg] = ACTIONS(3964), + [anon_sym_noinline] = ACTIONS(3964), + [anon_sym_crossinline] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + }, + [2805] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2806] = { + [sym_type_constraints] = STATE(2986), + [sym_function_body] = STATE(3231), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6426), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [2807] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2808] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2809] = { + [aux_sym_user_type_repeat1] = STATE(2809), + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(6428), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [sym_label] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [2810] = { + [sym_getter] = STATE(3887), + [sym_setter] = STATE(3887), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2811] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(4005), + [anon_sym_DASH_EQ] = ACTIONS(4005), + [anon_sym_STAR_EQ] = ACTIONS(4005), + [anon_sym_SLASH_EQ] = ACTIONS(4005), + [anon_sym_PERCENT_EQ] = ACTIONS(4005), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + }, + [2812] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2813] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2814] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2815] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2816] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2817] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2818] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2819] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2820] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2821] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2822] = { + [sym_type_constraints] = STATE(2988), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6431), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [2823] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2824] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2825] = { + [aux_sym_user_type_repeat1] = STATE(2809), + [sym__alpha_identifier] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(6433), + [anon_sym_as] = ACTIONS(4113), + [anon_sym_EQ] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_COMMA] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_where] = ACTIONS(4113), + [anon_sym_object] = ACTIONS(4113), + [anon_sym_fun] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4115), + [anon_sym_get] = ACTIONS(4113), + [anon_sym_set] = ACTIONS(4113), + [anon_sym_this] = ACTIONS(4113), + [anon_sym_super] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + [sym__quest] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [sym_label] = ACTIONS(4113), + [anon_sym_in] = ACTIONS(4113), + [anon_sym_DOT_DOT] = ACTIONS(4115), + [anon_sym_QMARK_COLON] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4115), + [anon_sym_PIPE_PIPE] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4113), + [anon_sym_else] = ACTIONS(4113), + [anon_sym_when] = ACTIONS(4113), + [anon_sym_try] = ACTIONS(4113), + [anon_sym_throw] = ACTIONS(4113), + [anon_sym_return] = ACTIONS(4113), + [anon_sym_continue] = ACTIONS(4113), + [anon_sym_break] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4115), + [anon_sym_PLUS_EQ] = ACTIONS(4115), + [anon_sym_DASH_EQ] = ACTIONS(4115), + [anon_sym_STAR_EQ] = ACTIONS(4115), + [anon_sym_SLASH_EQ] = ACTIONS(4115), + [anon_sym_PERCENT_EQ] = ACTIONS(4115), + [anon_sym_BANG_EQ] = ACTIONS(4113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4115), + [anon_sym_EQ_EQ] = ACTIONS(4113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4115), + [anon_sym_LT_EQ] = ACTIONS(4115), + [anon_sym_GT_EQ] = ACTIONS(4115), + [anon_sym_BANGin] = ACTIONS(4115), + [anon_sym_is] = ACTIONS(4113), + [anon_sym_BANGis] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_SLASH] = ACTIONS(4113), + [anon_sym_PERCENT] = ACTIONS(4113), + [anon_sym_as_QMARK] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_BANG_BANG] = ACTIONS(4115), + [anon_sym_data] = ACTIONS(4113), + [anon_sym_inner] = ACTIONS(4113), + [anon_sym_value] = ACTIONS(4113), + [anon_sym_expect] = ACTIONS(4113), + [anon_sym_actual] = ACTIONS(4113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4115), + [anon_sym_continue_AT] = ACTIONS(4115), + [anon_sym_break_AT] = ACTIONS(4115), + [anon_sym_this_AT] = ACTIONS(4115), + [anon_sym_super_AT] = ACTIONS(4115), + [sym_real_literal] = ACTIONS(4115), + [sym_integer_literal] = ACTIONS(4113), + [sym_hex_literal] = ACTIONS(4115), + [sym_bin_literal] = ACTIONS(4115), + [anon_sym_true] = ACTIONS(4113), + [anon_sym_false] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4115), + [sym_null_literal] = ACTIONS(4113), + [sym__backtick_identifier] = ACTIONS(4115), + [sym__automatic_semicolon] = ACTIONS(4115), + [sym_safe_nav] = ACTIONS(4115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4115), + }, + [2826] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2827] = { + [sym_type_constraints] = STATE(2994), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6436), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [2828] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2829] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4359), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2830] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2831] = { + [sym_type_constraints] = STATE(2989), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6438), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [2832] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2833] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2834] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2835] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9498), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6228), + [anon_sym_set] = ACTIONS(6230), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2836] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6316), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2837] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2838] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9473), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(6254), + [anon_sym_set] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2839] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2840] = { + [sym_type_constraints] = STATE(2988), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [2841] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2842] = { + [sym_type_constraints] = STATE(2989), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [2843] = { + [sym_getter] = STATE(3470), + [sym_setter] = STATE(3470), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6308), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2844] = { + [sym_type_constraints] = STATE(2994), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [2845] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2846] = { + [sym_type_constraints] = STATE(2991), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [2847] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6440), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym_null_literal] = ACTIONS(4190), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [2848] = { + [sym_getter] = STATE(3430), + [sym_setter] = STATE(3430), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2849] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_RPAREN] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4224), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym_null_literal] = ACTIONS(4222), + [sym__backtick_identifier] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [2850] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2851] = { + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2852] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2853] = { + [aux_sym_nullable_type_repeat1] = STATE(2873), + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_object] = ACTIONS(4262), + [anon_sym_fun] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4262), + [anon_sym_super] = ACTIONS(4262), + [sym__quest] = ACTIONS(6442), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_when] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4264), + [anon_sym_continue_AT] = ACTIONS(4264), + [anon_sym_break_AT] = ACTIONS(4264), + [anon_sym_this_AT] = ACTIONS(4264), + [anon_sym_super_AT] = ACTIONS(4264), + [sym_real_literal] = ACTIONS(4264), + [sym_integer_literal] = ACTIONS(4262), + [sym_hex_literal] = ACTIONS(4264), + [sym_bin_literal] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4262), + [anon_sym_false] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4264), + [sym_null_literal] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4264), + }, + [2854] = { + [aux_sym_nullable_type_repeat1] = STATE(2854), + [sym__alpha_identifier] = ACTIONS(4268), + [anon_sym_AT] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_DOT] = ACTIONS(4268), + [anon_sym_as] = ACTIONS(4268), + [anon_sym_EQ] = ACTIONS(4268), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_COMMA] = ACTIONS(4270), + [anon_sym_by] = ACTIONS(4268), + [anon_sym_LT] = ACTIONS(4268), + [anon_sym_GT] = ACTIONS(4268), + [anon_sym_where] = ACTIONS(4268), + [anon_sym_object] = ACTIONS(4268), + [anon_sym_fun] = ACTIONS(4268), + [anon_sym_SEMI] = ACTIONS(4270), + [anon_sym_get] = ACTIONS(4268), + [anon_sym_set] = ACTIONS(4268), + [anon_sym_this] = ACTIONS(4268), + [anon_sym_super] = ACTIONS(4268), + [sym__quest] = ACTIONS(6444), + [anon_sym_STAR] = ACTIONS(4268), + [sym_label] = ACTIONS(4268), + [anon_sym_in] = ACTIONS(4268), + [anon_sym_DOT_DOT] = ACTIONS(4270), + [anon_sym_QMARK_COLON] = ACTIONS(4270), + [anon_sym_AMP_AMP] = ACTIONS(4270), + [anon_sym_PIPE_PIPE] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4268), + [anon_sym_else] = ACTIONS(4268), + [anon_sym_when] = ACTIONS(4268), + [anon_sym_try] = ACTIONS(4268), + [anon_sym_throw] = ACTIONS(4268), + [anon_sym_return] = ACTIONS(4268), + [anon_sym_continue] = ACTIONS(4268), + [anon_sym_break] = ACTIONS(4268), + [anon_sym_COLON_COLON] = ACTIONS(4270), + [anon_sym_PLUS_EQ] = ACTIONS(4270), + [anon_sym_DASH_EQ] = ACTIONS(4270), + [anon_sym_STAR_EQ] = ACTIONS(4270), + [anon_sym_SLASH_EQ] = ACTIONS(4270), + [anon_sym_PERCENT_EQ] = ACTIONS(4270), + [anon_sym_BANG_EQ] = ACTIONS(4268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), + [anon_sym_EQ_EQ] = ACTIONS(4268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), + [anon_sym_LT_EQ] = ACTIONS(4270), + [anon_sym_GT_EQ] = ACTIONS(4270), + [anon_sym_BANGin] = ACTIONS(4270), + [anon_sym_is] = ACTIONS(4268), + [anon_sym_BANGis] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4268), + [anon_sym_SLASH] = ACTIONS(4268), + [anon_sym_PERCENT] = ACTIONS(4268), + [anon_sym_as_QMARK] = ACTIONS(4270), + [anon_sym_PLUS_PLUS] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4270), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_BANG_BANG] = ACTIONS(4270), + [anon_sym_data] = ACTIONS(4268), + [anon_sym_inner] = ACTIONS(4268), + [anon_sym_value] = ACTIONS(4268), + [anon_sym_expect] = ACTIONS(4268), + [anon_sym_actual] = ACTIONS(4268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4270), + [anon_sym_continue_AT] = ACTIONS(4270), + [anon_sym_break_AT] = ACTIONS(4270), + [anon_sym_this_AT] = ACTIONS(4270), + [anon_sym_super_AT] = ACTIONS(4270), + [sym_real_literal] = ACTIONS(4270), + [sym_integer_literal] = ACTIONS(4268), + [sym_hex_literal] = ACTIONS(4270), + [sym_bin_literal] = ACTIONS(4270), + [anon_sym_true] = ACTIONS(4268), + [anon_sym_false] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4270), + [sym_null_literal] = ACTIONS(4268), + [sym__backtick_identifier] = ACTIONS(4270), + [sym__automatic_semicolon] = ACTIONS(4270), + [sym_safe_nav] = ACTIONS(4270), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4270), + }, + [2855] = { + [sym__alpha_identifier] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_COMMA] = ACTIONS(4289), + [anon_sym_by] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_where] = ACTIONS(4287), + [anon_sym_object] = ACTIONS(4287), + [anon_sym_fun] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4289), + [anon_sym_get] = ACTIONS(4287), + [anon_sym_set] = ACTIONS(4287), + [anon_sym_this] = ACTIONS(4287), + [anon_sym_super] = ACTIONS(4287), + [sym__quest] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_DASH_GT] = ACTIONS(4291), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4287), + [anon_sym_DOT_DOT] = ACTIONS(4289), + [anon_sym_QMARK_COLON] = ACTIONS(4289), + [anon_sym_AMP_AMP] = ACTIONS(4289), + [anon_sym_PIPE_PIPE] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4287), + [anon_sym_when] = ACTIONS(4287), + [anon_sym_try] = ACTIONS(4287), + [anon_sym_throw] = ACTIONS(4287), + [anon_sym_return] = ACTIONS(4287), + [anon_sym_continue] = ACTIONS(4287), + [anon_sym_break] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_PLUS_EQ] = ACTIONS(4289), + [anon_sym_DASH_EQ] = ACTIONS(4289), + [anon_sym_STAR_EQ] = ACTIONS(4289), + [anon_sym_SLASH_EQ] = ACTIONS(4289), + [anon_sym_PERCENT_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), + [anon_sym_LT_EQ] = ACTIONS(4289), + [anon_sym_GT_EQ] = ACTIONS(4289), + [anon_sym_BANGin] = ACTIONS(4289), + [anon_sym_is] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4289), + [anon_sym_PLUS_PLUS] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4289), + [anon_sym_data] = ACTIONS(4287), + [anon_sym_inner] = ACTIONS(4287), + [anon_sym_value] = ACTIONS(4287), + [anon_sym_expect] = ACTIONS(4287), + [anon_sym_actual] = ACTIONS(4287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4289), + [anon_sym_continue_AT] = ACTIONS(4289), + [anon_sym_break_AT] = ACTIONS(4289), + [anon_sym_this_AT] = ACTIONS(4289), + [anon_sym_super_AT] = ACTIONS(4289), + [sym_real_literal] = ACTIONS(4289), + [sym_integer_literal] = ACTIONS(4287), + [sym_hex_literal] = ACTIONS(4289), + [sym_bin_literal] = ACTIONS(4289), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4289), + [sym_null_literal] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4289), + [sym__automatic_semicolon] = ACTIONS(4289), + [sym_safe_nav] = ACTIONS(4289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4289), + }, + [2856] = { + [sym_type_constraints] = STATE(2976), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [2857] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym_null_literal] = ACTIONS(4210), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [2858] = { + [aux_sym_nullable_type_repeat1] = STATE(2873), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [sym__quest] = ACTIONS(6442), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym_null_literal] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [2859] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2860] = { + [sym__alpha_identifier] = ACTIONS(4218), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4218), + [anon_sym_GT] = ACTIONS(4218), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_object] = ACTIONS(4218), + [anon_sym_fun] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4218), + [anon_sym_set] = ACTIONS(4218), + [anon_sym_this] = ACTIONS(4218), + [anon_sym_super] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [sym__quest] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4218), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_if] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4218), + [anon_sym_when] = ACTIONS(4218), + [anon_sym_try] = ACTIONS(4218), + [anon_sym_throw] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4218), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_SLASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4218), + [anon_sym_inner] = ACTIONS(4218), + [anon_sym_value] = ACTIONS(4218), + [anon_sym_expect] = ACTIONS(4218), + [anon_sym_actual] = ACTIONS(4218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4218), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [2861] = { + [sym_type_arguments] = STATE(3084), + [sym__alpha_identifier] = ACTIONS(4104), + [anon_sym_AT] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(6447), + [anon_sym_where] = ACTIONS(4104), + [anon_sym_object] = ACTIONS(4104), + [anon_sym_fun] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_this] = ACTIONS(4104), + [anon_sym_super] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4146), + [sym__quest] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [sym_label] = ACTIONS(4104), + [anon_sym_in] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_else] = ACTIONS(4104), + [anon_sym_when] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_BANGin] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4104), + [anon_sym_BANGis] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_suspend] = ACTIONS(4104), + [anon_sym_sealed] = ACTIONS(4104), + [anon_sym_annotation] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4104), + [anon_sym_inner] = ACTIONS(4104), + [anon_sym_value] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_lateinit] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_internal] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_tailrec] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_infix] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym_external] = ACTIONS(4104), + [sym_property_modifier] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_final] = ACTIONS(4104), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_vararg] = ACTIONS(4104), + [anon_sym_noinline] = ACTIONS(4104), + [anon_sym_crossinline] = ACTIONS(4104), + [anon_sym_expect] = ACTIONS(4104), + [anon_sym_actual] = ACTIONS(4104), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4146), + [anon_sym_continue_AT] = ACTIONS(4146), + [anon_sym_break_AT] = ACTIONS(4146), + [anon_sym_this_AT] = ACTIONS(4146), + [anon_sym_super_AT] = ACTIONS(4146), + [sym_real_literal] = ACTIONS(4146), + [sym_integer_literal] = ACTIONS(4104), + [sym_hex_literal] = ACTIONS(4146), + [sym_bin_literal] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4146), + [sym__automatic_semicolon] = ACTIONS(4146), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4146), + }, + [2862] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6449), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym_null_literal] = ACTIONS(4190), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [2863] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4158), + [sym__quest] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [2864] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_by] = ACTIONS(4214), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [sym__quest] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4216), + [anon_sym_QMARK_COLON] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4216), + [anon_sym_PLUS_EQ] = ACTIONS(4216), + [anon_sym_DASH_EQ] = ACTIONS(4216), + [anon_sym_STAR_EQ] = ACTIONS(4216), + [anon_sym_SLASH_EQ] = ACTIONS(4216), + [anon_sym_PERCENT_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4216), + [anon_sym_LT_EQ] = ACTIONS(4216), + [anon_sym_GT_EQ] = ACTIONS(4216), + [anon_sym_BANGin] = ACTIONS(4216), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4216), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4216), + [anon_sym_continue_AT] = ACTIONS(4216), + [anon_sym_break_AT] = ACTIONS(4216), + [anon_sym_this_AT] = ACTIONS(4216), + [anon_sym_super_AT] = ACTIONS(4216), + [sym_real_literal] = ACTIONS(4216), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4216), + [sym_bin_literal] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [sym_null_literal] = ACTIONS(4214), + [sym__backtick_identifier] = ACTIONS(4216), + [sym__automatic_semicolon] = ACTIONS(4216), + [sym_safe_nav] = ACTIONS(4216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4216), + }, + [2865] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2866] = { + [sym_function_body] = STATE(3093), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(6451), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [2867] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6453), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2868] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2869] = { + [sym_getter] = STATE(3419), + [sym_setter] = STATE(3419), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4702), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2870] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2871] = { + [sym_getter] = STATE(4737), + [sym_setter] = STATE(4737), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(4622), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2872] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6457), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2873] = { + [aux_sym_nullable_type_repeat1] = STATE(2854), + [sym__alpha_identifier] = ACTIONS(4254), + [anon_sym_AT] = ACTIONS(4256), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_as] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4254), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_GT] = ACTIONS(4254), + [anon_sym_where] = ACTIONS(4254), + [anon_sym_object] = ACTIONS(4254), + [anon_sym_fun] = ACTIONS(4254), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym_get] = ACTIONS(4254), + [anon_sym_set] = ACTIONS(4254), + [anon_sym_this] = ACTIONS(4254), + [anon_sym_super] = ACTIONS(4254), + [sym__quest] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(4254), + [sym_label] = ACTIONS(4254), + [anon_sym_in] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_QMARK_COLON] = ACTIONS(4256), + [anon_sym_AMP_AMP] = ACTIONS(4256), + [anon_sym_PIPE_PIPE] = ACTIONS(4256), + [anon_sym_if] = ACTIONS(4254), + [anon_sym_else] = ACTIONS(4254), + [anon_sym_when] = ACTIONS(4254), + [anon_sym_try] = ACTIONS(4254), + [anon_sym_throw] = ACTIONS(4254), + [anon_sym_return] = ACTIONS(4254), + [anon_sym_continue] = ACTIONS(4254), + [anon_sym_break] = ACTIONS(4254), + [anon_sym_COLON_COLON] = ACTIONS(4256), + [anon_sym_PLUS_EQ] = ACTIONS(4256), + [anon_sym_DASH_EQ] = ACTIONS(4256), + [anon_sym_STAR_EQ] = ACTIONS(4256), + [anon_sym_SLASH_EQ] = ACTIONS(4256), + [anon_sym_PERCENT_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), + [anon_sym_LT_EQ] = ACTIONS(4256), + [anon_sym_GT_EQ] = ACTIONS(4256), + [anon_sym_BANGin] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4254), + [anon_sym_BANGis] = ACTIONS(4256), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), + [anon_sym_as_QMARK] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_BANG] = ACTIONS(4254), + [anon_sym_BANG_BANG] = ACTIONS(4256), + [anon_sym_data] = ACTIONS(4254), + [anon_sym_inner] = ACTIONS(4254), + [anon_sym_value] = ACTIONS(4254), + [anon_sym_expect] = ACTIONS(4254), + [anon_sym_actual] = ACTIONS(4254), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4256), + [anon_sym_continue_AT] = ACTIONS(4256), + [anon_sym_break_AT] = ACTIONS(4256), + [anon_sym_this_AT] = ACTIONS(4256), + [anon_sym_super_AT] = ACTIONS(4256), + [sym_real_literal] = ACTIONS(4256), + [sym_integer_literal] = ACTIONS(4254), + [sym_hex_literal] = ACTIONS(4256), + [sym_bin_literal] = ACTIONS(4256), + [anon_sym_true] = ACTIONS(4254), + [anon_sym_false] = ACTIONS(4254), + [anon_sym_SQUOTE] = ACTIONS(4256), + [sym_null_literal] = ACTIONS(4254), + [sym__backtick_identifier] = ACTIONS(4256), + [sym__automatic_semicolon] = ACTIONS(4256), + [sym_safe_nav] = ACTIONS(4256), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4256), + }, + [2874] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2875] = { + [sym_getter] = STATE(4772), + [sym_setter] = STATE(4772), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4624), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2876] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2877] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2878] = { + [sym_getter] = STATE(3415), + [sym_setter] = STATE(3415), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2879] = { + [sym_getter] = STATE(3411), + [sym_setter] = STATE(3411), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2880] = { + [sym_getter] = STATE(3408), + [sym_setter] = STATE(3408), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2881] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [2882] = { + [sym_getter] = STATE(4748), + [sym_setter] = STATE(4748), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(4626), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2883] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2884] = { + [sym_getter] = STATE(4791), + [sym_setter] = STATE(4791), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2885] = { + [sym_getter] = STATE(4819), + [sym_setter] = STATE(4819), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2886] = { + [sym_catch_block] = STATE(2909), + [sym_finally_block] = STATE(3540), + [aux_sym_try_expression_repeat1] = STATE(2909), + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_RBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4070), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_catch] = ACTIONS(6463), + [anon_sym_finally] = ACTIONS(6465), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4068), + [anon_sym_sealed] = ACTIONS(4068), + [anon_sym_annotation] = ACTIONS(4068), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_lateinit] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_internal] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_tailrec] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_infix] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym_external] = ACTIONS(4068), + [sym_property_modifier] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_final] = ACTIONS(4068), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_vararg] = ACTIONS(4068), + [anon_sym_noinline] = ACTIONS(4068), + [anon_sym_crossinline] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + }, + [2887] = { + [sym_type_constraints] = STATE(3011), + [sym_enum_class_body] = STATE(3181), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(6467), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [2888] = { + [sym_class_body] = STATE(3297), + [sym_type_constraints] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [2889] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6471), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [2890] = { + [sym_class_body] = STATE(3257), + [sym_type_constraints] = STATE(3028), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [2891] = { + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [2892] = { + [sym_class_body] = STATE(3248), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [2893] = { + [sym_type_constraints] = STATE(3230), + [sym_function_body] = STATE(3231), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6475), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [2894] = { + [sym_class_body] = STATE(3214), + [sym_type_constraints] = STATE(3049), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [2895] = { + [sym_getter] = STATE(4860), + [sym_setter] = STATE(4860), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6250), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2896] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [2897] = { + [sym_getter] = STATE(4845), + [sym_setter] = STATE(4845), + [sym_modifiers] = STATE(9216), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6244), + [anon_sym_set] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2898] = { + [sym_getter] = STATE(3454), + [sym_setter] = STATE(3454), + [sym_modifiers] = STATE(9256), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_get] = ACTIONS(6236), + [anon_sym_set] = ACTIONS(6238), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2899] = { + [sym_function_body] = STATE(3239), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(6479), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [2900] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(6481), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [2901] = { + [sym_type_constraints] = STATE(3268), + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [2902] = { + [sym_type_constraints] = STATE(3302), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6485), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [2903] = { + [sym_type_constraints] = STATE(3206), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6487), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [2904] = { + [sym_type_constraints] = STATE(3160), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6489), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [2905] = { + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [sym_label] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [2906] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3949), + [anon_sym_var] = ACTIONS(3949), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3951), + [anon_sym_sealed] = ACTIONS(3951), + [anon_sym_annotation] = ACTIONS(3951), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3951), + [anon_sym_lateinit] = ACTIONS(3951), + [anon_sym_public] = ACTIONS(3951), + [anon_sym_private] = ACTIONS(3951), + [anon_sym_internal] = ACTIONS(3951), + [anon_sym_protected] = ACTIONS(3951), + [anon_sym_tailrec] = ACTIONS(3951), + [anon_sym_operator] = ACTIONS(3951), + [anon_sym_infix] = ACTIONS(3951), + [anon_sym_inline] = ACTIONS(3951), + [anon_sym_external] = ACTIONS(3951), + [sym_property_modifier] = ACTIONS(3951), + [anon_sym_abstract] = ACTIONS(3951), + [anon_sym_final] = ACTIONS(3951), + [anon_sym_open] = ACTIONS(3951), + [anon_sym_vararg] = ACTIONS(3951), + [anon_sym_noinline] = ACTIONS(3951), + [anon_sym_crossinline] = ACTIONS(3951), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2907] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3957), + [anon_sym_interface] = ACTIONS(3957), + [anon_sym_enum] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3957), + [anon_sym_var] = ACTIONS(3957), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3959), + [anon_sym_sealed] = ACTIONS(3959), + [anon_sym_annotation] = ACTIONS(3959), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3959), + [anon_sym_lateinit] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_internal] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_tailrec] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_infix] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym_external] = ACTIONS(3959), + [sym_property_modifier] = ACTIONS(3959), + [anon_sym_abstract] = ACTIONS(3959), + [anon_sym_final] = ACTIONS(3959), + [anon_sym_open] = ACTIONS(3959), + [anon_sym_vararg] = ACTIONS(3959), + [anon_sym_noinline] = ACTIONS(3959), + [anon_sym_crossinline] = ACTIONS(3959), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2908] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3947), + [sym__quest] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3947), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [2909] = { + [sym_catch_block] = STATE(2909), + [aux_sym_try_expression_repeat1] = STATE(2909), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(6491), + [anon_sym_finally] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + }, + [2910] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_catch] = ACTIONS(4435), + [anon_sym_finally] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [2911] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2912] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2913] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6366), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2914] = { + [sym_getter] = STATE(5153), + [sym_setter] = STATE(5153), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(5189), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2915] = { + [sym_getter] = STATE(5257), + [sym_setter] = STATE(5257), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2916] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2917] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2918] = { + [sym_getter] = STATE(5221), + [sym_setter] = STATE(5221), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2919] = { + [sym_getter] = STATE(3926), + [sym_setter] = STATE(3926), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2920] = { + [sym_getter] = STATE(3887), + [sym_setter] = STATE(3887), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2921] = { + [sym_getter] = STATE(5193), + [sym_setter] = STATE(5193), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(5191), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2922] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), + [sym__quest] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [2923] = { + [sym_type_constraints] = STATE(3118), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [2924] = { + [sym_type_constraints] = STATE(3004), + [sym_enum_class_body] = STATE(3132), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [anon_sym_this_AT] = ACTIONS(4392), + [anon_sym_super_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym_null_literal] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), + }, + [2925] = { + [sym_getter] = STATE(3916), + [sym_setter] = STATE(3916), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2926] = { + [sym_type_constraints] = STATE(3144), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [2927] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_object] = ACTIONS(4299), + [anon_sym_fun] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_this] = ACTIONS(4299), + [anon_sym_super] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4299), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_when] = ACTIONS(4299), + [anon_sym_try] = ACTIONS(4299), + [anon_sym_catch] = ACTIONS(4299), + [anon_sym_finally] = ACTIONS(4299), + [anon_sym_throw] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4301), + [anon_sym_continue_AT] = ACTIONS(4301), + [anon_sym_break_AT] = ACTIONS(4301), + [anon_sym_this_AT] = ACTIONS(4301), + [anon_sym_super_AT] = ACTIONS(4301), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(4299), + [anon_sym_false] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4301), + [sym_null_literal] = ACTIONS(4299), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4301), + }, + [2928] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2929] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3150), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4386), + [anon_sym_fun] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_this] = ACTIONS(4386), + [anon_sym_super] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4386), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_when] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4388), + [anon_sym_continue_AT] = ACTIONS(4388), + [anon_sym_break_AT] = ACTIONS(4388), + [anon_sym_this_AT] = ACTIONS(4388), + [anon_sym_super_AT] = ACTIONS(4388), + [sym_real_literal] = ACTIONS(4388), + [sym_integer_literal] = ACTIONS(4386), + [sym_hex_literal] = ACTIONS(4388), + [sym_bin_literal] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_SQUOTE] = ACTIONS(4388), + [sym_null_literal] = ACTIONS(4386), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4388), + }, + [2930] = { + [sym_class_body] = STATE(3168), + [sym_type_constraints] = STATE(3006), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [2931] = { + [sym_type_constraints] = STATE(3160), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [2932] = { + [sym_type_constraints] = STATE(3008), + [sym_enum_class_body] = STATE(3168), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [2933] = { + [sym_type_constraints] = STATE(3011), + [sym_enum_class_body] = STATE(3181), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [2934] = { + [sym_type_constraints] = STATE(3011), + [sym_enum_class_body] = STATE(3181), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [2935] = { + [sym_class_body] = STATE(3218), + [sym_type_constraints] = STATE(3012), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [2936] = { + [sym_type_constraints] = STATE(3206), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [2937] = { + [sym_type_arguments] = STATE(6606), + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(6496), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_RBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4100), + [sym_label] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_while] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4100), + [anon_sym_QMARK_COLON] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_as_QMARK] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG_BANG] = ACTIONS(4100), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4100), + [sym_safe_nav] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + }, + [2938] = { + [sym_type_constraints] = STATE(3013), + [sym_enum_class_body] = STATE(3218), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [2939] = { + [sym_class_body] = STATE(3220), + [sym_type_constraints] = STATE(3014), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym_null_literal] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [2940] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [2941] = { + [sym_class_body] = STATE(3297), + [sym_type_constraints] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6498), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [2942] = { + [sym_class_body] = STATE(3297), + [sym_type_constraints] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [2943] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2944] = { + [sym_getter] = STATE(5149), + [sym_setter] = STATE(5149), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2945] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2946] = { + [sym_type_constraints] = STATE(3302), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [2947] = { + [sym_getter] = STATE(3935), + [sym_setter] = STATE(3935), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [2948] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_object] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4303), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_when] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_catch] = ACTIONS(4303), + [anon_sym_finally] = ACTIONS(4303), + [anon_sym_throw] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4305), + [anon_sym_continue_AT] = ACTIONS(4305), + [anon_sym_break_AT] = ACTIONS(4305), + [anon_sym_this_AT] = ACTIONS(4305), + [anon_sym_super_AT] = ACTIONS(4305), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(4303), + [anon_sym_false] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4305), + [sym_null_literal] = ACTIONS(4303), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4305), + }, + [2949] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2950] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6500), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [2951] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [2952] = { + [sym_class_body] = STATE(3289), + [sym_type_constraints] = STATE(3024), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4311), + [anon_sym_fun] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_this] = ACTIONS(4311), + [anon_sym_super] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4311), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_throw] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4313), + [anon_sym_continue_AT] = ACTIONS(4313), + [anon_sym_break_AT] = ACTIONS(4313), + [anon_sym_this_AT] = ACTIONS(4313), + [anon_sym_super_AT] = ACTIONS(4313), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4313), + [sym_null_literal] = ACTIONS(4311), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4313), + }, + [2953] = { + [sym_class_body] = STATE(3257), + [sym_type_constraints] = STATE(3028), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [2954] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [2955] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_catch] = ACTIONS(4419), + [anon_sym_finally] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [2956] = { + [aux_sym_user_type_repeat1] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6502), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4120), + [sym__quest] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [2957] = { + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [2958] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [2959] = { + [sym_class_body] = STATE(3248), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [2960] = { + [sym_class_body] = STATE(3248), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [2961] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [2962] = { + [sym_class_body] = STATE(3187), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(6507), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [2963] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2964] = { + [sym_getter] = STATE(3863), + [sym_setter] = STATE(3863), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(6398), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [2965] = { + [sym_getter] = STATE(4023), + [sym_setter] = STATE(4023), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [2966] = { + [sym_getter] = STATE(5140), + [sym_setter] = STATE(5140), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [2967] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9244), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(6348), + [anon_sym_set] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [2968] = { + [sym_class_body] = STATE(3088), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(6509), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [2969] = { + [sym_function_body] = STATE(3099), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [2970] = { + [sym_value_arguments] = STATE(3250), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(6511), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [2971] = { + [sym_class_body] = STATE(3214), + [sym_type_constraints] = STATE(3049), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [2972] = { + [sym_type_constraints] = STATE(3154), + [sym_function_body] = STATE(3472), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6513), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_DASH_GT] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [2973] = { + [sym_type_constraints] = STATE(3152), + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6519), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_DASH_GT] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [2974] = { + [sym_type_constraints] = STATE(3141), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6521), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [2975] = { + [sym_type_constraints] = STATE(3136), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [2976] = { + [sym_function_body] = STATE(3112), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [2977] = { + [aux_sym_user_type_repeat1] = STATE(2978), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4122), + [sym__quest] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [2978] = { + [aux_sym_user_type_repeat1] = STATE(2985), + [sym__alpha_identifier] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_COMMA] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4113), + [anon_sym_where] = ACTIONS(4113), + [anon_sym_object] = ACTIONS(4113), + [anon_sym_fun] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4115), + [anon_sym_get] = ACTIONS(4113), + [anon_sym_set] = ACTIONS(4113), + [anon_sym_this] = ACTIONS(4113), + [anon_sym_super] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4115), + [sym__quest] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4115), + [sym_label] = ACTIONS(4113), + [anon_sym_in] = ACTIONS(4113), + [anon_sym_if] = ACTIONS(4113), + [anon_sym_else] = ACTIONS(4113), + [anon_sym_when] = ACTIONS(4113), + [anon_sym_try] = ACTIONS(4113), + [anon_sym_throw] = ACTIONS(4113), + [anon_sym_return] = ACTIONS(4113), + [anon_sym_continue] = ACTIONS(4113), + [anon_sym_break] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4115), + [anon_sym_BANGin] = ACTIONS(4115), + [anon_sym_is] = ACTIONS(4113), + [anon_sym_BANGis] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_PLUS_PLUS] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_suspend] = ACTIONS(4113), + [anon_sym_sealed] = ACTIONS(4113), + [anon_sym_annotation] = ACTIONS(4113), + [anon_sym_data] = ACTIONS(4113), + [anon_sym_inner] = ACTIONS(4113), + [anon_sym_value] = ACTIONS(4113), + [anon_sym_override] = ACTIONS(4113), + [anon_sym_lateinit] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_private] = ACTIONS(4113), + [anon_sym_internal] = ACTIONS(4113), + [anon_sym_protected] = ACTIONS(4113), + [anon_sym_tailrec] = ACTIONS(4113), + [anon_sym_operator] = ACTIONS(4113), + [anon_sym_infix] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_external] = ACTIONS(4113), + [sym_property_modifier] = ACTIONS(4113), + [anon_sym_abstract] = ACTIONS(4113), + [anon_sym_final] = ACTIONS(4113), + [anon_sym_open] = ACTIONS(4113), + [anon_sym_vararg] = ACTIONS(4113), + [anon_sym_noinline] = ACTIONS(4113), + [anon_sym_crossinline] = ACTIONS(4113), + [anon_sym_expect] = ACTIONS(4113), + [anon_sym_actual] = ACTIONS(4113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4115), + [anon_sym_continue_AT] = ACTIONS(4115), + [anon_sym_break_AT] = ACTIONS(4115), + [anon_sym_this_AT] = ACTIONS(4115), + [anon_sym_super_AT] = ACTIONS(4115), + [sym_real_literal] = ACTIONS(4115), + [sym_integer_literal] = ACTIONS(4113), + [sym_hex_literal] = ACTIONS(4115), + [sym_bin_literal] = ACTIONS(4115), + [anon_sym_true] = ACTIONS(4113), + [anon_sym_false] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4115), + [sym_null_literal] = ACTIONS(4113), + [sym__backtick_identifier] = ACTIONS(4115), + [sym__automatic_semicolon] = ACTIONS(4115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4115), + }, + [2979] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4156), + [sym__quest] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [2980] = { + [sym_type_constraints] = STATE(3111), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6529), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [2981] = { + [sym_type_arguments] = STATE(3083), + [sym__alpha_identifier] = ACTIONS(4104), + [anon_sym_AT] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_RBRACK] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_RPAREN] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(6531), + [anon_sym_GT] = ACTIONS(4104), + [anon_sym_where] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_DASH_GT] = ACTIONS(4146), + [sym_label] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_DOT_DOT] = ACTIONS(4146), + [anon_sym_QMARK_COLON] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_PIPE_PIPE] = ACTIONS(4146), + [anon_sym_else] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4146), + [anon_sym_DASH_EQ] = ACTIONS(4146), + [anon_sym_STAR_EQ] = ACTIONS(4146), + [anon_sym_SLASH_EQ] = ACTIONS(4146), + [anon_sym_PERCENT_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4146), + [anon_sym_LT_EQ] = ACTIONS(4146), + [anon_sym_GT_EQ] = ACTIONS(4146), + [anon_sym_BANGin] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4104), + [anon_sym_BANGis] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_SLASH] = ACTIONS(4104), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_BANG_BANG] = ACTIONS(4146), + [anon_sym_suspend] = ACTIONS(4104), + [anon_sym_sealed] = ACTIONS(4104), + [anon_sym_annotation] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4104), + [anon_sym_inner] = ACTIONS(4104), + [anon_sym_value] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_lateinit] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_internal] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_tailrec] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_infix] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym_external] = ACTIONS(4104), + [sym_property_modifier] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_final] = ACTIONS(4104), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_vararg] = ACTIONS(4104), + [anon_sym_noinline] = ACTIONS(4104), + [anon_sym_crossinline] = ACTIONS(4104), + [anon_sym_expect] = ACTIONS(4104), + [anon_sym_actual] = ACTIONS(4104), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4146), + [sym_safe_nav] = ACTIONS(4146), + [sym_multiline_comment] = ACTIONS(3), + }, + [2982] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2983] = { + [sym__alpha_identifier] = ACTIONS(4457), + [anon_sym_AT] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4457), + [anon_sym_EQ] = ACTIONS(4457), + [anon_sym_LBRACE] = ACTIONS(4459), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_where] = ACTIONS(4457), + [anon_sym_object] = ACTIONS(4457), + [anon_sym_fun] = ACTIONS(4457), + [anon_sym_SEMI] = ACTIONS(4459), + [anon_sym_get] = ACTIONS(4457), + [anon_sym_set] = ACTIONS(4457), + [anon_sym_this] = ACTIONS(4457), + [anon_sym_super] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4457), + [anon_sym_DOT_DOT] = ACTIONS(4459), + [anon_sym_QMARK_COLON] = ACTIONS(4459), + [anon_sym_AMP_AMP] = ACTIONS(4459), + [anon_sym_PIPE_PIPE] = ACTIONS(4459), + [anon_sym_if] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4457), + [anon_sym_when] = ACTIONS(4457), + [anon_sym_try] = ACTIONS(4457), + [anon_sym_throw] = ACTIONS(4457), + [anon_sym_return] = ACTIONS(4457), + [anon_sym_continue] = ACTIONS(4457), + [anon_sym_break] = ACTIONS(4457), + [anon_sym_COLON_COLON] = ACTIONS(4459), + [anon_sym_PLUS_EQ] = ACTIONS(4459), + [anon_sym_DASH_EQ] = ACTIONS(4459), + [anon_sym_STAR_EQ] = ACTIONS(4459), + [anon_sym_SLASH_EQ] = ACTIONS(4459), + [anon_sym_PERCENT_EQ] = ACTIONS(4459), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), + [anon_sym_LT_EQ] = ACTIONS(4459), + [anon_sym_GT_EQ] = ACTIONS(4459), + [anon_sym_BANGin] = ACTIONS(4459), + [anon_sym_is] = ACTIONS(4457), + [anon_sym_BANGis] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_PERCENT] = ACTIONS(4457), + [anon_sym_as_QMARK] = ACTIONS(4459), + [anon_sym_PLUS_PLUS] = ACTIONS(4459), + [anon_sym_DASH_DASH] = ACTIONS(4459), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4459), + [anon_sym_data] = ACTIONS(4457), + [anon_sym_inner] = ACTIONS(4457), + [anon_sym_value] = ACTIONS(4457), + [anon_sym_expect] = ACTIONS(4457), + [anon_sym_actual] = ACTIONS(4457), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4459), + [anon_sym_continue_AT] = ACTIONS(4459), + [anon_sym_break_AT] = ACTIONS(4459), + [anon_sym_this_AT] = ACTIONS(4459), + [anon_sym_super_AT] = ACTIONS(4459), + [sym_real_literal] = ACTIONS(4459), + [sym_integer_literal] = ACTIONS(4457), + [sym_hex_literal] = ACTIONS(4459), + [sym_bin_literal] = ACTIONS(4459), + [aux_sym_unsigned_literal_token1] = ACTIONS(6533), + [anon_sym_L] = ACTIONS(6535), + [anon_sym_true] = ACTIONS(4457), + [anon_sym_false] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4459), + [sym_null_literal] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4459), + [sym__automatic_semicolon] = ACTIONS(4459), + [sym_safe_nav] = ACTIONS(4459), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4459), + }, + [2984] = { + [sym_getter] = STATE(4062), + [sym_setter] = STATE(4062), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [2985] = { + [aux_sym_user_type_repeat1] = STATE(2985), + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(6537), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [2986] = { + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [2987] = { + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [2988] = { + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [2989] = { + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [2990] = { + [aux_sym_user_type_repeat1] = STATE(2992), + [sym__alpha_identifier] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_RBRACK] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(6540), + [anon_sym_as] = ACTIONS(4113), + [anon_sym_EQ] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_COMMA] = ACTIONS(4115), + [anon_sym_RPAREN] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_where] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4115), + [anon_sym_get] = ACTIONS(4113), + [anon_sym_set] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + [sym__quest] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_DASH_GT] = ACTIONS(4115), + [sym_label] = ACTIONS(4115), + [anon_sym_in] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4113), + [anon_sym_DOT_DOT] = ACTIONS(4115), + [anon_sym_QMARK_COLON] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4115), + [anon_sym_PIPE_PIPE] = ACTIONS(4115), + [anon_sym_else] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4115), + [anon_sym_PLUS_EQ] = ACTIONS(4115), + [anon_sym_DASH_EQ] = ACTIONS(4115), + [anon_sym_STAR_EQ] = ACTIONS(4115), + [anon_sym_SLASH_EQ] = ACTIONS(4115), + [anon_sym_PERCENT_EQ] = ACTIONS(4115), + [anon_sym_BANG_EQ] = ACTIONS(4113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4115), + [anon_sym_EQ_EQ] = ACTIONS(4113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4115), + [anon_sym_LT_EQ] = ACTIONS(4115), + [anon_sym_GT_EQ] = ACTIONS(4115), + [anon_sym_BANGin] = ACTIONS(4115), + [anon_sym_is] = ACTIONS(4113), + [anon_sym_BANGis] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_SLASH] = ACTIONS(4113), + [anon_sym_PERCENT] = ACTIONS(4113), + [anon_sym_as_QMARK] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4115), + [anon_sym_BANG_BANG] = ACTIONS(4115), + [anon_sym_suspend] = ACTIONS(4113), + [anon_sym_sealed] = ACTIONS(4113), + [anon_sym_annotation] = ACTIONS(4113), + [anon_sym_data] = ACTIONS(4113), + [anon_sym_inner] = ACTIONS(4113), + [anon_sym_value] = ACTIONS(4113), + [anon_sym_override] = ACTIONS(4113), + [anon_sym_lateinit] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_private] = ACTIONS(4113), + [anon_sym_internal] = ACTIONS(4113), + [anon_sym_protected] = ACTIONS(4113), + [anon_sym_tailrec] = ACTIONS(4113), + [anon_sym_operator] = ACTIONS(4113), + [anon_sym_infix] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_external] = ACTIONS(4113), + [sym_property_modifier] = ACTIONS(4113), + [anon_sym_abstract] = ACTIONS(4113), + [anon_sym_final] = ACTIONS(4113), + [anon_sym_open] = ACTIONS(4113), + [anon_sym_vararg] = ACTIONS(4113), + [anon_sym_noinline] = ACTIONS(4113), + [anon_sym_crossinline] = ACTIONS(4113), + [anon_sym_expect] = ACTIONS(4113), + [anon_sym_actual] = ACTIONS(4113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4115), + [sym_safe_nav] = ACTIONS(4115), + [sym_multiline_comment] = ACTIONS(3), + }, + [2991] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [2992] = { + [aux_sym_user_type_repeat1] = STATE(2992), + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(6543), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_RPAREN] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_while] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + }, + [2993] = { + [aux_sym_user_type_repeat1] = STATE(2825), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6546), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [2994] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [2995] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(5081), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2996] = { + [sym_type_arguments] = STATE(6606), + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(6549), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(6551), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_object] = ACTIONS(4098), + [anon_sym_fun] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [anon_sym_this] = ACTIONS(4098), + [anon_sym_super] = ACTIONS(4098), + [sym__quest] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4100), + [sym_label] = ACTIONS(4098), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_if] = ACTIONS(4098), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_try] = ACTIONS(4098), + [anon_sym_throw] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4098), + [anon_sym_continue] = ACTIONS(4098), + [anon_sym_break] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4100), + [anon_sym_continue_AT] = ACTIONS(4100), + [anon_sym_break_AT] = ACTIONS(4100), + [anon_sym_this_AT] = ACTIONS(4100), + [anon_sym_super_AT] = ACTIONS(4100), + [sym_real_literal] = ACTIONS(4100), + [sym_integer_literal] = ACTIONS(4098), + [sym_hex_literal] = ACTIONS(4100), + [sym_bin_literal] = ACTIONS(4100), + [anon_sym_true] = ACTIONS(4098), + [anon_sym_false] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4100), + [sym_null_literal] = ACTIONS(4098), + [sym__backtick_identifier] = ACTIONS(4100), + [sym__automatic_semicolon] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4100), + }, + [2997] = { + [sym_getter] = STATE(4038), + [sym_setter] = STATE(4038), + [sym_modifiers] = STATE(9267), + [sym__modifier] = STATE(5668), + [sym_class_modifier] = STATE(5668), + [sym_member_modifier] = STATE(5668), + [sym_visibility_modifier] = STATE(5668), + [sym_function_modifier] = STATE(5668), + [sym_inheritance_modifier] = STATE(5668), + [sym_parameter_modifier] = STATE(5668), + [sym_platform_modifier] = STATE(5668), + [sym_annotation] = STATE(5668), + [sym__single_annotation] = STATE(5819), + [sym__multi_annotation] = STATE(5819), + [aux_sym_modifiers_repeat1] = STATE(5668), + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(6356), + [anon_sym_set] = ACTIONS(6358), + [anon_sym_STAR] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(3288), + [anon_sym_actual] = ACTIONS(3288), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [2998] = { + [sym__alpha_identifier] = ACTIONS(4553), + [anon_sym_AT] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_by] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4553), + [anon_sym_where] = ACTIONS(4553), + [anon_sym_object] = ACTIONS(4553), + [anon_sym_fun] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_get] = ACTIONS(4553), + [anon_sym_set] = ACTIONS(4553), + [anon_sym_this] = ACTIONS(4553), + [anon_sym_super] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4553), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4553), + [anon_sym_DOT_DOT] = ACTIONS(4555), + [anon_sym_QMARK_COLON] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_if] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4553), + [anon_sym_when] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4553), + [anon_sym_throw] = ACTIONS(4553), + [anon_sym_return] = ACTIONS(4553), + [anon_sym_continue] = ACTIONS(4553), + [anon_sym_break] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_PLUS_EQ] = ACTIONS(4555), + [anon_sym_DASH_EQ] = ACTIONS(4555), + [anon_sym_STAR_EQ] = ACTIONS(4555), + [anon_sym_SLASH_EQ] = ACTIONS(4555), + [anon_sym_PERCENT_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4555), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4555), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(4553), + [anon_sym_BANGis] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4553), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_as_QMARK] = ACTIONS(4555), + [anon_sym_PLUS_PLUS] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4553), + [anon_sym_BANG_BANG] = ACTIONS(4555), + [anon_sym_data] = ACTIONS(4553), + [anon_sym_inner] = ACTIONS(4553), + [anon_sym_value] = ACTIONS(4553), + [anon_sym_expect] = ACTIONS(4553), + [anon_sym_actual] = ACTIONS(4553), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4555), + [anon_sym_continue_AT] = ACTIONS(4555), + [anon_sym_break_AT] = ACTIONS(4555), + [anon_sym_this_AT] = ACTIONS(4555), + [anon_sym_super_AT] = ACTIONS(4555), + [sym_real_literal] = ACTIONS(4555), + [sym_integer_literal] = ACTIONS(4553), + [sym_hex_literal] = ACTIONS(4555), + [sym_bin_literal] = ACTIONS(4555), + [anon_sym_true] = ACTIONS(4553), + [anon_sym_false] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4555), + [sym_null_literal] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4555), + [sym__automatic_semicolon] = ACTIONS(4555), + [sym_safe_nav] = ACTIONS(4555), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4555), + }, + [2999] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_by] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym_null_literal] = ACTIONS(4710), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), + }, + [3000] = { + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_RPAREN] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_DASH_GT] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_while] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + }, + [3001] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(4005), + [anon_sym_DASH_EQ] = ACTIONS(4005), + [anon_sym_STAR_EQ] = ACTIONS(4005), + [anon_sym_SLASH_EQ] = ACTIONS(4005), + [anon_sym_PERCENT_EQ] = ACTIONS(4005), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + }, + [3002] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_RBRACK] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_RPAREN] = ACTIONS(4216), + [anon_sym_by] = ACTIONS(4214), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [sym__quest] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4216), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4216), + [anon_sym_QMARK_COLON] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4216), + [anon_sym_PLUS_EQ] = ACTIONS(4216), + [anon_sym_DASH_EQ] = ACTIONS(4216), + [anon_sym_STAR_EQ] = ACTIONS(4216), + [anon_sym_SLASH_EQ] = ACTIONS(4216), + [anon_sym_PERCENT_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4216), + [anon_sym_LT_EQ] = ACTIONS(4216), + [anon_sym_GT_EQ] = ACTIONS(4216), + [anon_sym_BANGin] = ACTIONS(4216), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4216), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4216), + [sym_safe_nav] = ACTIONS(4216), + [sym_multiline_comment] = ACTIONS(3), + }, + [3003] = { + [sym_type_constraints] = STATE(3305), + [sym_enum_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6553), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3004] = { + [sym_enum_class_body] = STATE(3124), + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_object] = ACTIONS(4694), + [anon_sym_fun] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_this] = ACTIONS(4694), + [anon_sym_super] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_when] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_throw] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_AT] = ACTIONS(4696), + [anon_sym_this_AT] = ACTIONS(4696), + [anon_sym_super_AT] = ACTIONS(4696), + [sym_real_literal] = ACTIONS(4696), + [sym_integer_literal] = ACTIONS(4694), + [sym_hex_literal] = ACTIONS(4696), + [sym_bin_literal] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4696), + [sym_null_literal] = ACTIONS(4694), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), + }, + [3005] = { + [sym_enum_class_body] = STATE(3132), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [anon_sym_this_AT] = ACTIONS(4392), + [anon_sym_super_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym_null_literal] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), + }, + [3006] = { + [sym_class_body] = STATE(3145), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_object] = ACTIONS(4632), + [anon_sym_fun] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_this] = ACTIONS(4632), + [anon_sym_super] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_when] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4634), + [anon_sym_continue_AT] = ACTIONS(4634), + [anon_sym_break_AT] = ACTIONS(4634), + [anon_sym_this_AT] = ACTIONS(4634), + [anon_sym_super_AT] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4634), + [sym_integer_literal] = ACTIONS(4632), + [sym_hex_literal] = ACTIONS(4634), + [sym_bin_literal] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_SQUOTE] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4634), + }, + [3007] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3008] = { + [sym_enum_class_body] = STATE(3145), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_object] = ACTIONS(4632), + [anon_sym_fun] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_this] = ACTIONS(4632), + [anon_sym_super] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_when] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4634), + [anon_sym_continue_AT] = ACTIONS(4634), + [anon_sym_break_AT] = ACTIONS(4634), + [anon_sym_this_AT] = ACTIONS(4634), + [anon_sym_super_AT] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4634), + [sym_integer_literal] = ACTIONS(4632), + [sym_hex_literal] = ACTIONS(4634), + [sym_bin_literal] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_SQUOTE] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4634), + }, + [3009] = { + [sym_function_body] = STATE(3619), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(6557), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_DASH_GT] = ACTIONS(4172), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_while] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3010] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_RBRACK] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_RPAREN] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_DASH_GT] = ACTIONS(4212), + [sym_label] = ACTIONS(4212), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + }, + [3011] = { + [sym_enum_class_body] = STATE(3150), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_object] = ACTIONS(4386), + [anon_sym_fun] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_this] = ACTIONS(4386), + [anon_sym_super] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4386), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_when] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4388), + [anon_sym_continue_AT] = ACTIONS(4388), + [anon_sym_break_AT] = ACTIONS(4388), + [anon_sym_this_AT] = ACTIONS(4388), + [anon_sym_super_AT] = ACTIONS(4388), + [sym_real_literal] = ACTIONS(4388), + [sym_integer_literal] = ACTIONS(4386), + [sym_hex_literal] = ACTIONS(4388), + [sym_bin_literal] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_SQUOTE] = ACTIONS(4388), + [sym_null_literal] = ACTIONS(4386), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4388), + }, + [3012] = { + [sym_class_body] = STATE(3168), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [3013] = { + [sym_enum_class_body] = STATE(3168), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [3014] = { + [sym_class_body] = STATE(3173), + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_object] = ACTIONS(4582), + [anon_sym_fun] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_this] = ACTIONS(4582), + [anon_sym_super] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [sym_label] = ACTIONS(4582), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_when] = ACTIONS(4582), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_throw] = ACTIONS(4582), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4584), + [anon_sym_continue_AT] = ACTIONS(4584), + [anon_sym_break_AT] = ACTIONS(4584), + [anon_sym_this_AT] = ACTIONS(4584), + [anon_sym_super_AT] = ACTIONS(4584), + [sym_real_literal] = ACTIONS(4584), + [sym_integer_literal] = ACTIONS(4582), + [sym_hex_literal] = ACTIONS(4584), + [sym_bin_literal] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_SQUOTE] = ACTIONS(4584), + [sym_null_literal] = ACTIONS(4582), + [sym__backtick_identifier] = ACTIONS(4584), + [sym__automatic_semicolon] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4584), + }, + [3015] = { + [sym__alpha_identifier] = ACTIONS(4578), + [anon_sym_AT] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_as] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_where] = ACTIONS(4578), + [anon_sym_object] = ACTIONS(4578), + [anon_sym_fun] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_get] = ACTIONS(4578), + [anon_sym_set] = ACTIONS(4578), + [anon_sym_this] = ACTIONS(4578), + [anon_sym_super] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4578), + [sym_label] = ACTIONS(4578), + [anon_sym_in] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4580), + [anon_sym_QMARK_COLON] = ACTIONS(4580), + [anon_sym_AMP_AMP] = ACTIONS(4580), + [anon_sym_PIPE_PIPE] = ACTIONS(4580), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_when] = ACTIONS(4578), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_throw] = ACTIONS(4578), + [anon_sym_return] = ACTIONS(4578), + [anon_sym_continue] = ACTIONS(4578), + [anon_sym_break] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_PERCENT_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4580), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_BANGin] = ACTIONS(4580), + [anon_sym_is] = ACTIONS(4578), + [anon_sym_BANGis] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_as_QMARK] = ACTIONS(4580), + [anon_sym_PLUS_PLUS] = ACTIONS(4580), + [anon_sym_DASH_DASH] = ACTIONS(4580), + [anon_sym_BANG] = ACTIONS(4578), + [anon_sym_BANG_BANG] = ACTIONS(4580), + [anon_sym_data] = ACTIONS(4578), + [anon_sym_inner] = ACTIONS(4578), + [anon_sym_value] = ACTIONS(4578), + [anon_sym_expect] = ACTIONS(4578), + [anon_sym_actual] = ACTIONS(4578), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4580), + [anon_sym_continue_AT] = ACTIONS(4580), + [anon_sym_break_AT] = ACTIONS(4580), + [anon_sym_this_AT] = ACTIONS(4580), + [anon_sym_super_AT] = ACTIONS(4580), + [sym_real_literal] = ACTIONS(4580), + [sym_integer_literal] = ACTIONS(4578), + [sym_hex_literal] = ACTIONS(4580), + [sym_bin_literal] = ACTIONS(4580), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_SQUOTE] = ACTIONS(4580), + [sym_null_literal] = ACTIONS(4578), + [sym__backtick_identifier] = ACTIONS(4580), + [sym__automatic_semicolon] = ACTIONS(4580), + [sym_safe_nav] = ACTIONS(4580), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4580), + }, + [3016] = { + [sym_enum_class_body] = STATE(3181), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [3017] = { + [sym_class_body] = STATE(3218), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [3018] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3031), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [3019] = { + [sym_function_body] = STATE(3093), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [3020] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_STAR_EQ] = ACTIONS(3985), + [anon_sym_SLASH_EQ] = ACTIONS(3985), + [anon_sym_PERCENT_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + }, + [3021] = { + [sym_function_body] = STATE(3513), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_RBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [3022] = { + [sym_enum_class_body] = STATE(3218), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [3023] = { + [aux_sym_type_constraints_repeat1] = STATE(3023), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [3024] = { + [sym_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym_null_literal] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3025] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_object] = ACTIONS(4519), + [anon_sym_fun] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_this] = ACTIONS(4519), + [anon_sym_super] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(4519), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_if] = ACTIONS(4519), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_when] = ACTIONS(4519), + [anon_sym_try] = ACTIONS(4519), + [anon_sym_throw] = ACTIONS(4519), + [anon_sym_return] = ACTIONS(4519), + [anon_sym_continue] = ACTIONS(4519), + [anon_sym_break] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4521), + [anon_sym_continue_AT] = ACTIONS(4521), + [anon_sym_break_AT] = ACTIONS(4521), + [anon_sym_this_AT] = ACTIONS(4521), + [anon_sym_super_AT] = ACTIONS(4521), + [sym_real_literal] = ACTIONS(4521), + [sym_integer_literal] = ACTIONS(4519), + [sym_hex_literal] = ACTIONS(4521), + [sym_bin_literal] = ACTIONS(4521), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [anon_sym_SQUOTE] = ACTIONS(4521), + [sym_null_literal] = ACTIONS(4519), + [sym__backtick_identifier] = ACTIONS(4521), + [sym__automatic_semicolon] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4521), + }, + [3026] = { + [sym_class_body] = STATE(3234), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_object] = ACTIONS(4515), + [anon_sym_fun] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_this] = ACTIONS(4515), + [anon_sym_super] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [sym_label] = ACTIONS(4515), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_if] = ACTIONS(4515), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_when] = ACTIONS(4515), + [anon_sym_try] = ACTIONS(4515), + [anon_sym_throw] = ACTIONS(4515), + [anon_sym_return] = ACTIONS(4515), + [anon_sym_continue] = ACTIONS(4515), + [anon_sym_break] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4517), + [anon_sym_continue_AT] = ACTIONS(4517), + [anon_sym_break_AT] = ACTIONS(4517), + [anon_sym_this_AT] = ACTIONS(4517), + [anon_sym_super_AT] = ACTIONS(4517), + [sym_real_literal] = ACTIONS(4517), + [sym_integer_literal] = ACTIONS(4515), + [sym_hex_literal] = ACTIONS(4517), + [sym_bin_literal] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4515), + [sym__backtick_identifier] = ACTIONS(4517), + [sym__automatic_semicolon] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4517), + }, + [3027] = { + [sym_enum_class_body] = STATE(3235), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [3028] = { + [sym_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3029] = { + [sym__alpha_identifier] = ACTIONS(4640), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_as] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_where] = ACTIONS(4640), + [anon_sym_object] = ACTIONS(4640), + [anon_sym_fun] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_get] = ACTIONS(4640), + [anon_sym_set] = ACTIONS(4640), + [anon_sym_this] = ACTIONS(4640), + [anon_sym_super] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4640), + [sym_label] = ACTIONS(4640), + [anon_sym_in] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4642), + [anon_sym_QMARK_COLON] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_PIPE_PIPE] = ACTIONS(4642), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_when] = ACTIONS(4640), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_throw] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_PERCENT_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4640), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ] = ACTIONS(4640), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4642), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_BANGin] = ACTIONS(4642), + [anon_sym_is] = ACTIONS(4640), + [anon_sym_BANGis] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_PERCENT] = ACTIONS(4640), + [anon_sym_as_QMARK] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_BANG_BANG] = ACTIONS(4642), + [anon_sym_data] = ACTIONS(4640), + [anon_sym_inner] = ACTIONS(4640), + [anon_sym_value] = ACTIONS(4640), + [anon_sym_expect] = ACTIONS(4640), + [anon_sym_actual] = ACTIONS(4640), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4642), + [anon_sym_continue_AT] = ACTIONS(4642), + [anon_sym_break_AT] = ACTIONS(4642), + [anon_sym_this_AT] = ACTIONS(4642), + [anon_sym_super_AT] = ACTIONS(4642), + [sym_real_literal] = ACTIONS(4642), + [sym_integer_literal] = ACTIONS(4640), + [sym_hex_literal] = ACTIONS(4642), + [sym_bin_literal] = ACTIONS(4642), + [anon_sym_true] = ACTIONS(4640), + [anon_sym_false] = ACTIONS(4640), + [anon_sym_SQUOTE] = ACTIONS(4642), + [sym_null_literal] = ACTIONS(4640), + [sym__backtick_identifier] = ACTIONS(4642), + [sym__automatic_semicolon] = ACTIONS(4642), + [sym_safe_nav] = ACTIONS(4642), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4642), + }, + [3030] = { + [sym_annotated_lambda] = STATE(3958), + [sym_lambda_literal] = STATE(3983), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_suspend] = ACTIONS(3964), + [anon_sym_sealed] = ACTIONS(3964), + [anon_sym_annotation] = ACTIONS(3964), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_override] = ACTIONS(3964), + [anon_sym_lateinit] = ACTIONS(3964), + [anon_sym_public] = ACTIONS(3964), + [anon_sym_private] = ACTIONS(3964), + [anon_sym_internal] = ACTIONS(3964), + [anon_sym_protected] = ACTIONS(3964), + [anon_sym_tailrec] = ACTIONS(3964), + [anon_sym_operator] = ACTIONS(3964), + [anon_sym_infix] = ACTIONS(3964), + [anon_sym_inline] = ACTIONS(3964), + [anon_sym_external] = ACTIONS(3964), + [sym_property_modifier] = ACTIONS(3964), + [anon_sym_abstract] = ACTIONS(3964), + [anon_sym_final] = ACTIONS(3964), + [anon_sym_open] = ACTIONS(3964), + [anon_sym_vararg] = ACTIONS(3964), + [anon_sym_noinline] = ACTIONS(3964), + [anon_sym_crossinline] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3966), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + }, + [3031] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3031), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_object] = ACTIONS(4557), + [anon_sym_fun] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_this] = ACTIONS(4557), + [anon_sym_super] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_when] = ACTIONS(4557), + [anon_sym_try] = ACTIONS(4557), + [anon_sym_throw] = ACTIONS(4557), + [anon_sym_return] = ACTIONS(4557), + [anon_sym_continue] = ACTIONS(4557), + [anon_sym_break] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4559), + [anon_sym_continue_AT] = ACTIONS(4559), + [anon_sym_break_AT] = ACTIONS(4559), + [anon_sym_this_AT] = ACTIONS(4559), + [anon_sym_super_AT] = ACTIONS(4559), + [sym_real_literal] = ACTIONS(4559), + [sym_integer_literal] = ACTIONS(4557), + [sym_hex_literal] = ACTIONS(4559), + [sym_bin_literal] = ACTIONS(4559), + [anon_sym_true] = ACTIONS(4557), + [anon_sym_false] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4559), + [sym_null_literal] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4559), + }, + [3032] = { + [sym__alpha_identifier] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_by] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_where] = ACTIONS(4523), + [anon_sym_object] = ACTIONS(4523), + [anon_sym_fun] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_get] = ACTIONS(4523), + [anon_sym_set] = ACTIONS(4523), + [anon_sym_this] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [sym_label] = ACTIONS(4523), + [anon_sym_in] = ACTIONS(4523), + [anon_sym_DOT_DOT] = ACTIONS(4525), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4523), + [anon_sym_else] = ACTIONS(4523), + [anon_sym_when] = ACTIONS(4523), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_throw] = ACTIONS(4523), + [anon_sym_return] = ACTIONS(4523), + [anon_sym_continue] = ACTIONS(4523), + [anon_sym_break] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_BANGin] = ACTIONS(4525), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_BANGis] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_as_QMARK] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_BANG_BANG] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4523), + [anon_sym_inner] = ACTIONS(4523), + [anon_sym_value] = ACTIONS(4523), + [anon_sym_expect] = ACTIONS(4523), + [anon_sym_actual] = ACTIONS(4523), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4525), + [anon_sym_continue_AT] = ACTIONS(4525), + [anon_sym_break_AT] = ACTIONS(4525), + [anon_sym_this_AT] = ACTIONS(4525), + [anon_sym_super_AT] = ACTIONS(4525), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_SQUOTE] = ACTIONS(4525), + [sym_null_literal] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(4525), + [sym__automatic_semicolon] = ACTIONS(4525), + [sym_safe_nav] = ACTIONS(4525), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4525), + }, + [3033] = { + [aux_sym_type_constraints_repeat1] = STATE(3023), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [3034] = { + [sym__alpha_identifier] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_by] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_where] = ACTIONS(4686), + [anon_sym_object] = ACTIONS(4686), + [anon_sym_fun] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4686), + [anon_sym_this] = ACTIONS(4686), + [anon_sym_super] = ACTIONS(4686), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4688), + [anon_sym_QMARK_COLON] = ACTIONS(4688), + [anon_sym_AMP_AMP] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4688), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_when] = ACTIONS(4686), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_throw] = ACTIONS(4686), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_PERCENT_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_BANGin] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_BANGis] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4688), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_BANG_BANG] = ACTIONS(4688), + [anon_sym_data] = ACTIONS(4686), + [anon_sym_inner] = ACTIONS(4686), + [anon_sym_value] = ACTIONS(4686), + [anon_sym_expect] = ACTIONS(4686), + [anon_sym_actual] = ACTIONS(4686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4688), + [anon_sym_continue_AT] = ACTIONS(4688), + [anon_sym_break_AT] = ACTIONS(4688), + [anon_sym_this_AT] = ACTIONS(4688), + [anon_sym_super_AT] = ACTIONS(4688), + [sym_real_literal] = ACTIONS(4688), + [sym_integer_literal] = ACTIONS(4686), + [sym_hex_literal] = ACTIONS(4688), + [sym_bin_literal] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_SQUOTE] = ACTIONS(4688), + [sym_null_literal] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4688), + [sym__automatic_semicolon] = ACTIONS(4688), + [sym_safe_nav] = ACTIONS(4688), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4688), + }, + [3035] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_object] = ACTIONS(4672), + [anon_sym_fun] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_this] = ACTIONS(4672), + [anon_sym_super] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_when] = ACTIONS(4672), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_throw] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4674), + [anon_sym_continue_AT] = ACTIONS(4674), + [anon_sym_break_AT] = ACTIONS(4674), + [anon_sym_this_AT] = ACTIONS(4674), + [anon_sym_super_AT] = ACTIONS(4674), + [sym_real_literal] = ACTIONS(4674), + [sym_integer_literal] = ACTIONS(4672), + [sym_hex_literal] = ACTIONS(4674), + [sym_bin_literal] = ACTIONS(4674), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym_null_literal] = ACTIONS(4672), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4674), + }, + [3036] = { + [sym_enum_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3037] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_object] = ACTIONS(4660), + [anon_sym_fun] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_this] = ACTIONS(4660), + [anon_sym_super] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4660), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_when] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4660), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4662), + [anon_sym_continue_AT] = ACTIONS(4662), + [anon_sym_break_AT] = ACTIONS(4662), + [anon_sym_this_AT] = ACTIONS(4662), + [anon_sym_super_AT] = ACTIONS(4662), + [sym_real_literal] = ACTIONS(4662), + [sym_integer_literal] = ACTIONS(4660), + [sym_hex_literal] = ACTIONS(4662), + [sym_bin_literal] = ACTIONS(4662), + [anon_sym_true] = ACTIONS(4660), + [anon_sym_false] = ACTIONS(4660), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym_null_literal] = ACTIONS(4660), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4662), + }, + [3038] = { + [sym__alpha_identifier] = ACTIONS(4539), + [anon_sym_AT] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_as] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(4539), + [anon_sym_object] = ACTIONS(4539), + [anon_sym_fun] = ACTIONS(4539), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym_get] = ACTIONS(4539), + [anon_sym_set] = ACTIONS(4539), + [anon_sym_this] = ACTIONS(4539), + [anon_sym_super] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [sym_label] = ACTIONS(4539), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_if] = ACTIONS(4539), + [anon_sym_else] = ACTIONS(4539), + [anon_sym_when] = ACTIONS(4539), + [anon_sym_try] = ACTIONS(4539), + [anon_sym_throw] = ACTIONS(4539), + [anon_sym_return] = ACTIONS(4539), + [anon_sym_continue] = ACTIONS(4539), + [anon_sym_break] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4539), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), + [anon_sym_EQ_EQ] = ACTIONS(4539), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_BANGin] = ACTIONS(4541), + [anon_sym_is] = ACTIONS(4539), + [anon_sym_BANGis] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_as_QMARK] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_BANG] = ACTIONS(4539), + [anon_sym_BANG_BANG] = ACTIONS(4541), + [anon_sym_data] = ACTIONS(4539), + [anon_sym_inner] = ACTIONS(4539), + [anon_sym_value] = ACTIONS(4539), + [anon_sym_expect] = ACTIONS(4539), + [anon_sym_actual] = ACTIONS(4539), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4541), + [anon_sym_continue_AT] = ACTIONS(4541), + [anon_sym_break_AT] = ACTIONS(4541), + [anon_sym_this_AT] = ACTIONS(4541), + [anon_sym_super_AT] = ACTIONS(4541), + [sym_real_literal] = ACTIONS(4541), + [sym_integer_literal] = ACTIONS(4539), + [sym_hex_literal] = ACTIONS(4541), + [sym_bin_literal] = ACTIONS(4541), + [anon_sym_true] = ACTIONS(4539), + [anon_sym_false] = ACTIONS(4539), + [anon_sym_SQUOTE] = ACTIONS(4541), + [sym_null_literal] = ACTIONS(4539), + [sym__backtick_identifier] = ACTIONS(4541), + [sym__automatic_semicolon] = ACTIONS(4541), + [sym_safe_nav] = ACTIONS(4541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4541), + }, + [3039] = { + [sym_class_body] = STATE(3289), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_object] = ACTIONS(4311), + [anon_sym_fun] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_this] = ACTIONS(4311), + [anon_sym_super] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4311), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_throw] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4313), + [anon_sym_continue_AT] = ACTIONS(4313), + [anon_sym_break_AT] = ACTIONS(4313), + [anon_sym_this_AT] = ACTIONS(4313), + [anon_sym_super_AT] = ACTIONS(4313), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4313), + [sym_null_literal] = ACTIONS(4311), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4313), + }, + [3040] = { + [sym_class_body] = STATE(3257), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3041] = { + [sym_class_body] = STATE(3436), + [sym_type_constraints] = STATE(3363), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3042] = { + [aux_sym_nullable_type_repeat1] = STATE(3042), + [sym__alpha_identifier] = ACTIONS(4268), + [anon_sym_AT] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_RBRACK] = ACTIONS(4270), + [anon_sym_DOT] = ACTIONS(4268), + [anon_sym_as] = ACTIONS(4268), + [anon_sym_EQ] = ACTIONS(4268), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_COMMA] = ACTIONS(4270), + [anon_sym_RPAREN] = ACTIONS(4270), + [anon_sym_by] = ACTIONS(4268), + [anon_sym_LT] = ACTIONS(4268), + [anon_sym_GT] = ACTIONS(4268), + [anon_sym_where] = ACTIONS(4268), + [anon_sym_SEMI] = ACTIONS(4270), + [anon_sym_get] = ACTIONS(4268), + [anon_sym_set] = ACTIONS(4268), + [sym__quest] = ACTIONS(6571), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_DASH_GT] = ACTIONS(4270), + [sym_label] = ACTIONS(4270), + [anon_sym_in] = ACTIONS(4268), + [anon_sym_while] = ACTIONS(4268), + [anon_sym_DOT_DOT] = ACTIONS(4270), + [anon_sym_QMARK_COLON] = ACTIONS(4270), + [anon_sym_AMP_AMP] = ACTIONS(4270), + [anon_sym_PIPE_PIPE] = ACTIONS(4270), + [anon_sym_else] = ACTIONS(4268), + [anon_sym_COLON_COLON] = ACTIONS(4270), + [anon_sym_PLUS_EQ] = ACTIONS(4270), + [anon_sym_DASH_EQ] = ACTIONS(4270), + [anon_sym_STAR_EQ] = ACTIONS(4270), + [anon_sym_SLASH_EQ] = ACTIONS(4270), + [anon_sym_PERCENT_EQ] = ACTIONS(4270), + [anon_sym_BANG_EQ] = ACTIONS(4268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), + [anon_sym_EQ_EQ] = ACTIONS(4268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), + [anon_sym_LT_EQ] = ACTIONS(4270), + [anon_sym_GT_EQ] = ACTIONS(4270), + [anon_sym_BANGin] = ACTIONS(4270), + [anon_sym_is] = ACTIONS(4268), + [anon_sym_BANGis] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4268), + [anon_sym_SLASH] = ACTIONS(4268), + [anon_sym_PERCENT] = ACTIONS(4268), + [anon_sym_as_QMARK] = ACTIONS(4270), + [anon_sym_PLUS_PLUS] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4270), + [anon_sym_BANG_BANG] = ACTIONS(4270), + [anon_sym_suspend] = ACTIONS(4268), + [anon_sym_sealed] = ACTIONS(4268), + [anon_sym_annotation] = ACTIONS(4268), + [anon_sym_data] = ACTIONS(4268), + [anon_sym_inner] = ACTIONS(4268), + [anon_sym_value] = ACTIONS(4268), + [anon_sym_override] = ACTIONS(4268), + [anon_sym_lateinit] = ACTIONS(4268), + [anon_sym_public] = ACTIONS(4268), + [anon_sym_private] = ACTIONS(4268), + [anon_sym_internal] = ACTIONS(4268), + [anon_sym_protected] = ACTIONS(4268), + [anon_sym_tailrec] = ACTIONS(4268), + [anon_sym_operator] = ACTIONS(4268), + [anon_sym_infix] = ACTIONS(4268), + [anon_sym_inline] = ACTIONS(4268), + [anon_sym_external] = ACTIONS(4268), + [sym_property_modifier] = ACTIONS(4268), + [anon_sym_abstract] = ACTIONS(4268), + [anon_sym_final] = ACTIONS(4268), + [anon_sym_open] = ACTIONS(4268), + [anon_sym_vararg] = ACTIONS(4268), + [anon_sym_noinline] = ACTIONS(4268), + [anon_sym_crossinline] = ACTIONS(4268), + [anon_sym_expect] = ACTIONS(4268), + [anon_sym_actual] = ACTIONS(4268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4270), + [sym_safe_nav] = ACTIONS(4270), + [sym_multiline_comment] = ACTIONS(3), + }, + [3043] = { + [sym_class_body] = STATE(3467), + [sym_type_constraints] = STATE(3313), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(6574), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_DASH_GT] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3044] = { + [aux_sym_nullable_type_repeat1] = STATE(3058), + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_RBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_RPAREN] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [sym__quest] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4264), + [sym_label] = ACTIONS(4264), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_while] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + }, + [3045] = { + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3046] = { + [sym_class_body] = STATE(3262), + [sym__alpha_identifier] = ACTIONS(4535), + [anon_sym_AT] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_where] = ACTIONS(4535), + [anon_sym_object] = ACTIONS(4535), + [anon_sym_fun] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_get] = ACTIONS(4535), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_this] = ACTIONS(4535), + [anon_sym_super] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [sym_label] = ACTIONS(4535), + [anon_sym_in] = ACTIONS(4535), + [anon_sym_DOT_DOT] = ACTIONS(4537), + [anon_sym_QMARK_COLON] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_if] = ACTIONS(4535), + [anon_sym_else] = ACTIONS(4535), + [anon_sym_when] = ACTIONS(4535), + [anon_sym_try] = ACTIONS(4535), + [anon_sym_throw] = ACTIONS(4535), + [anon_sym_return] = ACTIONS(4535), + [anon_sym_continue] = ACTIONS(4535), + [anon_sym_break] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), + [anon_sym_EQ_EQ] = ACTIONS(4535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(4535), + [anon_sym_BANGis] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_as_QMARK] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_BANG_BANG] = ACTIONS(4537), + [anon_sym_data] = ACTIONS(4535), + [anon_sym_inner] = ACTIONS(4535), + [anon_sym_value] = ACTIONS(4535), + [anon_sym_expect] = ACTIONS(4535), + [anon_sym_actual] = ACTIONS(4535), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4537), + [anon_sym_continue_AT] = ACTIONS(4537), + [anon_sym_break_AT] = ACTIONS(4537), + [anon_sym_this_AT] = ACTIONS(4537), + [anon_sym_super_AT] = ACTIONS(4537), + [sym_real_literal] = ACTIONS(4537), + [sym_integer_literal] = ACTIONS(4535), + [sym_hex_literal] = ACTIONS(4537), + [sym_bin_literal] = ACTIONS(4537), + [anon_sym_true] = ACTIONS(4535), + [anon_sym_false] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4537), + [sym_null_literal] = ACTIONS(4535), + [sym__backtick_identifier] = ACTIONS(4537), + [sym__automatic_semicolon] = ACTIONS(4537), + [sym_safe_nav] = ACTIONS(4537), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4537), + }, + [3047] = { + [sym_class_body] = STATE(3465), + [sym_type_constraints] = STATE(3330), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3048] = { + [sym_enum_class_body] = STATE(3257), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3049] = { + [sym_class_body] = STATE(3248), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [3050] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_object] = ACTIONS(4698), + [anon_sym_fun] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_this] = ACTIONS(4698), + [anon_sym_super] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4698), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_if] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_when] = ACTIONS(4698), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_throw] = ACTIONS(4698), + [anon_sym_return] = ACTIONS(4698), + [anon_sym_continue] = ACTIONS(4698), + [anon_sym_break] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_value] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4700), + [anon_sym_continue_AT] = ACTIONS(4700), + [anon_sym_break_AT] = ACTIONS(4700), + [anon_sym_this_AT] = ACTIONS(4700), + [anon_sym_super_AT] = ACTIONS(4700), + [sym_real_literal] = ACTIONS(4700), + [sym_integer_literal] = ACTIONS(4698), + [sym_hex_literal] = ACTIONS(4700), + [sym_bin_literal] = ACTIONS(4700), + [anon_sym_true] = ACTIONS(4698), + [anon_sym_false] = ACTIONS(4698), + [anon_sym_SQUOTE] = ACTIONS(4700), + [sym_null_literal] = ACTIONS(4698), + [sym__backtick_identifier] = ACTIONS(4700), + [sym__automatic_semicolon] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4700), + }, + [3051] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym_null_literal] = ACTIONS(4690), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [3052] = { + [aux_sym_nullable_type_repeat1] = STATE(3058), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [sym__quest] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_while] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [3053] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6578), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + }, + [3054] = { + [sym_class_body] = STATE(3449), + [sym_type_constraints] = STATE(3388), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6580), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3055] = { + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3056] = { + [sym_type_constraints] = STATE(3381), + [sym_enum_class_body] = STATE(3429), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(6582), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3057] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3031), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(6584), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [3058] = { + [aux_sym_nullable_type_repeat1] = STATE(3042), + [sym__alpha_identifier] = ACTIONS(4254), + [anon_sym_AT] = ACTIONS(4256), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_RBRACK] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_as] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_RPAREN] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4254), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_GT] = ACTIONS(4254), + [anon_sym_where] = ACTIONS(4254), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym_get] = ACTIONS(4254), + [anon_sym_set] = ACTIONS(4254), + [sym__quest] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_DASH_GT] = ACTIONS(4256), + [sym_label] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4254), + [anon_sym_while] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_QMARK_COLON] = ACTIONS(4256), + [anon_sym_AMP_AMP] = ACTIONS(4256), + [anon_sym_PIPE_PIPE] = ACTIONS(4256), + [anon_sym_else] = ACTIONS(4254), + [anon_sym_COLON_COLON] = ACTIONS(4256), + [anon_sym_PLUS_EQ] = ACTIONS(4256), + [anon_sym_DASH_EQ] = ACTIONS(4256), + [anon_sym_STAR_EQ] = ACTIONS(4256), + [anon_sym_SLASH_EQ] = ACTIONS(4256), + [anon_sym_PERCENT_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), + [anon_sym_LT_EQ] = ACTIONS(4256), + [anon_sym_GT_EQ] = ACTIONS(4256), + [anon_sym_BANGin] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4254), + [anon_sym_BANGis] = ACTIONS(4256), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), + [anon_sym_as_QMARK] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_BANG_BANG] = ACTIONS(4256), + [anon_sym_suspend] = ACTIONS(4254), + [anon_sym_sealed] = ACTIONS(4254), + [anon_sym_annotation] = ACTIONS(4254), + [anon_sym_data] = ACTIONS(4254), + [anon_sym_inner] = ACTIONS(4254), + [anon_sym_value] = ACTIONS(4254), + [anon_sym_override] = ACTIONS(4254), + [anon_sym_lateinit] = ACTIONS(4254), + [anon_sym_public] = ACTIONS(4254), + [anon_sym_private] = ACTIONS(4254), + [anon_sym_internal] = ACTIONS(4254), + [anon_sym_protected] = ACTIONS(4254), + [anon_sym_tailrec] = ACTIONS(4254), + [anon_sym_operator] = ACTIONS(4254), + [anon_sym_infix] = ACTIONS(4254), + [anon_sym_inline] = ACTIONS(4254), + [anon_sym_external] = ACTIONS(4254), + [sym_property_modifier] = ACTIONS(4254), + [anon_sym_abstract] = ACTIONS(4254), + [anon_sym_final] = ACTIONS(4254), + [anon_sym_open] = ACTIONS(4254), + [anon_sym_vararg] = ACTIONS(4254), + [anon_sym_noinline] = ACTIONS(4254), + [anon_sym_crossinline] = ACTIONS(4254), + [anon_sym_expect] = ACTIONS(4254), + [anon_sym_actual] = ACTIONS(4254), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4256), + [sym_safe_nav] = ACTIONS(4256), + [sym_multiline_comment] = ACTIONS(3), + }, + [3059] = { + [sym_function_body] = STATE(3239), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [3060] = { + [sym_annotated_lambda] = STATE(3924), + [sym_lambda_literal] = STATE(3983), + [sym_annotation] = STATE(8401), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8401), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [3061] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(6511), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3062] = { + [sym_class_body] = STATE(3214), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [3063] = { + [sym__alpha_identifier] = ACTIONS(4636), + [anon_sym_AT] = ACTIONS(4638), + [anon_sym_COLON] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_as] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_where] = ACTIONS(4636), + [anon_sym_object] = ACTIONS(4636), + [anon_sym_fun] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym_get] = ACTIONS(4636), + [anon_sym_set] = ACTIONS(4636), + [anon_sym_this] = ACTIONS(4636), + [anon_sym_super] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4636), + [sym_label] = ACTIONS(4636), + [anon_sym_in] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4638), + [anon_sym_QMARK_COLON] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_PIPE_PIPE] = ACTIONS(4638), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_when] = ACTIONS(4636), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_throw] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_PERCENT_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4636), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_BANGin] = ACTIONS(4638), + [anon_sym_is] = ACTIONS(4636), + [anon_sym_BANGis] = ACTIONS(4638), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(4636), + [anon_sym_as_QMARK] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_BANG_BANG] = ACTIONS(4638), + [anon_sym_data] = ACTIONS(4636), + [anon_sym_inner] = ACTIONS(4636), + [anon_sym_value] = ACTIONS(4636), + [anon_sym_expect] = ACTIONS(4636), + [anon_sym_actual] = ACTIONS(4636), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4638), + [anon_sym_continue_AT] = ACTIONS(4638), + [anon_sym_break_AT] = ACTIONS(4638), + [anon_sym_this_AT] = ACTIONS(4638), + [anon_sym_super_AT] = ACTIONS(4638), + [sym_real_literal] = ACTIONS(4638), + [sym_integer_literal] = ACTIONS(4636), + [sym_hex_literal] = ACTIONS(4638), + [sym_bin_literal] = ACTIONS(4638), + [anon_sym_true] = ACTIONS(4636), + [anon_sym_false] = ACTIONS(4636), + [anon_sym_SQUOTE] = ACTIONS(4638), + [sym_null_literal] = ACTIONS(4636), + [sym__backtick_identifier] = ACTIONS(4638), + [sym__automatic_semicolon] = ACTIONS(4638), + [sym_safe_nav] = ACTIONS(4638), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4638), + }, + [3064] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_this] = ACTIONS(4652), + [anon_sym_super] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4652), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_when] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [anon_sym_AT2] = ACTIONS(6590), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_null_literal] = ACTIONS(4652), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), + }, + [3065] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3066] = { + [sym_type_constraints] = STATE(3141), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3067] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3057), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(6584), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_object] = ACTIONS(4549), + [anon_sym_fun] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_this] = ACTIONS(4549), + [anon_sym_super] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4549), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_when] = ACTIONS(4549), + [anon_sym_try] = ACTIONS(4549), + [anon_sym_throw] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4549), + [anon_sym_continue] = ACTIONS(4549), + [anon_sym_break] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_PLUS_EQ] = ACTIONS(4551), + [anon_sym_DASH_EQ] = ACTIONS(4551), + [anon_sym_STAR_EQ] = ACTIONS(4551), + [anon_sym_SLASH_EQ] = ACTIONS(4551), + [anon_sym_PERCENT_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4551), + [anon_sym_continue_AT] = ACTIONS(4551), + [anon_sym_break_AT] = ACTIONS(4551), + [anon_sym_this_AT] = ACTIONS(4551), + [anon_sym_super_AT] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4551), + [sym_integer_literal] = ACTIONS(4549), + [sym_hex_literal] = ACTIONS(4551), + [sym_bin_literal] = ACTIONS(4551), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [anon_sym_SQUOTE] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4551), + [sym__automatic_semicolon] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4551), + }, + [3068] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6594), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + }, + [3069] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_object] = ACTIONS(4543), + [anon_sym_fun] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_this] = ACTIONS(4543), + [anon_sym_super] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4543), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_if] = ACTIONS(4543), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_when] = ACTIONS(4543), + [anon_sym_try] = ACTIONS(4543), + [anon_sym_throw] = ACTIONS(4543), + [anon_sym_return] = ACTIONS(4543), + [anon_sym_continue] = ACTIONS(4543), + [anon_sym_break] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4545), + [anon_sym_continue_AT] = ACTIONS(4545), + [anon_sym_break_AT] = ACTIONS(4545), + [anon_sym_this_AT] = ACTIONS(4545), + [anon_sym_super_AT] = ACTIONS(4545), + [sym_real_literal] = ACTIONS(4545), + [sym_integer_literal] = ACTIONS(4543), + [sym_hex_literal] = ACTIONS(4545), + [sym_bin_literal] = ACTIONS(4545), + [anon_sym_true] = ACTIONS(4543), + [anon_sym_false] = ACTIONS(4543), + [anon_sym_SQUOTE] = ACTIONS(4545), + [sym_null_literal] = ACTIONS(4543), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4545), + }, + [3070] = { + [sym__alpha_identifier] = ACTIONS(4568), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_as] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_by] = ACTIONS(4568), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4568), + [anon_sym_where] = ACTIONS(4568), + [anon_sym_object] = ACTIONS(4568), + [anon_sym_fun] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_get] = ACTIONS(4568), + [anon_sym_set] = ACTIONS(4568), + [anon_sym_this] = ACTIONS(4568), + [anon_sym_super] = ACTIONS(4568), + [anon_sym_STAR] = ACTIONS(4568), + [sym_label] = ACTIONS(4568), + [anon_sym_in] = ACTIONS(4568), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_QMARK_COLON] = ACTIONS(4570), + [anon_sym_AMP_AMP] = ACTIONS(4570), + [anon_sym_PIPE_PIPE] = ACTIONS(4570), + [anon_sym_if] = ACTIONS(4568), + [anon_sym_else] = ACTIONS(4568), + [anon_sym_when] = ACTIONS(4568), + [anon_sym_try] = ACTIONS(4568), + [anon_sym_throw] = ACTIONS(4568), + [anon_sym_return] = ACTIONS(4568), + [anon_sym_continue] = ACTIONS(4568), + [anon_sym_break] = ACTIONS(4568), + [anon_sym_COLON_COLON] = ACTIONS(4570), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_PERCENT_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_BANGin] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4568), + [anon_sym_BANGis] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_as_QMARK] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4568), + [anon_sym_BANG_BANG] = ACTIONS(4570), + [anon_sym_data] = ACTIONS(4568), + [anon_sym_inner] = ACTIONS(4568), + [anon_sym_value] = ACTIONS(4568), + [anon_sym_expect] = ACTIONS(4568), + [anon_sym_actual] = ACTIONS(4568), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4570), + [anon_sym_continue_AT] = ACTIONS(4570), + [anon_sym_break_AT] = ACTIONS(4570), + [anon_sym_this_AT] = ACTIONS(4570), + [anon_sym_super_AT] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4570), + [sym_integer_literal] = ACTIONS(4568), + [sym_hex_literal] = ACTIONS(4570), + [sym_bin_literal] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4570), + [sym_null_literal] = ACTIONS(4568), + [sym__backtick_identifier] = ACTIONS(4570), + [sym__automatic_semicolon] = ACTIONS(4570), + [sym_safe_nav] = ACTIONS(4570), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4570), + }, + [3071] = { + [sym__alpha_identifier] = ACTIONS(4572), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_as] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_where] = ACTIONS(4572), + [anon_sym_object] = ACTIONS(4572), + [anon_sym_fun] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4572), + [anon_sym_set] = ACTIONS(4572), + [anon_sym_this] = ACTIONS(4572), + [anon_sym_super] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [sym_label] = ACTIONS(4572), + [anon_sym_in] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_when] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_throw] = ACTIONS(4572), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4572), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(4572), + [anon_sym_inner] = ACTIONS(4572), + [anon_sym_value] = ACTIONS(4572), + [anon_sym_expect] = ACTIONS(4572), + [anon_sym_actual] = ACTIONS(4572), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4575), + [anon_sym_continue_AT] = ACTIONS(4575), + [anon_sym_break_AT] = ACTIONS(4575), + [anon_sym_this_AT] = ACTIONS(4575), + [anon_sym_super_AT] = ACTIONS(4575), + [sym_real_literal] = ACTIONS(4575), + [sym_integer_literal] = ACTIONS(4572), + [sym_hex_literal] = ACTIONS(4575), + [sym_bin_literal] = ACTIONS(4575), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_SQUOTE] = ACTIONS(4575), + [sym_null_literal] = ACTIONS(4572), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4575), + }, + [3072] = { + [sym_type_constraints] = STATE(3136), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3073] = { + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4127), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4127), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [3074] = { + [sym_type_constraints] = STATE(3111), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3075] = { + [sym_import_list] = STATE(3075), + [sym_import_header] = STATE(8794), + [aux_sym_source_file_repeat2] = STATE(3075), + [aux_sym_import_list_repeat1] = STATE(8794), + [ts_builtin_sym_end] = ACTIONS(6596), + [sym__alpha_identifier] = ACTIONS(6598), + [anon_sym_AT] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_import] = ACTIONS(6600), + [anon_sym_typealias] = ACTIONS(6598), + [anon_sym_class] = ACTIONS(6598), + [anon_sym_interface] = ACTIONS(6598), + [anon_sym_enum] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6596), + [anon_sym_LPAREN] = ACTIONS(6596), + [anon_sym_val] = ACTIONS(6598), + [anon_sym_var] = ACTIONS(6598), + [anon_sym_object] = ACTIONS(6598), + [anon_sym_fun] = ACTIONS(6598), + [anon_sym_get] = ACTIONS(6598), + [anon_sym_set] = ACTIONS(6598), + [anon_sym_this] = ACTIONS(6598), + [anon_sym_super] = ACTIONS(6598), + [anon_sym_STAR] = ACTIONS(6596), + [sym_label] = ACTIONS(6598), + [anon_sym_for] = ACTIONS(6598), + [anon_sym_while] = ACTIONS(6598), + [anon_sym_do] = ACTIONS(6598), + [anon_sym_if] = ACTIONS(6598), + [anon_sym_when] = ACTIONS(6598), + [anon_sym_try] = ACTIONS(6598), + [anon_sym_throw] = ACTIONS(6598), + [anon_sym_return] = ACTIONS(6598), + [anon_sym_continue] = ACTIONS(6598), + [anon_sym_break] = ACTIONS(6598), + [anon_sym_COLON_COLON] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_BANG] = ACTIONS(6596), + [anon_sym_suspend] = ACTIONS(6598), + [anon_sym_sealed] = ACTIONS(6598), + [anon_sym_annotation] = ACTIONS(6598), + [anon_sym_data] = ACTIONS(6598), + [anon_sym_inner] = ACTIONS(6598), + [anon_sym_value] = ACTIONS(6598), + [anon_sym_override] = ACTIONS(6598), + [anon_sym_lateinit] = ACTIONS(6598), + [anon_sym_public] = ACTIONS(6598), + [anon_sym_private] = ACTIONS(6598), + [anon_sym_internal] = ACTIONS(6598), + [anon_sym_protected] = ACTIONS(6598), + [anon_sym_tailrec] = ACTIONS(6598), + [anon_sym_operator] = ACTIONS(6598), + [anon_sym_infix] = ACTIONS(6598), + [anon_sym_inline] = ACTIONS(6598), + [anon_sym_external] = ACTIONS(6598), + [sym_property_modifier] = ACTIONS(6598), + [anon_sym_abstract] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(6598), + [anon_sym_open] = ACTIONS(6598), + [anon_sym_vararg] = ACTIONS(6598), + [anon_sym_noinline] = ACTIONS(6598), + [anon_sym_crossinline] = ACTIONS(6598), + [anon_sym_expect] = ACTIONS(6598), + [anon_sym_actual] = ACTIONS(6598), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6596), + [anon_sym_continue_AT] = ACTIONS(6596), + [anon_sym_break_AT] = ACTIONS(6596), + [anon_sym_this_AT] = ACTIONS(6596), + [anon_sym_super_AT] = ACTIONS(6596), + [sym_real_literal] = ACTIONS(6596), + [sym_integer_literal] = ACTIONS(6598), + [sym_hex_literal] = ACTIONS(6596), + [sym_bin_literal] = ACTIONS(6596), + [anon_sym_true] = ACTIONS(6598), + [anon_sym_false] = ACTIONS(6598), + [anon_sym_SQUOTE] = ACTIONS(6596), + [sym_null_literal] = ACTIONS(6598), + [sym__backtick_identifier] = ACTIONS(6596), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6596), + }, + [3076] = { + [sym_type_constraints] = STATE(3110), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_RBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_DASH_GT] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3077] = { + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_object] = ACTIONS(4262), + [anon_sym_fun] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4262), + [anon_sym_super] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_when] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4264), + [anon_sym_continue_AT] = ACTIONS(4264), + [anon_sym_break_AT] = ACTIONS(4264), + [anon_sym_this_AT] = ACTIONS(4264), + [anon_sym_super_AT] = ACTIONS(4264), + [sym_real_literal] = ACTIONS(4264), + [sym_integer_literal] = ACTIONS(4262), + [sym_hex_literal] = ACTIONS(4264), + [sym_bin_literal] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4262), + [anon_sym_false] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4264), + [sym_null_literal] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4264), + }, + [3078] = { + [aux_sym_type_constraints_repeat1] = STATE(3033), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4439), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [3079] = { + [sym__alpha_identifier] = ACTIONS(4648), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_by] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_where] = ACTIONS(4648), + [anon_sym_object] = ACTIONS(4648), + [anon_sym_fun] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4648), + [anon_sym_set] = ACTIONS(4648), + [anon_sym_this] = ACTIONS(4648), + [anon_sym_super] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4650), + [anon_sym_QMARK_COLON] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_PIPE_PIPE] = ACTIONS(4650), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_when] = ACTIONS(4648), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_throw] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_PERCENT_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), + [anon_sym_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_BANGin] = ACTIONS(4650), + [anon_sym_is] = ACTIONS(4648), + [anon_sym_BANGis] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_BANG_BANG] = ACTIONS(4650), + [anon_sym_data] = ACTIONS(4648), + [anon_sym_inner] = ACTIONS(4648), + [anon_sym_value] = ACTIONS(4648), + [anon_sym_expect] = ACTIONS(4648), + [anon_sym_actual] = ACTIONS(4648), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4650), + [anon_sym_continue_AT] = ACTIONS(4650), + [anon_sym_break_AT] = ACTIONS(4650), + [anon_sym_this_AT] = ACTIONS(4650), + [anon_sym_super_AT] = ACTIONS(4650), + [sym_real_literal] = ACTIONS(4650), + [sym_integer_literal] = ACTIONS(4648), + [sym_hex_literal] = ACTIONS(4650), + [sym_bin_literal] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4650), + [sym_null_literal] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4650), + [sym__automatic_semicolon] = ACTIONS(4650), + [sym_safe_nav] = ACTIONS(4650), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4650), + }, + [3080] = { + [sym__alpha_identifier] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_DOT] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_by] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_where] = ACTIONS(4704), + [anon_sym_object] = ACTIONS(4704), + [anon_sym_fun] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_get] = ACTIONS(4704), + [anon_sym_set] = ACTIONS(4704), + [anon_sym_this] = ACTIONS(4704), + [anon_sym_super] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4704), + [anon_sym_DOT_DOT] = ACTIONS(4707), + [anon_sym_QMARK_COLON] = ACTIONS(4707), + [anon_sym_AMP_AMP] = ACTIONS(4707), + [anon_sym_PIPE_PIPE] = ACTIONS(4707), + [anon_sym_if] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4704), + [anon_sym_when] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4704), + [anon_sym_throw] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4704), + [anon_sym_continue] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4704), + [anon_sym_COLON_COLON] = ACTIONS(4707), + [anon_sym_PLUS_EQ] = ACTIONS(4707), + [anon_sym_DASH_EQ] = ACTIONS(4707), + [anon_sym_STAR_EQ] = ACTIONS(4707), + [anon_sym_SLASH_EQ] = ACTIONS(4707), + [anon_sym_PERCENT_EQ] = ACTIONS(4707), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), + [anon_sym_LT_EQ] = ACTIONS(4707), + [anon_sym_GT_EQ] = ACTIONS(4707), + [anon_sym_BANGin] = ACTIONS(4707), + [anon_sym_is] = ACTIONS(4704), + [anon_sym_BANGis] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_as_QMARK] = ACTIONS(4707), + [anon_sym_PLUS_PLUS] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_BANG_BANG] = ACTIONS(4707), + [anon_sym_data] = ACTIONS(4704), + [anon_sym_inner] = ACTIONS(4704), + [anon_sym_value] = ACTIONS(4704), + [anon_sym_expect] = ACTIONS(4704), + [anon_sym_actual] = ACTIONS(4704), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4707), + [anon_sym_continue_AT] = ACTIONS(4707), + [anon_sym_break_AT] = ACTIONS(4707), + [anon_sym_this_AT] = ACTIONS(4707), + [anon_sym_super_AT] = ACTIONS(4707), + [sym_real_literal] = ACTIONS(4707), + [sym_integer_literal] = ACTIONS(4704), + [sym_hex_literal] = ACTIONS(4707), + [sym_bin_literal] = ACTIONS(4707), + [anon_sym_true] = ACTIONS(4704), + [anon_sym_false] = ACTIONS(4704), + [anon_sym_SQUOTE] = ACTIONS(4707), + [sym_null_literal] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4707), + [sym__automatic_semicolon] = ACTIONS(4707), + [sym_safe_nav] = ACTIONS(4707), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4707), + }, + [3081] = { + [sym__alpha_identifier] = ACTIONS(4531), + [anon_sym_AT] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_as] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_where] = ACTIONS(4531), + [anon_sym_object] = ACTIONS(4531), + [anon_sym_fun] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym_get] = ACTIONS(4531), + [anon_sym_set] = ACTIONS(4531), + [anon_sym_this] = ACTIONS(4531), + [anon_sym_super] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4531), + [anon_sym_DOT_DOT] = ACTIONS(4533), + [anon_sym_QMARK_COLON] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_if] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4531), + [anon_sym_when] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_throw] = ACTIONS(4531), + [anon_sym_return] = ACTIONS(4531), + [anon_sym_continue] = ACTIONS(4531), + [anon_sym_break] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_BANGin] = ACTIONS(4533), + [anon_sym_is] = ACTIONS(4531), + [anon_sym_BANGis] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_as_QMARK] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4533), + [anon_sym_data] = ACTIONS(4531), + [anon_sym_inner] = ACTIONS(4531), + [anon_sym_value] = ACTIONS(4531), + [anon_sym_expect] = ACTIONS(4531), + [anon_sym_actual] = ACTIONS(4531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4533), + [anon_sym_continue_AT] = ACTIONS(4533), + [anon_sym_break_AT] = ACTIONS(4533), + [anon_sym_this_AT] = ACTIONS(4533), + [anon_sym_super_AT] = ACTIONS(4533), + [sym_real_literal] = ACTIONS(4533), + [sym_integer_literal] = ACTIONS(4531), + [sym_hex_literal] = ACTIONS(4533), + [sym_bin_literal] = ACTIONS(4533), + [anon_sym_true] = ACTIONS(4531), + [anon_sym_false] = ACTIONS(4531), + [anon_sym_SQUOTE] = ACTIONS(4533), + [sym_null_literal] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4533), + [sym__automatic_semicolon] = ACTIONS(4533), + [sym_safe_nav] = ACTIONS(4533), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4533), + }, + [3082] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4212), + [sym__quest] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4212), + [sym_label] = ACTIONS(4210), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym_null_literal] = ACTIONS(4210), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [3083] = { + [sym__alpha_identifier] = ACTIONS(4218), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4218), + [anon_sym_GT] = ACTIONS(4218), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4218), + [anon_sym_set] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [sym__quest] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4218), + [anon_sym_while] = ACTIONS(4218), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4218), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4218), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_SLASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4218), + [anon_sym_sealed] = ACTIONS(4218), + [anon_sym_annotation] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4218), + [anon_sym_inner] = ACTIONS(4218), + [anon_sym_value] = ACTIONS(4218), + [anon_sym_override] = ACTIONS(4218), + [anon_sym_lateinit] = ACTIONS(4218), + [anon_sym_public] = ACTIONS(4218), + [anon_sym_private] = ACTIONS(4218), + [anon_sym_internal] = ACTIONS(4218), + [anon_sym_protected] = ACTIONS(4218), + [anon_sym_tailrec] = ACTIONS(4218), + [anon_sym_operator] = ACTIONS(4218), + [anon_sym_infix] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym_external] = ACTIONS(4218), + [sym_property_modifier] = ACTIONS(4218), + [anon_sym_abstract] = ACTIONS(4218), + [anon_sym_final] = ACTIONS(4218), + [anon_sym_open] = ACTIONS(4218), + [anon_sym_vararg] = ACTIONS(4218), + [anon_sym_noinline] = ACTIONS(4218), + [anon_sym_crossinline] = ACTIONS(4218), + [anon_sym_expect] = ACTIONS(4218), + [anon_sym_actual] = ACTIONS(4218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + }, + [3084] = { + [sym__alpha_identifier] = ACTIONS(4218), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_object] = ACTIONS(4218), + [anon_sym_fun] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4218), + [anon_sym_set] = ACTIONS(4218), + [anon_sym_this] = ACTIONS(4218), + [anon_sym_super] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4220), + [sym__quest] = ACTIONS(4220), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(4218), + [anon_sym_if] = ACTIONS(4218), + [anon_sym_else] = ACTIONS(4218), + [anon_sym_when] = ACTIONS(4218), + [anon_sym_try] = ACTIONS(4218), + [anon_sym_throw] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4218), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_suspend] = ACTIONS(4218), + [anon_sym_sealed] = ACTIONS(4218), + [anon_sym_annotation] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4218), + [anon_sym_inner] = ACTIONS(4218), + [anon_sym_value] = ACTIONS(4218), + [anon_sym_override] = ACTIONS(4218), + [anon_sym_lateinit] = ACTIONS(4218), + [anon_sym_public] = ACTIONS(4218), + [anon_sym_private] = ACTIONS(4218), + [anon_sym_internal] = ACTIONS(4218), + [anon_sym_protected] = ACTIONS(4218), + [anon_sym_tailrec] = ACTIONS(4218), + [anon_sym_operator] = ACTIONS(4218), + [anon_sym_infix] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym_external] = ACTIONS(4218), + [sym_property_modifier] = ACTIONS(4218), + [anon_sym_abstract] = ACTIONS(4218), + [anon_sym_final] = ACTIONS(4218), + [anon_sym_open] = ACTIONS(4218), + [anon_sym_vararg] = ACTIONS(4218), + [anon_sym_noinline] = ACTIONS(4218), + [anon_sym_crossinline] = ACTIONS(4218), + [anon_sym_expect] = ACTIONS(4218), + [anon_sym_actual] = ACTIONS(4218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4218), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [3085] = { + [sym_type_constraints] = STATE(3103), + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [anon_sym_DASH_GT] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3086] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_by] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4216), + [sym__quest] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4216), + [anon_sym_BANGin] = ACTIONS(4216), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4216), + [anon_sym_continue_AT] = ACTIONS(4216), + [anon_sym_break_AT] = ACTIONS(4216), + [anon_sym_this_AT] = ACTIONS(4216), + [anon_sym_super_AT] = ACTIONS(4216), + [sym_real_literal] = ACTIONS(4216), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4216), + [sym_bin_literal] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [sym_null_literal] = ACTIONS(4214), + [sym__backtick_identifier] = ACTIONS(4216), + [sym__automatic_semicolon] = ACTIONS(4216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4216), + }, + [3087] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_object] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_this] = ACTIONS(4972), + [anon_sym_super] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_when] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_throw] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4974), + [anon_sym_continue_AT] = ACTIONS(4974), + [anon_sym_break_AT] = ACTIONS(4974), + [anon_sym_this_AT] = ACTIONS(4974), + [anon_sym_super_AT] = ACTIONS(4974), + [sym_real_literal] = ACTIONS(4974), + [sym_integer_literal] = ACTIONS(4972), + [sym_hex_literal] = ACTIONS(4974), + [sym_bin_literal] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_SQUOTE] = ACTIONS(4974), + [sym_null_literal] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4974), + [sym__automatic_semicolon] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4974), + }, + [3088] = { + [sym__alpha_identifier] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_as] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_where] = ACTIONS(5010), + [anon_sym_object] = ACTIONS(5010), + [anon_sym_fun] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(5010), + [anon_sym_set] = ACTIONS(5010), + [anon_sym_this] = ACTIONS(5010), + [anon_sym_super] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [sym_label] = ACTIONS(5010), + [anon_sym_in] = ACTIONS(5010), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_QMARK_COLON] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_if] = ACTIONS(5010), + [anon_sym_else] = ACTIONS(5010), + [anon_sym_when] = ACTIONS(5010), + [anon_sym_try] = ACTIONS(5010), + [anon_sym_throw] = ACTIONS(5010), + [anon_sym_return] = ACTIONS(5010), + [anon_sym_continue] = ACTIONS(5010), + [anon_sym_break] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_BANGin] = ACTIONS(5012), + [anon_sym_is] = ACTIONS(5010), + [anon_sym_BANGis] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_as_QMARK] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_BANG_BANG] = ACTIONS(5012), + [anon_sym_data] = ACTIONS(5010), + [anon_sym_inner] = ACTIONS(5010), + [anon_sym_value] = ACTIONS(5010), + [anon_sym_expect] = ACTIONS(5010), + [anon_sym_actual] = ACTIONS(5010), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5012), + [anon_sym_continue_AT] = ACTIONS(5012), + [anon_sym_break_AT] = ACTIONS(5012), + [anon_sym_this_AT] = ACTIONS(5012), + [anon_sym_super_AT] = ACTIONS(5012), + [sym_real_literal] = ACTIONS(5012), + [sym_integer_literal] = ACTIONS(5010), + [sym_hex_literal] = ACTIONS(5012), + [sym_bin_literal] = ACTIONS(5012), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5012), + [sym_null_literal] = ACTIONS(5010), + [sym__backtick_identifier] = ACTIONS(5012), + [sym__automatic_semicolon] = ACTIONS(5012), + [sym_safe_nav] = ACTIONS(5012), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5012), + }, + [3089] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_object] = ACTIONS(4788), + [anon_sym_fun] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_this] = ACTIONS(4788), + [anon_sym_super] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_when] = ACTIONS(4788), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_throw] = ACTIONS(4788), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4790), + [anon_sym_continue_AT] = ACTIONS(4790), + [anon_sym_break_AT] = ACTIONS(4790), + [anon_sym_this_AT] = ACTIONS(4790), + [anon_sym_super_AT] = ACTIONS(4790), + [sym_real_literal] = ACTIONS(4790), + [sym_integer_literal] = ACTIONS(4788), + [sym_hex_literal] = ACTIONS(4790), + [sym_bin_literal] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_SQUOTE] = ACTIONS(4790), + [sym_null_literal] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4790), + [sym__automatic_semicolon] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4790), + }, + [3090] = { + [sym_file_annotation] = STATE(3090), + [aux_sym_source_file_repeat1] = STATE(3090), + [ts_builtin_sym_end] = ACTIONS(6603), + [sym__alpha_identifier] = ACTIONS(6605), + [anon_sym_AT] = ACTIONS(6607), + [anon_sym_LBRACK] = ACTIONS(6603), + [anon_sym_package] = ACTIONS(6605), + [anon_sym_import] = ACTIONS(6605), + [anon_sym_typealias] = ACTIONS(6605), + [anon_sym_class] = ACTIONS(6605), + [anon_sym_interface] = ACTIONS(6605), + [anon_sym_enum] = ACTIONS(6605), + [anon_sym_LBRACE] = ACTIONS(6603), + [anon_sym_LPAREN] = ACTIONS(6603), + [anon_sym_val] = ACTIONS(6605), + [anon_sym_var] = ACTIONS(6605), + [anon_sym_object] = ACTIONS(6605), + [anon_sym_fun] = ACTIONS(6605), + [anon_sym_get] = ACTIONS(6605), + [anon_sym_set] = ACTIONS(6605), + [anon_sym_this] = ACTIONS(6605), + [anon_sym_super] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6603), + [sym_label] = ACTIONS(6605), + [anon_sym_for] = ACTIONS(6605), + [anon_sym_while] = ACTIONS(6605), + [anon_sym_do] = ACTIONS(6605), + [anon_sym_if] = ACTIONS(6605), + [anon_sym_when] = ACTIONS(6605), + [anon_sym_try] = ACTIONS(6605), + [anon_sym_throw] = ACTIONS(6605), + [anon_sym_return] = ACTIONS(6605), + [anon_sym_continue] = ACTIONS(6605), + [anon_sym_break] = ACTIONS(6605), + [anon_sym_COLON_COLON] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS_PLUS] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6603), + [anon_sym_BANG] = ACTIONS(6603), + [anon_sym_suspend] = ACTIONS(6605), + [anon_sym_sealed] = ACTIONS(6605), + [anon_sym_annotation] = ACTIONS(6605), + [anon_sym_data] = ACTIONS(6605), + [anon_sym_inner] = ACTIONS(6605), + [anon_sym_value] = ACTIONS(6605), + [anon_sym_override] = ACTIONS(6605), + [anon_sym_lateinit] = ACTIONS(6605), + [anon_sym_public] = ACTIONS(6605), + [anon_sym_private] = ACTIONS(6605), + [anon_sym_internal] = ACTIONS(6605), + [anon_sym_protected] = ACTIONS(6605), + [anon_sym_tailrec] = ACTIONS(6605), + [anon_sym_operator] = ACTIONS(6605), + [anon_sym_infix] = ACTIONS(6605), + [anon_sym_inline] = ACTIONS(6605), + [anon_sym_external] = ACTIONS(6605), + [sym_property_modifier] = ACTIONS(6605), + [anon_sym_abstract] = ACTIONS(6605), + [anon_sym_final] = ACTIONS(6605), + [anon_sym_open] = ACTIONS(6605), + [anon_sym_vararg] = ACTIONS(6605), + [anon_sym_noinline] = ACTIONS(6605), + [anon_sym_crossinline] = ACTIONS(6605), + [anon_sym_expect] = ACTIONS(6605), + [anon_sym_actual] = ACTIONS(6605), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6603), + [anon_sym_continue_AT] = ACTIONS(6603), + [anon_sym_break_AT] = ACTIONS(6603), + [anon_sym_this_AT] = ACTIONS(6603), + [anon_sym_super_AT] = ACTIONS(6603), + [sym_real_literal] = ACTIONS(6603), + [sym_integer_literal] = ACTIONS(6605), + [sym_hex_literal] = ACTIONS(6603), + [sym_bin_literal] = ACTIONS(6603), + [anon_sym_true] = ACTIONS(6605), + [anon_sym_false] = ACTIONS(6605), + [anon_sym_SQUOTE] = ACTIONS(6603), + [sym_null_literal] = ACTIONS(6605), + [sym__backtick_identifier] = ACTIONS(6603), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6603), + }, + [3091] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_object] = ACTIONS(4792), + [anon_sym_fun] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_this] = ACTIONS(4792), + [anon_sym_super] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_when] = ACTIONS(4792), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_throw] = ACTIONS(4792), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4794), + [anon_sym_continue_AT] = ACTIONS(4794), + [anon_sym_break_AT] = ACTIONS(4794), + [anon_sym_this_AT] = ACTIONS(4794), + [anon_sym_super_AT] = ACTIONS(4794), + [sym_real_literal] = ACTIONS(4794), + [sym_integer_literal] = ACTIONS(4792), + [sym_hex_literal] = ACTIONS(4794), + [sym_bin_literal] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_SQUOTE] = ACTIONS(4794), + [sym_null_literal] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4794), + [sym__automatic_semicolon] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4794), + }, + [3092] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5157), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_object] = ACTIONS(5074), + [anon_sym_fun] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_this] = ACTIONS(5074), + [anon_sym_super] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [sym_label] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_when] = ACTIONS(5074), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_throw] = ACTIONS(5074), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(5159), + [anon_sym_DASH_EQ] = ACTIONS(5159), + [anon_sym_STAR_EQ] = ACTIONS(5159), + [anon_sym_SLASH_EQ] = ACTIONS(5159), + [anon_sym_PERCENT_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5076), + [anon_sym_continue_AT] = ACTIONS(5076), + [anon_sym_break_AT] = ACTIONS(5076), + [anon_sym_this_AT] = ACTIONS(5076), + [anon_sym_super_AT] = ACTIONS(5076), + [sym_real_literal] = ACTIONS(5076), + [sym_integer_literal] = ACTIONS(5074), + [sym_hex_literal] = ACTIONS(5076), + [sym_bin_literal] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5076), + [sym_null_literal] = ACTIONS(5074), + [sym__backtick_identifier] = ACTIONS(5076), + [sym__automatic_semicolon] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5076), + }, + [3093] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_object] = ACTIONS(4804), + [anon_sym_fun] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_this] = ACTIONS(4804), + [anon_sym_super] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_if] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_when] = ACTIONS(4804), + [anon_sym_try] = ACTIONS(4804), + [anon_sym_throw] = ACTIONS(4804), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_continue] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4806), + [anon_sym_continue_AT] = ACTIONS(4806), + [anon_sym_break_AT] = ACTIONS(4806), + [anon_sym_this_AT] = ACTIONS(4806), + [anon_sym_super_AT] = ACTIONS(4806), + [sym_real_literal] = ACTIONS(4806), + [sym_integer_literal] = ACTIONS(4804), + [sym_hex_literal] = ACTIONS(4806), + [sym_bin_literal] = ACTIONS(4806), + [anon_sym_true] = ACTIONS(4804), + [anon_sym_false] = ACTIONS(4804), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym_null_literal] = ACTIONS(4804), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4806), + }, + [3094] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(6613), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(6615), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [3095] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(6617), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [3096] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_object] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_this] = ACTIONS(4984), + [anon_sym_super] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [sym_label] = ACTIONS(4984), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_when] = ACTIONS(4984), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_throw] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4986), + [anon_sym_continue_AT] = ACTIONS(4986), + [anon_sym_break_AT] = ACTIONS(4986), + [anon_sym_this_AT] = ACTIONS(4986), + [anon_sym_super_AT] = ACTIONS(4986), + [sym_real_literal] = ACTIONS(4986), + [sym_integer_literal] = ACTIONS(4984), + [sym_hex_literal] = ACTIONS(4986), + [sym_bin_literal] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4986), + [sym_null_literal] = ACTIONS(4984), + [sym__backtick_identifier] = ACTIONS(4986), + [sym__automatic_semicolon] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4986), + }, + [3097] = { + [sym_class_body] = STATE(3420), + [sym_type_constraints] = STATE(3382), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_RBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_DASH_GT] = ACTIONS(4365), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_while] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3098] = { + [sym_type_constraints] = STATE(3381), + [sym_enum_class_body] = STATE(3429), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3099] = { + [sym__alpha_identifier] = ACTIONS(4852), + [anon_sym_AT] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_RBRACE] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4854), + [anon_sym_COMMA] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_where] = ACTIONS(4852), + [anon_sym_object] = ACTIONS(4852), + [anon_sym_fun] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym_get] = ACTIONS(4852), + [anon_sym_set] = ACTIONS(4852), + [anon_sym_this] = ACTIONS(4852), + [anon_sym_super] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4852), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_QMARK_COLON] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_if] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4852), + [anon_sym_when] = ACTIONS(4852), + [anon_sym_try] = ACTIONS(4852), + [anon_sym_throw] = ACTIONS(4852), + [anon_sym_return] = ACTIONS(4852), + [anon_sym_continue] = ACTIONS(4852), + [anon_sym_break] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4854), + [anon_sym_DASH_EQ] = ACTIONS(4854), + [anon_sym_STAR_EQ] = ACTIONS(4854), + [anon_sym_SLASH_EQ] = ACTIONS(4854), + [anon_sym_PERCENT_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4854), + [anon_sym_BANGin] = ACTIONS(4854), + [anon_sym_is] = ACTIONS(4852), + [anon_sym_BANGis] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4854), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_BANG] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4854), + [anon_sym_data] = ACTIONS(4852), + [anon_sym_inner] = ACTIONS(4852), + [anon_sym_value] = ACTIONS(4852), + [anon_sym_expect] = ACTIONS(4852), + [anon_sym_actual] = ACTIONS(4852), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4854), + [anon_sym_continue_AT] = ACTIONS(4854), + [anon_sym_break_AT] = ACTIONS(4854), + [anon_sym_this_AT] = ACTIONS(4854), + [anon_sym_super_AT] = ACTIONS(4854), + [sym_real_literal] = ACTIONS(4854), + [sym_integer_literal] = ACTIONS(4852), + [sym_hex_literal] = ACTIONS(4854), + [sym_bin_literal] = ACTIONS(4854), + [anon_sym_true] = ACTIONS(4852), + [anon_sym_false] = ACTIONS(4852), + [anon_sym_SQUOTE] = ACTIONS(4854), + [sym_null_literal] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4854), + [sym__automatic_semicolon] = ACTIONS(4854), + [sym_safe_nav] = ACTIONS(4854), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4854), + }, + [3100] = { + [sym__alpha_identifier] = ACTIONS(4808), + [anon_sym_AT] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(4810), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_as] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_LBRACE] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_COMMA] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_where] = ACTIONS(4808), + [anon_sym_object] = ACTIONS(4808), + [anon_sym_fun] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_get] = ACTIONS(4808), + [anon_sym_set] = ACTIONS(4808), + [anon_sym_this] = ACTIONS(4808), + [anon_sym_super] = ACTIONS(4808), + [anon_sym_STAR] = ACTIONS(4808), + [sym_label] = ACTIONS(4808), + [anon_sym_in] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4810), + [anon_sym_QMARK_COLON] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_if] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_when] = ACTIONS(4808), + [anon_sym_try] = ACTIONS(4808), + [anon_sym_throw] = ACTIONS(4808), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_continue] = ACTIONS(4808), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_COLON_COLON] = ACTIONS(4810), + [anon_sym_PLUS_EQ] = ACTIONS(4810), + [anon_sym_DASH_EQ] = ACTIONS(4810), + [anon_sym_STAR_EQ] = ACTIONS(4810), + [anon_sym_SLASH_EQ] = ACTIONS(4810), + [anon_sym_PERCENT_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT_EQ] = ACTIONS(4810), + [anon_sym_GT_EQ] = ACTIONS(4810), + [anon_sym_BANGin] = ACTIONS(4810), + [anon_sym_is] = ACTIONS(4808), + [anon_sym_BANGis] = ACTIONS(4810), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_PERCENT] = ACTIONS(4808), + [anon_sym_as_QMARK] = ACTIONS(4810), + [anon_sym_PLUS_PLUS] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4810), + [anon_sym_BANG] = ACTIONS(4808), + [anon_sym_BANG_BANG] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4808), + [anon_sym_inner] = ACTIONS(4808), + [anon_sym_value] = ACTIONS(4808), + [anon_sym_expect] = ACTIONS(4808), + [anon_sym_actual] = ACTIONS(4808), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4810), + [anon_sym_continue_AT] = ACTIONS(4810), + [anon_sym_break_AT] = ACTIONS(4810), + [anon_sym_this_AT] = ACTIONS(4810), + [anon_sym_super_AT] = ACTIONS(4810), + [sym_real_literal] = ACTIONS(4810), + [sym_integer_literal] = ACTIONS(4808), + [sym_hex_literal] = ACTIONS(4810), + [sym_bin_literal] = ACTIONS(4810), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_SQUOTE] = ACTIONS(4810), + [sym_null_literal] = ACTIONS(4808), + [sym__backtick_identifier] = ACTIONS(4810), + [sym__automatic_semicolon] = ACTIONS(4810), + [sym_safe_nav] = ACTIONS(4810), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4810), + }, + [3101] = { + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_object] = ACTIONS(4068), + [anon_sym_fun] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_this] = ACTIONS(4068), + [anon_sym_super] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [sym_label] = ACTIONS(4068), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_when] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4070), + [anon_sym_continue_AT] = ACTIONS(4070), + [anon_sym_break_AT] = ACTIONS(4070), + [anon_sym_this_AT] = ACTIONS(4070), + [anon_sym_super_AT] = ACTIONS(4070), + [sym_real_literal] = ACTIONS(4070), + [sym_integer_literal] = ACTIONS(4068), + [sym_hex_literal] = ACTIONS(4070), + [sym_bin_literal] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4070), + [sym_null_literal] = ACTIONS(4068), + [sym__backtick_identifier] = ACTIONS(4070), + [sym__automatic_semicolon] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4070), + }, + [3102] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_object] = ACTIONS(4812), + [anon_sym_fun] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_this] = ACTIONS(4812), + [anon_sym_super] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_if] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_when] = ACTIONS(4812), + [anon_sym_try] = ACTIONS(4812), + [anon_sym_throw] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_continue] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4814), + [anon_sym_continue_AT] = ACTIONS(4814), + [anon_sym_break_AT] = ACTIONS(4814), + [anon_sym_this_AT] = ACTIONS(4814), + [anon_sym_super_AT] = ACTIONS(4814), + [sym_real_literal] = ACTIONS(4814), + [sym_integer_literal] = ACTIONS(4812), + [sym_hex_literal] = ACTIONS(4814), + [sym_bin_literal] = ACTIONS(4814), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym_null_literal] = ACTIONS(4812), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4814), + }, + [3103] = { + [sym_function_body] = STATE(3409), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [anon_sym_DASH_GT] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_while] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3104] = { + [sym__alpha_identifier] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4822), + [anon_sym_RBRACE] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4822), + [anon_sym_COMMA] = ACTIONS(4822), + [anon_sym_LT] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_where] = ACTIONS(4820), + [anon_sym_object] = ACTIONS(4820), + [anon_sym_fun] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_get] = ACTIONS(4820), + [anon_sym_set] = ACTIONS(4820), + [anon_sym_this] = ACTIONS(4820), + [anon_sym_super] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4820), + [anon_sym_in] = ACTIONS(4820), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_QMARK_COLON] = ACTIONS(4822), + [anon_sym_AMP_AMP] = ACTIONS(4822), + [anon_sym_PIPE_PIPE] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4820), + [anon_sym_else] = ACTIONS(4820), + [anon_sym_when] = ACTIONS(4820), + [anon_sym_try] = ACTIONS(4820), + [anon_sym_throw] = ACTIONS(4820), + [anon_sym_return] = ACTIONS(4820), + [anon_sym_continue] = ACTIONS(4820), + [anon_sym_break] = ACTIONS(4820), + [anon_sym_COLON_COLON] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4822), + [anon_sym_DASH_EQ] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4822), + [anon_sym_SLASH_EQ] = ACTIONS(4822), + [anon_sym_PERCENT_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4822), + [anon_sym_BANGin] = ACTIONS(4822), + [anon_sym_is] = ACTIONS(4820), + [anon_sym_BANGis] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4822), + [anon_sym_PLUS_PLUS] = ACTIONS(4822), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_BANG] = ACTIONS(4820), + [anon_sym_BANG_BANG] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4820), + [anon_sym_inner] = ACTIONS(4820), + [anon_sym_value] = ACTIONS(4820), + [anon_sym_expect] = ACTIONS(4820), + [anon_sym_actual] = ACTIONS(4820), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4822), + [anon_sym_continue_AT] = ACTIONS(4822), + [anon_sym_break_AT] = ACTIONS(4822), + [anon_sym_this_AT] = ACTIONS(4822), + [anon_sym_super_AT] = ACTIONS(4822), + [sym_real_literal] = ACTIONS(4822), + [sym_integer_literal] = ACTIONS(4820), + [sym_hex_literal] = ACTIONS(4822), + [sym_bin_literal] = ACTIONS(4822), + [anon_sym_true] = ACTIONS(4820), + [anon_sym_false] = ACTIONS(4820), + [anon_sym_SQUOTE] = ACTIONS(4822), + [sym_null_literal] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4822), + [sym__automatic_semicolon] = ACTIONS(4822), + [sym_safe_nav] = ACTIONS(4822), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4822), + }, + [3105] = { + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_object] = ACTIONS(3970), + [anon_sym_fun] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_this] = ACTIONS(3970), + [anon_sym_super] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3970), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_when] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3970), + [anon_sym_BANG_BANG] = ACTIONS(3972), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3972), + [anon_sym_continue_AT] = ACTIONS(3972), + [anon_sym_break_AT] = ACTIONS(3972), + [anon_sym_this_AT] = ACTIONS(3972), + [anon_sym_super_AT] = ACTIONS(3972), + [sym_real_literal] = ACTIONS(3972), + [sym_integer_literal] = ACTIONS(3970), + [sym_hex_literal] = ACTIONS(3972), + [sym_bin_literal] = ACTIONS(3972), + [anon_sym_true] = ACTIONS(3970), + [anon_sym_false] = ACTIONS(3970), + [anon_sym_SQUOTE] = ACTIONS(3972), + [sym_null_literal] = ACTIONS(3970), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3972), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3972), + }, + [3106] = { + [sym__alpha_identifier] = ACTIONS(4848), + [anon_sym_AT] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_where] = ACTIONS(4848), + [anon_sym_object] = ACTIONS(4848), + [anon_sym_fun] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_get] = ACTIONS(4848), + [anon_sym_set] = ACTIONS(4848), + [anon_sym_this] = ACTIONS(4848), + [anon_sym_super] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_QMARK_COLON] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4848), + [anon_sym_when] = ACTIONS(4848), + [anon_sym_try] = ACTIONS(4848), + [anon_sym_throw] = ACTIONS(4848), + [anon_sym_return] = ACTIONS(4848), + [anon_sym_continue] = ACTIONS(4848), + [anon_sym_break] = ACTIONS(4848), + [anon_sym_COLON_COLON] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4850), + [anon_sym_DASH_EQ] = ACTIONS(4850), + [anon_sym_STAR_EQ] = ACTIONS(4850), + [anon_sym_SLASH_EQ] = ACTIONS(4850), + [anon_sym_PERCENT_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4848), + [anon_sym_BANGis] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_as_QMARK] = ACTIONS(4850), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_BANG] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4848), + [anon_sym_inner] = ACTIONS(4848), + [anon_sym_value] = ACTIONS(4848), + [anon_sym_expect] = ACTIONS(4848), + [anon_sym_actual] = ACTIONS(4848), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4850), + [anon_sym_continue_AT] = ACTIONS(4850), + [anon_sym_break_AT] = ACTIONS(4850), + [anon_sym_this_AT] = ACTIONS(4850), + [anon_sym_super_AT] = ACTIONS(4850), + [sym_real_literal] = ACTIONS(4850), + [sym_integer_literal] = ACTIONS(4848), + [sym_hex_literal] = ACTIONS(4850), + [sym_bin_literal] = ACTIONS(4850), + [anon_sym_true] = ACTIONS(4848), + [anon_sym_false] = ACTIONS(4848), + [anon_sym_SQUOTE] = ACTIONS(4850), + [sym_null_literal] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4850), + [sym__automatic_semicolon] = ACTIONS(4850), + [sym_safe_nav] = ACTIONS(4850), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4850), + }, + [3107] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_object] = ACTIONS(3992), + [anon_sym_fun] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_this] = ACTIONS(3992), + [anon_sym_super] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3992), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_when] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3994), + [anon_sym_continue_AT] = ACTIONS(3994), + [anon_sym_break_AT] = ACTIONS(3994), + [anon_sym_this_AT] = ACTIONS(3994), + [anon_sym_super_AT] = ACTIONS(3994), + [sym_real_literal] = ACTIONS(3994), + [sym_integer_literal] = ACTIONS(3992), + [sym_hex_literal] = ACTIONS(3994), + [sym_bin_literal] = ACTIONS(3994), + [anon_sym_true] = ACTIONS(3992), + [anon_sym_false] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3994), + [sym_null_literal] = ACTIONS(3992), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3994), + }, + [3108] = { + [sym__alpha_identifier] = ACTIONS(4816), + [anon_sym_AT] = ACTIONS(4818), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_as] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4818), + [anon_sym_RBRACE] = ACTIONS(4818), + [anon_sym_LPAREN] = ACTIONS(4818), + [anon_sym_COMMA] = ACTIONS(4818), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_where] = ACTIONS(4816), + [anon_sym_object] = ACTIONS(4816), + [anon_sym_fun] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4818), + [anon_sym_get] = ACTIONS(4816), + [anon_sym_set] = ACTIONS(4816), + [anon_sym_this] = ACTIONS(4816), + [anon_sym_super] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [sym_label] = ACTIONS(4816), + [anon_sym_in] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4818), + [anon_sym_QMARK_COLON] = ACTIONS(4818), + [anon_sym_AMP_AMP] = ACTIONS(4818), + [anon_sym_PIPE_PIPE] = ACTIONS(4818), + [anon_sym_if] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_when] = ACTIONS(4816), + [anon_sym_try] = ACTIONS(4816), + [anon_sym_throw] = ACTIONS(4816), + [anon_sym_return] = ACTIONS(4816), + [anon_sym_continue] = ACTIONS(4816), + [anon_sym_break] = ACTIONS(4816), + [anon_sym_COLON_COLON] = ACTIONS(4818), + [anon_sym_PLUS_EQ] = ACTIONS(4818), + [anon_sym_DASH_EQ] = ACTIONS(4818), + [anon_sym_STAR_EQ] = ACTIONS(4818), + [anon_sym_SLASH_EQ] = ACTIONS(4818), + [anon_sym_PERCENT_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4818), + [anon_sym_LT_EQ] = ACTIONS(4818), + [anon_sym_GT_EQ] = ACTIONS(4818), + [anon_sym_BANGin] = ACTIONS(4818), + [anon_sym_is] = ACTIONS(4816), + [anon_sym_BANGis] = ACTIONS(4818), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_as_QMARK] = ACTIONS(4818), + [anon_sym_PLUS_PLUS] = ACTIONS(4818), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_BANG] = ACTIONS(4816), + [anon_sym_BANG_BANG] = ACTIONS(4818), + [anon_sym_data] = ACTIONS(4816), + [anon_sym_inner] = ACTIONS(4816), + [anon_sym_value] = ACTIONS(4816), + [anon_sym_expect] = ACTIONS(4816), + [anon_sym_actual] = ACTIONS(4816), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4818), + [anon_sym_continue_AT] = ACTIONS(4818), + [anon_sym_break_AT] = ACTIONS(4818), + [anon_sym_this_AT] = ACTIONS(4818), + [anon_sym_super_AT] = ACTIONS(4818), + [sym_real_literal] = ACTIONS(4818), + [sym_integer_literal] = ACTIONS(4816), + [sym_hex_literal] = ACTIONS(4818), + [sym_bin_literal] = ACTIONS(4818), + [anon_sym_true] = ACTIONS(4816), + [anon_sym_false] = ACTIONS(4816), + [anon_sym_SQUOTE] = ACTIONS(4818), + [sym_null_literal] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4818), + [sym__automatic_semicolon] = ACTIONS(4818), + [sym_safe_nav] = ACTIONS(4818), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4818), + }, + [3109] = { + [sym_type_constraints] = STATE(3378), + [sym_enum_class_body] = STATE(3423), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_DASH_GT] = ACTIONS(4384), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3110] = { + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [anon_sym_DASH_GT] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3111] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_RBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_DASH_GT] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3112] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_object] = ACTIONS(4908), + [anon_sym_fun] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_this] = ACTIONS(4908), + [anon_sym_super] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_if] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_when] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4908), + [anon_sym_throw] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4908), + [anon_sym_continue] = ACTIONS(4908), + [anon_sym_break] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4910), + [anon_sym_continue_AT] = ACTIONS(4910), + [anon_sym_break_AT] = ACTIONS(4910), + [anon_sym_this_AT] = ACTIONS(4910), + [anon_sym_super_AT] = ACTIONS(4910), + [sym_real_literal] = ACTIONS(4910), + [sym_integer_literal] = ACTIONS(4908), + [sym_hex_literal] = ACTIONS(4910), + [sym_bin_literal] = ACTIONS(4910), + [anon_sym_true] = ACTIONS(4908), + [anon_sym_false] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4910), + [sym_null_literal] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(4910), + [sym__automatic_semicolon] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4910), + }, + [3113] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_object] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_this] = ACTIONS(4960), + [anon_sym_super] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_when] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_throw] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4962), + [anon_sym_continue_AT] = ACTIONS(4962), + [anon_sym_break_AT] = ACTIONS(4962), + [anon_sym_this_AT] = ACTIONS(4962), + [anon_sym_super_AT] = ACTIONS(4962), + [sym_real_literal] = ACTIONS(4962), + [sym_integer_literal] = ACTIONS(4960), + [sym_hex_literal] = ACTIONS(4962), + [sym_bin_literal] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_SQUOTE] = ACTIONS(4962), + [sym_null_literal] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(4962), + [sym__automatic_semicolon] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4962), + }, + [3114] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [sym_label] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym_null_literal] = ACTIONS(3133), + [sym__backtick_identifier] = ACTIONS(3135), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [3115] = { + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_object] = ACTIONS(4904), + [anon_sym_fun] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_this] = ACTIONS(4904), + [anon_sym_super] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_if] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_when] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4904), + [anon_sym_throw] = ACTIONS(4904), + [anon_sym_return] = ACTIONS(4904), + [anon_sym_continue] = ACTIONS(4904), + [anon_sym_break] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4906), + [anon_sym_continue_AT] = ACTIONS(4906), + [anon_sym_break_AT] = ACTIONS(4906), + [anon_sym_this_AT] = ACTIONS(4906), + [anon_sym_super_AT] = ACTIONS(4906), + [sym_real_literal] = ACTIONS(4906), + [sym_integer_literal] = ACTIONS(4904), + [sym_hex_literal] = ACTIONS(4906), + [sym_bin_literal] = ACTIONS(4906), + [anon_sym_true] = ACTIONS(4904), + [anon_sym_false] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4906), + [sym_null_literal] = ACTIONS(4904), + [sym__backtick_identifier] = ACTIONS(4906), + [sym__automatic_semicolon] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4906), + }, + [3116] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(6619), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3117] = { + [sym_class_body] = STATE(3423), + [sym_type_constraints] = STATE(3375), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_DASH_GT] = ACTIONS(4384), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3118] = { + [sym_function_body] = STATE(3112), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [3119] = { + [sym_type_constraints] = STATE(3374), + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_DASH_GT] = ACTIONS(4388), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + }, + [3120] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_object] = ACTIONS(4912), + [anon_sym_fun] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_this] = ACTIONS(4912), + [anon_sym_super] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_if] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_when] = ACTIONS(4912), + [anon_sym_try] = ACTIONS(4912), + [anon_sym_throw] = ACTIONS(4912), + [anon_sym_return] = ACTIONS(4912), + [anon_sym_continue] = ACTIONS(4912), + [anon_sym_break] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4914), + [anon_sym_continue_AT] = ACTIONS(4914), + [anon_sym_break_AT] = ACTIONS(4914), + [anon_sym_this_AT] = ACTIONS(4914), + [anon_sym_super_AT] = ACTIONS(4914), + [sym_real_literal] = ACTIONS(4914), + [sym_integer_literal] = ACTIONS(4912), + [sym_hex_literal] = ACTIONS(4914), + [sym_bin_literal] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4912), + [anon_sym_false] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4914), + [sym_null_literal] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(4914), + [sym__automatic_semicolon] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4914), + }, + [3121] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6619), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3122] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_object] = ACTIONS(4916), + [anon_sym_fun] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_this] = ACTIONS(4916), + [anon_sym_super] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_when] = ACTIONS(4916), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_throw] = ACTIONS(4916), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4918), + [anon_sym_continue_AT] = ACTIONS(4918), + [anon_sym_break_AT] = ACTIONS(4918), + [anon_sym_this_AT] = ACTIONS(4918), + [anon_sym_super_AT] = ACTIONS(4918), + [sym_real_literal] = ACTIONS(4918), + [sym_integer_literal] = ACTIONS(4916), + [sym_hex_literal] = ACTIONS(4918), + [sym_bin_literal] = ACTIONS(4918), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4918), + [sym_null_literal] = ACTIONS(4916), + [sym__backtick_identifier] = ACTIONS(4918), + [sym__automatic_semicolon] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4918), + }, + [3123] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6623), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3124] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_object] = ACTIONS(4920), + [anon_sym_fun] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_this] = ACTIONS(4920), + [anon_sym_super] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_if] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4920), + [anon_sym_throw] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4920), + [anon_sym_continue] = ACTIONS(4920), + [anon_sym_break] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4922), + [anon_sym_continue_AT] = ACTIONS(4922), + [anon_sym_break_AT] = ACTIONS(4922), + [anon_sym_this_AT] = ACTIONS(4922), + [anon_sym_super_AT] = ACTIONS(4922), + [sym_real_literal] = ACTIONS(4922), + [sym_integer_literal] = ACTIONS(4920), + [sym_hex_literal] = ACTIONS(4922), + [sym_bin_literal] = ACTIONS(4922), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4922), + [sym_null_literal] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4922), + [sym__automatic_semicolon] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4922), + }, + [3125] = { + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_object] = ACTIONS(3380), + [anon_sym_fun] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_this] = ACTIONS(3380), + [anon_sym_super] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_when] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_data] = ACTIONS(3380), + [anon_sym_inner] = ACTIONS(3380), + [anon_sym_value] = ACTIONS(3380), + [anon_sym_expect] = ACTIONS(3380), + [anon_sym_actual] = ACTIONS(3380), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3382), + [anon_sym_continue_AT] = ACTIONS(3382), + [anon_sym_break_AT] = ACTIONS(3382), + [anon_sym_this_AT] = ACTIONS(3382), + [anon_sym_super_AT] = ACTIONS(3382), + [sym_real_literal] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3380), + [sym_hex_literal] = ACTIONS(3382), + [sym_bin_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3382), + [sym_null_literal] = ACTIONS(3380), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3382), + }, + [3126] = { + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [3127] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6627), + [sym__quest] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym_null_literal] = ACTIONS(4190), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [3128] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_RBRACE] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4224), + [anon_sym_QMARK_COLON] = ACTIONS(4224), + [anon_sym_AMP_AMP] = ACTIONS(4224), + [anon_sym_PIPE_PIPE] = ACTIONS(4224), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4224), + [anon_sym_PLUS_EQ] = ACTIONS(4224), + [anon_sym_DASH_EQ] = ACTIONS(4224), + [anon_sym_STAR_EQ] = ACTIONS(4224), + [anon_sym_SLASH_EQ] = ACTIONS(4224), + [anon_sym_PERCENT_EQ] = ACTIONS(4224), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4224), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4224), + [anon_sym_LT_EQ] = ACTIONS(4224), + [anon_sym_GT_EQ] = ACTIONS(4224), + [anon_sym_BANGin] = ACTIONS(4224), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4224), + [anon_sym_PLUS_PLUS] = ACTIONS(4224), + [anon_sym_DASH_DASH] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4224), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4224), + [anon_sym_continue_AT] = ACTIONS(4224), + [anon_sym_break_AT] = ACTIONS(4224), + [anon_sym_this_AT] = ACTIONS(4224), + [anon_sym_super_AT] = ACTIONS(4224), + [sym_real_literal] = ACTIONS(4224), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4224), + [sym_bin_literal] = ACTIONS(4224), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4224), + [sym_null_literal] = ACTIONS(4222), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4224), + }, + [3129] = { + [aux_sym_nullable_type_repeat1] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_object] = ACTIONS(4295), + [anon_sym_fun] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_this] = ACTIONS(4295), + [anon_sym_super] = ACTIONS(4295), + [sym__quest] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_when] = ACTIONS(4295), + [anon_sym_try] = ACTIONS(4295), + [anon_sym_throw] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4297), + [anon_sym_continue_AT] = ACTIONS(4297), + [anon_sym_break_AT] = ACTIONS(4297), + [anon_sym_this_AT] = ACTIONS(4297), + [anon_sym_super_AT] = ACTIONS(4297), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4297), + [sym_null_literal] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4297), + }, + [3130] = { + [sym__alpha_identifier] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_COMMA] = ACTIONS(4289), + [anon_sym_by] = ACTIONS(4287), + [anon_sym_where] = ACTIONS(4287), + [anon_sym_object] = ACTIONS(4287), + [anon_sym_fun] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4289), + [anon_sym_get] = ACTIONS(4287), + [anon_sym_set] = ACTIONS(4287), + [anon_sym_this] = ACTIONS(4287), + [anon_sym_super] = ACTIONS(4287), + [sym__quest] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4291), + [sym_label] = ACTIONS(4287), + [anon_sym_in] = ACTIONS(4287), + [anon_sym_if] = ACTIONS(4287), + [anon_sym_else] = ACTIONS(4287), + [anon_sym_when] = ACTIONS(4287), + [anon_sym_try] = ACTIONS(4287), + [anon_sym_throw] = ACTIONS(4287), + [anon_sym_return] = ACTIONS(4287), + [anon_sym_continue] = ACTIONS(4287), + [anon_sym_break] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_BANGin] = ACTIONS(4289), + [anon_sym_is] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_suspend] = ACTIONS(4287), + [anon_sym_sealed] = ACTIONS(4287), + [anon_sym_annotation] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4287), + [anon_sym_inner] = ACTIONS(4287), + [anon_sym_value] = ACTIONS(4287), + [anon_sym_override] = ACTIONS(4287), + [anon_sym_lateinit] = ACTIONS(4287), + [anon_sym_public] = ACTIONS(4287), + [anon_sym_private] = ACTIONS(4287), + [anon_sym_internal] = ACTIONS(4287), + [anon_sym_protected] = ACTIONS(4287), + [anon_sym_tailrec] = ACTIONS(4287), + [anon_sym_operator] = ACTIONS(4287), + [anon_sym_infix] = ACTIONS(4287), + [anon_sym_inline] = ACTIONS(4287), + [anon_sym_external] = ACTIONS(4287), + [sym_property_modifier] = ACTIONS(4287), + [anon_sym_abstract] = ACTIONS(4287), + [anon_sym_final] = ACTIONS(4287), + [anon_sym_open] = ACTIONS(4287), + [anon_sym_vararg] = ACTIONS(4287), + [anon_sym_noinline] = ACTIONS(4287), + [anon_sym_crossinline] = ACTIONS(4287), + [anon_sym_expect] = ACTIONS(4287), + [anon_sym_actual] = ACTIONS(4287), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4289), + [anon_sym_continue_AT] = ACTIONS(4289), + [anon_sym_break_AT] = ACTIONS(4289), + [anon_sym_this_AT] = ACTIONS(4289), + [anon_sym_super_AT] = ACTIONS(4289), + [sym_real_literal] = ACTIONS(4289), + [sym_integer_literal] = ACTIONS(4287), + [sym_hex_literal] = ACTIONS(4289), + [sym_bin_literal] = ACTIONS(4289), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4289), + [sym_null_literal] = ACTIONS(4287), + [sym__backtick_identifier] = ACTIONS(4289), + [sym__automatic_semicolon] = ACTIONS(4289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4289), + }, + [3131] = { + [sym__alpha_identifier] = ACTIONS(4836), + [anon_sym_AT] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_where] = ACTIONS(4836), + [anon_sym_object] = ACTIONS(4836), + [anon_sym_fun] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_get] = ACTIONS(4836), + [anon_sym_set] = ACTIONS(4836), + [anon_sym_this] = ACTIONS(4836), + [anon_sym_super] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [sym_label] = ACTIONS(4836), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_if] = ACTIONS(4836), + [anon_sym_else] = ACTIONS(4836), + [anon_sym_when] = ACTIONS(4836), + [anon_sym_try] = ACTIONS(4836), + [anon_sym_throw] = ACTIONS(4836), + [anon_sym_return] = ACTIONS(4836), + [anon_sym_continue] = ACTIONS(4836), + [anon_sym_break] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4838), + [anon_sym_DASH_EQ] = ACTIONS(4838), + [anon_sym_STAR_EQ] = ACTIONS(4838), + [anon_sym_SLASH_EQ] = ACTIONS(4838), + [anon_sym_PERCENT_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_BANGin] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4836), + [anon_sym_BANGis] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_as_QMARK] = ACTIONS(4838), + [anon_sym_PLUS_PLUS] = ACTIONS(4838), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_BANG_BANG] = ACTIONS(4838), + [anon_sym_data] = ACTIONS(4836), + [anon_sym_inner] = ACTIONS(4836), + [anon_sym_value] = ACTIONS(4836), + [anon_sym_expect] = ACTIONS(4836), + [anon_sym_actual] = ACTIONS(4836), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4838), + [anon_sym_continue_AT] = ACTIONS(4838), + [anon_sym_break_AT] = ACTIONS(4838), + [anon_sym_this_AT] = ACTIONS(4838), + [anon_sym_super_AT] = ACTIONS(4838), + [sym_real_literal] = ACTIONS(4838), + [sym_integer_literal] = ACTIONS(4836), + [sym_hex_literal] = ACTIONS(4838), + [sym_bin_literal] = ACTIONS(4838), + [anon_sym_true] = ACTIONS(4836), + [anon_sym_false] = ACTIONS(4836), + [anon_sym_SQUOTE] = ACTIONS(4838), + [sym_null_literal] = ACTIONS(4836), + [sym__backtick_identifier] = ACTIONS(4838), + [sym__automatic_semicolon] = ACTIONS(4838), + [sym_safe_nav] = ACTIONS(4838), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4838), + }, + [3132] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_object] = ACTIONS(4694), + [anon_sym_fun] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_this] = ACTIONS(4694), + [anon_sym_super] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_when] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_throw] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_AT] = ACTIONS(4696), + [anon_sym_this_AT] = ACTIONS(4696), + [anon_sym_super_AT] = ACTIONS(4696), + [sym_real_literal] = ACTIONS(4696), + [sym_integer_literal] = ACTIONS(4694), + [sym_hex_literal] = ACTIONS(4696), + [sym_bin_literal] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4696), + [sym_null_literal] = ACTIONS(4694), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), + }, + [3133] = { + [aux_sym_user_type_repeat1] = STATE(2978), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [3134] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(6623), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3135] = { + [sym_type_constraints] = STATE(3371), + [sym_enum_class_body] = STATE(3414), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_RBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3136] = { + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3137] = { + [aux_sym_nullable_type_repeat1] = STATE(3200), + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_EQ] = ACTIONS(4264), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_object] = ACTIONS(4262), + [anon_sym_fun] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4262), + [anon_sym_super] = ACTIONS(4262), + [sym__quest] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(4264), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_when] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4264), + [anon_sym_continue_AT] = ACTIONS(4264), + [anon_sym_break_AT] = ACTIONS(4264), + [anon_sym_this_AT] = ACTIONS(4264), + [anon_sym_super_AT] = ACTIONS(4264), + [sym_real_literal] = ACTIONS(4264), + [sym_integer_literal] = ACTIONS(4262), + [sym_hex_literal] = ACTIONS(4264), + [sym_bin_literal] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4262), + [anon_sym_false] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4264), + [sym_null_literal] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4264), + }, + [3138] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym_null_literal] = ACTIONS(4732), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), + }, + [3139] = { + [sym__alpha_identifier] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1588), + [anon_sym_fun] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(1588), + [anon_sym_super] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [sym_label] = ACTIONS(1588), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1588), + [anon_sym_throw] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1586), + [anon_sym_continue_AT] = ACTIONS(1586), + [anon_sym_break_AT] = ACTIONS(1586), + [anon_sym_this_AT] = ACTIONS(1586), + [anon_sym_super_AT] = ACTIONS(1586), + [sym_real_literal] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1588), + [sym_hex_literal] = ACTIONS(1586), + [sym_bin_literal] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1586), + [sym_null_literal] = ACTIONS(1588), + [sym__backtick_identifier] = ACTIONS(1586), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1586), + }, + [3140] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_object] = ACTIONS(1768), + [anon_sym_fun] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_this] = ACTIONS(1768), + [anon_sym_super] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_when] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_throw] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_value] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1770), + [anon_sym_continue_AT] = ACTIONS(1770), + [anon_sym_break_AT] = ACTIONS(1770), + [anon_sym_this_AT] = ACTIONS(1770), + [anon_sym_super_AT] = ACTIONS(1770), + [sym_real_literal] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [sym_hex_literal] = ACTIONS(1770), + [sym_bin_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_null_literal] = ACTIONS(1768), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1770), + }, + [3141] = { + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3142] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [3143] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_object] = ACTIONS(4952), + [anon_sym_fun] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_this] = ACTIONS(4952), + [anon_sym_super] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_throw] = ACTIONS(4952), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4954), + [anon_sym_continue_AT] = ACTIONS(4954), + [anon_sym_break_AT] = ACTIONS(4954), + [anon_sym_this_AT] = ACTIONS(4954), + [anon_sym_super_AT] = ACTIONS(4954), + [sym_real_literal] = ACTIONS(4954), + [sym_integer_literal] = ACTIONS(4952), + [sym_hex_literal] = ACTIONS(4954), + [sym_bin_literal] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_SQUOTE] = ACTIONS(4954), + [sym_null_literal] = ACTIONS(4952), + [sym__backtick_identifier] = ACTIONS(4954), + [sym__automatic_semicolon] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4954), + }, + [3144] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [3145] = { + [sym__alpha_identifier] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_as] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_where] = ACTIONS(5018), + [anon_sym_object] = ACTIONS(5018), + [anon_sym_fun] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_get] = ACTIONS(5018), + [anon_sym_set] = ACTIONS(5018), + [anon_sym_this] = ACTIONS(5018), + [anon_sym_super] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [sym_label] = ACTIONS(5018), + [anon_sym_in] = ACTIONS(5018), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_QMARK_COLON] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_if] = ACTIONS(5018), + [anon_sym_else] = ACTIONS(5018), + [anon_sym_when] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5018), + [anon_sym_throw] = ACTIONS(5018), + [anon_sym_return] = ACTIONS(5018), + [anon_sym_continue] = ACTIONS(5018), + [anon_sym_break] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_BANGin] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5018), + [anon_sym_BANGis] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_as_QMARK] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_BANG] = ACTIONS(5018), + [anon_sym_BANG_BANG] = ACTIONS(5020), + [anon_sym_data] = ACTIONS(5018), + [anon_sym_inner] = ACTIONS(5018), + [anon_sym_value] = ACTIONS(5018), + [anon_sym_expect] = ACTIONS(5018), + [anon_sym_actual] = ACTIONS(5018), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5020), + [anon_sym_continue_AT] = ACTIONS(5020), + [anon_sym_break_AT] = ACTIONS(5020), + [anon_sym_this_AT] = ACTIONS(5020), + [anon_sym_super_AT] = ACTIONS(5020), + [sym_real_literal] = ACTIONS(5020), + [sym_integer_literal] = ACTIONS(5018), + [sym_hex_literal] = ACTIONS(5020), + [sym_bin_literal] = ACTIONS(5020), + [anon_sym_true] = ACTIONS(5018), + [anon_sym_false] = ACTIONS(5018), + [anon_sym_SQUOTE] = ACTIONS(5020), + [sym_null_literal] = ACTIONS(5018), + [sym__backtick_identifier] = ACTIONS(5020), + [sym__automatic_semicolon] = ACTIONS(5020), + [sym_safe_nav] = ACTIONS(5020), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5020), + }, + [3146] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(6631), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_object] = ACTIONS(5026), + [anon_sym_fun] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_this] = ACTIONS(5026), + [anon_sym_super] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_when] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5026), + [anon_sym_throw] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5026), + [anon_sym_continue] = ACTIONS(5026), + [anon_sym_break] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5028), + [anon_sym_continue_AT] = ACTIONS(5028), + [anon_sym_break_AT] = ACTIONS(5028), + [anon_sym_this_AT] = ACTIONS(5028), + [anon_sym_super_AT] = ACTIONS(5028), + [sym_real_literal] = ACTIONS(5028), + [sym_integer_literal] = ACTIONS(5026), + [sym_hex_literal] = ACTIONS(5028), + [sym_bin_literal] = ACTIONS(5028), + [anon_sym_true] = ACTIONS(5026), + [anon_sym_false] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5028), + [sym_null_literal] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5028), + [sym__automatic_semicolon] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5028), + }, + [3147] = { + [sym__alpha_identifier] = ACTIONS(5054), + [anon_sym_AT] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_as] = ACTIONS(5054), + [anon_sym_EQ] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_where] = ACTIONS(5054), + [anon_sym_object] = ACTIONS(5054), + [anon_sym_fun] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_get] = ACTIONS(5054), + [anon_sym_set] = ACTIONS(5054), + [anon_sym_this] = ACTIONS(5054), + [anon_sym_super] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [sym_label] = ACTIONS(5054), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_QMARK_COLON] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_if] = ACTIONS(5054), + [anon_sym_else] = ACTIONS(5054), + [anon_sym_when] = ACTIONS(5054), + [anon_sym_try] = ACTIONS(5054), + [anon_sym_throw] = ACTIONS(5054), + [anon_sym_return] = ACTIONS(5054), + [anon_sym_continue] = ACTIONS(5054), + [anon_sym_break] = ACTIONS(5054), + [anon_sym_COLON_COLON] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5056), + [anon_sym_DASH_EQ] = ACTIONS(5056), + [anon_sym_STAR_EQ] = ACTIONS(5056), + [anon_sym_SLASH_EQ] = ACTIONS(5056), + [anon_sym_PERCENT_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_BANGin] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5054), + [anon_sym_BANGis] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5054), + [anon_sym_as_QMARK] = ACTIONS(5056), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_BANG] = ACTIONS(5054), + [anon_sym_BANG_BANG] = ACTIONS(5056), + [anon_sym_data] = ACTIONS(5054), + [anon_sym_inner] = ACTIONS(5054), + [anon_sym_value] = ACTIONS(5054), + [anon_sym_expect] = ACTIONS(5054), + [anon_sym_actual] = ACTIONS(5054), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5056), + [anon_sym_continue_AT] = ACTIONS(5056), + [anon_sym_break_AT] = ACTIONS(5056), + [anon_sym_this_AT] = ACTIONS(5056), + [anon_sym_super_AT] = ACTIONS(5056), + [sym_real_literal] = ACTIONS(5056), + [sym_integer_literal] = ACTIONS(5054), + [sym_hex_literal] = ACTIONS(5056), + [sym_bin_literal] = ACTIONS(5056), + [anon_sym_true] = ACTIONS(5054), + [anon_sym_false] = ACTIONS(5054), + [anon_sym_SQUOTE] = ACTIONS(5056), + [sym_null_literal] = ACTIONS(5054), + [sym__backtick_identifier] = ACTIONS(5056), + [sym__automatic_semicolon] = ACTIONS(5056), + [sym_safe_nav] = ACTIONS(5056), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5056), + }, + [3148] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6633), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [3149] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_object] = ACTIONS(5103), + [anon_sym_fun] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_this] = ACTIONS(5103), + [anon_sym_super] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_if] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_when] = ACTIONS(5103), + [anon_sym_try] = ACTIONS(5103), + [anon_sym_throw] = ACTIONS(5103), + [anon_sym_return] = ACTIONS(5103), + [anon_sym_continue] = ACTIONS(5103), + [anon_sym_break] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5105), + [anon_sym_continue_AT] = ACTIONS(5105), + [anon_sym_break_AT] = ACTIONS(5105), + [anon_sym_this_AT] = ACTIONS(5105), + [anon_sym_super_AT] = ACTIONS(5105), + [sym_real_literal] = ACTIONS(5105), + [sym_integer_literal] = ACTIONS(5103), + [sym_hex_literal] = ACTIONS(5105), + [sym_bin_literal] = ACTIONS(5105), + [anon_sym_true] = ACTIONS(5103), + [anon_sym_false] = ACTIONS(5103), + [anon_sym_SQUOTE] = ACTIONS(5105), + [sym_null_literal] = ACTIONS(5103), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5105), + }, + [3150] = { + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_object] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_this] = ACTIONS(4390), + [anon_sym_super] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4392), + [anon_sym_continue_AT] = ACTIONS(4392), + [anon_sym_break_AT] = ACTIONS(4392), + [anon_sym_this_AT] = ACTIONS(4392), + [anon_sym_super_AT] = ACTIONS(4392), + [sym_real_literal] = ACTIONS(4392), + [sym_integer_literal] = ACTIONS(4390), + [sym_hex_literal] = ACTIONS(4392), + [sym_bin_literal] = ACTIONS(4392), + [anon_sym_true] = ACTIONS(4390), + [anon_sym_false] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4392), + [sym_null_literal] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4392), + }, + [3151] = { + [sym_type_constraints] = STATE(3384), + [sym_enum_class_body] = STATE(3420), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_RBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_DASH_GT] = ACTIONS(4365), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_while] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3152] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3153] = { + [sym__alpha_identifier] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_as] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_where] = ACTIONS(5014), + [anon_sym_object] = ACTIONS(5014), + [anon_sym_fun] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(5014), + [anon_sym_set] = ACTIONS(5014), + [anon_sym_this] = ACTIONS(5014), + [anon_sym_super] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [sym_label] = ACTIONS(5014), + [anon_sym_in] = ACTIONS(5014), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_QMARK_COLON] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_if] = ACTIONS(5014), + [anon_sym_else] = ACTIONS(5014), + [anon_sym_when] = ACTIONS(5014), + [anon_sym_try] = ACTIONS(5014), + [anon_sym_throw] = ACTIONS(5014), + [anon_sym_return] = ACTIONS(5014), + [anon_sym_continue] = ACTIONS(5014), + [anon_sym_break] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_BANGin] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_BANGis] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_as_QMARK] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5014), + [anon_sym_BANG_BANG] = ACTIONS(5016), + [anon_sym_data] = ACTIONS(5014), + [anon_sym_inner] = ACTIONS(5014), + [anon_sym_value] = ACTIONS(5014), + [anon_sym_expect] = ACTIONS(5014), + [anon_sym_actual] = ACTIONS(5014), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5016), + [anon_sym_continue_AT] = ACTIONS(5016), + [anon_sym_break_AT] = ACTIONS(5016), + [anon_sym_this_AT] = ACTIONS(5016), + [anon_sym_super_AT] = ACTIONS(5016), + [sym_real_literal] = ACTIONS(5016), + [sym_integer_literal] = ACTIONS(5014), + [sym_hex_literal] = ACTIONS(5016), + [sym_bin_literal] = ACTIONS(5016), + [anon_sym_true] = ACTIONS(5014), + [anon_sym_false] = ACTIONS(5014), + [anon_sym_SQUOTE] = ACTIONS(5016), + [sym_null_literal] = ACTIONS(5014), + [sym__backtick_identifier] = ACTIONS(5016), + [sym__automatic_semicolon] = ACTIONS(5016), + [sym_safe_nav] = ACTIONS(5016), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5016), + }, + [3154] = { + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_DASH_GT] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3155] = { + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_fun] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_this] = ACTIONS(1760), + [anon_sym_super] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_when] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_data] = ACTIONS(1760), + [anon_sym_inner] = ACTIONS(1760), + [anon_sym_value] = ACTIONS(1760), + [anon_sym_expect] = ACTIONS(1760), + [anon_sym_actual] = ACTIONS(1760), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1762), + [anon_sym_continue_AT] = ACTIONS(1762), + [anon_sym_break_AT] = ACTIONS(1762), + [anon_sym_this_AT] = ACTIONS(1762), + [anon_sym_super_AT] = ACTIONS(1762), + [sym_real_literal] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [sym_hex_literal] = ACTIONS(1762), + [sym_bin_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1762), + [sym_null_literal] = ACTIONS(1760), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1762), + }, + [3156] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3157] = { + [sym__alpha_identifier] = ACTIONS(5115), + [anon_sym_AT] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_as] = ACTIONS(5115), + [anon_sym_EQ] = ACTIONS(5115), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_where] = ACTIONS(5115), + [anon_sym_object] = ACTIONS(5115), + [anon_sym_fun] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_get] = ACTIONS(5115), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_this] = ACTIONS(5115), + [anon_sym_super] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [sym_label] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5115), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_QMARK_COLON] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5115), + [anon_sym_else] = ACTIONS(5115), + [anon_sym_when] = ACTIONS(5115), + [anon_sym_try] = ACTIONS(5115), + [anon_sym_throw] = ACTIONS(5115), + [anon_sym_return] = ACTIONS(5115), + [anon_sym_continue] = ACTIONS(5115), + [anon_sym_break] = ACTIONS(5115), + [anon_sym_COLON_COLON] = ACTIONS(5117), + [anon_sym_PLUS_EQ] = ACTIONS(5117), + [anon_sym_DASH_EQ] = ACTIONS(5117), + [anon_sym_STAR_EQ] = ACTIONS(5117), + [anon_sym_SLASH_EQ] = ACTIONS(5117), + [anon_sym_PERCENT_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_BANGin] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5115), + [anon_sym_BANGis] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_as_QMARK] = ACTIONS(5117), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_BANG_BANG] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5115), + [anon_sym_inner] = ACTIONS(5115), + [anon_sym_value] = ACTIONS(5115), + [anon_sym_expect] = ACTIONS(5115), + [anon_sym_actual] = ACTIONS(5115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5117), + [anon_sym_continue_AT] = ACTIONS(5117), + [anon_sym_break_AT] = ACTIONS(5117), + [anon_sym_this_AT] = ACTIONS(5117), + [anon_sym_super_AT] = ACTIONS(5117), + [sym_real_literal] = ACTIONS(5117), + [sym_integer_literal] = ACTIONS(5115), + [sym_hex_literal] = ACTIONS(5117), + [sym_bin_literal] = ACTIONS(5117), + [anon_sym_true] = ACTIONS(5115), + [anon_sym_false] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5117), + [sym_null_literal] = ACTIONS(5115), + [sym__backtick_identifier] = ACTIONS(5117), + [sym__automatic_semicolon] = ACTIONS(5117), + [sym_safe_nav] = ACTIONS(5117), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5117), + }, + [3158] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_object] = ACTIONS(4956), + [anon_sym_fun] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_this] = ACTIONS(4956), + [anon_sym_super] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_when] = ACTIONS(4956), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_throw] = ACTIONS(4956), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4958), + [anon_sym_continue_AT] = ACTIONS(4958), + [anon_sym_break_AT] = ACTIONS(4958), + [anon_sym_this_AT] = ACTIONS(4958), + [anon_sym_super_AT] = ACTIONS(4958), + [sym_real_literal] = ACTIONS(4958), + [sym_integer_literal] = ACTIONS(4956), + [sym_hex_literal] = ACTIONS(4958), + [sym_bin_literal] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_SQUOTE] = ACTIONS(4958), + [sym_null_literal] = ACTIONS(4956), + [sym__backtick_identifier] = ACTIONS(4958), + [sym__automatic_semicolon] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4958), + }, + [3159] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_if] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_try] = ACTIONS(5149), + [anon_sym_throw] = ACTIONS(5149), + [anon_sym_return] = ACTIONS(5149), + [anon_sym_continue] = ACTIONS(5149), + [anon_sym_break] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5151), + [anon_sym_continue_AT] = ACTIONS(5151), + [anon_sym_break_AT] = ACTIONS(5151), + [anon_sym_this_AT] = ACTIONS(5151), + [anon_sym_super_AT] = ACTIONS(5151), + [sym_real_literal] = ACTIONS(5151), + [sym_integer_literal] = ACTIONS(5149), + [sym_hex_literal] = ACTIONS(5151), + [sym_bin_literal] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym_null_literal] = ACTIONS(5149), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5151), + }, + [3160] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [3161] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3162] = { + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [3163] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_object] = ACTIONS(5026), + [anon_sym_fun] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_this] = ACTIONS(5026), + [anon_sym_super] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [sym_label] = ACTIONS(5026), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_if] = ACTIONS(5026), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_when] = ACTIONS(5026), + [anon_sym_try] = ACTIONS(5026), + [anon_sym_throw] = ACTIONS(5026), + [anon_sym_return] = ACTIONS(5026), + [anon_sym_continue] = ACTIONS(5026), + [anon_sym_break] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG] = ACTIONS(5026), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5028), + [anon_sym_continue_AT] = ACTIONS(5028), + [anon_sym_break_AT] = ACTIONS(5028), + [anon_sym_this_AT] = ACTIONS(5028), + [anon_sym_super_AT] = ACTIONS(5028), + [sym_real_literal] = ACTIONS(5028), + [sym_integer_literal] = ACTIONS(5026), + [sym_hex_literal] = ACTIONS(5028), + [sym_bin_literal] = ACTIONS(5028), + [anon_sym_true] = ACTIONS(5026), + [anon_sym_false] = ACTIONS(5026), + [anon_sym_SQUOTE] = ACTIONS(5028), + [sym_null_literal] = ACTIONS(5026), + [sym__backtick_identifier] = ACTIONS(5028), + [sym__automatic_semicolon] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5028), + }, + [3164] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6635), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [3165] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(6637), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [3166] = { + [sym_class_body] = STATE(3187), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(6639), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [3167] = { + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_object] = ACTIONS(4766), + [anon_sym_fun] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_this] = ACTIONS(4766), + [anon_sym_super] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [sym_label] = ACTIONS(4766), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4766), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_when] = ACTIONS(4766), + [anon_sym_try] = ACTIONS(4766), + [anon_sym_throw] = ACTIONS(4766), + [anon_sym_return] = ACTIONS(4766), + [anon_sym_continue] = ACTIONS(4766), + [anon_sym_break] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG] = ACTIONS(4766), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_value] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4768), + [anon_sym_continue_AT] = ACTIONS(4768), + [anon_sym_break_AT] = ACTIONS(4768), + [anon_sym_this_AT] = ACTIONS(4768), + [anon_sym_super_AT] = ACTIONS(4768), + [sym_real_literal] = ACTIONS(4768), + [sym_integer_literal] = ACTIONS(4766), + [sym_hex_literal] = ACTIONS(4768), + [sym_bin_literal] = ACTIONS(4768), + [anon_sym_true] = ACTIONS(4766), + [anon_sym_false] = ACTIONS(4766), + [anon_sym_SQUOTE] = ACTIONS(4768), + [sym_null_literal] = ACTIONS(4766), + [sym__backtick_identifier] = ACTIONS(4768), + [sym__automatic_semicolon] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4768), + }, + [3168] = { + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_object] = ACTIONS(4632), + [anon_sym_fun] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_this] = ACTIONS(4632), + [anon_sym_super] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_when] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4634), + [anon_sym_continue_AT] = ACTIONS(4634), + [anon_sym_break_AT] = ACTIONS(4634), + [anon_sym_this_AT] = ACTIONS(4634), + [anon_sym_super_AT] = ACTIONS(4634), + [sym_real_literal] = ACTIONS(4634), + [sym_integer_literal] = ACTIONS(4632), + [sym_hex_literal] = ACTIONS(4634), + [sym_bin_literal] = ACTIONS(4634), + [anon_sym_true] = ACTIONS(4632), + [anon_sym_false] = ACTIONS(4632), + [anon_sym_SQUOTE] = ACTIONS(4634), + [sym_null_literal] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4634), + }, + [3169] = { + [sym__alpha_identifier] = ACTIONS(4784), + [anon_sym_AT] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_where] = ACTIONS(4784), + [anon_sym_object] = ACTIONS(4784), + [anon_sym_fun] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(4784), + [anon_sym_set] = ACTIONS(4784), + [anon_sym_this] = ACTIONS(4784), + [anon_sym_super] = ACTIONS(4784), + [anon_sym_STAR] = ACTIONS(4784), + [sym_label] = ACTIONS(4784), + [anon_sym_in] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4786), + [anon_sym_QMARK_COLON] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_if] = ACTIONS(4784), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_when] = ACTIONS(4784), + [anon_sym_try] = ACTIONS(4784), + [anon_sym_throw] = ACTIONS(4784), + [anon_sym_return] = ACTIONS(4784), + [anon_sym_continue] = ACTIONS(4784), + [anon_sym_break] = ACTIONS(4784), + [anon_sym_COLON_COLON] = ACTIONS(4786), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_PERCENT_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4786), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_BANGin] = ACTIONS(4786), + [anon_sym_is] = ACTIONS(4784), + [anon_sym_BANGis] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_PERCENT] = ACTIONS(4784), + [anon_sym_as_QMARK] = ACTIONS(4786), + [anon_sym_PLUS_PLUS] = ACTIONS(4786), + [anon_sym_DASH_DASH] = ACTIONS(4786), + [anon_sym_BANG] = ACTIONS(4784), + [anon_sym_BANG_BANG] = ACTIONS(4786), + [anon_sym_data] = ACTIONS(4784), + [anon_sym_inner] = ACTIONS(4784), + [anon_sym_value] = ACTIONS(4784), + [anon_sym_expect] = ACTIONS(4784), + [anon_sym_actual] = ACTIONS(4784), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4786), + [anon_sym_continue_AT] = ACTIONS(4786), + [anon_sym_break_AT] = ACTIONS(4786), + [anon_sym_this_AT] = ACTIONS(4786), + [anon_sym_super_AT] = ACTIONS(4786), + [sym_real_literal] = ACTIONS(4786), + [sym_integer_literal] = ACTIONS(4784), + [sym_hex_literal] = ACTIONS(4786), + [sym_bin_literal] = ACTIONS(4786), + [anon_sym_true] = ACTIONS(4784), + [anon_sym_false] = ACTIONS(4784), + [anon_sym_SQUOTE] = ACTIONS(4786), + [sym_null_literal] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4786), + [sym__automatic_semicolon] = ACTIONS(4786), + [sym_safe_nav] = ACTIONS(4786), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4786), + }, + [3170] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [sym_label] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), + [sym__backtick_identifier] = ACTIONS(3067), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [3171] = { + [sym__alpha_identifier] = ACTIONS(5046), + [anon_sym_AT] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_as] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_where] = ACTIONS(5046), + [anon_sym_object] = ACTIONS(5046), + [anon_sym_fun] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_get] = ACTIONS(5046), + [anon_sym_set] = ACTIONS(5046), + [anon_sym_this] = ACTIONS(5046), + [anon_sym_super] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [sym_label] = ACTIONS(5046), + [anon_sym_in] = ACTIONS(5046), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_QMARK_COLON] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_if] = ACTIONS(5046), + [anon_sym_else] = ACTIONS(5046), + [anon_sym_when] = ACTIONS(5046), + [anon_sym_try] = ACTIONS(5046), + [anon_sym_throw] = ACTIONS(5046), + [anon_sym_return] = ACTIONS(5046), + [anon_sym_continue] = ACTIONS(5046), + [anon_sym_break] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5048), + [anon_sym_DASH_EQ] = ACTIONS(5048), + [anon_sym_STAR_EQ] = ACTIONS(5048), + [anon_sym_SLASH_EQ] = ACTIONS(5048), + [anon_sym_PERCENT_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_BANGin] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5046), + [anon_sym_BANGis] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_as_QMARK] = ACTIONS(5048), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_BANG] = ACTIONS(5046), + [anon_sym_BANG_BANG] = ACTIONS(5048), + [anon_sym_data] = ACTIONS(5046), + [anon_sym_inner] = ACTIONS(5046), + [anon_sym_value] = ACTIONS(5046), + [anon_sym_expect] = ACTIONS(5046), + [anon_sym_actual] = ACTIONS(5046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5048), + [anon_sym_continue_AT] = ACTIONS(5048), + [anon_sym_break_AT] = ACTIONS(5048), + [anon_sym_this_AT] = ACTIONS(5048), + [anon_sym_super_AT] = ACTIONS(5048), + [sym_real_literal] = ACTIONS(5048), + [sym_integer_literal] = ACTIONS(5046), + [sym_hex_literal] = ACTIONS(5048), + [sym_bin_literal] = ACTIONS(5048), + [anon_sym_true] = ACTIONS(5046), + [anon_sym_false] = ACTIONS(5046), + [anon_sym_SQUOTE] = ACTIONS(5048), + [sym_null_literal] = ACTIONS(5046), + [sym__backtick_identifier] = ACTIONS(5048), + [sym__automatic_semicolon] = ACTIONS(5048), + [sym_safe_nav] = ACTIONS(5048), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5048), + }, + [3172] = { + [sym__alpha_identifier] = ACTIONS(5119), + [anon_sym_AT] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5119), + [anon_sym_EQ] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5119), + [anon_sym_object] = ACTIONS(5119), + [anon_sym_fun] = ACTIONS(5119), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_get] = ACTIONS(5119), + [anon_sym_set] = ACTIONS(5119), + [anon_sym_this] = ACTIONS(5119), + [anon_sym_super] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5119), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_QMARK_COLON] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5119), + [anon_sym_when] = ACTIONS(5119), + [anon_sym_try] = ACTIONS(5119), + [anon_sym_throw] = ACTIONS(5119), + [anon_sym_return] = ACTIONS(5119), + [anon_sym_continue] = ACTIONS(5119), + [anon_sym_break] = ACTIONS(5119), + [anon_sym_COLON_COLON] = ACTIONS(5121), + [anon_sym_PLUS_EQ] = ACTIONS(5121), + [anon_sym_DASH_EQ] = ACTIONS(5121), + [anon_sym_STAR_EQ] = ACTIONS(5121), + [anon_sym_SLASH_EQ] = ACTIONS(5121), + [anon_sym_PERCENT_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_BANGin] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5119), + [anon_sym_BANGis] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5119), + [anon_sym_as_QMARK] = ACTIONS(5121), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5119), + [anon_sym_inner] = ACTIONS(5119), + [anon_sym_value] = ACTIONS(5119), + [anon_sym_expect] = ACTIONS(5119), + [anon_sym_actual] = ACTIONS(5119), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5121), + [anon_sym_continue_AT] = ACTIONS(5121), + [anon_sym_break_AT] = ACTIONS(5121), + [anon_sym_this_AT] = ACTIONS(5121), + [anon_sym_super_AT] = ACTIONS(5121), + [sym_real_literal] = ACTIONS(5121), + [sym_integer_literal] = ACTIONS(5119), + [sym_hex_literal] = ACTIONS(5121), + [sym_bin_literal] = ACTIONS(5121), + [anon_sym_true] = ACTIONS(5119), + [anon_sym_false] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5121), + [sym_null_literal] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5121), + [sym__automatic_semicolon] = ACTIONS(5121), + [sym_safe_nav] = ACTIONS(5121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5121), + }, + [3173] = { + [sym__alpha_identifier] = ACTIONS(5123), + [anon_sym_AT] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_where] = ACTIONS(5123), + [anon_sym_object] = ACTIONS(5123), + [anon_sym_fun] = ACTIONS(5123), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_get] = ACTIONS(5123), + [anon_sym_set] = ACTIONS(5123), + [anon_sym_this] = ACTIONS(5123), + [anon_sym_super] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5123), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_QMARK_COLON] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5123), + [anon_sym_when] = ACTIONS(5123), + [anon_sym_try] = ACTIONS(5123), + [anon_sym_throw] = ACTIONS(5123), + [anon_sym_return] = ACTIONS(5123), + [anon_sym_continue] = ACTIONS(5123), + [anon_sym_break] = ACTIONS(5123), + [anon_sym_COLON_COLON] = ACTIONS(5125), + [anon_sym_PLUS_EQ] = ACTIONS(5125), + [anon_sym_DASH_EQ] = ACTIONS(5125), + [anon_sym_STAR_EQ] = ACTIONS(5125), + [anon_sym_SLASH_EQ] = ACTIONS(5125), + [anon_sym_PERCENT_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_BANGin] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5123), + [anon_sym_BANGis] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_as_QMARK] = ACTIONS(5125), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5125), + [anon_sym_data] = ACTIONS(5123), + [anon_sym_inner] = ACTIONS(5123), + [anon_sym_value] = ACTIONS(5123), + [anon_sym_expect] = ACTIONS(5123), + [anon_sym_actual] = ACTIONS(5123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5125), + [anon_sym_continue_AT] = ACTIONS(5125), + [anon_sym_break_AT] = ACTIONS(5125), + [anon_sym_this_AT] = ACTIONS(5125), + [anon_sym_super_AT] = ACTIONS(5125), + [sym_real_literal] = ACTIONS(5125), + [sym_integer_literal] = ACTIONS(5123), + [sym_hex_literal] = ACTIONS(5125), + [sym_bin_literal] = ACTIONS(5125), + [anon_sym_true] = ACTIONS(5123), + [anon_sym_false] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5125), + [sym_null_literal] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5125), + [sym__automatic_semicolon] = ACTIONS(5125), + [sym_safe_nav] = ACTIONS(5125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5125), + }, + [3174] = { + [sym__alpha_identifier] = ACTIONS(5062), + [anon_sym_AT] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_as] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_where] = ACTIONS(5062), + [anon_sym_object] = ACTIONS(5062), + [anon_sym_fun] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_get] = ACTIONS(5062), + [anon_sym_set] = ACTIONS(5062), + [anon_sym_this] = ACTIONS(5062), + [anon_sym_super] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [sym_label] = ACTIONS(5062), + [anon_sym_in] = ACTIONS(5062), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_QMARK_COLON] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_if] = ACTIONS(5062), + [anon_sym_else] = ACTIONS(5062), + [anon_sym_when] = ACTIONS(5062), + [anon_sym_try] = ACTIONS(5062), + [anon_sym_throw] = ACTIONS(5062), + [anon_sym_return] = ACTIONS(5062), + [anon_sym_continue] = ACTIONS(5062), + [anon_sym_break] = ACTIONS(5062), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_PERCENT_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_BANGin] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5062), + [anon_sym_BANGis] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_as_QMARK] = ACTIONS(5064), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_BANG] = ACTIONS(5062), + [anon_sym_BANG_BANG] = ACTIONS(5064), + [anon_sym_data] = ACTIONS(5062), + [anon_sym_inner] = ACTIONS(5062), + [anon_sym_value] = ACTIONS(5062), + [anon_sym_expect] = ACTIONS(5062), + [anon_sym_actual] = ACTIONS(5062), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5064), + [anon_sym_continue_AT] = ACTIONS(5064), + [anon_sym_break_AT] = ACTIONS(5064), + [anon_sym_this_AT] = ACTIONS(5064), + [anon_sym_super_AT] = ACTIONS(5064), + [sym_real_literal] = ACTIONS(5064), + [sym_integer_literal] = ACTIONS(5062), + [sym_hex_literal] = ACTIONS(5064), + [sym_bin_literal] = ACTIONS(5064), + [anon_sym_true] = ACTIONS(5062), + [anon_sym_false] = ACTIONS(5062), + [anon_sym_SQUOTE] = ACTIONS(5064), + [sym_null_literal] = ACTIONS(5062), + [sym__backtick_identifier] = ACTIONS(5064), + [sym__automatic_semicolon] = ACTIONS(5064), + [sym_safe_nav] = ACTIONS(5064), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5064), + }, + [3175] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_object] = ACTIONS(4988), + [anon_sym_fun] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_this] = ACTIONS(4988), + [anon_sym_super] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [sym_label] = ACTIONS(4988), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_throw] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4990), + [anon_sym_continue_AT] = ACTIONS(4990), + [anon_sym_break_AT] = ACTIONS(4990), + [anon_sym_this_AT] = ACTIONS(4990), + [anon_sym_super_AT] = ACTIONS(4990), + [sym_real_literal] = ACTIONS(4990), + [sym_integer_literal] = ACTIONS(4988), + [sym_hex_literal] = ACTIONS(4990), + [sym_bin_literal] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4990), + [sym_null_literal] = ACTIONS(4988), + [sym__backtick_identifier] = ACTIONS(4990), + [sym__automatic_semicolon] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4990), + }, + [3176] = { + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [3177] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_object] = ACTIONS(5135), + [anon_sym_fun] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_this] = ACTIONS(5135), + [anon_sym_super] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_when] = ACTIONS(5135), + [anon_sym_try] = ACTIONS(5135), + [anon_sym_throw] = ACTIONS(5135), + [anon_sym_return] = ACTIONS(5135), + [anon_sym_continue] = ACTIONS(5135), + [anon_sym_break] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5137), + [anon_sym_continue_AT] = ACTIONS(5137), + [anon_sym_break_AT] = ACTIONS(5137), + [anon_sym_this_AT] = ACTIONS(5137), + [anon_sym_super_AT] = ACTIONS(5137), + [sym_real_literal] = ACTIONS(5137), + [sym_integer_literal] = ACTIONS(5135), + [sym_hex_literal] = ACTIONS(5137), + [sym_bin_literal] = ACTIONS(5137), + [anon_sym_true] = ACTIONS(5135), + [anon_sym_false] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5137), + [sym_null_literal] = ACTIONS(5135), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5137), + }, + [3178] = { + [sym_class_body] = STATE(3437), + [sym_type_constraints] = STATE(3385), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3179] = { + [sym__alpha_identifier] = ACTIONS(5066), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_as] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_where] = ACTIONS(5066), + [anon_sym_object] = ACTIONS(5066), + [anon_sym_fun] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_get] = ACTIONS(5066), + [anon_sym_set] = ACTIONS(5066), + [anon_sym_this] = ACTIONS(5066), + [anon_sym_super] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [sym_label] = ACTIONS(5066), + [anon_sym_in] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_QMARK_COLON] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_if] = ACTIONS(5066), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_when] = ACTIONS(5066), + [anon_sym_try] = ACTIONS(5066), + [anon_sym_throw] = ACTIONS(5066), + [anon_sym_return] = ACTIONS(5066), + [anon_sym_continue] = ACTIONS(5066), + [anon_sym_break] = ACTIONS(5066), + [anon_sym_COLON_COLON] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_PERCENT_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5066), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5066), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_BANGin] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5066), + [anon_sym_BANGis] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5066), + [anon_sym_as_QMARK] = ACTIONS(5068), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_BANG] = ACTIONS(5066), + [anon_sym_BANG_BANG] = ACTIONS(5068), + [anon_sym_data] = ACTIONS(5066), + [anon_sym_inner] = ACTIONS(5066), + [anon_sym_value] = ACTIONS(5066), + [anon_sym_expect] = ACTIONS(5066), + [anon_sym_actual] = ACTIONS(5066), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5068), + [anon_sym_continue_AT] = ACTIONS(5068), + [anon_sym_break_AT] = ACTIONS(5068), + [anon_sym_this_AT] = ACTIONS(5068), + [anon_sym_super_AT] = ACTIONS(5068), + [sym_real_literal] = ACTIONS(5068), + [sym_integer_literal] = ACTIONS(5066), + [sym_hex_literal] = ACTIONS(5068), + [sym_bin_literal] = ACTIONS(5068), + [anon_sym_true] = ACTIONS(5066), + [anon_sym_false] = ACTIONS(5066), + [anon_sym_SQUOTE] = ACTIONS(5068), + [sym_null_literal] = ACTIONS(5066), + [sym__backtick_identifier] = ACTIONS(5068), + [sym__automatic_semicolon] = ACTIONS(5068), + [sym_safe_nav] = ACTIONS(5068), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5068), + }, + [3180] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3181] = { + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_object] = ACTIONS(4386), + [anon_sym_fun] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_this] = ACTIONS(4386), + [anon_sym_super] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4386), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_when] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4386), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4388), + [anon_sym_continue_AT] = ACTIONS(4388), + [anon_sym_break_AT] = ACTIONS(4388), + [anon_sym_this_AT] = ACTIONS(4388), + [anon_sym_super_AT] = ACTIONS(4388), + [sym_real_literal] = ACTIONS(4388), + [sym_integer_literal] = ACTIONS(4386), + [sym_hex_literal] = ACTIONS(4388), + [sym_bin_literal] = ACTIONS(4388), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_SQUOTE] = ACTIONS(4388), + [sym_null_literal] = ACTIONS(4386), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4388), + }, + [3182] = { + [sym__alpha_identifier] = ACTIONS(5091), + [anon_sym_AT] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5091), + [anon_sym_where] = ACTIONS(5091), + [anon_sym_object] = ACTIONS(5091), + [anon_sym_fun] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_get] = ACTIONS(5091), + [anon_sym_set] = ACTIONS(5091), + [anon_sym_this] = ACTIONS(5091), + [anon_sym_super] = ACTIONS(5091), + [anon_sym_STAR] = ACTIONS(5091), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5091), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_QMARK_COLON] = ACTIONS(5093), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_if] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5091), + [anon_sym_when] = ACTIONS(5091), + [anon_sym_try] = ACTIONS(5091), + [anon_sym_throw] = ACTIONS(5091), + [anon_sym_return] = ACTIONS(5091), + [anon_sym_continue] = ACTIONS(5091), + [anon_sym_break] = ACTIONS(5091), + [anon_sym_COLON_COLON] = ACTIONS(5093), + [anon_sym_PLUS_EQ] = ACTIONS(5093), + [anon_sym_DASH_EQ] = ACTIONS(5093), + [anon_sym_STAR_EQ] = ACTIONS(5093), + [anon_sym_SLASH_EQ] = ACTIONS(5093), + [anon_sym_PERCENT_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_BANGin] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5091), + [anon_sym_BANGis] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5091), + [anon_sym_SLASH] = ACTIONS(5091), + [anon_sym_PERCENT] = ACTIONS(5091), + [anon_sym_as_QMARK] = ACTIONS(5093), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5093), + [anon_sym_data] = ACTIONS(5091), + [anon_sym_inner] = ACTIONS(5091), + [anon_sym_value] = ACTIONS(5091), + [anon_sym_expect] = ACTIONS(5091), + [anon_sym_actual] = ACTIONS(5091), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5093), + [anon_sym_continue_AT] = ACTIONS(5093), + [anon_sym_break_AT] = ACTIONS(5093), + [anon_sym_this_AT] = ACTIONS(5093), + [anon_sym_super_AT] = ACTIONS(5093), + [sym_real_literal] = ACTIONS(5093), + [sym_integer_literal] = ACTIONS(5091), + [sym_hex_literal] = ACTIONS(5093), + [sym_bin_literal] = ACTIONS(5093), + [anon_sym_true] = ACTIONS(5091), + [anon_sym_false] = ACTIONS(5091), + [anon_sym_SQUOTE] = ACTIONS(5093), + [sym_null_literal] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(5093), + [sym__automatic_semicolon] = ACTIONS(5093), + [sym_safe_nav] = ACTIONS(5093), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5093), + }, + [3183] = { + [sym__alpha_identifier] = ACTIONS(4405), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_RBRACK] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(4405), + [anon_sym_as] = ACTIONS(4405), + [anon_sym_EQ] = ACTIONS(4405), + [anon_sym_constructor] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_RBRACE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_where] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4405), + [anon_sym_set] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4405), + [anon_sym_DASH_GT] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4405), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_DOT_DOT] = ACTIONS(4407), + [anon_sym_QMARK_COLON] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_PLUS_EQ] = ACTIONS(4407), + [anon_sym_DASH_EQ] = ACTIONS(4407), + [anon_sym_STAR_EQ] = ACTIONS(4407), + [anon_sym_SLASH_EQ] = ACTIONS(4407), + [anon_sym_PERCENT_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), + [anon_sym_LT_EQ] = ACTIONS(4407), + [anon_sym_GT_EQ] = ACTIONS(4407), + [anon_sym_BANGin] = ACTIONS(4407), + [anon_sym_is] = ACTIONS(4405), + [anon_sym_BANGis] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_SLASH] = ACTIONS(4405), + [anon_sym_PERCENT] = ACTIONS(4405), + [anon_sym_as_QMARK] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4407), + [anon_sym_suspend] = ACTIONS(4405), + [anon_sym_sealed] = ACTIONS(4405), + [anon_sym_annotation] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4405), + [anon_sym_inner] = ACTIONS(4405), + [anon_sym_value] = ACTIONS(4405), + [anon_sym_override] = ACTIONS(4405), + [anon_sym_lateinit] = ACTIONS(4405), + [anon_sym_public] = ACTIONS(4405), + [anon_sym_private] = ACTIONS(4405), + [anon_sym_internal] = ACTIONS(4405), + [anon_sym_protected] = ACTIONS(4405), + [anon_sym_tailrec] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_infix] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym_external] = ACTIONS(4405), + [sym_property_modifier] = ACTIONS(4405), + [anon_sym_abstract] = ACTIONS(4405), + [anon_sym_final] = ACTIONS(4405), + [anon_sym_open] = ACTIONS(4405), + [anon_sym_vararg] = ACTIONS(4405), + [anon_sym_noinline] = ACTIONS(4405), + [anon_sym_crossinline] = ACTIONS(4405), + [anon_sym_expect] = ACTIONS(4405), + [anon_sym_actual] = ACTIONS(4405), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4407), + [sym_safe_nav] = ACTIONS(4407), + [sym_multiline_comment] = ACTIONS(3), + }, + [3184] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_object] = ACTIONS(5099), + [anon_sym_fun] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_this] = ACTIONS(5099), + [anon_sym_super] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_if] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_when] = ACTIONS(5099), + [anon_sym_try] = ACTIONS(5099), + [anon_sym_throw] = ACTIONS(5099), + [anon_sym_return] = ACTIONS(5099), + [anon_sym_continue] = ACTIONS(5099), + [anon_sym_break] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5101), + [anon_sym_continue_AT] = ACTIONS(5101), + [anon_sym_break_AT] = ACTIONS(5101), + [anon_sym_this_AT] = ACTIONS(5101), + [anon_sym_super_AT] = ACTIONS(5101), + [sym_real_literal] = ACTIONS(5101), + [sym_integer_literal] = ACTIONS(5099), + [sym_hex_literal] = ACTIONS(5101), + [sym_bin_literal] = ACTIONS(5101), + [anon_sym_true] = ACTIONS(5099), + [anon_sym_false] = ACTIONS(5099), + [anon_sym_SQUOTE] = ACTIONS(5101), + [sym_null_literal] = ACTIONS(5099), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5101), + }, + [3185] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(6641), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [3186] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_object] = ACTIONS(4718), + [anon_sym_fun] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_this] = ACTIONS(4718), + [anon_sym_super] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_when] = ACTIONS(4718), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_throw] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4720), + [anon_sym_continue_AT] = ACTIONS(4720), + [anon_sym_break_AT] = ACTIONS(4720), + [anon_sym_this_AT] = ACTIONS(4720), + [anon_sym_super_AT] = ACTIONS(4720), + [sym_real_literal] = ACTIONS(4720), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4720), + [sym_bin_literal] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4720), + [sym_null_literal] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4720), + }, + [3187] = { + [sym__alpha_identifier] = ACTIONS(5083), + [anon_sym_AT] = ACTIONS(5085), + [anon_sym_LBRACK] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5083), + [anon_sym_as] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5085), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5085), + [anon_sym_COMMA] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5083), + [anon_sym_GT] = ACTIONS(5083), + [anon_sym_where] = ACTIONS(5083), + [anon_sym_object] = ACTIONS(5083), + [anon_sym_fun] = ACTIONS(5083), + [anon_sym_SEMI] = ACTIONS(5085), + [anon_sym_get] = ACTIONS(5083), + [anon_sym_set] = ACTIONS(5083), + [anon_sym_this] = ACTIONS(5083), + [anon_sym_super] = ACTIONS(5083), + [anon_sym_STAR] = ACTIONS(5083), + [sym_label] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_QMARK_COLON] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5085), + [anon_sym_PIPE_PIPE] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5083), + [anon_sym_when] = ACTIONS(5083), + [anon_sym_try] = ACTIONS(5083), + [anon_sym_throw] = ACTIONS(5083), + [anon_sym_return] = ACTIONS(5083), + [anon_sym_continue] = ACTIONS(5083), + [anon_sym_break] = ACTIONS(5083), + [anon_sym_COLON_COLON] = ACTIONS(5085), + [anon_sym_PLUS_EQ] = ACTIONS(5085), + [anon_sym_DASH_EQ] = ACTIONS(5085), + [anon_sym_STAR_EQ] = ACTIONS(5085), + [anon_sym_SLASH_EQ] = ACTIONS(5085), + [anon_sym_PERCENT_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), + [anon_sym_LT_EQ] = ACTIONS(5085), + [anon_sym_GT_EQ] = ACTIONS(5085), + [anon_sym_BANGin] = ACTIONS(5085), + [anon_sym_is] = ACTIONS(5083), + [anon_sym_BANGis] = ACTIONS(5085), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), + [anon_sym_SLASH] = ACTIONS(5083), + [anon_sym_PERCENT] = ACTIONS(5083), + [anon_sym_as_QMARK] = ACTIONS(5085), + [anon_sym_PLUS_PLUS] = ACTIONS(5085), + [anon_sym_DASH_DASH] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5083), + [anon_sym_BANG_BANG] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5083), + [anon_sym_inner] = ACTIONS(5083), + [anon_sym_value] = ACTIONS(5083), + [anon_sym_expect] = ACTIONS(5083), + [anon_sym_actual] = ACTIONS(5083), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5085), + [anon_sym_continue_AT] = ACTIONS(5085), + [anon_sym_break_AT] = ACTIONS(5085), + [anon_sym_this_AT] = ACTIONS(5085), + [anon_sym_super_AT] = ACTIONS(5085), + [sym_real_literal] = ACTIONS(5085), + [sym_integer_literal] = ACTIONS(5083), + [sym_hex_literal] = ACTIONS(5085), + [sym_bin_literal] = ACTIONS(5085), + [anon_sym_true] = ACTIONS(5083), + [anon_sym_false] = ACTIONS(5083), + [anon_sym_SQUOTE] = ACTIONS(5085), + [sym_null_literal] = ACTIONS(5083), + [sym__backtick_identifier] = ACTIONS(5085), + [sym__automatic_semicolon] = ACTIONS(5085), + [sym_safe_nav] = ACTIONS(5085), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5085), + }, + [3188] = { + [sym_function_body] = STATE(3577), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_RBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_DASH_GT] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [3189] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_object] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_this] = ACTIONS(5131), + [anon_sym_super] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_when] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_throw] = ACTIONS(5131), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_continue] = ACTIONS(5131), + [anon_sym_break] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5133), + [anon_sym_continue_AT] = ACTIONS(5133), + [anon_sym_break_AT] = ACTIONS(5133), + [anon_sym_this_AT] = ACTIONS(5133), + [anon_sym_super_AT] = ACTIONS(5133), + [sym_real_literal] = ACTIONS(5133), + [sym_integer_literal] = ACTIONS(5131), + [sym_hex_literal] = ACTIONS(5133), + [sym_bin_literal] = ACTIONS(5133), + [anon_sym_true] = ACTIONS(5131), + [anon_sym_false] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5133), + [sym_null_literal] = ACTIONS(5131), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5133), + }, + [3190] = { + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [3191] = { + [sym__alpha_identifier] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_RBRACK] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_COMMA] = ACTIONS(4289), + [anon_sym_RPAREN] = ACTIONS(4289), + [anon_sym_by] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_where] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4289), + [anon_sym_get] = ACTIONS(4287), + [anon_sym_set] = ACTIONS(4287), + [sym__quest] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_DASH_GT] = ACTIONS(4291), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4287), + [anon_sym_while] = ACTIONS(4287), + [anon_sym_DOT_DOT] = ACTIONS(4289), + [anon_sym_QMARK_COLON] = ACTIONS(4289), + [anon_sym_AMP_AMP] = ACTIONS(4289), + [anon_sym_PIPE_PIPE] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_PLUS_EQ] = ACTIONS(4289), + [anon_sym_DASH_EQ] = ACTIONS(4289), + [anon_sym_STAR_EQ] = ACTIONS(4289), + [anon_sym_SLASH_EQ] = ACTIONS(4289), + [anon_sym_PERCENT_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), + [anon_sym_LT_EQ] = ACTIONS(4289), + [anon_sym_GT_EQ] = ACTIONS(4289), + [anon_sym_BANGin] = ACTIONS(4289), + [anon_sym_is] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4289), + [anon_sym_PLUS_PLUS] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4289), + [anon_sym_suspend] = ACTIONS(4287), + [anon_sym_sealed] = ACTIONS(4287), + [anon_sym_annotation] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4287), + [anon_sym_inner] = ACTIONS(4287), + [anon_sym_value] = ACTIONS(4287), + [anon_sym_override] = ACTIONS(4287), + [anon_sym_lateinit] = ACTIONS(4287), + [anon_sym_public] = ACTIONS(4287), + [anon_sym_private] = ACTIONS(4287), + [anon_sym_internal] = ACTIONS(4287), + [anon_sym_protected] = ACTIONS(4287), + [anon_sym_tailrec] = ACTIONS(4287), + [anon_sym_operator] = ACTIONS(4287), + [anon_sym_infix] = ACTIONS(4287), + [anon_sym_inline] = ACTIONS(4287), + [anon_sym_external] = ACTIONS(4287), + [sym_property_modifier] = ACTIONS(4287), + [anon_sym_abstract] = ACTIONS(4287), + [anon_sym_final] = ACTIONS(4287), + [anon_sym_open] = ACTIONS(4287), + [anon_sym_vararg] = ACTIONS(4287), + [anon_sym_noinline] = ACTIONS(4287), + [anon_sym_crossinline] = ACTIONS(4287), + [anon_sym_expect] = ACTIONS(4287), + [anon_sym_actual] = ACTIONS(4287), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4289), + [sym_safe_nav] = ACTIONS(4289), + [sym_multiline_comment] = ACTIONS(3), + }, + [3192] = { + [sym_class_body] = STATE(3467), + [sym_type_constraints] = STATE(3313), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_DASH_GT] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3193] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_object] = ACTIONS(1780), + [anon_sym_fun] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_this] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_when] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [anon_sym_throw] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_value] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1782), + [anon_sym_continue_AT] = ACTIONS(1782), + [anon_sym_break_AT] = ACTIONS(1782), + [anon_sym_this_AT] = ACTIONS(1782), + [anon_sym_super_AT] = ACTIONS(1782), + [sym_real_literal] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [sym_hex_literal] = ACTIONS(1782), + [sym_bin_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_null_literal] = ACTIONS(1780), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1782), + }, + [3194] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_constructor] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3947), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [3195] = { + [sym__alpha_identifier] = ACTIONS(5087), + [anon_sym_AT] = ACTIONS(5089), + [anon_sym_LBRACK] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5089), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_COMMA] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5087), + [anon_sym_GT] = ACTIONS(5087), + [anon_sym_where] = ACTIONS(5087), + [anon_sym_object] = ACTIONS(5087), + [anon_sym_fun] = ACTIONS(5087), + [anon_sym_SEMI] = ACTIONS(5089), + [anon_sym_get] = ACTIONS(5087), + [anon_sym_set] = ACTIONS(5087), + [anon_sym_this] = ACTIONS(5087), + [anon_sym_super] = ACTIONS(5087), + [anon_sym_STAR] = ACTIONS(5087), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5087), + [anon_sym_DOT_DOT] = ACTIONS(5089), + [anon_sym_QMARK_COLON] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5089), + [anon_sym_if] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5087), + [anon_sym_when] = ACTIONS(5087), + [anon_sym_try] = ACTIONS(5087), + [anon_sym_throw] = ACTIONS(5087), + [anon_sym_return] = ACTIONS(5087), + [anon_sym_continue] = ACTIONS(5087), + [anon_sym_break] = ACTIONS(5087), + [anon_sym_COLON_COLON] = ACTIONS(5089), + [anon_sym_PLUS_EQ] = ACTIONS(5089), + [anon_sym_DASH_EQ] = ACTIONS(5089), + [anon_sym_STAR_EQ] = ACTIONS(5089), + [anon_sym_SLASH_EQ] = ACTIONS(5089), + [anon_sym_PERCENT_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5089), + [anon_sym_BANGin] = ACTIONS(5089), + [anon_sym_is] = ACTIONS(5087), + [anon_sym_BANGis] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5087), + [anon_sym_DASH] = ACTIONS(5087), + [anon_sym_SLASH] = ACTIONS(5087), + [anon_sym_PERCENT] = ACTIONS(5087), + [anon_sym_as_QMARK] = ACTIONS(5089), + [anon_sym_PLUS_PLUS] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5087), + [anon_sym_inner] = ACTIONS(5087), + [anon_sym_value] = ACTIONS(5087), + [anon_sym_expect] = ACTIONS(5087), + [anon_sym_actual] = ACTIONS(5087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5089), + [anon_sym_continue_AT] = ACTIONS(5089), + [anon_sym_break_AT] = ACTIONS(5089), + [anon_sym_this_AT] = ACTIONS(5089), + [anon_sym_super_AT] = ACTIONS(5089), + [sym_real_literal] = ACTIONS(5089), + [sym_integer_literal] = ACTIONS(5087), + [sym_hex_literal] = ACTIONS(5089), + [sym_bin_literal] = ACTIONS(5089), + [anon_sym_true] = ACTIONS(5087), + [anon_sym_false] = ACTIONS(5087), + [anon_sym_SQUOTE] = ACTIONS(5089), + [sym_null_literal] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5089), + [sym__automatic_semicolon] = ACTIONS(5089), + [sym_safe_nav] = ACTIONS(5089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5089), + }, + [3196] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_object] = ACTIONS(4992), + [anon_sym_fun] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_this] = ACTIONS(4992), + [anon_sym_super] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4992), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_throw] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(4994), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4994), + [anon_sym_continue_AT] = ACTIONS(4994), + [anon_sym_break_AT] = ACTIONS(4994), + [anon_sym_this_AT] = ACTIONS(4994), + [anon_sym_super_AT] = ACTIONS(4994), + [sym_real_literal] = ACTIONS(4994), + [sym_integer_literal] = ACTIONS(4992), + [sym_hex_literal] = ACTIONS(4994), + [sym_bin_literal] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4994), + [sym_null_literal] = ACTIONS(4992), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4994), + }, + [3197] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_fun] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_this] = ACTIONS(207), + [anon_sym_super] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [sym_label] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_try] = ACTIONS(207), + [anon_sym_throw] = ACTIONS(207), + [anon_sym_return] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_break] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_value] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(205), + [anon_sym_continue_AT] = ACTIONS(205), + [anon_sym_break_AT] = ACTIONS(205), + [anon_sym_this_AT] = ACTIONS(205), + [anon_sym_super_AT] = ACTIONS(205), + [sym_real_literal] = ACTIONS(205), + [sym_integer_literal] = ACTIONS(207), + [sym_hex_literal] = ACTIONS(205), + [sym_bin_literal] = ACTIONS(205), + [anon_sym_true] = ACTIONS(207), + [anon_sym_false] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(205), + [sym_null_literal] = ACTIONS(207), + [sym__backtick_identifier] = ACTIONS(205), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(205), + }, + [3198] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_object] = ACTIONS(5143), + [anon_sym_fun] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_this] = ACTIONS(5143), + [anon_sym_super] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [sym_label] = ACTIONS(5143), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5143), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_when] = ACTIONS(5143), + [anon_sym_try] = ACTIONS(5143), + [anon_sym_throw] = ACTIONS(5143), + [anon_sym_return] = ACTIONS(5143), + [anon_sym_continue] = ACTIONS(5143), + [anon_sym_break] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5143), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5145), + [anon_sym_continue_AT] = ACTIONS(5145), + [anon_sym_break_AT] = ACTIONS(5145), + [anon_sym_this_AT] = ACTIONS(5145), + [anon_sym_super_AT] = ACTIONS(5145), + [sym_real_literal] = ACTIONS(5145), + [sym_integer_literal] = ACTIONS(5143), + [sym_hex_literal] = ACTIONS(5145), + [sym_bin_literal] = ACTIONS(5145), + [anon_sym_true] = ACTIONS(5143), + [anon_sym_false] = ACTIONS(5143), + [anon_sym_SQUOTE] = ACTIONS(5145), + [sym_null_literal] = ACTIONS(5143), + [sym__backtick_identifier] = ACTIONS(5145), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5145), + }, + [3199] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_RBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4437), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_while] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_catch] = ACTIONS(4435), + [anon_sym_finally] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [3200] = { + [aux_sym_nullable_type_repeat1] = STATE(3293), + [sym__alpha_identifier] = ACTIONS(4254), + [anon_sym_AT] = ACTIONS(4256), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_EQ] = ACTIONS(4256), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4254), + [anon_sym_where] = ACTIONS(4254), + [anon_sym_object] = ACTIONS(4254), + [anon_sym_fun] = ACTIONS(4254), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym_get] = ACTIONS(4254), + [anon_sym_set] = ACTIONS(4254), + [anon_sym_this] = ACTIONS(4254), + [anon_sym_super] = ACTIONS(4254), + [sym__quest] = ACTIONS(6643), + [anon_sym_STAR] = ACTIONS(4256), + [sym_label] = ACTIONS(4254), + [anon_sym_in] = ACTIONS(4254), + [anon_sym_if] = ACTIONS(4254), + [anon_sym_else] = ACTIONS(4254), + [anon_sym_when] = ACTIONS(4254), + [anon_sym_try] = ACTIONS(4254), + [anon_sym_throw] = ACTIONS(4254), + [anon_sym_return] = ACTIONS(4254), + [anon_sym_continue] = ACTIONS(4254), + [anon_sym_break] = ACTIONS(4254), + [anon_sym_COLON_COLON] = ACTIONS(4256), + [anon_sym_BANGin] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4254), + [anon_sym_BANGis] = ACTIONS(4256), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_BANG] = ACTIONS(4254), + [anon_sym_suspend] = ACTIONS(4254), + [anon_sym_sealed] = ACTIONS(4254), + [anon_sym_annotation] = ACTIONS(4254), + [anon_sym_data] = ACTIONS(4254), + [anon_sym_inner] = ACTIONS(4254), + [anon_sym_value] = ACTIONS(4254), + [anon_sym_override] = ACTIONS(4254), + [anon_sym_lateinit] = ACTIONS(4254), + [anon_sym_public] = ACTIONS(4254), + [anon_sym_private] = ACTIONS(4254), + [anon_sym_internal] = ACTIONS(4254), + [anon_sym_protected] = ACTIONS(4254), + [anon_sym_tailrec] = ACTIONS(4254), + [anon_sym_operator] = ACTIONS(4254), + [anon_sym_infix] = ACTIONS(4254), + [anon_sym_inline] = ACTIONS(4254), + [anon_sym_external] = ACTIONS(4254), + [sym_property_modifier] = ACTIONS(4254), + [anon_sym_abstract] = ACTIONS(4254), + [anon_sym_final] = ACTIONS(4254), + [anon_sym_open] = ACTIONS(4254), + [anon_sym_vararg] = ACTIONS(4254), + [anon_sym_noinline] = ACTIONS(4254), + [anon_sym_crossinline] = ACTIONS(4254), + [anon_sym_expect] = ACTIONS(4254), + [anon_sym_actual] = ACTIONS(4254), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4256), + [anon_sym_continue_AT] = ACTIONS(4256), + [anon_sym_break_AT] = ACTIONS(4256), + [anon_sym_this_AT] = ACTIONS(4256), + [anon_sym_super_AT] = ACTIONS(4256), + [sym_real_literal] = ACTIONS(4256), + [sym_integer_literal] = ACTIONS(4254), + [sym_hex_literal] = ACTIONS(4256), + [sym_bin_literal] = ACTIONS(4256), + [anon_sym_true] = ACTIONS(4254), + [anon_sym_false] = ACTIONS(4254), + [anon_sym_SQUOTE] = ACTIONS(4256), + [sym_null_literal] = ACTIONS(4254), + [sym__backtick_identifier] = ACTIONS(4256), + [sym__automatic_semicolon] = ACTIONS(4256), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4256), + }, + [3201] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_object] = ACTIONS(5175), + [anon_sym_fun] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_this] = ACTIONS(5175), + [anon_sym_super] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5175), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_if] = ACTIONS(5175), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_when] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_throw] = ACTIONS(5175), + [anon_sym_return] = ACTIONS(5175), + [anon_sym_continue] = ACTIONS(5175), + [anon_sym_break] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5175), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5177), + [anon_sym_continue_AT] = ACTIONS(5177), + [anon_sym_break_AT] = ACTIONS(5177), + [anon_sym_this_AT] = ACTIONS(5177), + [anon_sym_super_AT] = ACTIONS(5177), + [sym_real_literal] = ACTIONS(5177), + [sym_integer_literal] = ACTIONS(5175), + [sym_hex_literal] = ACTIONS(5177), + [sym_bin_literal] = ACTIONS(5177), + [anon_sym_true] = ACTIONS(5175), + [anon_sym_false] = ACTIONS(5175), + [anon_sym_SQUOTE] = ACTIONS(5177), + [sym_null_literal] = ACTIONS(5175), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5177), + }, + [3202] = { + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_fun] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_this] = ACTIONS(3272), + [anon_sym_super] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_when] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_data] = ACTIONS(3272), + [anon_sym_inner] = ACTIONS(3272), + [anon_sym_value] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3272), + [anon_sym_actual] = ACTIONS(3272), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3276), + [anon_sym_continue_AT] = ACTIONS(3276), + [anon_sym_break_AT] = ACTIONS(3276), + [anon_sym_this_AT] = ACTIONS(3276), + [anon_sym_super_AT] = ACTIONS(3276), + [sym_real_literal] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3272), + [sym_hex_literal] = ACTIONS(3276), + [sym_bin_literal] = ACTIONS(3276), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_null_literal] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3276), + }, + [3203] = { + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3204] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym_null_literal] = ACTIONS(5153), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5155), + }, + [3205] = { + [sym_class_body] = STATE(3088), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(6645), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [3206] = { + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3207] = { + [sym_function_body] = STATE(3600), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [anon_sym_DASH_GT] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [3208] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_object] = ACTIONS(5074), + [anon_sym_fun] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_this] = ACTIONS(5074), + [anon_sym_super] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [sym_label] = ACTIONS(5074), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_if] = ACTIONS(5074), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_when] = ACTIONS(5074), + [anon_sym_try] = ACTIONS(5074), + [anon_sym_throw] = ACTIONS(5074), + [anon_sym_return] = ACTIONS(5074), + [anon_sym_continue] = ACTIONS(5074), + [anon_sym_break] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_PERCENT_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5076), + [anon_sym_continue_AT] = ACTIONS(5076), + [anon_sym_break_AT] = ACTIONS(5076), + [anon_sym_this_AT] = ACTIONS(5076), + [anon_sym_super_AT] = ACTIONS(5076), + [sym_real_literal] = ACTIONS(5076), + [sym_integer_literal] = ACTIONS(5074), + [sym_hex_literal] = ACTIONS(5076), + [sym_bin_literal] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5074), + [anon_sym_false] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5076), + [sym_null_literal] = ACTIONS(5074), + [sym__backtick_identifier] = ACTIONS(5076), + [sym__automatic_semicolon] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5076), + }, + [3209] = { + [sym__alpha_identifier] = ACTIONS(5000), + [anon_sym_AT] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_as] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_where] = ACTIONS(5000), + [anon_sym_object] = ACTIONS(5000), + [anon_sym_fun] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_get] = ACTIONS(5000), + [anon_sym_set] = ACTIONS(5000), + [anon_sym_this] = ACTIONS(5000), + [anon_sym_super] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [sym_label] = ACTIONS(5000), + [anon_sym_in] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5002), + [anon_sym_QMARK_COLON] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_if] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_when] = ACTIONS(5000), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_throw] = ACTIONS(5000), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_continue] = ACTIONS(5000), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5002), + [anon_sym_is] = ACTIONS(5000), + [anon_sym_BANGis] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_as_QMARK] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_BANG] = ACTIONS(5000), + [anon_sym_BANG_BANG] = ACTIONS(5002), + [anon_sym_data] = ACTIONS(5000), + [anon_sym_inner] = ACTIONS(5000), + [anon_sym_value] = ACTIONS(5000), + [anon_sym_expect] = ACTIONS(5000), + [anon_sym_actual] = ACTIONS(5000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5002), + [anon_sym_continue_AT] = ACTIONS(5002), + [anon_sym_break_AT] = ACTIONS(5002), + [anon_sym_this_AT] = ACTIONS(5002), + [anon_sym_super_AT] = ACTIONS(5002), + [sym_real_literal] = ACTIONS(5002), + [sym_integer_literal] = ACTIONS(5000), + [sym_hex_literal] = ACTIONS(5002), + [sym_bin_literal] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5000), + [anon_sym_false] = ACTIONS(5000), + [anon_sym_SQUOTE] = ACTIONS(5002), + [sym_null_literal] = ACTIONS(5000), + [sym__backtick_identifier] = ACTIONS(5002), + [sym__automatic_semicolon] = ACTIONS(5002), + [sym_safe_nav] = ACTIONS(5002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5002), + }, + [3210] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_RBRACK] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_RPAREN] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_DASH_GT] = ACTIONS(4301), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_while] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_catch] = ACTIONS(4299), + [anon_sym_finally] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + }, + [3211] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(6647), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3212] = { + [sym__alpha_identifier] = ACTIONS(5169), + [anon_sym_AT] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_LBRACE] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_where] = ACTIONS(5169), + [anon_sym_object] = ACTIONS(5169), + [anon_sym_fun] = ACTIONS(5169), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_get] = ACTIONS(5169), + [anon_sym_set] = ACTIONS(5169), + [anon_sym_this] = ACTIONS(5169), + [anon_sym_super] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [sym_label] = ACTIONS(5169), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5171), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_if] = ACTIONS(5169), + [anon_sym_else] = ACTIONS(5169), + [anon_sym_when] = ACTIONS(5169), + [anon_sym_try] = ACTIONS(5169), + [anon_sym_throw] = ACTIONS(5169), + [anon_sym_return] = ACTIONS(5169), + [anon_sym_continue] = ACTIONS(5169), + [anon_sym_break] = ACTIONS(5169), + [anon_sym_COLON_COLON] = ACTIONS(5171), + [anon_sym_PLUS_EQ] = ACTIONS(5171), + [anon_sym_DASH_EQ] = ACTIONS(5171), + [anon_sym_STAR_EQ] = ACTIONS(5171), + [anon_sym_SLASH_EQ] = ACTIONS(5171), + [anon_sym_PERCENT_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_BANGin] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5169), + [anon_sym_BANGis] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5169), + [anon_sym_as_QMARK] = ACTIONS(5171), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_BANG_BANG] = ACTIONS(5171), + [anon_sym_data] = ACTIONS(5169), + [anon_sym_inner] = ACTIONS(5169), + [anon_sym_value] = ACTIONS(5169), + [anon_sym_expect] = ACTIONS(5169), + [anon_sym_actual] = ACTIONS(5169), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5171), + [anon_sym_continue_AT] = ACTIONS(5171), + [anon_sym_break_AT] = ACTIONS(5171), + [anon_sym_this_AT] = ACTIONS(5171), + [anon_sym_super_AT] = ACTIONS(5171), + [sym_real_literal] = ACTIONS(5171), + [sym_integer_literal] = ACTIONS(5169), + [sym_hex_literal] = ACTIONS(5171), + [sym_bin_literal] = ACTIONS(5171), + [anon_sym_true] = ACTIONS(5169), + [anon_sym_false] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5171), + [sym_null_literal] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(5171), + [sym__automatic_semicolon] = ACTIONS(5171), + [sym_safe_nav] = ACTIONS(5171), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5171), + }, + [3213] = { + [aux_sym_type_constraints_repeat1] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [anon_sym_DASH_GT] = ACTIONS(4441), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + }, + [3214] = { + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [3215] = { + [sym__alpha_identifier] = ACTIONS(4465), + [anon_sym_AT] = ACTIONS(4467), + [anon_sym_COLON] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_RBRACK] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4465), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_constructor] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_LPAREN] = ACTIONS(4467), + [anon_sym_COMMA] = ACTIONS(4467), + [anon_sym_RPAREN] = ACTIONS(4467), + [anon_sym_LT] = ACTIONS(4465), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_where] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym_get] = ACTIONS(4465), + [anon_sym_set] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4467), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4465), + [anon_sym_while] = ACTIONS(4465), + [anon_sym_DOT_DOT] = ACTIONS(4467), + [anon_sym_QMARK_COLON] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_PIPE_PIPE] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_PLUS_EQ] = ACTIONS(4467), + [anon_sym_DASH_EQ] = ACTIONS(4467), + [anon_sym_STAR_EQ] = ACTIONS(4467), + [anon_sym_SLASH_EQ] = ACTIONS(4467), + [anon_sym_PERCENT_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), + [anon_sym_LT_EQ] = ACTIONS(4467), + [anon_sym_GT_EQ] = ACTIONS(4467), + [anon_sym_BANGin] = ACTIONS(4467), + [anon_sym_is] = ACTIONS(4465), + [anon_sym_BANGis] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_as_QMARK] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4467), + [anon_sym_suspend] = ACTIONS(4465), + [anon_sym_sealed] = ACTIONS(4465), + [anon_sym_annotation] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4465), + [anon_sym_inner] = ACTIONS(4465), + [anon_sym_value] = ACTIONS(4465), + [anon_sym_override] = ACTIONS(4465), + [anon_sym_lateinit] = ACTIONS(4465), + [anon_sym_public] = ACTIONS(4465), + [anon_sym_private] = ACTIONS(4465), + [anon_sym_internal] = ACTIONS(4465), + [anon_sym_protected] = ACTIONS(4465), + [anon_sym_tailrec] = ACTIONS(4465), + [anon_sym_operator] = ACTIONS(4465), + [anon_sym_infix] = ACTIONS(4465), + [anon_sym_inline] = ACTIONS(4465), + [anon_sym_external] = ACTIONS(4465), + [sym_property_modifier] = ACTIONS(4465), + [anon_sym_abstract] = ACTIONS(4465), + [anon_sym_final] = ACTIONS(4465), + [anon_sym_open] = ACTIONS(4465), + [anon_sym_vararg] = ACTIONS(4465), + [anon_sym_noinline] = ACTIONS(4465), + [anon_sym_crossinline] = ACTIONS(4465), + [anon_sym_expect] = ACTIONS(4465), + [anon_sym_actual] = ACTIONS(4465), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4467), + [sym_safe_nav] = ACTIONS(4467), + [sym_multiline_comment] = ACTIONS(3), + }, + [3216] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [3217] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_RBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_RPAREN] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_DASH_GT] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_catch] = ACTIONS(4419), + [anon_sym_finally] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3218] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), + }, + [3219] = { + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3220] = { + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_object] = ACTIONS(4582), + [anon_sym_fun] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_this] = ACTIONS(4582), + [anon_sym_super] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [sym_label] = ACTIONS(4582), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_if] = ACTIONS(4582), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_when] = ACTIONS(4582), + [anon_sym_try] = ACTIONS(4582), + [anon_sym_throw] = ACTIONS(4582), + [anon_sym_return] = ACTIONS(4582), + [anon_sym_continue] = ACTIONS(4582), + [anon_sym_break] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG] = ACTIONS(4582), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4584), + [anon_sym_continue_AT] = ACTIONS(4584), + [anon_sym_break_AT] = ACTIONS(4584), + [anon_sym_this_AT] = ACTIONS(4584), + [anon_sym_super_AT] = ACTIONS(4584), + [sym_real_literal] = ACTIONS(4584), + [sym_integer_literal] = ACTIONS(4582), + [sym_hex_literal] = ACTIONS(4584), + [sym_bin_literal] = ACTIONS(4584), + [anon_sym_true] = ACTIONS(4582), + [anon_sym_false] = ACTIONS(4582), + [anon_sym_SQUOTE] = ACTIONS(4584), + [sym_null_literal] = ACTIONS(4582), + [sym__backtick_identifier] = ACTIONS(4584), + [sym__automatic_semicolon] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4584), + }, + [3221] = { + [sym_class_body] = STATE(3449), + [sym_type_constraints] = STATE(3388), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3222] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_DASH_GT] = ACTIONS(4305), + [sym_label] = ACTIONS(4305), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_while] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_catch] = ACTIONS(4303), + [anon_sym_finally] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + }, + [3223] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_object] = ACTIONS(4750), + [anon_sym_fun] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_this] = ACTIONS(4750), + [anon_sym_super] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4750), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_if] = ACTIONS(4750), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_when] = ACTIONS(4750), + [anon_sym_try] = ACTIONS(4750), + [anon_sym_throw] = ACTIONS(4750), + [anon_sym_return] = ACTIONS(4750), + [anon_sym_continue] = ACTIONS(4750), + [anon_sym_break] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4752), + [anon_sym_continue_AT] = ACTIONS(4752), + [anon_sym_break_AT] = ACTIONS(4752), + [anon_sym_this_AT] = ACTIONS(4752), + [anon_sym_super_AT] = ACTIONS(4752), + [sym_real_literal] = ACTIONS(4752), + [sym_integer_literal] = ACTIONS(4750), + [sym_hex_literal] = ACTIONS(4752), + [sym_bin_literal] = ACTIONS(4752), + [anon_sym_true] = ACTIONS(4750), + [anon_sym_false] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4752), + [sym_null_literal] = ACTIONS(4750), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4752), + }, + [3224] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4840), + [anon_sym_object] = ACTIONS(4840), + [anon_sym_fun] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_this] = ACTIONS(4840), + [anon_sym_super] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), + }, + [3225] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_object] = ACTIONS(4774), + [anon_sym_fun] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_this] = ACTIONS(4774), + [anon_sym_super] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4774), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4774), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_when] = ACTIONS(4774), + [anon_sym_try] = ACTIONS(4774), + [anon_sym_throw] = ACTIONS(4774), + [anon_sym_return] = ACTIONS(4774), + [anon_sym_continue] = ACTIONS(4774), + [anon_sym_break] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4774), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4776), + [anon_sym_continue_AT] = ACTIONS(4776), + [anon_sym_break_AT] = ACTIONS(4776), + [anon_sym_this_AT] = ACTIONS(4776), + [anon_sym_super_AT] = ACTIONS(4776), + [sym_real_literal] = ACTIONS(4776), + [sym_integer_literal] = ACTIONS(4774), + [sym_hex_literal] = ACTIONS(4776), + [sym_bin_literal] = ACTIONS(4776), + [anon_sym_true] = ACTIONS(4774), + [anon_sym_false] = ACTIONS(4774), + [anon_sym_SQUOTE] = ACTIONS(4776), + [sym_null_literal] = ACTIONS(4774), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4776), + }, + [3226] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4856), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [3227] = { + [sym__alpha_identifier] = ACTIONS(5193), + [anon_sym_AT] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(5193), + [anon_sym_LBRACE] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_where] = ACTIONS(5193), + [anon_sym_object] = ACTIONS(5193), + [anon_sym_fun] = ACTIONS(5193), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_get] = ACTIONS(5193), + [anon_sym_set] = ACTIONS(5193), + [anon_sym_this] = ACTIONS(5193), + [anon_sym_super] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [sym_label] = ACTIONS(5193), + [anon_sym_in] = ACTIONS(5193), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_QMARK_COLON] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_if] = ACTIONS(5193), + [anon_sym_else] = ACTIONS(5193), + [anon_sym_when] = ACTIONS(5193), + [anon_sym_try] = ACTIONS(5193), + [anon_sym_throw] = ACTIONS(5193), + [anon_sym_return] = ACTIONS(5193), + [anon_sym_continue] = ACTIONS(5193), + [anon_sym_break] = ACTIONS(5193), + [anon_sym_COLON_COLON] = ACTIONS(5195), + [anon_sym_PLUS_EQ] = ACTIONS(5195), + [anon_sym_DASH_EQ] = ACTIONS(5195), + [anon_sym_STAR_EQ] = ACTIONS(5195), + [anon_sym_SLASH_EQ] = ACTIONS(5195), + [anon_sym_PERCENT_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_BANGin] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5193), + [anon_sym_BANGis] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5193), + [anon_sym_as_QMARK] = ACTIONS(5195), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_BANG_BANG] = ACTIONS(5195), + [anon_sym_data] = ACTIONS(5193), + [anon_sym_inner] = ACTIONS(5193), + [anon_sym_value] = ACTIONS(5193), + [anon_sym_expect] = ACTIONS(5193), + [anon_sym_actual] = ACTIONS(5193), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5195), + [anon_sym_continue_AT] = ACTIONS(5195), + [anon_sym_break_AT] = ACTIONS(5195), + [anon_sym_this_AT] = ACTIONS(5195), + [anon_sym_super_AT] = ACTIONS(5195), + [sym_real_literal] = ACTIONS(5195), + [sym_integer_literal] = ACTIONS(5193), + [sym_hex_literal] = ACTIONS(5195), + [sym_bin_literal] = ACTIONS(5195), + [anon_sym_true] = ACTIONS(5193), + [anon_sym_false] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5195), + [sym_null_literal] = ACTIONS(5193), + [sym__backtick_identifier] = ACTIONS(5195), + [sym__automatic_semicolon] = ACTIONS(5195), + [sym_safe_nav] = ACTIONS(5195), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5195), + }, + [3228] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_as] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_object] = ACTIONS(4770), + [anon_sym_fun] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_this] = ACTIONS(4770), + [anon_sym_super] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [sym_label] = ACTIONS(4770), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_QMARK_COLON] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_if] = ACTIONS(4770), + [anon_sym_else] = ACTIONS(4770), + [anon_sym_when] = ACTIONS(4770), + [anon_sym_try] = ACTIONS(4770), + [anon_sym_throw] = ACTIONS(4770), + [anon_sym_return] = ACTIONS(4770), + [anon_sym_continue] = ACTIONS(4770), + [anon_sym_break] = ACTIONS(4770), + [anon_sym_COLON_COLON] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4772), + [anon_sym_DASH_EQ] = ACTIONS(4772), + [anon_sym_STAR_EQ] = ACTIONS(4772), + [anon_sym_SLASH_EQ] = ACTIONS(4772), + [anon_sym_PERCENT_EQ] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4772), + [anon_sym_BANGin] = ACTIONS(4772), + [anon_sym_is] = ACTIONS(4770), + [anon_sym_BANGis] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_as_QMARK] = ACTIONS(4772), + [anon_sym_PLUS_PLUS] = ACTIONS(4772), + [anon_sym_DASH_DASH] = ACTIONS(4772), + [anon_sym_BANG] = ACTIONS(4770), + [anon_sym_BANG_BANG] = ACTIONS(4772), + [anon_sym_data] = ACTIONS(4770), + [anon_sym_inner] = ACTIONS(4770), + [anon_sym_value] = ACTIONS(4770), + [anon_sym_expect] = ACTIONS(4770), + [anon_sym_actual] = ACTIONS(4770), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4772), + [anon_sym_continue_AT] = ACTIONS(4772), + [anon_sym_break_AT] = ACTIONS(4772), + [anon_sym_this_AT] = ACTIONS(4772), + [anon_sym_super_AT] = ACTIONS(4772), + [sym_real_literal] = ACTIONS(4772), + [sym_integer_literal] = ACTIONS(4770), + [sym_hex_literal] = ACTIONS(4772), + [sym_bin_literal] = ACTIONS(4772), + [anon_sym_true] = ACTIONS(4770), + [anon_sym_false] = ACTIONS(4770), + [anon_sym_SQUOTE] = ACTIONS(4772), + [sym_null_literal] = ACTIONS(4770), + [sym__backtick_identifier] = ACTIONS(4772), + [sym__automatic_semicolon] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4772), + }, + [3229] = { + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(3966), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_object] = ACTIONS(3964), + [anon_sym_fun] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_this] = ACTIONS(3964), + [anon_sym_super] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [sym_label] = ACTIONS(3964), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3964), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_when] = ACTIONS(3964), + [anon_sym_try] = ACTIONS(3964), + [anon_sym_throw] = ACTIONS(3964), + [anon_sym_return] = ACTIONS(3964), + [anon_sym_continue] = ACTIONS(3964), + [anon_sym_break] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3966), + [anon_sym_continue_AT] = ACTIONS(3966), + [anon_sym_break_AT] = ACTIONS(3966), + [anon_sym_this_AT] = ACTIONS(3966), + [anon_sym_super_AT] = ACTIONS(3966), + [sym_real_literal] = ACTIONS(3966), + [sym_integer_literal] = ACTIONS(3964), + [sym_hex_literal] = ACTIONS(3966), + [sym_bin_literal] = ACTIONS(3966), + [anon_sym_true] = ACTIONS(3964), + [anon_sym_false] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3966), + [sym_null_literal] = ACTIONS(3964), + [sym__backtick_identifier] = ACTIONS(3966), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3966), + }, + [3230] = { + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [3231] = { + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [3232] = { + [sym__alpha_identifier] = ACTIONS(4828), + [anon_sym_AT] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_LT] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_where] = ACTIONS(4828), + [anon_sym_object] = ACTIONS(4828), + [anon_sym_fun] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(4828), + [anon_sym_set] = ACTIONS(4828), + [anon_sym_this] = ACTIONS(4828), + [anon_sym_super] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [sym_label] = ACTIONS(4828), + [anon_sym_in] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_QMARK_COLON] = ACTIONS(4830), + [anon_sym_AMP_AMP] = ACTIONS(4830), + [anon_sym_PIPE_PIPE] = ACTIONS(4830), + [anon_sym_if] = ACTIONS(4828), + [anon_sym_else] = ACTIONS(4828), + [anon_sym_when] = ACTIONS(4828), + [anon_sym_try] = ACTIONS(4828), + [anon_sym_throw] = ACTIONS(4828), + [anon_sym_return] = ACTIONS(4828), + [anon_sym_continue] = ACTIONS(4828), + [anon_sym_break] = ACTIONS(4828), + [anon_sym_COLON_COLON] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4830), + [anon_sym_DASH_EQ] = ACTIONS(4830), + [anon_sym_STAR_EQ] = ACTIONS(4830), + [anon_sym_SLASH_EQ] = ACTIONS(4830), + [anon_sym_PERCENT_EQ] = ACTIONS(4830), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4830), + [anon_sym_BANGin] = ACTIONS(4830), + [anon_sym_is] = ACTIONS(4828), + [anon_sym_BANGis] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_as_QMARK] = ACTIONS(4830), + [anon_sym_PLUS_PLUS] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_BANG] = ACTIONS(4828), + [anon_sym_BANG_BANG] = ACTIONS(4830), + [anon_sym_data] = ACTIONS(4828), + [anon_sym_inner] = ACTIONS(4828), + [anon_sym_value] = ACTIONS(4828), + [anon_sym_expect] = ACTIONS(4828), + [anon_sym_actual] = ACTIONS(4828), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4830), + [anon_sym_continue_AT] = ACTIONS(4830), + [anon_sym_break_AT] = ACTIONS(4830), + [anon_sym_this_AT] = ACTIONS(4830), + [anon_sym_super_AT] = ACTIONS(4830), + [sym_real_literal] = ACTIONS(4830), + [sym_integer_literal] = ACTIONS(4828), + [sym_hex_literal] = ACTIONS(4830), + [sym_bin_literal] = ACTIONS(4830), + [anon_sym_true] = ACTIONS(4828), + [anon_sym_false] = ACTIONS(4828), + [anon_sym_SQUOTE] = ACTIONS(4830), + [sym_null_literal] = ACTIONS(4828), + [sym__backtick_identifier] = ACTIONS(4830), + [sym__automatic_semicolon] = ACTIONS(4830), + [sym_safe_nav] = ACTIONS(4830), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4830), + }, + [3233] = { + [sym_class_body] = STATE(3469), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_RBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [anon_sym_DASH_GT] = ACTIONS(4425), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [3234] = { + [sym__alpha_identifier] = ACTIONS(5197), + [anon_sym_AT] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5197), + [anon_sym_EQ] = ACTIONS(5197), + [anon_sym_LBRACE] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_where] = ACTIONS(5197), + [anon_sym_object] = ACTIONS(5197), + [anon_sym_fun] = ACTIONS(5197), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_get] = ACTIONS(5197), + [anon_sym_set] = ACTIONS(5197), + [anon_sym_this] = ACTIONS(5197), + [anon_sym_super] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [sym_label] = ACTIONS(5197), + [anon_sym_in] = ACTIONS(5197), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_QMARK_COLON] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_if] = ACTIONS(5197), + [anon_sym_else] = ACTIONS(5197), + [anon_sym_when] = ACTIONS(5197), + [anon_sym_try] = ACTIONS(5197), + [anon_sym_throw] = ACTIONS(5197), + [anon_sym_return] = ACTIONS(5197), + [anon_sym_continue] = ACTIONS(5197), + [anon_sym_break] = ACTIONS(5197), + [anon_sym_COLON_COLON] = ACTIONS(5199), + [anon_sym_PLUS_EQ] = ACTIONS(5199), + [anon_sym_DASH_EQ] = ACTIONS(5199), + [anon_sym_STAR_EQ] = ACTIONS(5199), + [anon_sym_SLASH_EQ] = ACTIONS(5199), + [anon_sym_PERCENT_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_BANGin] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5197), + [anon_sym_BANGis] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5197), + [anon_sym_as_QMARK] = ACTIONS(5199), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_BANG_BANG] = ACTIONS(5199), + [anon_sym_data] = ACTIONS(5197), + [anon_sym_inner] = ACTIONS(5197), + [anon_sym_value] = ACTIONS(5197), + [anon_sym_expect] = ACTIONS(5197), + [anon_sym_actual] = ACTIONS(5197), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5199), + [anon_sym_continue_AT] = ACTIONS(5199), + [anon_sym_break_AT] = ACTIONS(5199), + [anon_sym_this_AT] = ACTIONS(5199), + [anon_sym_super_AT] = ACTIONS(5199), + [sym_real_literal] = ACTIONS(5199), + [sym_integer_literal] = ACTIONS(5197), + [sym_hex_literal] = ACTIONS(5199), + [sym_bin_literal] = ACTIONS(5199), + [anon_sym_true] = ACTIONS(5197), + [anon_sym_false] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5199), + [sym_null_literal] = ACTIONS(5197), + [sym__backtick_identifier] = ACTIONS(5199), + [sym__automatic_semicolon] = ACTIONS(5199), + [sym_safe_nav] = ACTIONS(5199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5199), + }, + [3235] = { + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [3236] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_object] = ACTIONS(4762), + [anon_sym_fun] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_this] = ACTIONS(4762), + [anon_sym_super] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4762), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_if] = ACTIONS(4762), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4762), + [anon_sym_try] = ACTIONS(4762), + [anon_sym_throw] = ACTIONS(4762), + [anon_sym_return] = ACTIONS(4762), + [anon_sym_continue] = ACTIONS(4762), + [anon_sym_break] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_BANG_BANG] = ACTIONS(4764), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4764), + [anon_sym_continue_AT] = ACTIONS(4764), + [anon_sym_break_AT] = ACTIONS(4764), + [anon_sym_this_AT] = ACTIONS(4764), + [anon_sym_super_AT] = ACTIONS(4764), + [sym_real_literal] = ACTIONS(4764), + [sym_integer_literal] = ACTIONS(4762), + [sym_hex_literal] = ACTIONS(4764), + [sym_bin_literal] = ACTIONS(4764), + [anon_sym_true] = ACTIONS(4762), + [anon_sym_false] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4764), + [sym_null_literal] = ACTIONS(4762), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4764), + }, + [3237] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [3238] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [3239] = { + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [3240] = { + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_fun] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_this] = ACTIONS(1750), + [anon_sym_super] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_when] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_data] = ACTIONS(1750), + [anon_sym_inner] = ACTIONS(1750), + [anon_sym_value] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1750), + [anon_sym_actual] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1752), + [anon_sym_continue_AT] = ACTIONS(1752), + [anon_sym_break_AT] = ACTIONS(1752), + [anon_sym_this_AT] = ACTIONS(1752), + [anon_sym_super_AT] = ACTIONS(1752), + [sym_real_literal] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [sym_hex_literal] = ACTIONS(1752), + [sym_bin_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [sym_null_literal] = ACTIONS(1750), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1752), + }, + [3241] = { + [aux_sym_user_type_repeat1] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_RBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6655), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_DASH_GT] = ACTIONS(4122), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3242] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [3243] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_object] = ACTIONS(4948), + [anon_sym_fun] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_this] = ACTIONS(4948), + [anon_sym_super] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_when] = ACTIONS(4948), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_throw] = ACTIONS(4948), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4950), + [anon_sym_continue_AT] = ACTIONS(4950), + [anon_sym_break_AT] = ACTIONS(4950), + [anon_sym_this_AT] = ACTIONS(4950), + [anon_sym_super_AT] = ACTIONS(4950), + [sym_real_literal] = ACTIONS(4950), + [sym_integer_literal] = ACTIONS(4948), + [sym_hex_literal] = ACTIONS(4950), + [sym_bin_literal] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_SQUOTE] = ACTIONS(4950), + [sym_null_literal] = ACTIONS(4948), + [sym__backtick_identifier] = ACTIONS(4950), + [sym__automatic_semicolon] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4950), + }, + [3244] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_object] = ACTIONS(4758), + [anon_sym_fun] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_this] = ACTIONS(4758), + [anon_sym_super] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4758), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_if] = ACTIONS(4758), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_when] = ACTIONS(4758), + [anon_sym_try] = ACTIONS(4758), + [anon_sym_throw] = ACTIONS(4758), + [anon_sym_return] = ACTIONS(4758), + [anon_sym_continue] = ACTIONS(4758), + [anon_sym_break] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG] = ACTIONS(4758), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4760), + [anon_sym_continue_AT] = ACTIONS(4760), + [anon_sym_break_AT] = ACTIONS(4760), + [anon_sym_this_AT] = ACTIONS(4760), + [anon_sym_super_AT] = ACTIONS(4760), + [sym_real_literal] = ACTIONS(4760), + [sym_integer_literal] = ACTIONS(4758), + [sym_hex_literal] = ACTIONS(4760), + [sym_bin_literal] = ACTIONS(4760), + [anon_sym_true] = ACTIONS(4758), + [anon_sym_false] = ACTIONS(4758), + [anon_sym_SQUOTE] = ACTIONS(4760), + [sym_null_literal] = ACTIONS(4758), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4760), + }, + [3245] = { + [sym__alpha_identifier] = ACTIONS(4457), + [anon_sym_AT] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4457), + [anon_sym_EQ] = ACTIONS(4457), + [anon_sym_LBRACE] = ACTIONS(4459), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_where] = ACTIONS(4457), + [anon_sym_SEMI] = ACTIONS(4459), + [anon_sym_get] = ACTIONS(4457), + [anon_sym_set] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_DASH_GT] = ACTIONS(4459), + [sym_label] = ACTIONS(4459), + [anon_sym_in] = ACTIONS(4457), + [anon_sym_while] = ACTIONS(4457), + [anon_sym_DOT_DOT] = ACTIONS(4459), + [anon_sym_QMARK_COLON] = ACTIONS(4459), + [anon_sym_AMP_AMP] = ACTIONS(4459), + [anon_sym_PIPE_PIPE] = ACTIONS(4459), + [anon_sym_else] = ACTIONS(4457), + [anon_sym_COLON_COLON] = ACTIONS(4459), + [anon_sym_PLUS_EQ] = ACTIONS(4459), + [anon_sym_DASH_EQ] = ACTIONS(4459), + [anon_sym_STAR_EQ] = ACTIONS(4459), + [anon_sym_SLASH_EQ] = ACTIONS(4459), + [anon_sym_PERCENT_EQ] = ACTIONS(4459), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), + [anon_sym_LT_EQ] = ACTIONS(4459), + [anon_sym_GT_EQ] = ACTIONS(4459), + [anon_sym_BANGin] = ACTIONS(4459), + [anon_sym_is] = ACTIONS(4457), + [anon_sym_BANGis] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_PERCENT] = ACTIONS(4457), + [anon_sym_as_QMARK] = ACTIONS(4459), + [anon_sym_PLUS_PLUS] = ACTIONS(4459), + [anon_sym_DASH_DASH] = ACTIONS(4459), + [anon_sym_BANG_BANG] = ACTIONS(4459), + [anon_sym_suspend] = ACTIONS(4457), + [anon_sym_sealed] = ACTIONS(4457), + [anon_sym_annotation] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4457), + [anon_sym_inner] = ACTIONS(4457), + [anon_sym_value] = ACTIONS(4457), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_lateinit] = ACTIONS(4457), + [anon_sym_public] = ACTIONS(4457), + [anon_sym_private] = ACTIONS(4457), + [anon_sym_internal] = ACTIONS(4457), + [anon_sym_protected] = ACTIONS(4457), + [anon_sym_tailrec] = ACTIONS(4457), + [anon_sym_operator] = ACTIONS(4457), + [anon_sym_infix] = ACTIONS(4457), + [anon_sym_inline] = ACTIONS(4457), + [anon_sym_external] = ACTIONS(4457), + [sym_property_modifier] = ACTIONS(4457), + [anon_sym_abstract] = ACTIONS(4457), + [anon_sym_final] = ACTIONS(4457), + [anon_sym_open] = ACTIONS(4457), + [anon_sym_vararg] = ACTIONS(4457), + [anon_sym_noinline] = ACTIONS(4457), + [anon_sym_crossinline] = ACTIONS(4457), + [anon_sym_expect] = ACTIONS(4457), + [anon_sym_actual] = ACTIONS(4457), + [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6658), + [anon_sym_L] = ACTIONS(6660), + [sym__backtick_identifier] = ACTIONS(4459), + [sym_safe_nav] = ACTIONS(4459), + [sym_multiline_comment] = ACTIONS(3), + }, + [3246] = { + [sym_class_body] = STATE(3482), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_RBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_RPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_DASH_GT] = ACTIONS(4415), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_while] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [3247] = { + [sym__alpha_identifier] = ACTIONS(5165), + [anon_sym_AT] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5165), + [anon_sym_EQ] = ACTIONS(5165), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_where] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(5165), + [anon_sym_fun] = ACTIONS(5165), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_get] = ACTIONS(5165), + [anon_sym_set] = ACTIONS(5165), + [anon_sym_this] = ACTIONS(5165), + [anon_sym_super] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [sym_label] = ACTIONS(5165), + [anon_sym_in] = ACTIONS(5165), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_QMARK_COLON] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_if] = ACTIONS(5165), + [anon_sym_else] = ACTIONS(5165), + [anon_sym_when] = ACTIONS(5165), + [anon_sym_try] = ACTIONS(5165), + [anon_sym_throw] = ACTIONS(5165), + [anon_sym_return] = ACTIONS(5165), + [anon_sym_continue] = ACTIONS(5165), + [anon_sym_break] = ACTIONS(5165), + [anon_sym_COLON_COLON] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_BANGin] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5165), + [anon_sym_BANGis] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5165), + [anon_sym_as_QMARK] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_BANG_BANG] = ACTIONS(5167), + [anon_sym_data] = ACTIONS(5165), + [anon_sym_inner] = ACTIONS(5165), + [anon_sym_value] = ACTIONS(5165), + [anon_sym_expect] = ACTIONS(5165), + [anon_sym_actual] = ACTIONS(5165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5167), + [anon_sym_continue_AT] = ACTIONS(5167), + [anon_sym_break_AT] = ACTIONS(5167), + [anon_sym_this_AT] = ACTIONS(5167), + [anon_sym_super_AT] = ACTIONS(5167), + [sym_real_literal] = ACTIONS(5167), + [sym_integer_literal] = ACTIONS(5165), + [sym_hex_literal] = ACTIONS(5167), + [sym_bin_literal] = ACTIONS(5167), + [anon_sym_true] = ACTIONS(5165), + [anon_sym_false] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5167), + [sym_null_literal] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(5167), + [sym__automatic_semicolon] = ACTIONS(5167), + [sym_safe_nav] = ACTIONS(5167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5167), + }, + [3248] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_object] = ACTIONS(4311), + [anon_sym_fun] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_this] = ACTIONS(4311), + [anon_sym_super] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4311), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_when] = ACTIONS(4311), + [anon_sym_try] = ACTIONS(4311), + [anon_sym_throw] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4313), + [anon_sym_continue_AT] = ACTIONS(4313), + [anon_sym_break_AT] = ACTIONS(4313), + [anon_sym_this_AT] = ACTIONS(4313), + [anon_sym_super_AT] = ACTIONS(4313), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4311), + [anon_sym_false] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4313), + [sym_null_literal] = ACTIONS(4311), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4313), + }, + [3249] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_EQ] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6664), + [sym__quest] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym_null_literal] = ACTIONS(4190), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [3250] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_object] = ACTIONS(4968), + [anon_sym_fun] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_this] = ACTIONS(4968), + [anon_sym_super] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_when] = ACTIONS(4968), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_throw] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4970), + [anon_sym_continue_AT] = ACTIONS(4970), + [anon_sym_break_AT] = ACTIONS(4970), + [anon_sym_this_AT] = ACTIONS(4970), + [anon_sym_super_AT] = ACTIONS(4970), + [sym_real_literal] = ACTIONS(4970), + [sym_integer_literal] = ACTIONS(4968), + [sym_hex_literal] = ACTIONS(4970), + [sym_bin_literal] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_SQUOTE] = ACTIONS(4970), + [sym_null_literal] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4970), + [sym__automatic_semicolon] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4970), + }, + [3251] = { + [aux_sym_type_constraints_repeat1] = STATE(3292), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [anon_sym_DASH_GT] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + }, + [3252] = { + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(6496), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_RBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_DASH_GT] = ACTIONS(4100), + [sym_label] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_while] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4100), + [anon_sym_QMARK_COLON] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_as_QMARK] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG_BANG] = ACTIONS(4100), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4100), + [sym_safe_nav] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + }, + [3253] = { + [sym__alpha_identifier] = ACTIONS(5050), + [anon_sym_AT] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_as] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_where] = ACTIONS(5050), + [anon_sym_object] = ACTIONS(5050), + [anon_sym_fun] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_get] = ACTIONS(5050), + [anon_sym_set] = ACTIONS(5050), + [anon_sym_this] = ACTIONS(5050), + [anon_sym_super] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5050), + [sym_label] = ACTIONS(5050), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_QMARK_COLON] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_if] = ACTIONS(5050), + [anon_sym_else] = ACTIONS(5050), + [anon_sym_when] = ACTIONS(5050), + [anon_sym_try] = ACTIONS(5050), + [anon_sym_throw] = ACTIONS(5050), + [anon_sym_return] = ACTIONS(5050), + [anon_sym_continue] = ACTIONS(5050), + [anon_sym_break] = ACTIONS(5050), + [anon_sym_COLON_COLON] = ACTIONS(5052), + [anon_sym_PLUS_EQ] = ACTIONS(5052), + [anon_sym_DASH_EQ] = ACTIONS(5052), + [anon_sym_STAR_EQ] = ACTIONS(5052), + [anon_sym_SLASH_EQ] = ACTIONS(5052), + [anon_sym_PERCENT_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_BANGin] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5050), + [anon_sym_BANGis] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5050), + [anon_sym_as_QMARK] = ACTIONS(5052), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_BANG_BANG] = ACTIONS(5052), + [anon_sym_data] = ACTIONS(5050), + [anon_sym_inner] = ACTIONS(5050), + [anon_sym_value] = ACTIONS(5050), + [anon_sym_expect] = ACTIONS(5050), + [anon_sym_actual] = ACTIONS(5050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5052), + [anon_sym_continue_AT] = ACTIONS(5052), + [anon_sym_break_AT] = ACTIONS(5052), + [anon_sym_this_AT] = ACTIONS(5052), + [anon_sym_super_AT] = ACTIONS(5052), + [sym_real_literal] = ACTIONS(5052), + [sym_integer_literal] = ACTIONS(5050), + [sym_hex_literal] = ACTIONS(5052), + [sym_bin_literal] = ACTIONS(5052), + [anon_sym_true] = ACTIONS(5050), + [anon_sym_false] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5052), + [sym_null_literal] = ACTIONS(5050), + [sym__backtick_identifier] = ACTIONS(5052), + [sym__automatic_semicolon] = ACTIONS(5052), + [sym_safe_nav] = ACTIONS(5052), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5052), + }, + [3254] = { + [sym_catch_block] = STATE(3361), + [sym_finally_block] = STATE(3927), + [aux_sym_try_expression_repeat1] = STATE(3361), + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_catch] = ACTIONS(6666), + [anon_sym_finally] = ACTIONS(6668), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4068), + [anon_sym_sealed] = ACTIONS(4068), + [anon_sym_annotation] = ACTIONS(4068), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_lateinit] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_internal] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_tailrec] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_infix] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym_external] = ACTIONS(4068), + [sym_property_modifier] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_final] = ACTIONS(4068), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_vararg] = ACTIONS(4068), + [anon_sym_noinline] = ACTIONS(4068), + [anon_sym_crossinline] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4070), + [sym__automatic_semicolon] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + }, + [3255] = { + [sym__alpha_identifier] = ACTIONS(4824), + [anon_sym_AT] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_as] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_COMMA] = ACTIONS(4826), + [anon_sym_LT] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_where] = ACTIONS(4824), + [anon_sym_object] = ACTIONS(4824), + [anon_sym_fun] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4826), + [anon_sym_get] = ACTIONS(4824), + [anon_sym_set] = ACTIONS(4824), + [anon_sym_this] = ACTIONS(4824), + [anon_sym_super] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [sym_label] = ACTIONS(4824), + [anon_sym_in] = ACTIONS(4824), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_QMARK_COLON] = ACTIONS(4826), + [anon_sym_AMP_AMP] = ACTIONS(4826), + [anon_sym_PIPE_PIPE] = ACTIONS(4826), + [anon_sym_if] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_when] = ACTIONS(4824), + [anon_sym_try] = ACTIONS(4824), + [anon_sym_throw] = ACTIONS(4824), + [anon_sym_return] = ACTIONS(4824), + [anon_sym_continue] = ACTIONS(4824), + [anon_sym_break] = ACTIONS(4824), + [anon_sym_COLON_COLON] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4826), + [anon_sym_DASH_EQ] = ACTIONS(4826), + [anon_sym_STAR_EQ] = ACTIONS(4826), + [anon_sym_SLASH_EQ] = ACTIONS(4826), + [anon_sym_PERCENT_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4826), + [anon_sym_BANGin] = ACTIONS(4826), + [anon_sym_is] = ACTIONS(4824), + [anon_sym_BANGis] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_as_QMARK] = ACTIONS(4826), + [anon_sym_PLUS_PLUS] = ACTIONS(4826), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_BANG] = ACTIONS(4824), + [anon_sym_BANG_BANG] = ACTIONS(4826), + [anon_sym_data] = ACTIONS(4824), + [anon_sym_inner] = ACTIONS(4824), + [anon_sym_value] = ACTIONS(4824), + [anon_sym_expect] = ACTIONS(4824), + [anon_sym_actual] = ACTIONS(4824), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4826), + [anon_sym_continue_AT] = ACTIONS(4826), + [anon_sym_break_AT] = ACTIONS(4826), + [anon_sym_this_AT] = ACTIONS(4826), + [anon_sym_super_AT] = ACTIONS(4826), + [sym_real_literal] = ACTIONS(4826), + [sym_integer_literal] = ACTIONS(4824), + [sym_hex_literal] = ACTIONS(4826), + [sym_bin_literal] = ACTIONS(4826), + [anon_sym_true] = ACTIONS(4824), + [anon_sym_false] = ACTIONS(4824), + [anon_sym_SQUOTE] = ACTIONS(4826), + [sym_null_literal] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(4826), + [sym__automatic_semicolon] = ACTIONS(4826), + [sym_safe_nav] = ACTIONS(4826), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4826), + }, + [3256] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_RBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_constructor] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_RPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_DASH_GT] = ACTIONS(4158), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3257] = { + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3258] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_object] = ACTIONS(1774), + [anon_sym_fun] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_this] = ACTIONS(1774), + [anon_sym_super] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1774), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_when] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1774), + [anon_sym_throw] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_value] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1776), + [anon_sym_continue_AT] = ACTIONS(1776), + [anon_sym_break_AT] = ACTIONS(1776), + [anon_sym_this_AT] = ACTIONS(1776), + [anon_sym_super_AT] = ACTIONS(1776), + [sym_real_literal] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [sym_hex_literal] = ACTIONS(1776), + [sym_bin_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [sym_null_literal] = ACTIONS(1774), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1776), + }, + [3259] = { + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_object] = ACTIONS(4557), + [anon_sym_fun] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_this] = ACTIONS(4557), + [anon_sym_super] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_when] = ACTIONS(4557), + [anon_sym_try] = ACTIONS(4557), + [anon_sym_throw] = ACTIONS(4557), + [anon_sym_return] = ACTIONS(4557), + [anon_sym_continue] = ACTIONS(4557), + [anon_sym_break] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4559), + [anon_sym_continue_AT] = ACTIONS(4559), + [anon_sym_break_AT] = ACTIONS(4559), + [anon_sym_this_AT] = ACTIONS(4559), + [anon_sym_super_AT] = ACTIONS(4559), + [sym_real_literal] = ACTIONS(4559), + [sym_integer_literal] = ACTIONS(4557), + [sym_hex_literal] = ACTIONS(4559), + [sym_bin_literal] = ACTIONS(4559), + [anon_sym_true] = ACTIONS(4557), + [anon_sym_false] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4559), + [sym_null_literal] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4559), + }, + [3260] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_if] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_when] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(4754), + [anon_sym_throw] = ACTIONS(4754), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_continue] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4756), + [anon_sym_continue_AT] = ACTIONS(4756), + [anon_sym_break_AT] = ACTIONS(4756), + [anon_sym_this_AT] = ACTIONS(4756), + [anon_sym_super_AT] = ACTIONS(4756), + [sym_real_literal] = ACTIONS(4756), + [sym_integer_literal] = ACTIONS(4754), + [sym_hex_literal] = ACTIONS(4756), + [sym_bin_literal] = ACTIONS(4756), + [anon_sym_true] = ACTIONS(4754), + [anon_sym_false] = ACTIONS(4754), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym_null_literal] = ACTIONS(4754), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4756), + }, + [3261] = { + [sym__alpha_identifier] = ACTIONS(5070), + [anon_sym_AT] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_where] = ACTIONS(5070), + [anon_sym_object] = ACTIONS(5070), + [anon_sym_fun] = ACTIONS(5070), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_get] = ACTIONS(5070), + [anon_sym_set] = ACTIONS(5070), + [anon_sym_this] = ACTIONS(5070), + [anon_sym_super] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [sym_label] = ACTIONS(5070), + [anon_sym_in] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_QMARK_COLON] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_if] = ACTIONS(5070), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_when] = ACTIONS(5070), + [anon_sym_try] = ACTIONS(5070), + [anon_sym_throw] = ACTIONS(5070), + [anon_sym_return] = ACTIONS(5070), + [anon_sym_continue] = ACTIONS(5070), + [anon_sym_break] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_BANGin] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_BANGis] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_as_QMARK] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_BANG_BANG] = ACTIONS(5072), + [anon_sym_data] = ACTIONS(5070), + [anon_sym_inner] = ACTIONS(5070), + [anon_sym_value] = ACTIONS(5070), + [anon_sym_expect] = ACTIONS(5070), + [anon_sym_actual] = ACTIONS(5070), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5072), + [anon_sym_continue_AT] = ACTIONS(5072), + [anon_sym_break_AT] = ACTIONS(5072), + [anon_sym_this_AT] = ACTIONS(5072), + [anon_sym_super_AT] = ACTIONS(5072), + [sym_real_literal] = ACTIONS(5072), + [sym_integer_literal] = ACTIONS(5070), + [sym_hex_literal] = ACTIONS(5072), + [sym_bin_literal] = ACTIONS(5072), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5072), + [sym_null_literal] = ACTIONS(5070), + [sym__backtick_identifier] = ACTIONS(5072), + [sym__automatic_semicolon] = ACTIONS(5072), + [sym_safe_nav] = ACTIONS(5072), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5072), + }, + [3262] = { + [sym__alpha_identifier] = ACTIONS(4996), + [anon_sym_AT] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_object] = ACTIONS(4996), + [anon_sym_fun] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_get] = ACTIONS(4996), + [anon_sym_set] = ACTIONS(4996), + [anon_sym_this] = ACTIONS(4996), + [anon_sym_super] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [sym_label] = ACTIONS(4996), + [anon_sym_in] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4998), + [anon_sym_QMARK_COLON] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_if] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_when] = ACTIONS(4996), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_throw] = ACTIONS(4996), + [anon_sym_return] = ACTIONS(4996), + [anon_sym_continue] = ACTIONS(4996), + [anon_sym_break] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_PERCENT_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_BANGin] = ACTIONS(4998), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_BANGis] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_as_QMARK] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_BANG_BANG] = ACTIONS(4998), + [anon_sym_data] = ACTIONS(4996), + [anon_sym_inner] = ACTIONS(4996), + [anon_sym_value] = ACTIONS(4996), + [anon_sym_expect] = ACTIONS(4996), + [anon_sym_actual] = ACTIONS(4996), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4998), + [anon_sym_continue_AT] = ACTIONS(4998), + [anon_sym_break_AT] = ACTIONS(4998), + [anon_sym_this_AT] = ACTIONS(4998), + [anon_sym_super_AT] = ACTIONS(4998), + [sym_real_literal] = ACTIONS(4998), + [sym_integer_literal] = ACTIONS(4996), + [sym_hex_literal] = ACTIONS(4998), + [sym_bin_literal] = ACTIONS(4998), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4998), + [sym_null_literal] = ACTIONS(4996), + [sym__backtick_identifier] = ACTIONS(4998), + [sym__automatic_semicolon] = ACTIONS(4998), + [sym_safe_nav] = ACTIONS(4998), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4998), + }, + [3263] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_object] = ACTIONS(5139), + [anon_sym_fun] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_if] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_when] = ACTIONS(5139), + [anon_sym_try] = ACTIONS(5139), + [anon_sym_throw] = ACTIONS(5139), + [anon_sym_return] = ACTIONS(5139), + [anon_sym_continue] = ACTIONS(5139), + [anon_sym_break] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5141), + [anon_sym_continue_AT] = ACTIONS(5141), + [anon_sym_break_AT] = ACTIONS(5141), + [anon_sym_this_AT] = ACTIONS(5141), + [anon_sym_super_AT] = ACTIONS(5141), + [sym_real_literal] = ACTIONS(5141), + [sym_integer_literal] = ACTIONS(5139), + [sym_hex_literal] = ACTIONS(5141), + [sym_bin_literal] = ACTIONS(5141), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym_null_literal] = ACTIONS(5139), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5141), + }, + [3264] = { + [sym__alpha_identifier] = ACTIONS(5127), + [anon_sym_AT] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5127), + [anon_sym_EQ] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_object] = ACTIONS(5127), + [anon_sym_fun] = ACTIONS(5127), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(5127), + [anon_sym_set] = ACTIONS(5127), + [anon_sym_this] = ACTIONS(5127), + [anon_sym_super] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [sym_label] = ACTIONS(5127), + [anon_sym_in] = ACTIONS(5127), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_QMARK_COLON] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_if] = ACTIONS(5127), + [anon_sym_else] = ACTIONS(5127), + [anon_sym_when] = ACTIONS(5127), + [anon_sym_try] = ACTIONS(5127), + [anon_sym_throw] = ACTIONS(5127), + [anon_sym_return] = ACTIONS(5127), + [anon_sym_continue] = ACTIONS(5127), + [anon_sym_break] = ACTIONS(5127), + [anon_sym_COLON_COLON] = ACTIONS(5129), + [anon_sym_PLUS_EQ] = ACTIONS(5129), + [anon_sym_DASH_EQ] = ACTIONS(5129), + [anon_sym_STAR_EQ] = ACTIONS(5129), + [anon_sym_SLASH_EQ] = ACTIONS(5129), + [anon_sym_PERCENT_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_BANGin] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5127), + [anon_sym_BANGis] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5127), + [anon_sym_as_QMARK] = ACTIONS(5129), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_BANG_BANG] = ACTIONS(5129), + [anon_sym_data] = ACTIONS(5127), + [anon_sym_inner] = ACTIONS(5127), + [anon_sym_value] = ACTIONS(5127), + [anon_sym_expect] = ACTIONS(5127), + [anon_sym_actual] = ACTIONS(5127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5129), + [anon_sym_continue_AT] = ACTIONS(5129), + [anon_sym_break_AT] = ACTIONS(5129), + [anon_sym_this_AT] = ACTIONS(5129), + [anon_sym_super_AT] = ACTIONS(5129), + [sym_real_literal] = ACTIONS(5129), + [sym_integer_literal] = ACTIONS(5127), + [sym_hex_literal] = ACTIONS(5129), + [sym_bin_literal] = ACTIONS(5129), + [anon_sym_true] = ACTIONS(5127), + [anon_sym_false] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5129), + [sym_null_literal] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5129), + [sym__automatic_semicolon] = ACTIONS(5129), + [sym_safe_nav] = ACTIONS(5129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5129), + }, + [3265] = { + [sym_value_arguments] = STATE(3516), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(6670), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3266] = { + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [3267] = { + [sym_function_body] = STATE(3099), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [3268] = { + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3269] = { + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3270] = { + [sym__alpha_identifier] = ACTIONS(5036), + [anon_sym_AT] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_object] = ACTIONS(5036), + [anon_sym_fun] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5038), + [anon_sym_get] = ACTIONS(5036), + [anon_sym_set] = ACTIONS(5036), + [anon_sym_this] = ACTIONS(5036), + [anon_sym_super] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [sym_label] = ACTIONS(5036), + [anon_sym_in] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5038), + [anon_sym_QMARK_COLON] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5038), + [anon_sym_PIPE_PIPE] = ACTIONS(5038), + [anon_sym_if] = ACTIONS(5036), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_when] = ACTIONS(5036), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_throw] = ACTIONS(5036), + [anon_sym_return] = ACTIONS(5036), + [anon_sym_continue] = ACTIONS(5036), + [anon_sym_break] = ACTIONS(5036), + [anon_sym_COLON_COLON] = ACTIONS(5038), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_PERCENT_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5038), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_BANGin] = ACTIONS(5038), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_BANGis] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_as_QMARK] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_BANG] = ACTIONS(5036), + [anon_sym_BANG_BANG] = ACTIONS(5038), + [anon_sym_data] = ACTIONS(5036), + [anon_sym_inner] = ACTIONS(5036), + [anon_sym_value] = ACTIONS(5036), + [anon_sym_expect] = ACTIONS(5036), + [anon_sym_actual] = ACTIONS(5036), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5038), + [anon_sym_continue_AT] = ACTIONS(5038), + [anon_sym_break_AT] = ACTIONS(5038), + [anon_sym_this_AT] = ACTIONS(5038), + [anon_sym_super_AT] = ACTIONS(5038), + [sym_real_literal] = ACTIONS(5038), + [sym_integer_literal] = ACTIONS(5036), + [sym_hex_literal] = ACTIONS(5038), + [sym_bin_literal] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_SQUOTE] = ACTIONS(5038), + [sym_null_literal] = ACTIONS(5036), + [sym__backtick_identifier] = ACTIONS(5038), + [sym__automatic_semicolon] = ACTIONS(5038), + [sym_safe_nav] = ACTIONS(5038), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5038), + }, + [3271] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_object] = ACTIONS(5161), + [anon_sym_fun] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_this] = ACTIONS(5161), + [anon_sym_super] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_if] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_when] = ACTIONS(5161), + [anon_sym_try] = ACTIONS(5161), + [anon_sym_throw] = ACTIONS(5161), + [anon_sym_return] = ACTIONS(5161), + [anon_sym_continue] = ACTIONS(5161), + [anon_sym_break] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5163), + [anon_sym_continue_AT] = ACTIONS(5163), + [anon_sym_break_AT] = ACTIONS(5163), + [anon_sym_this_AT] = ACTIONS(5163), + [anon_sym_super_AT] = ACTIONS(5163), + [sym_real_literal] = ACTIONS(5163), + [sym_integer_literal] = ACTIONS(5161), + [sym_hex_literal] = ACTIONS(5163), + [sym_bin_literal] = ACTIONS(5163), + [anon_sym_true] = ACTIONS(5161), + [anon_sym_false] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5163), + [sym_null_literal] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(5163), + [sym__automatic_semicolon] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5163), + }, + [3272] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_object] = ACTIONS(4746), + [anon_sym_fun] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_this] = ACTIONS(4746), + [anon_sym_super] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4746), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_if] = ACTIONS(4746), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_when] = ACTIONS(4746), + [anon_sym_try] = ACTIONS(4746), + [anon_sym_throw] = ACTIONS(4746), + [anon_sym_return] = ACTIONS(4746), + [anon_sym_continue] = ACTIONS(4746), + [anon_sym_break] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4748), + [anon_sym_continue_AT] = ACTIONS(4748), + [anon_sym_break_AT] = ACTIONS(4748), + [anon_sym_this_AT] = ACTIONS(4748), + [anon_sym_super_AT] = ACTIONS(4748), + [sym_real_literal] = ACTIONS(4748), + [sym_integer_literal] = ACTIONS(4746), + [sym_hex_literal] = ACTIONS(4748), + [sym_bin_literal] = ACTIONS(4748), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4748), + [sym_null_literal] = ACTIONS(4746), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4748), + }, + [3273] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_object] = ACTIONS(4980), + [anon_sym_fun] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_this] = ACTIONS(4980), + [anon_sym_super] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [sym_label] = ACTIONS(4980), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_when] = ACTIONS(4980), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_throw] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4982), + [anon_sym_continue_AT] = ACTIONS(4982), + [anon_sym_break_AT] = ACTIONS(4982), + [anon_sym_this_AT] = ACTIONS(4982), + [anon_sym_super_AT] = ACTIONS(4982), + [sym_real_literal] = ACTIONS(4982), + [sym_integer_literal] = ACTIONS(4980), + [sym_hex_literal] = ACTIONS(4982), + [sym_bin_literal] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4982), + [sym_null_literal] = ACTIONS(4980), + [sym__backtick_identifier] = ACTIONS(4982), + [sym__automatic_semicolon] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4982), + }, + [3274] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_object] = ACTIONS(4964), + [anon_sym_fun] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_this] = ACTIONS(4964), + [anon_sym_super] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_when] = ACTIONS(4964), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_throw] = ACTIONS(4964), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4966), + [anon_sym_continue_AT] = ACTIONS(4966), + [anon_sym_break_AT] = ACTIONS(4966), + [anon_sym_this_AT] = ACTIONS(4966), + [anon_sym_super_AT] = ACTIONS(4966), + [sym_real_literal] = ACTIONS(4966), + [sym_integer_literal] = ACTIONS(4964), + [sym_hex_literal] = ACTIONS(4966), + [sym_bin_literal] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_SQUOTE] = ACTIONS(4966), + [sym_null_literal] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4966), + [sym__automatic_semicolon] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4966), + }, + [3275] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_object] = ACTIONS(4940), + [anon_sym_fun] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_this] = ACTIONS(4940), + [anon_sym_super] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_when] = ACTIONS(4940), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_throw] = ACTIONS(4940), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4942), + [anon_sym_continue_AT] = ACTIONS(4942), + [anon_sym_break_AT] = ACTIONS(4942), + [anon_sym_this_AT] = ACTIONS(4942), + [anon_sym_super_AT] = ACTIONS(4942), + [sym_real_literal] = ACTIONS(4942), + [sym_integer_literal] = ACTIONS(4940), + [sym_hex_literal] = ACTIONS(4942), + [sym_bin_literal] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_SQUOTE] = ACTIONS(4942), + [sym_null_literal] = ACTIONS(4940), + [sym__backtick_identifier] = ACTIONS(4942), + [sym__automatic_semicolon] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4942), + }, + [3276] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6672), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3277] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_object] = ACTIONS(1694), + [anon_sym_fun] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_this] = ACTIONS(1694), + [anon_sym_super] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1694), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_value] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1696), + [anon_sym_continue_AT] = ACTIONS(1696), + [anon_sym_break_AT] = ACTIONS(1696), + [anon_sym_this_AT] = ACTIONS(1696), + [anon_sym_super_AT] = ACTIONS(1696), + [sym_real_literal] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [sym_hex_literal] = ACTIONS(1696), + [sym_bin_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_null_literal] = ACTIONS(1694), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1696), + }, + [3278] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4936), + [anon_sym_fun] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_this] = ACTIONS(4936), + [anon_sym_super] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_if] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_try] = ACTIONS(4936), + [anon_sym_throw] = ACTIONS(4936), + [anon_sym_return] = ACTIONS(4936), + [anon_sym_continue] = ACTIONS(4936), + [anon_sym_break] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4938), + [anon_sym_continue_AT] = ACTIONS(4938), + [anon_sym_break_AT] = ACTIONS(4938), + [anon_sym_this_AT] = ACTIONS(4938), + [anon_sym_super_AT] = ACTIONS(4938), + [sym_real_literal] = ACTIONS(4938), + [sym_integer_literal] = ACTIONS(4936), + [sym_hex_literal] = ACTIONS(4938), + [sym_bin_literal] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4938), + [sym_null_literal] = ACTIONS(4936), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4938), + }, + [3279] = { + [sym__alpha_identifier] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_where] = ACTIONS(4932), + [anon_sym_object] = ACTIONS(4932), + [anon_sym_fun] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(4932), + [anon_sym_set] = ACTIONS(4932), + [anon_sym_this] = ACTIONS(4932), + [anon_sym_super] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_QMARK_COLON] = ACTIONS(4934), + [anon_sym_AMP_AMP] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4934), + [anon_sym_if] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4932), + [anon_sym_when] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4932), + [anon_sym_throw] = ACTIONS(4932), + [anon_sym_return] = ACTIONS(4932), + [anon_sym_continue] = ACTIONS(4932), + [anon_sym_break] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4934), + [anon_sym_DASH_EQ] = ACTIONS(4934), + [anon_sym_STAR_EQ] = ACTIONS(4934), + [anon_sym_SLASH_EQ] = ACTIONS(4934), + [anon_sym_PERCENT_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4934), + [anon_sym_BANGin] = ACTIONS(4934), + [anon_sym_is] = ACTIONS(4932), + [anon_sym_BANGis] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_as_QMARK] = ACTIONS(4934), + [anon_sym_PLUS_PLUS] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4934), + [anon_sym_data] = ACTIONS(4932), + [anon_sym_inner] = ACTIONS(4932), + [anon_sym_value] = ACTIONS(4932), + [anon_sym_expect] = ACTIONS(4932), + [anon_sym_actual] = ACTIONS(4932), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4934), + [anon_sym_continue_AT] = ACTIONS(4934), + [anon_sym_break_AT] = ACTIONS(4934), + [anon_sym_this_AT] = ACTIONS(4934), + [anon_sym_super_AT] = ACTIONS(4934), + [sym_real_literal] = ACTIONS(4934), + [sym_integer_literal] = ACTIONS(4932), + [sym_hex_literal] = ACTIONS(4934), + [sym_bin_literal] = ACTIONS(4934), + [anon_sym_true] = ACTIONS(4932), + [anon_sym_false] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4934), + [sym_null_literal] = ACTIONS(4932), + [sym__backtick_identifier] = ACTIONS(4934), + [sym__automatic_semicolon] = ACTIONS(4934), + [sym_safe_nav] = ACTIONS(4934), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4934), + }, + [3280] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_object] = ACTIONS(4832), + [anon_sym_fun] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_this] = ACTIONS(4832), + [anon_sym_super] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [sym_label] = ACTIONS(4832), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_if] = ACTIONS(4832), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_when] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4832), + [anon_sym_throw] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4832), + [anon_sym_continue] = ACTIONS(4832), + [anon_sym_break] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4834), + [anon_sym_continue_AT] = ACTIONS(4834), + [anon_sym_break_AT] = ACTIONS(4834), + [anon_sym_this_AT] = ACTIONS(4834), + [anon_sym_super_AT] = ACTIONS(4834), + [sym_real_literal] = ACTIONS(4834), + [sym_integer_literal] = ACTIONS(4832), + [sym_hex_literal] = ACTIONS(4834), + [sym_bin_literal] = ACTIONS(4834), + [anon_sym_true] = ACTIONS(4832), + [anon_sym_false] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4834), + [sym_null_literal] = ACTIONS(4832), + [sym__backtick_identifier] = ACTIONS(4834), + [sym__automatic_semicolon] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4834), + }, + [3281] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym_null_literal] = ACTIONS(4892), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), + }, + [3282] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_object] = ACTIONS(4896), + [anon_sym_fun] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_this] = ACTIONS(4896), + [anon_sym_super] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4896), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_if] = ACTIONS(4896), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_when] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4896), + [anon_sym_throw] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4896), + [anon_sym_continue] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4898), + [anon_sym_continue_AT] = ACTIONS(4898), + [anon_sym_break_AT] = ACTIONS(4898), + [anon_sym_this_AT] = ACTIONS(4898), + [anon_sym_super_AT] = ACTIONS(4898), + [sym_real_literal] = ACTIONS(4898), + [sym_integer_literal] = ACTIONS(4896), + [sym_hex_literal] = ACTIONS(4898), + [sym_bin_literal] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4896), + [anon_sym_false] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4898), + [sym_null_literal] = ACTIONS(4896), + [sym__backtick_identifier] = ACTIONS(4898), + [sym__automatic_semicolon] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4898), + }, + [3283] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_object] = ACTIONS(5095), + [anon_sym_fun] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_this] = ACTIONS(5095), + [anon_sym_super] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5095), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_if] = ACTIONS(5095), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_when] = ACTIONS(5095), + [anon_sym_try] = ACTIONS(5095), + [anon_sym_throw] = ACTIONS(5095), + [anon_sym_return] = ACTIONS(5095), + [anon_sym_continue] = ACTIONS(5095), + [anon_sym_break] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5095), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5097), + [anon_sym_continue_AT] = ACTIONS(5097), + [anon_sym_break_AT] = ACTIONS(5097), + [anon_sym_this_AT] = ACTIONS(5097), + [anon_sym_super_AT] = ACTIONS(5097), + [sym_real_literal] = ACTIONS(5097), + [sym_integer_literal] = ACTIONS(5095), + [sym_hex_literal] = ACTIONS(5097), + [sym_bin_literal] = ACTIONS(5097), + [anon_sym_true] = ACTIONS(5095), + [anon_sym_false] = ACTIONS(5095), + [anon_sym_SQUOTE] = ACTIONS(5097), + [sym_null_literal] = ACTIONS(5095), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5097), + }, + [3284] = { + [sym__alpha_identifier] = ACTIONS(4564), + [anon_sym_AT] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_as] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_where] = ACTIONS(4564), + [anon_sym_object] = ACTIONS(4564), + [anon_sym_fun] = ACTIONS(4564), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_get] = ACTIONS(4564), + [anon_sym_set] = ACTIONS(4564), + [anon_sym_this] = ACTIONS(4564), + [anon_sym_super] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [sym_label] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_DOT_DOT] = ACTIONS(4566), + [anon_sym_QMARK_COLON] = ACTIONS(4566), + [anon_sym_AMP_AMP] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4566), + [anon_sym_if] = ACTIONS(4564), + [anon_sym_else] = ACTIONS(4564), + [anon_sym_when] = ACTIONS(4564), + [anon_sym_try] = ACTIONS(4564), + [anon_sym_throw] = ACTIONS(4564), + [anon_sym_return] = ACTIONS(4564), + [anon_sym_continue] = ACTIONS(4564), + [anon_sym_break] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4566), + [anon_sym_PLUS_EQ] = ACTIONS(4566), + [anon_sym_DASH_EQ] = ACTIONS(4566), + [anon_sym_STAR_EQ] = ACTIONS(4566), + [anon_sym_SLASH_EQ] = ACTIONS(4566), + [anon_sym_PERCENT_EQ] = ACTIONS(4566), + [anon_sym_BANG_EQ] = ACTIONS(4564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4566), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4566), + [anon_sym_BANGin] = ACTIONS(4566), + [anon_sym_is] = ACTIONS(4564), + [anon_sym_BANGis] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4564), + [anon_sym_PERCENT] = ACTIONS(4564), + [anon_sym_as_QMARK] = ACTIONS(4566), + [anon_sym_PLUS_PLUS] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_BANG_BANG] = ACTIONS(4566), + [anon_sym_data] = ACTIONS(4564), + [anon_sym_inner] = ACTIONS(4564), + [anon_sym_value] = ACTIONS(4564), + [anon_sym_expect] = ACTIONS(4564), + [anon_sym_actual] = ACTIONS(4564), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4566), + [anon_sym_continue_AT] = ACTIONS(4566), + [anon_sym_break_AT] = ACTIONS(4566), + [anon_sym_this_AT] = ACTIONS(4566), + [anon_sym_super_AT] = ACTIONS(4566), + [sym_real_literal] = ACTIONS(4566), + [sym_integer_literal] = ACTIONS(4564), + [sym_hex_literal] = ACTIONS(4566), + [sym_bin_literal] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4564), + [anon_sym_false] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4566), + [sym_null_literal] = ACTIONS(4564), + [sym__backtick_identifier] = ACTIONS(4566), + [sym__automatic_semicolon] = ACTIONS(4566), + [sym_safe_nav] = ACTIONS(4566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4566), + }, + [3285] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_object] = ACTIONS(4924), + [anon_sym_fun] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_this] = ACTIONS(4924), + [anon_sym_super] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_if] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_when] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4924), + [anon_sym_throw] = ACTIONS(4924), + [anon_sym_return] = ACTIONS(4924), + [anon_sym_continue] = ACTIONS(4924), + [anon_sym_break] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4926), + [anon_sym_continue_AT] = ACTIONS(4926), + [anon_sym_break_AT] = ACTIONS(4926), + [anon_sym_this_AT] = ACTIONS(4926), + [anon_sym_super_AT] = ACTIONS(4926), + [sym_real_literal] = ACTIONS(4926), + [sym_integer_literal] = ACTIONS(4924), + [sym_hex_literal] = ACTIONS(4926), + [sym_bin_literal] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4924), + [anon_sym_false] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4926), + [sym_null_literal] = ACTIONS(4924), + [sym__backtick_identifier] = ACTIONS(4926), + [sym__automatic_semicolon] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4926), + }, + [3286] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [3287] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_object] = ACTIONS(4928), + [anon_sym_fun] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_this] = ACTIONS(4928), + [anon_sym_super] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_if] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_when] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4928), + [anon_sym_throw] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4928), + [anon_sym_continue] = ACTIONS(4928), + [anon_sym_break] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4930), + [anon_sym_continue_AT] = ACTIONS(4930), + [anon_sym_break_AT] = ACTIONS(4930), + [anon_sym_this_AT] = ACTIONS(4930), + [anon_sym_super_AT] = ACTIONS(4930), + [sym_real_literal] = ACTIONS(4930), + [sym_integer_literal] = ACTIONS(4928), + [sym_hex_literal] = ACTIONS(4930), + [sym_bin_literal] = ACTIONS(4930), + [anon_sym_true] = ACTIONS(4928), + [anon_sym_false] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4930), + [sym_null_literal] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4930), + [sym__automatic_semicolon] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4930), + }, + [3288] = { + [sym__alpha_identifier] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_object] = ACTIONS(4900), + [anon_sym_fun] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_get] = ACTIONS(4900), + [anon_sym_set] = ACTIONS(4900), + [anon_sym_this] = ACTIONS(4900), + [anon_sym_super] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [sym_label] = ACTIONS(4900), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_QMARK_COLON] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4902), + [anon_sym_if] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_when] = ACTIONS(4900), + [anon_sym_try] = ACTIONS(4900), + [anon_sym_throw] = ACTIONS(4900), + [anon_sym_return] = ACTIONS(4900), + [anon_sym_continue] = ACTIONS(4900), + [anon_sym_break] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4902), + [anon_sym_BANGin] = ACTIONS(4902), + [anon_sym_is] = ACTIONS(4900), + [anon_sym_BANGis] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_as_QMARK] = ACTIONS(4902), + [anon_sym_PLUS_PLUS] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_BANG_BANG] = ACTIONS(4902), + [anon_sym_data] = ACTIONS(4900), + [anon_sym_inner] = ACTIONS(4900), + [anon_sym_value] = ACTIONS(4900), + [anon_sym_expect] = ACTIONS(4900), + [anon_sym_actual] = ACTIONS(4900), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4902), + [anon_sym_continue_AT] = ACTIONS(4902), + [anon_sym_break_AT] = ACTIONS(4902), + [anon_sym_this_AT] = ACTIONS(4902), + [anon_sym_super_AT] = ACTIONS(4902), + [sym_real_literal] = ACTIONS(4902), + [sym_integer_literal] = ACTIONS(4900), + [sym_hex_literal] = ACTIONS(4902), + [sym_bin_literal] = ACTIONS(4902), + [anon_sym_true] = ACTIONS(4900), + [anon_sym_false] = ACTIONS(4900), + [anon_sym_SQUOTE] = ACTIONS(4902), + [sym_null_literal] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(4902), + [sym__automatic_semicolon] = ACTIONS(4902), + [sym_safe_nav] = ACTIONS(4902), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4902), + }, + [3289] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_this] = ACTIONS(4307), + [anon_sym_super] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4307), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_when] = ACTIONS(4307), + [anon_sym_try] = ACTIONS(4307), + [anon_sym_throw] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4309), + [anon_sym_continue_AT] = ACTIONS(4309), + [anon_sym_break_AT] = ACTIONS(4309), + [anon_sym_this_AT] = ACTIONS(4309), + [anon_sym_super_AT] = ACTIONS(4309), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(4307), + [anon_sym_false] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4309), + [sym_null_literal] = ACTIONS(4307), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3290] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6676), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3291] = { + [sym__alpha_identifier] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_where] = ACTIONS(5022), + [anon_sym_object] = ACTIONS(5022), + [anon_sym_fun] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_get] = ACTIONS(5022), + [anon_sym_set] = ACTIONS(5022), + [anon_sym_this] = ACTIONS(5022), + [anon_sym_super] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [sym_label] = ACTIONS(5022), + [anon_sym_in] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_QMARK_COLON] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_if] = ACTIONS(5022), + [anon_sym_else] = ACTIONS(5022), + [anon_sym_when] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5022), + [anon_sym_throw] = ACTIONS(5022), + [anon_sym_return] = ACTIONS(5022), + [anon_sym_continue] = ACTIONS(5022), + [anon_sym_break] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_BANGin] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5022), + [anon_sym_BANGis] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_as_QMARK] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_BANG_BANG] = ACTIONS(5024), + [anon_sym_data] = ACTIONS(5022), + [anon_sym_inner] = ACTIONS(5022), + [anon_sym_value] = ACTIONS(5022), + [anon_sym_expect] = ACTIONS(5022), + [anon_sym_actual] = ACTIONS(5022), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5024), + [anon_sym_continue_AT] = ACTIONS(5024), + [anon_sym_break_AT] = ACTIONS(5024), + [anon_sym_this_AT] = ACTIONS(5024), + [anon_sym_super_AT] = ACTIONS(5024), + [sym_real_literal] = ACTIONS(5024), + [sym_integer_literal] = ACTIONS(5022), + [sym_hex_literal] = ACTIONS(5024), + [sym_bin_literal] = ACTIONS(5024), + [anon_sym_true] = ACTIONS(5022), + [anon_sym_false] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5024), + [sym_null_literal] = ACTIONS(5022), + [sym__backtick_identifier] = ACTIONS(5024), + [sym__automatic_semicolon] = ACTIONS(5024), + [sym_safe_nav] = ACTIONS(5024), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5024), + }, + [3292] = { + [aux_sym_type_constraints_repeat1] = STATE(3292), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_RBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6680), + [anon_sym_RPAREN] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_DASH_GT] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_while] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + }, + [3293] = { + [aux_sym_nullable_type_repeat1] = STATE(3293), + [sym__alpha_identifier] = ACTIONS(4268), + [anon_sym_AT] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_EQ] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_COMMA] = ACTIONS(4270), + [anon_sym_by] = ACTIONS(4268), + [anon_sym_where] = ACTIONS(4268), + [anon_sym_object] = ACTIONS(4268), + [anon_sym_fun] = ACTIONS(4268), + [anon_sym_SEMI] = ACTIONS(4270), + [anon_sym_get] = ACTIONS(4268), + [anon_sym_set] = ACTIONS(4268), + [anon_sym_this] = ACTIONS(4268), + [anon_sym_super] = ACTIONS(4268), + [sym__quest] = ACTIONS(6683), + [anon_sym_STAR] = ACTIONS(4270), + [sym_label] = ACTIONS(4268), + [anon_sym_in] = ACTIONS(4268), + [anon_sym_if] = ACTIONS(4268), + [anon_sym_else] = ACTIONS(4268), + [anon_sym_when] = ACTIONS(4268), + [anon_sym_try] = ACTIONS(4268), + [anon_sym_throw] = ACTIONS(4268), + [anon_sym_return] = ACTIONS(4268), + [anon_sym_continue] = ACTIONS(4268), + [anon_sym_break] = ACTIONS(4268), + [anon_sym_COLON_COLON] = ACTIONS(4270), + [anon_sym_BANGin] = ACTIONS(4270), + [anon_sym_is] = ACTIONS(4268), + [anon_sym_BANGis] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4270), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_suspend] = ACTIONS(4268), + [anon_sym_sealed] = ACTIONS(4268), + [anon_sym_annotation] = ACTIONS(4268), + [anon_sym_data] = ACTIONS(4268), + [anon_sym_inner] = ACTIONS(4268), + [anon_sym_value] = ACTIONS(4268), + [anon_sym_override] = ACTIONS(4268), + [anon_sym_lateinit] = ACTIONS(4268), + [anon_sym_public] = ACTIONS(4268), + [anon_sym_private] = ACTIONS(4268), + [anon_sym_internal] = ACTIONS(4268), + [anon_sym_protected] = ACTIONS(4268), + [anon_sym_tailrec] = ACTIONS(4268), + [anon_sym_operator] = ACTIONS(4268), + [anon_sym_infix] = ACTIONS(4268), + [anon_sym_inline] = ACTIONS(4268), + [anon_sym_external] = ACTIONS(4268), + [sym_property_modifier] = ACTIONS(4268), + [anon_sym_abstract] = ACTIONS(4268), + [anon_sym_final] = ACTIONS(4268), + [anon_sym_open] = ACTIONS(4268), + [anon_sym_vararg] = ACTIONS(4268), + [anon_sym_noinline] = ACTIONS(4268), + [anon_sym_crossinline] = ACTIONS(4268), + [anon_sym_expect] = ACTIONS(4268), + [anon_sym_actual] = ACTIONS(4268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4270), + [anon_sym_continue_AT] = ACTIONS(4270), + [anon_sym_break_AT] = ACTIONS(4270), + [anon_sym_this_AT] = ACTIONS(4270), + [anon_sym_super_AT] = ACTIONS(4270), + [sym_real_literal] = ACTIONS(4270), + [sym_integer_literal] = ACTIONS(4268), + [sym_hex_literal] = ACTIONS(4270), + [sym_bin_literal] = ACTIONS(4270), + [anon_sym_true] = ACTIONS(4268), + [anon_sym_false] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4270), + [sym_null_literal] = ACTIONS(4268), + [sym__backtick_identifier] = ACTIONS(4270), + [sym__automatic_semicolon] = ACTIONS(4270), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4270), + }, + [3294] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_object] = ACTIONS(4944), + [anon_sym_fun] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_this] = ACTIONS(4944), + [anon_sym_super] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_when] = ACTIONS(4944), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_throw] = ACTIONS(4944), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4946), + [anon_sym_continue_AT] = ACTIONS(4946), + [anon_sym_break_AT] = ACTIONS(4946), + [anon_sym_this_AT] = ACTIONS(4946), + [anon_sym_super_AT] = ACTIONS(4946), + [sym_real_literal] = ACTIONS(4946), + [sym_integer_literal] = ACTIONS(4944), + [sym_hex_literal] = ACTIONS(4946), + [sym_bin_literal] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4946), + [sym_null_literal] = ACTIONS(4944), + [sym__backtick_identifier] = ACTIONS(4946), + [sym__automatic_semicolon] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4946), + }, + [3295] = { + [sym_type_constraints] = STATE(3305), + [sym_enum_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3296] = { + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3297] = { + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_object] = ACTIONS(4363), + [anon_sym_fun] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_this] = ACTIONS(4363), + [anon_sym_super] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4363), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_when] = ACTIONS(4363), + [anon_sym_try] = ACTIONS(4363), + [anon_sym_throw] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4365), + [anon_sym_continue_AT] = ACTIONS(4365), + [anon_sym_break_AT] = ACTIONS(4365), + [anon_sym_this_AT] = ACTIONS(4365), + [anon_sym_super_AT] = ACTIONS(4365), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4365), + [sym_null_literal] = ACTIONS(4363), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4365), + }, + [3298] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_object] = ACTIONS(4976), + [anon_sym_fun] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_this] = ACTIONS(4976), + [anon_sym_super] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_when] = ACTIONS(4976), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_throw] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4978), + [anon_sym_continue_AT] = ACTIONS(4978), + [anon_sym_break_AT] = ACTIONS(4978), + [anon_sym_this_AT] = ACTIONS(4978), + [anon_sym_super_AT] = ACTIONS(4978), + [sym_real_literal] = ACTIONS(4978), + [sym_integer_literal] = ACTIONS(4976), + [sym_hex_literal] = ACTIONS(4978), + [sym_bin_literal] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4978), + [sym_null_literal] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4978), + [sym__automatic_semicolon] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4978), + }, + [3299] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [3300] = { + [sym_class_body] = STATE(3450), + [sym_type_constraints] = STATE(3347), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_RBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_RPAREN] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_DASH_GT] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_while] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + }, + [3301] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(6686), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3302] = { + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6477), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3303] = { + [sym__alpha_identifier] = ACTIONS(4844), + [anon_sym_AT] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4846), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_COMMA] = ACTIONS(4846), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4844), + [anon_sym_object] = ACTIONS(4844), + [anon_sym_fun] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym_get] = ACTIONS(4844), + [anon_sym_set] = ACTIONS(4844), + [anon_sym_this] = ACTIONS(4844), + [anon_sym_super] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [sym_label] = ACTIONS(4844), + [anon_sym_in] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_QMARK_COLON] = ACTIONS(4846), + [anon_sym_AMP_AMP] = ACTIONS(4846), + [anon_sym_PIPE_PIPE] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(4844), + [anon_sym_when] = ACTIONS(4844), + [anon_sym_try] = ACTIONS(4844), + [anon_sym_throw] = ACTIONS(4844), + [anon_sym_return] = ACTIONS(4844), + [anon_sym_continue] = ACTIONS(4844), + [anon_sym_break] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4846), + [anon_sym_DASH_EQ] = ACTIONS(4846), + [anon_sym_STAR_EQ] = ACTIONS(4846), + [anon_sym_SLASH_EQ] = ACTIONS(4846), + [anon_sym_PERCENT_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4846), + [anon_sym_BANGin] = ACTIONS(4846), + [anon_sym_is] = ACTIONS(4844), + [anon_sym_BANGis] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_as_QMARK] = ACTIONS(4846), + [anon_sym_PLUS_PLUS] = ACTIONS(4846), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_BANG] = ACTIONS(4844), + [anon_sym_BANG_BANG] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4844), + [anon_sym_inner] = ACTIONS(4844), + [anon_sym_value] = ACTIONS(4844), + [anon_sym_expect] = ACTIONS(4844), + [anon_sym_actual] = ACTIONS(4844), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4846), + [anon_sym_continue_AT] = ACTIONS(4846), + [anon_sym_break_AT] = ACTIONS(4846), + [anon_sym_this_AT] = ACTIONS(4846), + [anon_sym_super_AT] = ACTIONS(4846), + [sym_real_literal] = ACTIONS(4846), + [sym_integer_literal] = ACTIONS(4844), + [sym_hex_literal] = ACTIONS(4846), + [sym_bin_literal] = ACTIONS(4846), + [anon_sym_true] = ACTIONS(4844), + [anon_sym_false] = ACTIONS(4844), + [anon_sym_SQUOTE] = ACTIONS(4846), + [sym_null_literal] = ACTIONS(4844), + [sym__backtick_identifier] = ACTIONS(4846), + [sym__automatic_semicolon] = ACTIONS(4846), + [sym_safe_nav] = ACTIONS(4846), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4846), + }, + [3304] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [3305] = { + [sym_enum_class_body] = STATE(3420), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_RBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_DASH_GT] = ACTIONS(4365), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_while] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3306] = { + [sym_type_constraints] = STATE(3646), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6690), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3307] = { + [sym__alpha_identifier] = ACTIONS(4564), + [anon_sym_AT] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_RBRACK] = ACTIONS(4566), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_as] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_RPAREN] = ACTIONS(4566), + [anon_sym_by] = ACTIONS(4564), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_where] = ACTIONS(4564), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_get] = ACTIONS(4564), + [anon_sym_set] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_label] = ACTIONS(4566), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_while] = ACTIONS(4564), + [anon_sym_DOT_DOT] = ACTIONS(4566), + [anon_sym_QMARK_COLON] = ACTIONS(4566), + [anon_sym_AMP_AMP] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4566), + [anon_sym_else] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4566), + [anon_sym_PLUS_EQ] = ACTIONS(4566), + [anon_sym_DASH_EQ] = ACTIONS(4566), + [anon_sym_STAR_EQ] = ACTIONS(4566), + [anon_sym_SLASH_EQ] = ACTIONS(4566), + [anon_sym_PERCENT_EQ] = ACTIONS(4566), + [anon_sym_BANG_EQ] = ACTIONS(4564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4566), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4566), + [anon_sym_BANGin] = ACTIONS(4566), + [anon_sym_is] = ACTIONS(4564), + [anon_sym_BANGis] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4564), + [anon_sym_PERCENT] = ACTIONS(4564), + [anon_sym_as_QMARK] = ACTIONS(4566), + [anon_sym_PLUS_PLUS] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4566), + [anon_sym_BANG_BANG] = ACTIONS(4566), + [anon_sym_suspend] = ACTIONS(4564), + [anon_sym_sealed] = ACTIONS(4564), + [anon_sym_annotation] = ACTIONS(4564), + [anon_sym_data] = ACTIONS(4564), + [anon_sym_inner] = ACTIONS(4564), + [anon_sym_value] = ACTIONS(4564), + [anon_sym_override] = ACTIONS(4564), + [anon_sym_lateinit] = ACTIONS(4564), + [anon_sym_public] = ACTIONS(4564), + [anon_sym_private] = ACTIONS(4564), + [anon_sym_internal] = ACTIONS(4564), + [anon_sym_protected] = ACTIONS(4564), + [anon_sym_tailrec] = ACTIONS(4564), + [anon_sym_operator] = ACTIONS(4564), + [anon_sym_infix] = ACTIONS(4564), + [anon_sym_inline] = ACTIONS(4564), + [anon_sym_external] = ACTIONS(4564), + [sym_property_modifier] = ACTIONS(4564), + [anon_sym_abstract] = ACTIONS(4564), + [anon_sym_final] = ACTIONS(4564), + [anon_sym_open] = ACTIONS(4564), + [anon_sym_vararg] = ACTIONS(4564), + [anon_sym_noinline] = ACTIONS(4564), + [anon_sym_crossinline] = ACTIONS(4564), + [anon_sym_expect] = ACTIONS(4564), + [anon_sym_actual] = ACTIONS(4564), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4566), + [sym_safe_nav] = ACTIONS(4566), + [sym_multiline_comment] = ACTIONS(3), + }, + [3308] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_RBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_RPAREN] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_DASH_GT] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_while] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + }, + [3309] = { + [sym_enum_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3310] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6696), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3311] = { + [sym__alpha_identifier] = ACTIONS(4539), + [anon_sym_AT] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_RBRACK] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_as] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(4539), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym_get] = ACTIONS(4539), + [anon_sym_set] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_DASH_GT] = ACTIONS(4541), + [sym_label] = ACTIONS(4541), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(4539), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_else] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4539), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), + [anon_sym_EQ_EQ] = ACTIONS(4539), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_BANGin] = ACTIONS(4541), + [anon_sym_is] = ACTIONS(4539), + [anon_sym_BANGis] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_as_QMARK] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_BANG_BANG] = ACTIONS(4541), + [anon_sym_suspend] = ACTIONS(4539), + [anon_sym_sealed] = ACTIONS(4539), + [anon_sym_annotation] = ACTIONS(4539), + [anon_sym_data] = ACTIONS(4539), + [anon_sym_inner] = ACTIONS(4539), + [anon_sym_value] = ACTIONS(4539), + [anon_sym_override] = ACTIONS(4539), + [anon_sym_lateinit] = ACTIONS(4539), + [anon_sym_public] = ACTIONS(4539), + [anon_sym_private] = ACTIONS(4539), + [anon_sym_internal] = ACTIONS(4539), + [anon_sym_protected] = ACTIONS(4539), + [anon_sym_tailrec] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), + [anon_sym_infix] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym_external] = ACTIONS(4539), + [sym_property_modifier] = ACTIONS(4539), + [anon_sym_abstract] = ACTIONS(4539), + [anon_sym_final] = ACTIONS(4539), + [anon_sym_open] = ACTIONS(4539), + [anon_sym_vararg] = ACTIONS(4539), + [anon_sym_noinline] = ACTIONS(4539), + [anon_sym_crossinline] = ACTIONS(4539), + [anon_sym_expect] = ACTIONS(4539), + [anon_sym_actual] = ACTIONS(4539), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4541), + [sym_safe_nav] = ACTIONS(4541), + [sym_multiline_comment] = ACTIONS(3), + }, + [3312] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3338), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_RBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_while] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [3313] = { + [sym_class_body] = STATE(3450), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_RBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_RPAREN] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_DASH_GT] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_while] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + }, + [3314] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3079), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3315] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3316] = { + [sym_type_arguments] = STATE(6606), + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(6744), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4098), + [sym_label] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4100), + [anon_sym_QMARK_COLON] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_as_QMARK] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG_BANG] = ACTIONS(4100), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4100), + [sym__automatic_semicolon] = ACTIONS(4100), + [sym_safe_nav] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + }, + [3317] = { + [sym__alpha_identifier] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_RBRACK] = ACTIONS(4707), + [anon_sym_DOT] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_RPAREN] = ACTIONS(4707), + [anon_sym_by] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_where] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_get] = ACTIONS(4704), + [anon_sym_set] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_DASH_GT] = ACTIONS(4707), + [sym_label] = ACTIONS(4707), + [anon_sym_in] = ACTIONS(4704), + [anon_sym_while] = ACTIONS(4704), + [anon_sym_DOT_DOT] = ACTIONS(4707), + [anon_sym_QMARK_COLON] = ACTIONS(4707), + [anon_sym_AMP_AMP] = ACTIONS(4707), + [anon_sym_PIPE_PIPE] = ACTIONS(4707), + [anon_sym_else] = ACTIONS(4704), + [anon_sym_COLON_COLON] = ACTIONS(4707), + [anon_sym_PLUS_EQ] = ACTIONS(4707), + [anon_sym_DASH_EQ] = ACTIONS(4707), + [anon_sym_STAR_EQ] = ACTIONS(4707), + [anon_sym_SLASH_EQ] = ACTIONS(4707), + [anon_sym_PERCENT_EQ] = ACTIONS(4707), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), + [anon_sym_LT_EQ] = ACTIONS(4707), + [anon_sym_GT_EQ] = ACTIONS(4707), + [anon_sym_BANGin] = ACTIONS(4707), + [anon_sym_is] = ACTIONS(4704), + [anon_sym_BANGis] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_as_QMARK] = ACTIONS(4707), + [anon_sym_PLUS_PLUS] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4707), + [anon_sym_BANG_BANG] = ACTIONS(4707), + [anon_sym_suspend] = ACTIONS(4704), + [anon_sym_sealed] = ACTIONS(4704), + [anon_sym_annotation] = ACTIONS(4704), + [anon_sym_data] = ACTIONS(4704), + [anon_sym_inner] = ACTIONS(4704), + [anon_sym_value] = ACTIONS(4704), + [anon_sym_override] = ACTIONS(4704), + [anon_sym_lateinit] = ACTIONS(4704), + [anon_sym_public] = ACTIONS(4704), + [anon_sym_private] = ACTIONS(4704), + [anon_sym_internal] = ACTIONS(4704), + [anon_sym_protected] = ACTIONS(4704), + [anon_sym_tailrec] = ACTIONS(4704), + [anon_sym_operator] = ACTIONS(4704), + [anon_sym_infix] = ACTIONS(4704), + [anon_sym_inline] = ACTIONS(4704), + [anon_sym_external] = ACTIONS(4704), + [sym_property_modifier] = ACTIONS(4704), + [anon_sym_abstract] = ACTIONS(4704), + [anon_sym_final] = ACTIONS(4704), + [anon_sym_open] = ACTIONS(4704), + [anon_sym_vararg] = ACTIONS(4704), + [anon_sym_noinline] = ACTIONS(4704), + [anon_sym_crossinline] = ACTIONS(4704), + [anon_sym_expect] = ACTIONS(4704), + [anon_sym_actual] = ACTIONS(4704), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4707), + [sym_safe_nav] = ACTIONS(4707), + [sym_multiline_comment] = ACTIONS(3), + }, + [3318] = { + [sym_type_constraints] = STATE(3777), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3319] = { + [sym_class_body] = STATE(3436), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3320] = { + [sym_type_constraints] = STATE(3769), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6750), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3321] = { + [sym_type_constraints] = STATE(3762), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3322] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_RBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_by] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_DASH_GT] = ACTIONS(4712), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + }, + [3323] = { + [sym_type_constraints] = STATE(3757), + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3324] = { + [sym_type_constraints] = STATE(3748), + [sym_function_body] = STATE(3472), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6756), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [3325] = { + [sym_type_arguments] = STATE(3547), + [sym__alpha_identifier] = ACTIONS(4104), + [anon_sym_AT] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_as] = ACTIONS(4104), + [anon_sym_EQ] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_COMMA] = ACTIONS(4146), + [anon_sym_by] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(4104), + [anon_sym_where] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [sym__quest] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [sym_label] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4104), + [anon_sym_DOT_DOT] = ACTIONS(4146), + [anon_sym_QMARK_COLON] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_PIPE_PIPE] = ACTIONS(4146), + [anon_sym_else] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4146), + [anon_sym_DASH_EQ] = ACTIONS(4146), + [anon_sym_STAR_EQ] = ACTIONS(4146), + [anon_sym_SLASH_EQ] = ACTIONS(4146), + [anon_sym_PERCENT_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ] = ACTIONS(4104), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ] = ACTIONS(4104), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4146), + [anon_sym_LT_EQ] = ACTIONS(4146), + [anon_sym_GT_EQ] = ACTIONS(4146), + [anon_sym_BANGin] = ACTIONS(4146), + [anon_sym_is] = ACTIONS(4104), + [anon_sym_BANGis] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_SLASH] = ACTIONS(4104), + [anon_sym_PERCENT] = ACTIONS(4104), + [anon_sym_as_QMARK] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_BANG_BANG] = ACTIONS(4146), + [anon_sym_suspend] = ACTIONS(4104), + [anon_sym_sealed] = ACTIONS(4104), + [anon_sym_annotation] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4104), + [anon_sym_inner] = ACTIONS(4104), + [anon_sym_value] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_lateinit] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_internal] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_tailrec] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_infix] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym_external] = ACTIONS(4104), + [sym_property_modifier] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_final] = ACTIONS(4104), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_vararg] = ACTIONS(4104), + [anon_sym_noinline] = ACTIONS(4104), + [anon_sym_crossinline] = ACTIONS(4104), + [anon_sym_expect] = ACTIONS(4104), + [anon_sym_actual] = ACTIONS(4104), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4146), + [sym__automatic_semicolon] = ACTIONS(4146), + [sym_safe_nav] = ACTIONS(4146), + [sym_multiline_comment] = ACTIONS(3), + }, + [3326] = { + [sym__alpha_identifier] = ACTIONS(4648), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_RBRACK] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_RPAREN] = ACTIONS(4650), + [anon_sym_by] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_where] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4648), + [anon_sym_set] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [anon_sym_DASH_GT] = ACTIONS(4650), + [sym_label] = ACTIONS(4650), + [anon_sym_in] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4650), + [anon_sym_QMARK_COLON] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_PIPE_PIPE] = ACTIONS(4650), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_PERCENT_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), + [anon_sym_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_BANGin] = ACTIONS(4650), + [anon_sym_is] = ACTIONS(4648), + [anon_sym_BANGis] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_BANG_BANG] = ACTIONS(4650), + [anon_sym_suspend] = ACTIONS(4648), + [anon_sym_sealed] = ACTIONS(4648), + [anon_sym_annotation] = ACTIONS(4648), + [anon_sym_data] = ACTIONS(4648), + [anon_sym_inner] = ACTIONS(4648), + [anon_sym_value] = ACTIONS(4648), + [anon_sym_override] = ACTIONS(4648), + [anon_sym_lateinit] = ACTIONS(4648), + [anon_sym_public] = ACTIONS(4648), + [anon_sym_private] = ACTIONS(4648), + [anon_sym_internal] = ACTIONS(4648), + [anon_sym_protected] = ACTIONS(4648), + [anon_sym_tailrec] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_infix] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym_external] = ACTIONS(4648), + [sym_property_modifier] = ACTIONS(4648), + [anon_sym_abstract] = ACTIONS(4648), + [anon_sym_final] = ACTIONS(4648), + [anon_sym_open] = ACTIONS(4648), + [anon_sym_vararg] = ACTIONS(4648), + [anon_sym_noinline] = ACTIONS(4648), + [anon_sym_crossinline] = ACTIONS(4648), + [anon_sym_expect] = ACTIONS(4648), + [anon_sym_actual] = ACTIONS(4648), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4650), + [sym_safe_nav] = ACTIONS(4650), + [sym_multiline_comment] = ACTIONS(3), + }, + [3327] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_RBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4720), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_DASH_GT] = ACTIONS(4720), + [sym_label] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + }, + [3328] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(6670), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3329] = { + [sym_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3330] = { + [sym_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3331] = { + [sym__alpha_identifier] = ACTIONS(4553), + [anon_sym_AT] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_RBRACK] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_RPAREN] = ACTIONS(4555), + [anon_sym_by] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4553), + [anon_sym_where] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_get] = ACTIONS(4553), + [anon_sym_set] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4553), + [anon_sym_DASH_GT] = ACTIONS(4555), + [sym_label] = ACTIONS(4555), + [anon_sym_in] = ACTIONS(4553), + [anon_sym_while] = ACTIONS(4553), + [anon_sym_DOT_DOT] = ACTIONS(4555), + [anon_sym_QMARK_COLON] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_else] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_PLUS_EQ] = ACTIONS(4555), + [anon_sym_DASH_EQ] = ACTIONS(4555), + [anon_sym_STAR_EQ] = ACTIONS(4555), + [anon_sym_SLASH_EQ] = ACTIONS(4555), + [anon_sym_PERCENT_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4555), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4555), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(4553), + [anon_sym_BANGis] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4553), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_as_QMARK] = ACTIONS(4555), + [anon_sym_PLUS_PLUS] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4555), + [anon_sym_BANG_BANG] = ACTIONS(4555), + [anon_sym_suspend] = ACTIONS(4553), + [anon_sym_sealed] = ACTIONS(4553), + [anon_sym_annotation] = ACTIONS(4553), + [anon_sym_data] = ACTIONS(4553), + [anon_sym_inner] = ACTIONS(4553), + [anon_sym_value] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_lateinit] = ACTIONS(4553), + [anon_sym_public] = ACTIONS(4553), + [anon_sym_private] = ACTIONS(4553), + [anon_sym_internal] = ACTIONS(4553), + [anon_sym_protected] = ACTIONS(4553), + [anon_sym_tailrec] = ACTIONS(4553), + [anon_sym_operator] = ACTIONS(4553), + [anon_sym_infix] = ACTIONS(4553), + [anon_sym_inline] = ACTIONS(4553), + [anon_sym_external] = ACTIONS(4553), + [sym_property_modifier] = ACTIONS(4553), + [anon_sym_abstract] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_open] = ACTIONS(4553), + [anon_sym_vararg] = ACTIONS(4553), + [anon_sym_noinline] = ACTIONS(4553), + [anon_sym_crossinline] = ACTIONS(4553), + [anon_sym_expect] = ACTIONS(4553), + [anon_sym_actual] = ACTIONS(4553), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4555), + [sym_safe_nav] = ACTIONS(4555), + [sym_multiline_comment] = ACTIONS(3), + }, + [3332] = { + [sym__alpha_identifier] = ACTIONS(4640), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_as] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_where] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_get] = ACTIONS(4640), + [anon_sym_set] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4640), + [anon_sym_DASH_GT] = ACTIONS(4642), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4642), + [anon_sym_QMARK_COLON] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_PIPE_PIPE] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_PERCENT_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4640), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ] = ACTIONS(4640), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4642), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_BANGin] = ACTIONS(4642), + [anon_sym_is] = ACTIONS(4640), + [anon_sym_BANGis] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_PERCENT] = ACTIONS(4640), + [anon_sym_as_QMARK] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_BANG_BANG] = ACTIONS(4642), + [anon_sym_suspend] = ACTIONS(4640), + [anon_sym_sealed] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4640), + [anon_sym_data] = ACTIONS(4640), + [anon_sym_inner] = ACTIONS(4640), + [anon_sym_value] = ACTIONS(4640), + [anon_sym_override] = ACTIONS(4640), + [anon_sym_lateinit] = ACTIONS(4640), + [anon_sym_public] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4640), + [anon_sym_internal] = ACTIONS(4640), + [anon_sym_protected] = ACTIONS(4640), + [anon_sym_tailrec] = ACTIONS(4640), + [anon_sym_operator] = ACTIONS(4640), + [anon_sym_infix] = ACTIONS(4640), + [anon_sym_inline] = ACTIONS(4640), + [anon_sym_external] = ACTIONS(4640), + [sym_property_modifier] = ACTIONS(4640), + [anon_sym_abstract] = ACTIONS(4640), + [anon_sym_final] = ACTIONS(4640), + [anon_sym_open] = ACTIONS(4640), + [anon_sym_vararg] = ACTIONS(4640), + [anon_sym_noinline] = ACTIONS(4640), + [anon_sym_crossinline] = ACTIONS(4640), + [anon_sym_expect] = ACTIONS(4640), + [anon_sym_actual] = ACTIONS(4640), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4642), + [sym_safe_nav] = ACTIONS(4642), + [sym_multiline_comment] = ACTIONS(3), + }, + [3333] = { + [sym__alpha_identifier] = ACTIONS(4636), + [anon_sym_AT] = ACTIONS(4638), + [anon_sym_COLON] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_RBRACK] = ACTIONS(4638), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_as] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_RPAREN] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_where] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym_get] = ACTIONS(4636), + [anon_sym_set] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_DASH_GT] = ACTIONS(4638), + [sym_label] = ACTIONS(4638), + [anon_sym_in] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4638), + [anon_sym_QMARK_COLON] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_PIPE_PIPE] = ACTIONS(4638), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_PERCENT_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4636), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_BANGin] = ACTIONS(4638), + [anon_sym_is] = ACTIONS(4636), + [anon_sym_BANGis] = ACTIONS(4638), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(4636), + [anon_sym_as_QMARK] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_BANG_BANG] = ACTIONS(4638), + [anon_sym_suspend] = ACTIONS(4636), + [anon_sym_sealed] = ACTIONS(4636), + [anon_sym_annotation] = ACTIONS(4636), + [anon_sym_data] = ACTIONS(4636), + [anon_sym_inner] = ACTIONS(4636), + [anon_sym_value] = ACTIONS(4636), + [anon_sym_override] = ACTIONS(4636), + [anon_sym_lateinit] = ACTIONS(4636), + [anon_sym_public] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4636), + [anon_sym_internal] = ACTIONS(4636), + [anon_sym_protected] = ACTIONS(4636), + [anon_sym_tailrec] = ACTIONS(4636), + [anon_sym_operator] = ACTIONS(4636), + [anon_sym_infix] = ACTIONS(4636), + [anon_sym_inline] = ACTIONS(4636), + [anon_sym_external] = ACTIONS(4636), + [sym_property_modifier] = ACTIONS(4636), + [anon_sym_abstract] = ACTIONS(4636), + [anon_sym_final] = ACTIONS(4636), + [anon_sym_open] = ACTIONS(4636), + [anon_sym_vararg] = ACTIONS(4636), + [anon_sym_noinline] = ACTIONS(4636), + [anon_sym_crossinline] = ACTIONS(4636), + [anon_sym_expect] = ACTIONS(4636), + [anon_sym_actual] = ACTIONS(4636), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4638), + [sym_safe_nav] = ACTIONS(4638), + [sym_multiline_comment] = ACTIONS(3), + }, + [3334] = { + [sym_enum_class_body] = STATE(3440), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3335] = { + [sym_type_constraints] = STATE(3699), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6760), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3336] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_RBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3337] = { + [sym_class_body] = STATE(3439), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_RBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_RPAREN] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_DASH_GT] = ACTIONS(4517), + [sym_label] = ACTIONS(4517), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_while] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_suspend] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4515), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_lateinit] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_tailrec] = ACTIONS(4515), + [anon_sym_operator] = ACTIONS(4515), + [anon_sym_infix] = ACTIONS(4515), + [anon_sym_inline] = ACTIONS(4515), + [anon_sym_external] = ACTIONS(4515), + [sym_property_modifier] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_final] = ACTIONS(4515), + [anon_sym_open] = ACTIONS(4515), + [anon_sym_vararg] = ACTIONS(4515), + [anon_sym_noinline] = ACTIONS(4515), + [anon_sym_crossinline] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + }, + [3338] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3338), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_RBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_while] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + }, + [3339] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_by] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4156), + [sym__quest] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3340] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_RBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_DASH_GT] = ACTIONS(4521), + [sym_label] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_while] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_annotation] = ACTIONS(4519), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_lateinit] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_tailrec] = ACTIONS(4519), + [anon_sym_operator] = ACTIONS(4519), + [anon_sym_infix] = ACTIONS(4519), + [anon_sym_inline] = ACTIONS(4519), + [anon_sym_external] = ACTIONS(4519), + [sym_property_modifier] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_open] = ACTIONS(4519), + [anon_sym_vararg] = ACTIONS(4519), + [anon_sym_noinline] = ACTIONS(4519), + [anon_sym_crossinline] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + }, + [3341] = { + [sym_type_constraints] = STATE(3694), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6767), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3342] = { + [sym__alpha_identifier] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_RBRACK] = ACTIONS(4688), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_RPAREN] = ACTIONS(4688), + [anon_sym_by] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_where] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4686), + [anon_sym_STAR] = ACTIONS(4686), + [anon_sym_DASH_GT] = ACTIONS(4688), + [sym_label] = ACTIONS(4688), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_while] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4688), + [anon_sym_QMARK_COLON] = ACTIONS(4688), + [anon_sym_AMP_AMP] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4688), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_PERCENT_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_BANGin] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_BANGis] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4688), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_BANG_BANG] = ACTIONS(4688), + [anon_sym_suspend] = ACTIONS(4686), + [anon_sym_sealed] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4686), + [anon_sym_inner] = ACTIONS(4686), + [anon_sym_value] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_lateinit] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_protected] = ACTIONS(4686), + [anon_sym_tailrec] = ACTIONS(4686), + [anon_sym_operator] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_inline] = ACTIONS(4686), + [anon_sym_external] = ACTIONS(4686), + [sym_property_modifier] = ACTIONS(4686), + [anon_sym_abstract] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_vararg] = ACTIONS(4686), + [anon_sym_noinline] = ACTIONS(4686), + [anon_sym_crossinline] = ACTIONS(4686), + [anon_sym_expect] = ACTIONS(4686), + [anon_sym_actual] = ACTIONS(4686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4688), + [sym_safe_nav] = ACTIONS(4688), + [sym_multiline_comment] = ACTIONS(3), + }, + [3343] = { + [sym_type_constraints] = STATE(3685), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6769), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3344] = { + [sym__alpha_identifier] = ACTIONS(4586), + [anon_sym_AT] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_RBRACK] = ACTIONS(4588), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_as] = ACTIONS(4586), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_RPAREN] = ACTIONS(4588), + [anon_sym_by] = ACTIONS(4586), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_where] = ACTIONS(4586), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_get] = ACTIONS(4586), + [anon_sym_set] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_DASH_GT] = ACTIONS(4588), + [sym_label] = ACTIONS(4588), + [anon_sym_in] = ACTIONS(4586), + [anon_sym_while] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4588), + [anon_sym_QMARK_COLON] = ACTIONS(4588), + [anon_sym_AMP_AMP] = ACTIONS(4588), + [anon_sym_PIPE_PIPE] = ACTIONS(4588), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym_PLUS_EQ] = ACTIONS(4588), + [anon_sym_DASH_EQ] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4588), + [anon_sym_SLASH_EQ] = ACTIONS(4588), + [anon_sym_PERCENT_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4586), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4588), + [anon_sym_EQ_EQ] = ACTIONS(4586), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4588), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_BANGin] = ACTIONS(4588), + [anon_sym_is] = ACTIONS(4586), + [anon_sym_BANGis] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_PERCENT] = ACTIONS(4586), + [anon_sym_as_QMARK] = ACTIONS(4588), + [anon_sym_PLUS_PLUS] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4588), + [anon_sym_BANG_BANG] = ACTIONS(4588), + [anon_sym_suspend] = ACTIONS(4586), + [anon_sym_sealed] = ACTIONS(4586), + [anon_sym_annotation] = ACTIONS(4586), + [anon_sym_data] = ACTIONS(4586), + [anon_sym_inner] = ACTIONS(4586), + [anon_sym_value] = ACTIONS(4586), + [anon_sym_override] = ACTIONS(4586), + [anon_sym_lateinit] = ACTIONS(4586), + [anon_sym_public] = ACTIONS(4586), + [anon_sym_private] = ACTIONS(4586), + [anon_sym_internal] = ACTIONS(4586), + [anon_sym_protected] = ACTIONS(4586), + [anon_sym_tailrec] = ACTIONS(4586), + [anon_sym_operator] = ACTIONS(4586), + [anon_sym_infix] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym_external] = ACTIONS(4586), + [sym_property_modifier] = ACTIONS(4586), + [anon_sym_abstract] = ACTIONS(4586), + [anon_sym_final] = ACTIONS(4586), + [anon_sym_open] = ACTIONS(4586), + [anon_sym_vararg] = ACTIONS(4586), + [anon_sym_noinline] = ACTIONS(4586), + [anon_sym_crossinline] = ACTIONS(4586), + [anon_sym_expect] = ACTIONS(4586), + [anon_sym_actual] = ACTIONS(4586), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4588), + [sym_safe_nav] = ACTIONS(4588), + [sym_multiline_comment] = ACTIONS(3), + }, + [3345] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4692), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + }, + [3346] = { + [aux_sym_user_type_repeat1] = STATE(3362), + [sym__alpha_identifier] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(6771), + [anon_sym_as] = ACTIONS(4113), + [anon_sym_EQ] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_COMMA] = ACTIONS(4115), + [anon_sym_by] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_where] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4115), + [anon_sym_get] = ACTIONS(4113), + [anon_sym_set] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + [sym__quest] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [sym_label] = ACTIONS(4115), + [anon_sym_in] = ACTIONS(4113), + [anon_sym_DOT_DOT] = ACTIONS(4115), + [anon_sym_QMARK_COLON] = ACTIONS(4115), + [anon_sym_AMP_AMP] = ACTIONS(4115), + [anon_sym_PIPE_PIPE] = ACTIONS(4115), + [anon_sym_else] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4115), + [anon_sym_PLUS_EQ] = ACTIONS(4115), + [anon_sym_DASH_EQ] = ACTIONS(4115), + [anon_sym_STAR_EQ] = ACTIONS(4115), + [anon_sym_SLASH_EQ] = ACTIONS(4115), + [anon_sym_PERCENT_EQ] = ACTIONS(4115), + [anon_sym_BANG_EQ] = ACTIONS(4113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4115), + [anon_sym_EQ_EQ] = ACTIONS(4113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4115), + [anon_sym_LT_EQ] = ACTIONS(4115), + [anon_sym_GT_EQ] = ACTIONS(4115), + [anon_sym_BANGin] = ACTIONS(4115), + [anon_sym_is] = ACTIONS(4113), + [anon_sym_BANGis] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_SLASH] = ACTIONS(4113), + [anon_sym_PERCENT] = ACTIONS(4113), + [anon_sym_as_QMARK] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4115), + [anon_sym_BANG_BANG] = ACTIONS(4115), + [anon_sym_suspend] = ACTIONS(4113), + [anon_sym_sealed] = ACTIONS(4113), + [anon_sym_annotation] = ACTIONS(4113), + [anon_sym_data] = ACTIONS(4113), + [anon_sym_inner] = ACTIONS(4113), + [anon_sym_value] = ACTIONS(4113), + [anon_sym_override] = ACTIONS(4113), + [anon_sym_lateinit] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_private] = ACTIONS(4113), + [anon_sym_internal] = ACTIONS(4113), + [anon_sym_protected] = ACTIONS(4113), + [anon_sym_tailrec] = ACTIONS(4113), + [anon_sym_operator] = ACTIONS(4113), + [anon_sym_infix] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_external] = ACTIONS(4113), + [sym_property_modifier] = ACTIONS(4113), + [anon_sym_abstract] = ACTIONS(4113), + [anon_sym_final] = ACTIONS(4113), + [anon_sym_open] = ACTIONS(4113), + [anon_sym_vararg] = ACTIONS(4113), + [anon_sym_noinline] = ACTIONS(4113), + [anon_sym_crossinline] = ACTIONS(4113), + [anon_sym_expect] = ACTIONS(4113), + [anon_sym_actual] = ACTIONS(4113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4115), + [sym__automatic_semicolon] = ACTIONS(4115), + [sym_safe_nav] = ACTIONS(4115), + [sym_multiline_comment] = ACTIONS(3), + }, + [3347] = { + [sym_class_body] = STATE(3437), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3348] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4700), + [sym_label] = ACTIONS(4700), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_while] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_suspend] = ACTIONS(4698), + [anon_sym_sealed] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_value] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_lateinit] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4698), + [anon_sym_tailrec] = ACTIONS(4698), + [anon_sym_operator] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_inline] = ACTIONS(4698), + [anon_sym_external] = ACTIONS(4698), + [sym_property_modifier] = ACTIONS(4698), + [anon_sym_abstract] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_vararg] = ACTIONS(4698), + [anon_sym_noinline] = ACTIONS(4698), + [anon_sym_crossinline] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), + [sym_multiline_comment] = ACTIONS(3), + }, + [3349] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3350] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3351] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_RBRACK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_RPAREN] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [anon_sym_DASH_GT] = ACTIONS(4662), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + }, + [3352] = { + [sym_type_constraints] = STATE(3709), + [sym_function_body] = STATE(3231), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [3353] = { + [sym_type_constraints] = STATE(3708), + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [3354] = { + [sym_type_constraints] = STATE(3657), + [sym_function_body] = STATE(4076), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6778), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [3355] = { + [sym_type_constraints] = STATE(3650), + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3356] = { + [sym_type_constraints] = STATE(3644), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6782), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3357] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_RBRACK] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [anon_sym_DASH_GT] = ACTIONS(4545), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_while] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + }, + [3358] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3050), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3359] = { + [sym_type_constraints] = STATE(3643), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6784), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3360] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_by] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), + [sym__quest] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [3361] = { + [sym_catch_block] = STATE(3361), + [aux_sym_try_expression_repeat1] = STATE(3361), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(6786), + [anon_sym_finally] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + }, + [3362] = { + [aux_sym_user_type_repeat1] = STATE(3362), + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(6789), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + }, + [3363] = { + [sym_class_body] = STATE(3467), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_DASH_GT] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3364] = { + [sym__alpha_identifier] = ACTIONS(4568), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_RBRACK] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_as] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_RPAREN] = ACTIONS(4570), + [anon_sym_by] = ACTIONS(4568), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4568), + [anon_sym_where] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_get] = ACTIONS(4568), + [anon_sym_set] = ACTIONS(4568), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_DASH_GT] = ACTIONS(4570), + [sym_label] = ACTIONS(4570), + [anon_sym_in] = ACTIONS(4568), + [anon_sym_while] = ACTIONS(4568), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_QMARK_COLON] = ACTIONS(4570), + [anon_sym_AMP_AMP] = ACTIONS(4570), + [anon_sym_PIPE_PIPE] = ACTIONS(4570), + [anon_sym_else] = ACTIONS(4568), + [anon_sym_COLON_COLON] = ACTIONS(4570), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_PERCENT_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_BANGin] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4568), + [anon_sym_BANGis] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_as_QMARK] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_BANG_BANG] = ACTIONS(4570), + [anon_sym_suspend] = ACTIONS(4568), + [anon_sym_sealed] = ACTIONS(4568), + [anon_sym_annotation] = ACTIONS(4568), + [anon_sym_data] = ACTIONS(4568), + [anon_sym_inner] = ACTIONS(4568), + [anon_sym_value] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_lateinit] = ACTIONS(4568), + [anon_sym_public] = ACTIONS(4568), + [anon_sym_private] = ACTIONS(4568), + [anon_sym_internal] = ACTIONS(4568), + [anon_sym_protected] = ACTIONS(4568), + [anon_sym_tailrec] = ACTIONS(4568), + [anon_sym_operator] = ACTIONS(4568), + [anon_sym_infix] = ACTIONS(4568), + [anon_sym_inline] = ACTIONS(4568), + [anon_sym_external] = ACTIONS(4568), + [sym_property_modifier] = ACTIONS(4568), + [anon_sym_abstract] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_open] = ACTIONS(4568), + [anon_sym_vararg] = ACTIONS(4568), + [anon_sym_noinline] = ACTIONS(4568), + [anon_sym_crossinline] = ACTIONS(4568), + [anon_sym_expect] = ACTIONS(4568), + [anon_sym_actual] = ACTIONS(4568), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4570), + [sym_safe_nav] = ACTIONS(4570), + [sym_multiline_comment] = ACTIONS(3), + }, + [3365] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_RBRACK] = ACTIONS(4680), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_COMMA] = ACTIONS(4680), + [anon_sym_RPAREN] = ACTIONS(4680), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4680), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4680), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_while] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4680), + [anon_sym_QMARK_COLON] = ACTIONS(4680), + [anon_sym_AMP_AMP] = ACTIONS(4680), + [anon_sym_PIPE_PIPE] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_PLUS_EQ] = ACTIONS(4680), + [anon_sym_DASH_EQ] = ACTIONS(4680), + [anon_sym_STAR_EQ] = ACTIONS(4680), + [anon_sym_SLASH_EQ] = ACTIONS(4680), + [anon_sym_PERCENT_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4680), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_BANGin] = ACTIONS(4680), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4680), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4680), + [anon_sym_PLUS_PLUS] = ACTIONS(4680), + [anon_sym_DASH_DASH] = ACTIONS(4680), + [anon_sym_BANG_BANG] = ACTIONS(4680), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4680), + [sym_safe_nav] = ACTIONS(4680), + [sym_multiline_comment] = ACTIONS(3), + }, + [3366] = { + [sym__alpha_identifier] = ACTIONS(4572), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_RBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_as] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_where] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4572), + [anon_sym_set] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [anon_sym_DASH_GT] = ACTIONS(4575), + [sym_label] = ACTIONS(4575), + [anon_sym_in] = ACTIONS(4572), + [anon_sym_while] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4572), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_suspend] = ACTIONS(4572), + [anon_sym_sealed] = ACTIONS(4572), + [anon_sym_annotation] = ACTIONS(4572), + [anon_sym_data] = ACTIONS(4572), + [anon_sym_inner] = ACTIONS(4572), + [anon_sym_value] = ACTIONS(4572), + [anon_sym_override] = ACTIONS(4572), + [anon_sym_lateinit] = ACTIONS(4572), + [anon_sym_public] = ACTIONS(4572), + [anon_sym_private] = ACTIONS(4572), + [anon_sym_internal] = ACTIONS(4572), + [anon_sym_protected] = ACTIONS(4572), + [anon_sym_tailrec] = ACTIONS(4572), + [anon_sym_operator] = ACTIONS(4572), + [anon_sym_infix] = ACTIONS(4572), + [anon_sym_inline] = ACTIONS(4572), + [anon_sym_external] = ACTIONS(4572), + [sym_property_modifier] = ACTIONS(4572), + [anon_sym_abstract] = ACTIONS(4572), + [anon_sym_final] = ACTIONS(4572), + [anon_sym_open] = ACTIONS(4572), + [anon_sym_vararg] = ACTIONS(4572), + [anon_sym_noinline] = ACTIONS(4572), + [anon_sym_crossinline] = ACTIONS(4572), + [anon_sym_expect] = ACTIONS(4572), + [anon_sym_actual] = ACTIONS(4572), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + }, + [3367] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3071), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3368] = { + [sym__alpha_identifier] = ACTIONS(4531), + [anon_sym_AT] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_as] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_where] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym_get] = ACTIONS(4531), + [anon_sym_set] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_label] = ACTIONS(4533), + [anon_sym_in] = ACTIONS(4531), + [anon_sym_while] = ACTIONS(4531), + [anon_sym_DOT_DOT] = ACTIONS(4533), + [anon_sym_QMARK_COLON] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_else] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_BANGin] = ACTIONS(4533), + [anon_sym_is] = ACTIONS(4531), + [anon_sym_BANGis] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_as_QMARK] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_BANG_BANG] = ACTIONS(4533), + [anon_sym_suspend] = ACTIONS(4531), + [anon_sym_sealed] = ACTIONS(4531), + [anon_sym_annotation] = ACTIONS(4531), + [anon_sym_data] = ACTIONS(4531), + [anon_sym_inner] = ACTIONS(4531), + [anon_sym_value] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_lateinit] = ACTIONS(4531), + [anon_sym_public] = ACTIONS(4531), + [anon_sym_private] = ACTIONS(4531), + [anon_sym_internal] = ACTIONS(4531), + [anon_sym_protected] = ACTIONS(4531), + [anon_sym_tailrec] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_infix] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_external] = ACTIONS(4531), + [sym_property_modifier] = ACTIONS(4531), + [anon_sym_abstract] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_open] = ACTIONS(4531), + [anon_sym_vararg] = ACTIONS(4531), + [anon_sym_noinline] = ACTIONS(4531), + [anon_sym_crossinline] = ACTIONS(4531), + [anon_sym_expect] = ACTIONS(4531), + [anon_sym_actual] = ACTIONS(4531), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4533), + [sym_safe_nav] = ACTIONS(4533), + [sym_multiline_comment] = ACTIONS(3), + }, + [3369] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3370] = { + [sym_enum_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3371] = { + [sym_enum_class_body] = STATE(3410), + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_RBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3372] = { + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_RBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_RPAREN] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4264), + [sym_label] = ACTIONS(4264), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_while] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + }, + [3373] = { + [sym__alpha_identifier] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_RBRACK] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_by] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_where] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_get] = ACTIONS(4523), + [anon_sym_set] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4525), + [sym_label] = ACTIONS(4525), + [anon_sym_in] = ACTIONS(4523), + [anon_sym_while] = ACTIONS(4523), + [anon_sym_DOT_DOT] = ACTIONS(4525), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_else] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_BANGin] = ACTIONS(4525), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_BANGis] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_as_QMARK] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_BANG_BANG] = ACTIONS(4525), + [anon_sym_suspend] = ACTIONS(4523), + [anon_sym_sealed] = ACTIONS(4523), + [anon_sym_annotation] = ACTIONS(4523), + [anon_sym_data] = ACTIONS(4523), + [anon_sym_inner] = ACTIONS(4523), + [anon_sym_value] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_lateinit] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_protected] = ACTIONS(4523), + [anon_sym_tailrec] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_infix] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_external] = ACTIONS(4523), + [sym_property_modifier] = ACTIONS(4523), + [anon_sym_abstract] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_open] = ACTIONS(4523), + [anon_sym_vararg] = ACTIONS(4523), + [anon_sym_noinline] = ACTIONS(4523), + [anon_sym_crossinline] = ACTIONS(4523), + [anon_sym_expect] = ACTIONS(4523), + [anon_sym_actual] = ACTIONS(4523), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4525), + [sym_safe_nav] = ACTIONS(4525), + [sym_multiline_comment] = ACTIONS(3), + }, + [3374] = { + [sym_enum_class_body] = STATE(3414), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_RBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3375] = { + [sym_class_body] = STATE(3416), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_RBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_DASH_GT] = ACTIONS(4634), + [sym_label] = ACTIONS(4634), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + }, + [3376] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_RBRACK] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(4684), + [anon_sym_by] = ACTIONS(4682), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_DASH_GT] = ACTIONS(4684), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_while] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_value] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + }, + [3377] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3378] = { + [sym_enum_class_body] = STATE(3416), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_RBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_DASH_GT] = ACTIONS(4634), + [sym_label] = ACTIONS(4634), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + }, + [3379] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [anon_sym_DASH_GT] = ACTIONS(4654), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_AT2] = ACTIONS(6792), + [sym__backtick_identifier] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + }, + [3380] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3075), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3381] = { + [sym_enum_class_body] = STATE(3418), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_DASH_GT] = ACTIONS(4388), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + }, + [3382] = { + [sym_class_body] = STATE(3423), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_DASH_GT] = ACTIONS(4384), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3383] = { + [sym_class_body] = STATE(3461), + [sym__alpha_identifier] = ACTIONS(4535), + [anon_sym_AT] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_RBRACK] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_where] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_get] = ACTIONS(4535), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4537), + [sym_label] = ACTIONS(4537), + [anon_sym_in] = ACTIONS(4535), + [anon_sym_while] = ACTIONS(4535), + [anon_sym_DOT_DOT] = ACTIONS(4537), + [anon_sym_QMARK_COLON] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_else] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), + [anon_sym_EQ_EQ] = ACTIONS(4535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(4535), + [anon_sym_BANGis] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_as_QMARK] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_BANG_BANG] = ACTIONS(4537), + [anon_sym_suspend] = ACTIONS(4535), + [anon_sym_sealed] = ACTIONS(4535), + [anon_sym_annotation] = ACTIONS(4535), + [anon_sym_data] = ACTIONS(4535), + [anon_sym_inner] = ACTIONS(4535), + [anon_sym_value] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_lateinit] = ACTIONS(4535), + [anon_sym_public] = ACTIONS(4535), + [anon_sym_private] = ACTIONS(4535), + [anon_sym_internal] = ACTIONS(4535), + [anon_sym_protected] = ACTIONS(4535), + [anon_sym_tailrec] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_infix] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_external] = ACTIONS(4535), + [sym_property_modifier] = ACTIONS(4535), + [anon_sym_abstract] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_open] = ACTIONS(4535), + [anon_sym_vararg] = ACTIONS(4535), + [anon_sym_noinline] = ACTIONS(4535), + [anon_sym_crossinline] = ACTIONS(4535), + [anon_sym_expect] = ACTIONS(4535), + [anon_sym_actual] = ACTIONS(4535), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4537), + [sym_safe_nav] = ACTIONS(4537), + [sym_multiline_comment] = ACTIONS(3), + }, + [3384] = { + [sym_enum_class_body] = STATE(3423), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_DASH_GT] = ACTIONS(4384), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3385] = { + [sym_class_body] = STATE(3426), + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [anon_sym_DASH_GT] = ACTIONS(4584), + [sym_label] = ACTIONS(4584), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_suspend] = ACTIONS(4582), + [anon_sym_sealed] = ACTIONS(4582), + [anon_sym_annotation] = ACTIONS(4582), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_override] = ACTIONS(4582), + [anon_sym_lateinit] = ACTIONS(4582), + [anon_sym_public] = ACTIONS(4582), + [anon_sym_private] = ACTIONS(4582), + [anon_sym_internal] = ACTIONS(4582), + [anon_sym_protected] = ACTIONS(4582), + [anon_sym_tailrec] = ACTIONS(4582), + [anon_sym_operator] = ACTIONS(4582), + [anon_sym_infix] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4582), + [anon_sym_external] = ACTIONS(4582), + [sym_property_modifier] = ACTIONS(4582), + [anon_sym_abstract] = ACTIONS(4582), + [anon_sym_final] = ACTIONS(4582), + [anon_sym_open] = ACTIONS(4582), + [anon_sym_vararg] = ACTIONS(4582), + [anon_sym_noinline] = ACTIONS(4582), + [anon_sym_crossinline] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + }, + [3386] = { + [sym__alpha_identifier] = ACTIONS(4578), + [anon_sym_AT] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_RBRACK] = ACTIONS(4580), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_as] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_RPAREN] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_where] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_get] = ACTIONS(4578), + [anon_sym_set] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_DASH_GT] = ACTIONS(4580), + [sym_label] = ACTIONS(4580), + [anon_sym_in] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4580), + [anon_sym_QMARK_COLON] = ACTIONS(4580), + [anon_sym_AMP_AMP] = ACTIONS(4580), + [anon_sym_PIPE_PIPE] = ACTIONS(4580), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_PERCENT_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4580), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_BANGin] = ACTIONS(4580), + [anon_sym_is] = ACTIONS(4578), + [anon_sym_BANGis] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_as_QMARK] = ACTIONS(4580), + [anon_sym_PLUS_PLUS] = ACTIONS(4580), + [anon_sym_DASH_DASH] = ACTIONS(4580), + [anon_sym_BANG_BANG] = ACTIONS(4580), + [anon_sym_suspend] = ACTIONS(4578), + [anon_sym_sealed] = ACTIONS(4578), + [anon_sym_annotation] = ACTIONS(4578), + [anon_sym_data] = ACTIONS(4578), + [anon_sym_inner] = ACTIONS(4578), + [anon_sym_value] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_lateinit] = ACTIONS(4578), + [anon_sym_public] = ACTIONS(4578), + [anon_sym_private] = ACTIONS(4578), + [anon_sym_internal] = ACTIONS(4578), + [anon_sym_protected] = ACTIONS(4578), + [anon_sym_tailrec] = ACTIONS(4578), + [anon_sym_operator] = ACTIONS(4578), + [anon_sym_infix] = ACTIONS(4578), + [anon_sym_inline] = ACTIONS(4578), + [anon_sym_external] = ACTIONS(4578), + [sym_property_modifier] = ACTIONS(4578), + [anon_sym_abstract] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_open] = ACTIONS(4578), + [anon_sym_vararg] = ACTIONS(4578), + [anon_sym_noinline] = ACTIONS(4578), + [anon_sym_crossinline] = ACTIONS(4578), + [anon_sym_expect] = ACTIONS(4578), + [anon_sym_actual] = ACTIONS(4578), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4580), + [sym_safe_nav] = ACTIONS(4580), + [sym_multiline_comment] = ACTIONS(3), + }, + [3387] = { + [sym_enum_class_body] = STATE(3429), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3388] = { + [sym_class_body] = STATE(3420), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_RBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_DASH_GT] = ACTIONS(4365), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_while] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3389] = { + [aux_sym_user_type_repeat1] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4120), + [sym__quest] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3390] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3391] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3056), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(6730), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3392] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3393] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3060), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3394] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3094), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3395] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3105), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(6732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6734), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3396] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(6722), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(6736), + [anon_sym_GT_EQ] = ACTIONS(6736), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3397] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(6724), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(6738), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3398] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(6712), + [anon_sym_QMARK_COLON] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3399] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1929), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(6708), + [anon_sym_DASH_GT] = ACTIONS(3120), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(6708), + [anon_sym_PERCENT] = ACTIONS(6708), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3400] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [anon_sym_DASH_GT] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3401] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [3402] = { + [sym__alpha_identifier] = ACTIONS(5115), + [anon_sym_AT] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_as] = ACTIONS(5115), + [anon_sym_EQ] = ACTIONS(5115), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_where] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_get] = ACTIONS(5115), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [anon_sym_DASH_GT] = ACTIONS(5117), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5115), + [anon_sym_while] = ACTIONS(5115), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_QMARK_COLON] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5115), + [anon_sym_COLON_COLON] = ACTIONS(5117), + [anon_sym_PLUS_EQ] = ACTIONS(5117), + [anon_sym_DASH_EQ] = ACTIONS(5117), + [anon_sym_STAR_EQ] = ACTIONS(5117), + [anon_sym_SLASH_EQ] = ACTIONS(5117), + [anon_sym_PERCENT_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_BANGin] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5115), + [anon_sym_BANGis] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_as_QMARK] = ACTIONS(5117), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5117), + [anon_sym_suspend] = ACTIONS(5115), + [anon_sym_sealed] = ACTIONS(5115), + [anon_sym_annotation] = ACTIONS(5115), + [anon_sym_data] = ACTIONS(5115), + [anon_sym_inner] = ACTIONS(5115), + [anon_sym_value] = ACTIONS(5115), + [anon_sym_override] = ACTIONS(5115), + [anon_sym_lateinit] = ACTIONS(5115), + [anon_sym_public] = ACTIONS(5115), + [anon_sym_private] = ACTIONS(5115), + [anon_sym_internal] = ACTIONS(5115), + [anon_sym_protected] = ACTIONS(5115), + [anon_sym_tailrec] = ACTIONS(5115), + [anon_sym_operator] = ACTIONS(5115), + [anon_sym_infix] = ACTIONS(5115), + [anon_sym_inline] = ACTIONS(5115), + [anon_sym_external] = ACTIONS(5115), + [sym_property_modifier] = ACTIONS(5115), + [anon_sym_abstract] = ACTIONS(5115), + [anon_sym_final] = ACTIONS(5115), + [anon_sym_open] = ACTIONS(5115), + [anon_sym_vararg] = ACTIONS(5115), + [anon_sym_noinline] = ACTIONS(5115), + [anon_sym_crossinline] = ACTIONS(5115), + [anon_sym_expect] = ACTIONS(5115), + [anon_sym_actual] = ACTIONS(5115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5117), + [sym_safe_nav] = ACTIONS(5117), + [sym_multiline_comment] = ACTIONS(3), + }, + [3403] = { + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_BANG_BANG] = ACTIONS(3972), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3972), + [sym_multiline_comment] = ACTIONS(3), + }, + [3404] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6801), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [3405] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [3406] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(6805), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [3407] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [3408] = { + [sym__alpha_identifier] = ACTIONS(4816), + [anon_sym_AT] = ACTIONS(4818), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_RBRACK] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_as] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4818), + [anon_sym_RBRACE] = ACTIONS(4818), + [anon_sym_LPAREN] = ACTIONS(4818), + [anon_sym_COMMA] = ACTIONS(4818), + [anon_sym_RPAREN] = ACTIONS(4818), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_where] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4818), + [anon_sym_get] = ACTIONS(4816), + [anon_sym_set] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_DASH_GT] = ACTIONS(4818), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4816), + [anon_sym_while] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4818), + [anon_sym_QMARK_COLON] = ACTIONS(4818), + [anon_sym_AMP_AMP] = ACTIONS(4818), + [anon_sym_PIPE_PIPE] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_COLON_COLON] = ACTIONS(4818), + [anon_sym_PLUS_EQ] = ACTIONS(4818), + [anon_sym_DASH_EQ] = ACTIONS(4818), + [anon_sym_STAR_EQ] = ACTIONS(4818), + [anon_sym_SLASH_EQ] = ACTIONS(4818), + [anon_sym_PERCENT_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4818), + [anon_sym_LT_EQ] = ACTIONS(4818), + [anon_sym_GT_EQ] = ACTIONS(4818), + [anon_sym_BANGin] = ACTIONS(4818), + [anon_sym_is] = ACTIONS(4816), + [anon_sym_BANGis] = ACTIONS(4818), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_as_QMARK] = ACTIONS(4818), + [anon_sym_PLUS_PLUS] = ACTIONS(4818), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4818), + [anon_sym_suspend] = ACTIONS(4816), + [anon_sym_sealed] = ACTIONS(4816), + [anon_sym_annotation] = ACTIONS(4816), + [anon_sym_data] = ACTIONS(4816), + [anon_sym_inner] = ACTIONS(4816), + [anon_sym_value] = ACTIONS(4816), + [anon_sym_override] = ACTIONS(4816), + [anon_sym_lateinit] = ACTIONS(4816), + [anon_sym_public] = ACTIONS(4816), + [anon_sym_private] = ACTIONS(4816), + [anon_sym_internal] = ACTIONS(4816), + [anon_sym_protected] = ACTIONS(4816), + [anon_sym_tailrec] = ACTIONS(4816), + [anon_sym_operator] = ACTIONS(4816), + [anon_sym_infix] = ACTIONS(4816), + [anon_sym_inline] = ACTIONS(4816), + [anon_sym_external] = ACTIONS(4816), + [sym_property_modifier] = ACTIONS(4816), + [anon_sym_abstract] = ACTIONS(4816), + [anon_sym_final] = ACTIONS(4816), + [anon_sym_open] = ACTIONS(4816), + [anon_sym_vararg] = ACTIONS(4816), + [anon_sym_noinline] = ACTIONS(4816), + [anon_sym_crossinline] = ACTIONS(4816), + [anon_sym_expect] = ACTIONS(4816), + [anon_sym_actual] = ACTIONS(4816), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4818), + [sym_safe_nav] = ACTIONS(4818), + [sym_multiline_comment] = ACTIONS(3), + }, + [3409] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4910), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_while] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_suspend] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_override] = ACTIONS(4908), + [anon_sym_lateinit] = ACTIONS(4908), + [anon_sym_public] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4908), + [anon_sym_internal] = ACTIONS(4908), + [anon_sym_protected] = ACTIONS(4908), + [anon_sym_tailrec] = ACTIONS(4908), + [anon_sym_operator] = ACTIONS(4908), + [anon_sym_infix] = ACTIONS(4908), + [anon_sym_inline] = ACTIONS(4908), + [anon_sym_external] = ACTIONS(4908), + [sym_property_modifier] = ACTIONS(4908), + [anon_sym_abstract] = ACTIONS(4908), + [anon_sym_final] = ACTIONS(4908), + [anon_sym_open] = ACTIONS(4908), + [anon_sym_vararg] = ACTIONS(4908), + [anon_sym_noinline] = ACTIONS(4908), + [anon_sym_crossinline] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), + [sym_multiline_comment] = ACTIONS(3), + }, + [3410] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4922), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_while] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_suspend] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_lateinit] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_tailrec] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4920), + [anon_sym_infix] = ACTIONS(4920), + [anon_sym_inline] = ACTIONS(4920), + [anon_sym_external] = ACTIONS(4920), + [sym_property_modifier] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_final] = ACTIONS(4920), + [anon_sym_open] = ACTIONS(4920), + [anon_sym_vararg] = ACTIONS(4920), + [anon_sym_noinline] = ACTIONS(4920), + [anon_sym_crossinline] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), + [sym_multiline_comment] = ACTIONS(3), + }, + [3411] = { + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_RBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_DASH_GT] = ACTIONS(3382), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(3380), + [anon_sym_sealed] = ACTIONS(3380), + [anon_sym_annotation] = ACTIONS(3380), + [anon_sym_data] = ACTIONS(3380), + [anon_sym_inner] = ACTIONS(3380), + [anon_sym_value] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_lateinit] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_internal] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_tailrec] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_infix] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_external] = ACTIONS(3380), + [sym_property_modifier] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_final] = ACTIONS(3380), + [anon_sym_open] = ACTIONS(3380), + [anon_sym_vararg] = ACTIONS(3380), + [anon_sym_noinline] = ACTIONS(3380), + [anon_sym_crossinline] = ACTIONS(3380), + [anon_sym_expect] = ACTIONS(3380), + [anon_sym_actual] = ACTIONS(3380), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [3412] = { + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [anon_sym_DASH_GT] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_while] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3413] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_label] = ACTIONS(5028), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_while] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_suspend] = ACTIONS(5026), + [anon_sym_sealed] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_lateinit] = ACTIONS(5026), + [anon_sym_public] = ACTIONS(5026), + [anon_sym_private] = ACTIONS(5026), + [anon_sym_internal] = ACTIONS(5026), + [anon_sym_protected] = ACTIONS(5026), + [anon_sym_tailrec] = ACTIONS(5026), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_infix] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym_external] = ACTIONS(5026), + [sym_property_modifier] = ACTIONS(5026), + [anon_sym_abstract] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_open] = ACTIONS(5026), + [anon_sym_vararg] = ACTIONS(5026), + [anon_sym_noinline] = ACTIONS(5026), + [anon_sym_crossinline] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + }, + [3414] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_RBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3415] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_DASH_GT] = ACTIONS(1770), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(1768), + [anon_sym_sealed] = ACTIONS(1768), + [anon_sym_annotation] = ACTIONS(1768), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_value] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_lateinit] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_internal] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_tailrec] = ACTIONS(1768), + [anon_sym_operator] = ACTIONS(1768), + [anon_sym_infix] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [anon_sym_external] = ACTIONS(1768), + [sym_property_modifier] = ACTIONS(1768), + [anon_sym_abstract] = ACTIONS(1768), + [anon_sym_final] = ACTIONS(1768), + [anon_sym_open] = ACTIONS(1768), + [anon_sym_vararg] = ACTIONS(1768), + [anon_sym_noinline] = ACTIONS(1768), + [anon_sym_crossinline] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [3416] = { + [sym__alpha_identifier] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_as] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_where] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_get] = ACTIONS(5018), + [anon_sym_set] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_label] = ACTIONS(5020), + [anon_sym_in] = ACTIONS(5018), + [anon_sym_while] = ACTIONS(5018), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_QMARK_COLON] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_BANGin] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5018), + [anon_sym_BANGis] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_as_QMARK] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_BANG_BANG] = ACTIONS(5020), + [anon_sym_suspend] = ACTIONS(5018), + [anon_sym_sealed] = ACTIONS(5018), + [anon_sym_annotation] = ACTIONS(5018), + [anon_sym_data] = ACTIONS(5018), + [anon_sym_inner] = ACTIONS(5018), + [anon_sym_value] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_lateinit] = ACTIONS(5018), + [anon_sym_public] = ACTIONS(5018), + [anon_sym_private] = ACTIONS(5018), + [anon_sym_internal] = ACTIONS(5018), + [anon_sym_protected] = ACTIONS(5018), + [anon_sym_tailrec] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_infix] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym_external] = ACTIONS(5018), + [sym_property_modifier] = ACTIONS(5018), + [anon_sym_abstract] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_open] = ACTIONS(5018), + [anon_sym_vararg] = ACTIONS(5018), + [anon_sym_noinline] = ACTIONS(5018), + [anon_sym_crossinline] = ACTIONS(5018), + [anon_sym_expect] = ACTIONS(5018), + [anon_sym_actual] = ACTIONS(5018), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5020), + [sym_safe_nav] = ACTIONS(5020), + [sym_multiline_comment] = ACTIONS(3), + }, + [3417] = { + [sym__alpha_identifier] = ACTIONS(5054), + [anon_sym_AT] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_RBRACK] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_as] = ACTIONS(5054), + [anon_sym_EQ] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_where] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_get] = ACTIONS(5054), + [anon_sym_set] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [anon_sym_DASH_GT] = ACTIONS(5056), + [sym_label] = ACTIONS(5056), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_while] = ACTIONS(5054), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_QMARK_COLON] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5054), + [anon_sym_COLON_COLON] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5056), + [anon_sym_DASH_EQ] = ACTIONS(5056), + [anon_sym_STAR_EQ] = ACTIONS(5056), + [anon_sym_SLASH_EQ] = ACTIONS(5056), + [anon_sym_PERCENT_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_BANGin] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5054), + [anon_sym_BANGis] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5054), + [anon_sym_as_QMARK] = ACTIONS(5056), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_BANG_BANG] = ACTIONS(5056), + [anon_sym_suspend] = ACTIONS(5054), + [anon_sym_sealed] = ACTIONS(5054), + [anon_sym_annotation] = ACTIONS(5054), + [anon_sym_data] = ACTIONS(5054), + [anon_sym_inner] = ACTIONS(5054), + [anon_sym_value] = ACTIONS(5054), + [anon_sym_override] = ACTIONS(5054), + [anon_sym_lateinit] = ACTIONS(5054), + [anon_sym_public] = ACTIONS(5054), + [anon_sym_private] = ACTIONS(5054), + [anon_sym_internal] = ACTIONS(5054), + [anon_sym_protected] = ACTIONS(5054), + [anon_sym_tailrec] = ACTIONS(5054), + [anon_sym_operator] = ACTIONS(5054), + [anon_sym_infix] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5054), + [anon_sym_external] = ACTIONS(5054), + [sym_property_modifier] = ACTIONS(5054), + [anon_sym_abstract] = ACTIONS(5054), + [anon_sym_final] = ACTIONS(5054), + [anon_sym_open] = ACTIONS(5054), + [anon_sym_vararg] = ACTIONS(5054), + [anon_sym_noinline] = ACTIONS(5054), + [anon_sym_crossinline] = ACTIONS(5054), + [anon_sym_expect] = ACTIONS(5054), + [anon_sym_actual] = ACTIONS(5054), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5056), + [sym_safe_nav] = ACTIONS(5056), + [sym_multiline_comment] = ACTIONS(3), + }, + [3418] = { + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_RBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_RPAREN] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(4392), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3419] = { + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_DASH_GT] = ACTIONS(1762), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(1760), + [anon_sym_sealed] = ACTIONS(1760), + [anon_sym_annotation] = ACTIONS(1760), + [anon_sym_data] = ACTIONS(1760), + [anon_sym_inner] = ACTIONS(1760), + [anon_sym_value] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_lateinit] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_internal] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_tailrec] = ACTIONS(1760), + [anon_sym_operator] = ACTIONS(1760), + [anon_sym_infix] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_external] = ACTIONS(1760), + [sym_property_modifier] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_final] = ACTIONS(1760), + [anon_sym_open] = ACTIONS(1760), + [anon_sym_vararg] = ACTIONS(1760), + [anon_sym_noinline] = ACTIONS(1760), + [anon_sym_crossinline] = ACTIONS(1760), + [anon_sym_expect] = ACTIONS(1760), + [anon_sym_actual] = ACTIONS(1760), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [3420] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_DASH_GT] = ACTIONS(4384), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3421] = { + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_RBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_DASH_GT] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3422] = { + [sym__alpha_identifier] = ACTIONS(5087), + [anon_sym_AT] = ACTIONS(5089), + [anon_sym_LBRACK] = ACTIONS(5089), + [anon_sym_RBRACK] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5089), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_COMMA] = ACTIONS(5089), + [anon_sym_RPAREN] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5087), + [anon_sym_GT] = ACTIONS(5087), + [anon_sym_where] = ACTIONS(5087), + [anon_sym_SEMI] = ACTIONS(5089), + [anon_sym_get] = ACTIONS(5087), + [anon_sym_set] = ACTIONS(5087), + [anon_sym_STAR] = ACTIONS(5087), + [anon_sym_DASH_GT] = ACTIONS(5089), + [sym_label] = ACTIONS(5089), + [anon_sym_in] = ACTIONS(5087), + [anon_sym_while] = ACTIONS(5087), + [anon_sym_DOT_DOT] = ACTIONS(5089), + [anon_sym_QMARK_COLON] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5089), + [anon_sym_else] = ACTIONS(5087), + [anon_sym_COLON_COLON] = ACTIONS(5089), + [anon_sym_PLUS_EQ] = ACTIONS(5089), + [anon_sym_DASH_EQ] = ACTIONS(5089), + [anon_sym_STAR_EQ] = ACTIONS(5089), + [anon_sym_SLASH_EQ] = ACTIONS(5089), + [anon_sym_PERCENT_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5089), + [anon_sym_BANGin] = ACTIONS(5089), + [anon_sym_is] = ACTIONS(5087), + [anon_sym_BANGis] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5087), + [anon_sym_DASH] = ACTIONS(5087), + [anon_sym_SLASH] = ACTIONS(5087), + [anon_sym_PERCENT] = ACTIONS(5087), + [anon_sym_as_QMARK] = ACTIONS(5089), + [anon_sym_PLUS_PLUS] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5089), + [anon_sym_BANG_BANG] = ACTIONS(5089), + [anon_sym_suspend] = ACTIONS(5087), + [anon_sym_sealed] = ACTIONS(5087), + [anon_sym_annotation] = ACTIONS(5087), + [anon_sym_data] = ACTIONS(5087), + [anon_sym_inner] = ACTIONS(5087), + [anon_sym_value] = ACTIONS(5087), + [anon_sym_override] = ACTIONS(5087), + [anon_sym_lateinit] = ACTIONS(5087), + [anon_sym_public] = ACTIONS(5087), + [anon_sym_private] = ACTIONS(5087), + [anon_sym_internal] = ACTIONS(5087), + [anon_sym_protected] = ACTIONS(5087), + [anon_sym_tailrec] = ACTIONS(5087), + [anon_sym_operator] = ACTIONS(5087), + [anon_sym_infix] = ACTIONS(5087), + [anon_sym_inline] = ACTIONS(5087), + [anon_sym_external] = ACTIONS(5087), + [sym_property_modifier] = ACTIONS(5087), + [anon_sym_abstract] = ACTIONS(5087), + [anon_sym_final] = ACTIONS(5087), + [anon_sym_open] = ACTIONS(5087), + [anon_sym_vararg] = ACTIONS(5087), + [anon_sym_noinline] = ACTIONS(5087), + [anon_sym_crossinline] = ACTIONS(5087), + [anon_sym_expect] = ACTIONS(5087), + [anon_sym_actual] = ACTIONS(5087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5089), + [sym_safe_nav] = ACTIONS(5089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3423] = { + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_RBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_RPAREN] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_DASH_GT] = ACTIONS(4634), + [sym_label] = ACTIONS(4634), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + }, + [3424] = { + [sym__alpha_identifier] = ACTIONS(5119), + [anon_sym_AT] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5119), + [anon_sym_EQ] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5119), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_get] = ACTIONS(5119), + [anon_sym_set] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_DASH_GT] = ACTIONS(5121), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5119), + [anon_sym_while] = ACTIONS(5119), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_QMARK_COLON] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5119), + [anon_sym_COLON_COLON] = ACTIONS(5121), + [anon_sym_PLUS_EQ] = ACTIONS(5121), + [anon_sym_DASH_EQ] = ACTIONS(5121), + [anon_sym_STAR_EQ] = ACTIONS(5121), + [anon_sym_SLASH_EQ] = ACTIONS(5121), + [anon_sym_PERCENT_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_BANGin] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5119), + [anon_sym_BANGis] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5119), + [anon_sym_as_QMARK] = ACTIONS(5121), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5121), + [anon_sym_suspend] = ACTIONS(5119), + [anon_sym_sealed] = ACTIONS(5119), + [anon_sym_annotation] = ACTIONS(5119), + [anon_sym_data] = ACTIONS(5119), + [anon_sym_inner] = ACTIONS(5119), + [anon_sym_value] = ACTIONS(5119), + [anon_sym_override] = ACTIONS(5119), + [anon_sym_lateinit] = ACTIONS(5119), + [anon_sym_public] = ACTIONS(5119), + [anon_sym_private] = ACTIONS(5119), + [anon_sym_internal] = ACTIONS(5119), + [anon_sym_protected] = ACTIONS(5119), + [anon_sym_tailrec] = ACTIONS(5119), + [anon_sym_operator] = ACTIONS(5119), + [anon_sym_infix] = ACTIONS(5119), + [anon_sym_inline] = ACTIONS(5119), + [anon_sym_external] = ACTIONS(5119), + [sym_property_modifier] = ACTIONS(5119), + [anon_sym_abstract] = ACTIONS(5119), + [anon_sym_final] = ACTIONS(5119), + [anon_sym_open] = ACTIONS(5119), + [anon_sym_vararg] = ACTIONS(5119), + [anon_sym_noinline] = ACTIONS(5119), + [anon_sym_crossinline] = ACTIONS(5119), + [anon_sym_expect] = ACTIONS(5119), + [anon_sym_actual] = ACTIONS(5119), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5121), + [sym_safe_nav] = ACTIONS(5121), + [sym_multiline_comment] = ACTIONS(3), + }, + [3425] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_RBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_RPAREN] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_DASH_GT] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3426] = { + [sym__alpha_identifier] = ACTIONS(5123), + [anon_sym_AT] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_where] = ACTIONS(5123), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_get] = ACTIONS(5123), + [anon_sym_set] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5125), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5123), + [anon_sym_while] = ACTIONS(5123), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_QMARK_COLON] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5123), + [anon_sym_COLON_COLON] = ACTIONS(5125), + [anon_sym_PLUS_EQ] = ACTIONS(5125), + [anon_sym_DASH_EQ] = ACTIONS(5125), + [anon_sym_STAR_EQ] = ACTIONS(5125), + [anon_sym_SLASH_EQ] = ACTIONS(5125), + [anon_sym_PERCENT_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_BANGin] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5123), + [anon_sym_BANGis] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_as_QMARK] = ACTIONS(5125), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5125), + [anon_sym_suspend] = ACTIONS(5123), + [anon_sym_sealed] = ACTIONS(5123), + [anon_sym_annotation] = ACTIONS(5123), + [anon_sym_data] = ACTIONS(5123), + [anon_sym_inner] = ACTIONS(5123), + [anon_sym_value] = ACTIONS(5123), + [anon_sym_override] = ACTIONS(5123), + [anon_sym_lateinit] = ACTIONS(5123), + [anon_sym_public] = ACTIONS(5123), + [anon_sym_private] = ACTIONS(5123), + [anon_sym_internal] = ACTIONS(5123), + [anon_sym_protected] = ACTIONS(5123), + [anon_sym_tailrec] = ACTIONS(5123), + [anon_sym_operator] = ACTIONS(5123), + [anon_sym_infix] = ACTIONS(5123), + [anon_sym_inline] = ACTIONS(5123), + [anon_sym_external] = ACTIONS(5123), + [sym_property_modifier] = ACTIONS(5123), + [anon_sym_abstract] = ACTIONS(5123), + [anon_sym_final] = ACTIONS(5123), + [anon_sym_open] = ACTIONS(5123), + [anon_sym_vararg] = ACTIONS(5123), + [anon_sym_noinline] = ACTIONS(5123), + [anon_sym_crossinline] = ACTIONS(5123), + [anon_sym_expect] = ACTIONS(5123), + [anon_sym_actual] = ACTIONS(5123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5125), + [sym_safe_nav] = ACTIONS(5125), + [sym_multiline_comment] = ACTIONS(3), + }, + [3427] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_DASH_GT] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_while] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + }, + [3428] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_DASH_GT] = ACTIONS(5076), + [sym_label] = ACTIONS(5076), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_PERCENT_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_suspend] = ACTIONS(5074), + [anon_sym_sealed] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5074), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_lateinit] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_internal] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_tailrec] = ACTIONS(5074), + [anon_sym_operator] = ACTIONS(5074), + [anon_sym_infix] = ACTIONS(5074), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_external] = ACTIONS(5074), + [sym_property_modifier] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_final] = ACTIONS(5074), + [anon_sym_open] = ACTIONS(5074), + [anon_sym_vararg] = ACTIONS(5074), + [anon_sym_noinline] = ACTIONS(5074), + [anon_sym_crossinline] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + }, + [3429] = { + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [anon_sym_DASH_GT] = ACTIONS(4388), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + }, + [3430] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_DASH_GT] = ACTIONS(1782), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(1780), + [anon_sym_sealed] = ACTIONS(1780), + [anon_sym_annotation] = ACTIONS(1780), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_value] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_lateinit] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_internal] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_tailrec] = ACTIONS(1780), + [anon_sym_operator] = ACTIONS(1780), + [anon_sym_infix] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [anon_sym_external] = ACTIONS(1780), + [sym_property_modifier] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_final] = ACTIONS(1780), + [anon_sym_open] = ACTIONS(1780), + [anon_sym_vararg] = ACTIONS(1780), + [anon_sym_noinline] = ACTIONS(1780), + [anon_sym_crossinline] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [3431] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_RBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_DASH_GT] = ACTIONS(205), + [sym_label] = ACTIONS(205), + [anon_sym_in] = ACTIONS(207), + [anon_sym_while] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_else] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(207), + [anon_sym_sealed] = ACTIONS(207), + [anon_sym_annotation] = ACTIONS(207), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_value] = ACTIONS(207), + [anon_sym_override] = ACTIONS(207), + [anon_sym_lateinit] = ACTIONS(207), + [anon_sym_public] = ACTIONS(207), + [anon_sym_private] = ACTIONS(207), + [anon_sym_internal] = ACTIONS(207), + [anon_sym_protected] = ACTIONS(207), + [anon_sym_tailrec] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(207), + [anon_sym_infix] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_external] = ACTIONS(207), + [sym_property_modifier] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_open] = ACTIONS(207), + [anon_sym_vararg] = ACTIONS(207), + [anon_sym_noinline] = ACTIONS(207), + [anon_sym_crossinline] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + }, + [3432] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [anon_sym_DASH_GT] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_while] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_suspend] = ACTIONS(5143), + [anon_sym_sealed] = ACTIONS(5143), + [anon_sym_annotation] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_override] = ACTIONS(5143), + [anon_sym_lateinit] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_internal] = ACTIONS(5143), + [anon_sym_protected] = ACTIONS(5143), + [anon_sym_tailrec] = ACTIONS(5143), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_infix] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym_external] = ACTIONS(5143), + [sym_property_modifier] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_open] = ACTIONS(5143), + [anon_sym_vararg] = ACTIONS(5143), + [anon_sym_noinline] = ACTIONS(5143), + [anon_sym_crossinline] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + }, + [3433] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_DASH_GT] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [3434] = { + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3435] = { + [sym__alpha_identifier] = ACTIONS(5169), + [anon_sym_AT] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_LBRACE] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_RPAREN] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_where] = ACTIONS(5169), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_get] = ACTIONS(5169), + [anon_sym_set] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_DASH_GT] = ACTIONS(5171), + [sym_label] = ACTIONS(5171), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_while] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5171), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_else] = ACTIONS(5169), + [anon_sym_COLON_COLON] = ACTIONS(5171), + [anon_sym_PLUS_EQ] = ACTIONS(5171), + [anon_sym_DASH_EQ] = ACTIONS(5171), + [anon_sym_STAR_EQ] = ACTIONS(5171), + [anon_sym_SLASH_EQ] = ACTIONS(5171), + [anon_sym_PERCENT_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_BANGin] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5169), + [anon_sym_BANGis] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5169), + [anon_sym_as_QMARK] = ACTIONS(5171), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_BANG_BANG] = ACTIONS(5171), + [anon_sym_suspend] = ACTIONS(5169), + [anon_sym_sealed] = ACTIONS(5169), + [anon_sym_annotation] = ACTIONS(5169), + [anon_sym_data] = ACTIONS(5169), + [anon_sym_inner] = ACTIONS(5169), + [anon_sym_value] = ACTIONS(5169), + [anon_sym_override] = ACTIONS(5169), + [anon_sym_lateinit] = ACTIONS(5169), + [anon_sym_public] = ACTIONS(5169), + [anon_sym_private] = ACTIONS(5169), + [anon_sym_internal] = ACTIONS(5169), + [anon_sym_protected] = ACTIONS(5169), + [anon_sym_tailrec] = ACTIONS(5169), + [anon_sym_operator] = ACTIONS(5169), + [anon_sym_infix] = ACTIONS(5169), + [anon_sym_inline] = ACTIONS(5169), + [anon_sym_external] = ACTIONS(5169), + [sym_property_modifier] = ACTIONS(5169), + [anon_sym_abstract] = ACTIONS(5169), + [anon_sym_final] = ACTIONS(5169), + [anon_sym_open] = ACTIONS(5169), + [anon_sym_vararg] = ACTIONS(5169), + [anon_sym_noinline] = ACTIONS(5169), + [anon_sym_crossinline] = ACTIONS(5169), + [anon_sym_expect] = ACTIONS(5169), + [anon_sym_actual] = ACTIONS(5169), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5171), + [sym_safe_nav] = ACTIONS(5171), + [sym_multiline_comment] = ACTIONS(3), + }, + [3436] = { + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_DASH_GT] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3437] = { + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_RPAREN] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [anon_sym_DASH_GT] = ACTIONS(4584), + [sym_label] = ACTIONS(4584), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_while] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_suspend] = ACTIONS(4582), + [anon_sym_sealed] = ACTIONS(4582), + [anon_sym_annotation] = ACTIONS(4582), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_override] = ACTIONS(4582), + [anon_sym_lateinit] = ACTIONS(4582), + [anon_sym_public] = ACTIONS(4582), + [anon_sym_private] = ACTIONS(4582), + [anon_sym_internal] = ACTIONS(4582), + [anon_sym_protected] = ACTIONS(4582), + [anon_sym_tailrec] = ACTIONS(4582), + [anon_sym_operator] = ACTIONS(4582), + [anon_sym_infix] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4582), + [anon_sym_external] = ACTIONS(4582), + [sym_property_modifier] = ACTIONS(4582), + [anon_sym_abstract] = ACTIONS(4582), + [anon_sym_final] = ACTIONS(4582), + [anon_sym_open] = ACTIONS(4582), + [anon_sym_vararg] = ACTIONS(4582), + [anon_sym_noinline] = ACTIONS(4582), + [anon_sym_crossinline] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + }, + [3438] = { + [sym__alpha_identifier] = ACTIONS(5193), + [anon_sym_AT] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(5193), + [anon_sym_LBRACE] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_where] = ACTIONS(5193), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_get] = ACTIONS(5193), + [anon_sym_set] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_DASH_GT] = ACTIONS(5195), + [sym_label] = ACTIONS(5195), + [anon_sym_in] = ACTIONS(5193), + [anon_sym_while] = ACTIONS(5193), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_QMARK_COLON] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5193), + [anon_sym_COLON_COLON] = ACTIONS(5195), + [anon_sym_PLUS_EQ] = ACTIONS(5195), + [anon_sym_DASH_EQ] = ACTIONS(5195), + [anon_sym_STAR_EQ] = ACTIONS(5195), + [anon_sym_SLASH_EQ] = ACTIONS(5195), + [anon_sym_PERCENT_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_BANGin] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5193), + [anon_sym_BANGis] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5193), + [anon_sym_as_QMARK] = ACTIONS(5195), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_BANG_BANG] = ACTIONS(5195), + [anon_sym_suspend] = ACTIONS(5193), + [anon_sym_sealed] = ACTIONS(5193), + [anon_sym_annotation] = ACTIONS(5193), + [anon_sym_data] = ACTIONS(5193), + [anon_sym_inner] = ACTIONS(5193), + [anon_sym_value] = ACTIONS(5193), + [anon_sym_override] = ACTIONS(5193), + [anon_sym_lateinit] = ACTIONS(5193), + [anon_sym_public] = ACTIONS(5193), + [anon_sym_private] = ACTIONS(5193), + [anon_sym_internal] = ACTIONS(5193), + [anon_sym_protected] = ACTIONS(5193), + [anon_sym_tailrec] = ACTIONS(5193), + [anon_sym_operator] = ACTIONS(5193), + [anon_sym_infix] = ACTIONS(5193), + [anon_sym_inline] = ACTIONS(5193), + [anon_sym_external] = ACTIONS(5193), + [sym_property_modifier] = ACTIONS(5193), + [anon_sym_abstract] = ACTIONS(5193), + [anon_sym_final] = ACTIONS(5193), + [anon_sym_open] = ACTIONS(5193), + [anon_sym_vararg] = ACTIONS(5193), + [anon_sym_noinline] = ACTIONS(5193), + [anon_sym_crossinline] = ACTIONS(5193), + [anon_sym_expect] = ACTIONS(5193), + [anon_sym_actual] = ACTIONS(5193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5195), + [sym_safe_nav] = ACTIONS(5195), + [sym_multiline_comment] = ACTIONS(3), + }, + [3439] = { + [sym__alpha_identifier] = ACTIONS(5197), + [anon_sym_AT] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5197), + [anon_sym_EQ] = ACTIONS(5197), + [anon_sym_LBRACE] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_where] = ACTIONS(5197), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_get] = ACTIONS(5197), + [anon_sym_set] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_DASH_GT] = ACTIONS(5199), + [sym_label] = ACTIONS(5199), + [anon_sym_in] = ACTIONS(5197), + [anon_sym_while] = ACTIONS(5197), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_QMARK_COLON] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_else] = ACTIONS(5197), + [anon_sym_COLON_COLON] = ACTIONS(5199), + [anon_sym_PLUS_EQ] = ACTIONS(5199), + [anon_sym_DASH_EQ] = ACTIONS(5199), + [anon_sym_STAR_EQ] = ACTIONS(5199), + [anon_sym_SLASH_EQ] = ACTIONS(5199), + [anon_sym_PERCENT_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_BANGin] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5197), + [anon_sym_BANGis] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5197), + [anon_sym_as_QMARK] = ACTIONS(5199), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_BANG_BANG] = ACTIONS(5199), + [anon_sym_suspend] = ACTIONS(5197), + [anon_sym_sealed] = ACTIONS(5197), + [anon_sym_annotation] = ACTIONS(5197), + [anon_sym_data] = ACTIONS(5197), + [anon_sym_inner] = ACTIONS(5197), + [anon_sym_value] = ACTIONS(5197), + [anon_sym_override] = ACTIONS(5197), + [anon_sym_lateinit] = ACTIONS(5197), + [anon_sym_public] = ACTIONS(5197), + [anon_sym_private] = ACTIONS(5197), + [anon_sym_internal] = ACTIONS(5197), + [anon_sym_protected] = ACTIONS(5197), + [anon_sym_tailrec] = ACTIONS(5197), + [anon_sym_operator] = ACTIONS(5197), + [anon_sym_infix] = ACTIONS(5197), + [anon_sym_inline] = ACTIONS(5197), + [anon_sym_external] = ACTIONS(5197), + [sym_property_modifier] = ACTIONS(5197), + [anon_sym_abstract] = ACTIONS(5197), + [anon_sym_final] = ACTIONS(5197), + [anon_sym_open] = ACTIONS(5197), + [anon_sym_vararg] = ACTIONS(5197), + [anon_sym_noinline] = ACTIONS(5197), + [anon_sym_crossinline] = ACTIONS(5197), + [anon_sym_expect] = ACTIONS(5197), + [anon_sym_actual] = ACTIONS(5197), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5199), + [sym_safe_nav] = ACTIONS(5199), + [sym_multiline_comment] = ACTIONS(3), + }, + [3440] = { + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3441] = { + [sym__alpha_identifier] = ACTIONS(5050), + [anon_sym_AT] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_as] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_where] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_get] = ACTIONS(5050), + [anon_sym_set] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_DASH_GT] = ACTIONS(5052), + [sym_label] = ACTIONS(5052), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_while] = ACTIONS(5050), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_QMARK_COLON] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_else] = ACTIONS(5050), + [anon_sym_COLON_COLON] = ACTIONS(5052), + [anon_sym_PLUS_EQ] = ACTIONS(5052), + [anon_sym_DASH_EQ] = ACTIONS(5052), + [anon_sym_STAR_EQ] = ACTIONS(5052), + [anon_sym_SLASH_EQ] = ACTIONS(5052), + [anon_sym_PERCENT_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_BANGin] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5050), + [anon_sym_BANGis] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5050), + [anon_sym_as_QMARK] = ACTIONS(5052), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_BANG_BANG] = ACTIONS(5052), + [anon_sym_suspend] = ACTIONS(5050), + [anon_sym_sealed] = ACTIONS(5050), + [anon_sym_annotation] = ACTIONS(5050), + [anon_sym_data] = ACTIONS(5050), + [anon_sym_inner] = ACTIONS(5050), + [anon_sym_value] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5050), + [anon_sym_lateinit] = ACTIONS(5050), + [anon_sym_public] = ACTIONS(5050), + [anon_sym_private] = ACTIONS(5050), + [anon_sym_internal] = ACTIONS(5050), + [anon_sym_protected] = ACTIONS(5050), + [anon_sym_tailrec] = ACTIONS(5050), + [anon_sym_operator] = ACTIONS(5050), + [anon_sym_infix] = ACTIONS(5050), + [anon_sym_inline] = ACTIONS(5050), + [anon_sym_external] = ACTIONS(5050), + [sym_property_modifier] = ACTIONS(5050), + [anon_sym_abstract] = ACTIONS(5050), + [anon_sym_final] = ACTIONS(5050), + [anon_sym_open] = ACTIONS(5050), + [anon_sym_vararg] = ACTIONS(5050), + [anon_sym_noinline] = ACTIONS(5050), + [anon_sym_crossinline] = ACTIONS(5050), + [anon_sym_expect] = ACTIONS(5050), + [anon_sym_actual] = ACTIONS(5050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5052), + [sym_safe_nav] = ACTIONS(5052), + [sym_multiline_comment] = ACTIONS(3), + }, + [3442] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1776), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(1774), + [anon_sym_sealed] = ACTIONS(1774), + [anon_sym_annotation] = ACTIONS(1774), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_value] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_lateinit] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_internal] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_tailrec] = ACTIONS(1774), + [anon_sym_operator] = ACTIONS(1774), + [anon_sym_infix] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1774), + [anon_sym_external] = ACTIONS(1774), + [sym_property_modifier] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_open] = ACTIONS(1774), + [anon_sym_vararg] = ACTIONS(1774), + [anon_sym_noinline] = ACTIONS(1774), + [anon_sym_crossinline] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [3443] = { + [sym__alpha_identifier] = ACTIONS(5036), + [anon_sym_AT] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_RBRACK] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_RPAREN] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5038), + [anon_sym_get] = ACTIONS(5036), + [anon_sym_set] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_DASH_GT] = ACTIONS(5038), + [sym_label] = ACTIONS(5038), + [anon_sym_in] = ACTIONS(5036), + [anon_sym_while] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5038), + [anon_sym_QMARK_COLON] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5038), + [anon_sym_PIPE_PIPE] = ACTIONS(5038), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_COLON_COLON] = ACTIONS(5038), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_PERCENT_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5038), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_BANGin] = ACTIONS(5038), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_BANGis] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_as_QMARK] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_BANG_BANG] = ACTIONS(5038), + [anon_sym_suspend] = ACTIONS(5036), + [anon_sym_sealed] = ACTIONS(5036), + [anon_sym_annotation] = ACTIONS(5036), + [anon_sym_data] = ACTIONS(5036), + [anon_sym_inner] = ACTIONS(5036), + [anon_sym_value] = ACTIONS(5036), + [anon_sym_override] = ACTIONS(5036), + [anon_sym_lateinit] = ACTIONS(5036), + [anon_sym_public] = ACTIONS(5036), + [anon_sym_private] = ACTIONS(5036), + [anon_sym_internal] = ACTIONS(5036), + [anon_sym_protected] = ACTIONS(5036), + [anon_sym_tailrec] = ACTIONS(5036), + [anon_sym_operator] = ACTIONS(5036), + [anon_sym_infix] = ACTIONS(5036), + [anon_sym_inline] = ACTIONS(5036), + [anon_sym_external] = ACTIONS(5036), + [sym_property_modifier] = ACTIONS(5036), + [anon_sym_abstract] = ACTIONS(5036), + [anon_sym_final] = ACTIONS(5036), + [anon_sym_open] = ACTIONS(5036), + [anon_sym_vararg] = ACTIONS(5036), + [anon_sym_noinline] = ACTIONS(5036), + [anon_sym_crossinline] = ACTIONS(5036), + [anon_sym_expect] = ACTIONS(5036), + [anon_sym_actual] = ACTIONS(5036), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5038), + [sym_safe_nav] = ACTIONS(5038), + [sym_multiline_comment] = ACTIONS(3), + }, + [3444] = { + [sym__alpha_identifier] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_where] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_get] = ACTIONS(5022), + [anon_sym_set] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5022), + [anon_sym_while] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_QMARK_COLON] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_BANGin] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5022), + [anon_sym_BANGis] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_as_QMARK] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5024), + [anon_sym_suspend] = ACTIONS(5022), + [anon_sym_sealed] = ACTIONS(5022), + [anon_sym_annotation] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(5022), + [anon_sym_inner] = ACTIONS(5022), + [anon_sym_value] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_lateinit] = ACTIONS(5022), + [anon_sym_public] = ACTIONS(5022), + [anon_sym_private] = ACTIONS(5022), + [anon_sym_internal] = ACTIONS(5022), + [anon_sym_protected] = ACTIONS(5022), + [anon_sym_tailrec] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_infix] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym_external] = ACTIONS(5022), + [sym_property_modifier] = ACTIONS(5022), + [anon_sym_abstract] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_open] = ACTIONS(5022), + [anon_sym_vararg] = ACTIONS(5022), + [anon_sym_noinline] = ACTIONS(5022), + [anon_sym_crossinline] = ACTIONS(5022), + [anon_sym_expect] = ACTIONS(5022), + [anon_sym_actual] = ACTIONS(5022), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5024), + [sym_safe_nav] = ACTIONS(5024), + [sym_multiline_comment] = ACTIONS(3), + }, + [3445] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_RBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_RPAREN] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_DASH_GT] = ACTIONS(4950), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_suspend] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_lateinit] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_tailrec] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4948), + [anon_sym_infix] = ACTIONS(4948), + [anon_sym_inline] = ACTIONS(4948), + [anon_sym_external] = ACTIONS(4948), + [sym_property_modifier] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_final] = ACTIONS(4948), + [anon_sym_open] = ACTIONS(4948), + [anon_sym_vararg] = ACTIONS(4948), + [anon_sym_noinline] = ACTIONS(4948), + [anon_sym_crossinline] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + }, + [3446] = { + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3447] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_RBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_RPAREN] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_DASH_GT] = ACTIONS(4946), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_suspend] = ACTIONS(4944), + [anon_sym_sealed] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_override] = ACTIONS(4944), + [anon_sym_lateinit] = ACTIONS(4944), + [anon_sym_public] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4944), + [anon_sym_internal] = ACTIONS(4944), + [anon_sym_protected] = ACTIONS(4944), + [anon_sym_tailrec] = ACTIONS(4944), + [anon_sym_operator] = ACTIONS(4944), + [anon_sym_infix] = ACTIONS(4944), + [anon_sym_inline] = ACTIONS(4944), + [anon_sym_external] = ACTIONS(4944), + [sym_property_modifier] = ACTIONS(4944), + [anon_sym_abstract] = ACTIONS(4944), + [anon_sym_final] = ACTIONS(4944), + [anon_sym_open] = ACTIONS(4944), + [anon_sym_vararg] = ACTIONS(4944), + [anon_sym_noinline] = ACTIONS(4944), + [anon_sym_crossinline] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), + [sym_multiline_comment] = ACTIONS(3), + }, + [3448] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_DASH_GT] = ACTIONS(4974), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_suspend] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_lateinit] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_tailrec] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4972), + [anon_sym_infix] = ACTIONS(4972), + [anon_sym_inline] = ACTIONS(4972), + [anon_sym_external] = ACTIONS(4972), + [sym_property_modifier] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_final] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_vararg] = ACTIONS(4972), + [anon_sym_noinline] = ACTIONS(4972), + [anon_sym_crossinline] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + }, + [3449] = { + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_RBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_RPAREN] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_DASH_GT] = ACTIONS(4365), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_while] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3450] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_DASH_GT] = ACTIONS(4309), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3451] = { + [sym__alpha_identifier] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_get] = ACTIONS(4900), + [anon_sym_set] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4902), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_while] = ACTIONS(4900), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_QMARK_COLON] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4902), + [anon_sym_BANGin] = ACTIONS(4902), + [anon_sym_is] = ACTIONS(4900), + [anon_sym_BANGis] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_as_QMARK] = ACTIONS(4902), + [anon_sym_PLUS_PLUS] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4902), + [anon_sym_suspend] = ACTIONS(4900), + [anon_sym_sealed] = ACTIONS(4900), + [anon_sym_annotation] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4900), + [anon_sym_inner] = ACTIONS(4900), + [anon_sym_value] = ACTIONS(4900), + [anon_sym_override] = ACTIONS(4900), + [anon_sym_lateinit] = ACTIONS(4900), + [anon_sym_public] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4900), + [anon_sym_internal] = ACTIONS(4900), + [anon_sym_protected] = ACTIONS(4900), + [anon_sym_tailrec] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4900), + [anon_sym_infix] = ACTIONS(4900), + [anon_sym_inline] = ACTIONS(4900), + [anon_sym_external] = ACTIONS(4900), + [sym_property_modifier] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_final] = ACTIONS(4900), + [anon_sym_open] = ACTIONS(4900), + [anon_sym_vararg] = ACTIONS(4900), + [anon_sym_noinline] = ACTIONS(4900), + [anon_sym_crossinline] = ACTIONS(4900), + [anon_sym_expect] = ACTIONS(4900), + [anon_sym_actual] = ACTIONS(4900), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4902), + [sym_safe_nav] = ACTIONS(4902), + [sym_multiline_comment] = ACTIONS(3), + }, + [3452] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3453] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_RBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_RPAREN] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_DASH_GT] = ACTIONS(4834), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_while] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_suspend] = ACTIONS(4832), + [anon_sym_sealed] = ACTIONS(4832), + [anon_sym_annotation] = ACTIONS(4832), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_override] = ACTIONS(4832), + [anon_sym_lateinit] = ACTIONS(4832), + [anon_sym_public] = ACTIONS(4832), + [anon_sym_private] = ACTIONS(4832), + [anon_sym_internal] = ACTIONS(4832), + [anon_sym_protected] = ACTIONS(4832), + [anon_sym_tailrec] = ACTIONS(4832), + [anon_sym_operator] = ACTIONS(4832), + [anon_sym_infix] = ACTIONS(4832), + [anon_sym_inline] = ACTIONS(4832), + [anon_sym_external] = ACTIONS(4832), + [sym_property_modifier] = ACTIONS(4832), + [anon_sym_abstract] = ACTIONS(4832), + [anon_sym_final] = ACTIONS(4832), + [anon_sym_open] = ACTIONS(4832), + [anon_sym_vararg] = ACTIONS(4832), + [anon_sym_noinline] = ACTIONS(4832), + [anon_sym_crossinline] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + }, + [3454] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_DASH_GT] = ACTIONS(1696), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(1694), + [anon_sym_sealed] = ACTIONS(1694), + [anon_sym_annotation] = ACTIONS(1694), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_value] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_lateinit] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_internal] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_tailrec] = ACTIONS(1694), + [anon_sym_operator] = ACTIONS(1694), + [anon_sym_infix] = ACTIONS(1694), + [anon_sym_inline] = ACTIONS(1694), + [anon_sym_external] = ACTIONS(1694), + [sym_property_modifier] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(1694), + [anon_sym_final] = ACTIONS(1694), + [anon_sym_open] = ACTIONS(1694), + [anon_sym_vararg] = ACTIONS(1694), + [anon_sym_noinline] = ACTIONS(1694), + [anon_sym_crossinline] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3455] = { + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_EQ] = ACTIONS(4264), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_object] = ACTIONS(4262), + [anon_sym_fun] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4262), + [anon_sym_super] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4264), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_when] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4264), + [anon_sym_continue_AT] = ACTIONS(4264), + [anon_sym_break_AT] = ACTIONS(4264), + [anon_sym_this_AT] = ACTIONS(4264), + [anon_sym_super_AT] = ACTIONS(4264), + [sym_real_literal] = ACTIONS(4264), + [sym_integer_literal] = ACTIONS(4262), + [sym_hex_literal] = ACTIONS(4264), + [sym_bin_literal] = ACTIONS(4264), + [anon_sym_true] = ACTIONS(4262), + [anon_sym_false] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4264), + [sym_null_literal] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4264), + }, + [3456] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_RBRACK] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_RPAREN] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_DASH_GT] = ACTIONS(4748), + [sym_label] = ACTIONS(4748), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_while] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + }, + [3457] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_DASH_GT] = ACTIONS(5163), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_while] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_suspend] = ACTIONS(5161), + [anon_sym_sealed] = ACTIONS(5161), + [anon_sym_annotation] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_override] = ACTIONS(5161), + [anon_sym_lateinit] = ACTIONS(5161), + [anon_sym_public] = ACTIONS(5161), + [anon_sym_private] = ACTIONS(5161), + [anon_sym_internal] = ACTIONS(5161), + [anon_sym_protected] = ACTIONS(5161), + [anon_sym_tailrec] = ACTIONS(5161), + [anon_sym_operator] = ACTIONS(5161), + [anon_sym_infix] = ACTIONS(5161), + [anon_sym_inline] = ACTIONS(5161), + [anon_sym_external] = ACTIONS(5161), + [sym_property_modifier] = ACTIONS(5161), + [anon_sym_abstract] = ACTIONS(5161), + [anon_sym_final] = ACTIONS(5161), + [anon_sym_open] = ACTIONS(5161), + [anon_sym_vararg] = ACTIONS(5161), + [anon_sym_noinline] = ACTIONS(5161), + [anon_sym_crossinline] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), + [sym_multiline_comment] = ACTIONS(3), + }, + [3458] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4930), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_while] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_suspend] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_lateinit] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_tailrec] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4928), + [anon_sym_infix] = ACTIONS(4928), + [anon_sym_inline] = ACTIONS(4928), + [anon_sym_external] = ACTIONS(4928), + [sym_property_modifier] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_final] = ACTIONS(4928), + [anon_sym_open] = ACTIONS(4928), + [anon_sym_vararg] = ACTIONS(4928), + [anon_sym_noinline] = ACTIONS(4928), + [anon_sym_crossinline] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), + [sym_multiline_comment] = ACTIONS(3), + }, + [3459] = { + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3460] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_DASH_GT] = ACTIONS(4926), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_while] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_suspend] = ACTIONS(4924), + [anon_sym_sealed] = ACTIONS(4924), + [anon_sym_annotation] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_override] = ACTIONS(4924), + [anon_sym_lateinit] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4924), + [anon_sym_internal] = ACTIONS(4924), + [anon_sym_protected] = ACTIONS(4924), + [anon_sym_tailrec] = ACTIONS(4924), + [anon_sym_operator] = ACTIONS(4924), + [anon_sym_infix] = ACTIONS(4924), + [anon_sym_inline] = ACTIONS(4924), + [anon_sym_external] = ACTIONS(4924), + [sym_property_modifier] = ACTIONS(4924), + [anon_sym_abstract] = ACTIONS(4924), + [anon_sym_final] = ACTIONS(4924), + [anon_sym_open] = ACTIONS(4924), + [anon_sym_vararg] = ACTIONS(4924), + [anon_sym_noinline] = ACTIONS(4924), + [anon_sym_crossinline] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), + [sym_multiline_comment] = ACTIONS(3), + }, + [3461] = { + [sym__alpha_identifier] = ACTIONS(4996), + [anon_sym_AT] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_get] = ACTIONS(4996), + [anon_sym_set] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4998), + [sym_label] = ACTIONS(4998), + [anon_sym_in] = ACTIONS(4996), + [anon_sym_while] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4998), + [anon_sym_QMARK_COLON] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_PERCENT_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_BANGin] = ACTIONS(4998), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_BANGis] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_as_QMARK] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_BANG_BANG] = ACTIONS(4998), + [anon_sym_suspend] = ACTIONS(4996), + [anon_sym_sealed] = ACTIONS(4996), + [anon_sym_annotation] = ACTIONS(4996), + [anon_sym_data] = ACTIONS(4996), + [anon_sym_inner] = ACTIONS(4996), + [anon_sym_value] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + [anon_sym_lateinit] = ACTIONS(4996), + [anon_sym_public] = ACTIONS(4996), + [anon_sym_private] = ACTIONS(4996), + [anon_sym_internal] = ACTIONS(4996), + [anon_sym_protected] = ACTIONS(4996), + [anon_sym_tailrec] = ACTIONS(4996), + [anon_sym_operator] = ACTIONS(4996), + [anon_sym_infix] = ACTIONS(4996), + [anon_sym_inline] = ACTIONS(4996), + [anon_sym_external] = ACTIONS(4996), + [sym_property_modifier] = ACTIONS(4996), + [anon_sym_abstract] = ACTIONS(4996), + [anon_sym_final] = ACTIONS(4996), + [anon_sym_open] = ACTIONS(4996), + [anon_sym_vararg] = ACTIONS(4996), + [anon_sym_noinline] = ACTIONS(4996), + [anon_sym_crossinline] = ACTIONS(4996), + [anon_sym_expect] = ACTIONS(4996), + [anon_sym_actual] = ACTIONS(4996), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4998), + [sym_safe_nav] = ACTIONS(4998), + [sym_multiline_comment] = ACTIONS(3), + }, + [3462] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_DASH_GT] = ACTIONS(4898), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_while] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_suspend] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_lateinit] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_tailrec] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4896), + [anon_sym_infix] = ACTIONS(4896), + [anon_sym_inline] = ACTIONS(4896), + [anon_sym_external] = ACTIONS(4896), + [sym_property_modifier] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_final] = ACTIONS(4896), + [anon_sym_open] = ACTIONS(4896), + [anon_sym_vararg] = ACTIONS(4896), + [anon_sym_noinline] = ACTIONS(4896), + [anon_sym_crossinline] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + }, + [3463] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_RBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4437), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_while] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [3464] = { + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_RBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_while] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + }, + [3465] = { + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3466] = { + [sym__alpha_identifier] = ACTIONS(4824), + [anon_sym_AT] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_RBRACK] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_as] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_COMMA] = ACTIONS(4826), + [anon_sym_RPAREN] = ACTIONS(4826), + [anon_sym_LT] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_where] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4826), + [anon_sym_get] = ACTIONS(4824), + [anon_sym_set] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [anon_sym_DASH_GT] = ACTIONS(4826), + [sym_label] = ACTIONS(4826), + [anon_sym_in] = ACTIONS(4824), + [anon_sym_while] = ACTIONS(4824), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_QMARK_COLON] = ACTIONS(4826), + [anon_sym_AMP_AMP] = ACTIONS(4826), + [anon_sym_PIPE_PIPE] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_COLON_COLON] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4826), + [anon_sym_DASH_EQ] = ACTIONS(4826), + [anon_sym_STAR_EQ] = ACTIONS(4826), + [anon_sym_SLASH_EQ] = ACTIONS(4826), + [anon_sym_PERCENT_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4826), + [anon_sym_BANGin] = ACTIONS(4826), + [anon_sym_is] = ACTIONS(4824), + [anon_sym_BANGis] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_as_QMARK] = ACTIONS(4826), + [anon_sym_PLUS_PLUS] = ACTIONS(4826), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_BANG_BANG] = ACTIONS(4826), + [anon_sym_suspend] = ACTIONS(4824), + [anon_sym_sealed] = ACTIONS(4824), + [anon_sym_annotation] = ACTIONS(4824), + [anon_sym_data] = ACTIONS(4824), + [anon_sym_inner] = ACTIONS(4824), + [anon_sym_value] = ACTIONS(4824), + [anon_sym_override] = ACTIONS(4824), + [anon_sym_lateinit] = ACTIONS(4824), + [anon_sym_public] = ACTIONS(4824), + [anon_sym_private] = ACTIONS(4824), + [anon_sym_internal] = ACTIONS(4824), + [anon_sym_protected] = ACTIONS(4824), + [anon_sym_tailrec] = ACTIONS(4824), + [anon_sym_operator] = ACTIONS(4824), + [anon_sym_infix] = ACTIONS(4824), + [anon_sym_inline] = ACTIONS(4824), + [anon_sym_external] = ACTIONS(4824), + [sym_property_modifier] = ACTIONS(4824), + [anon_sym_abstract] = ACTIONS(4824), + [anon_sym_final] = ACTIONS(4824), + [anon_sym_open] = ACTIONS(4824), + [anon_sym_vararg] = ACTIONS(4824), + [anon_sym_noinline] = ACTIONS(4824), + [anon_sym_crossinline] = ACTIONS(4824), + [anon_sym_expect] = ACTIONS(4824), + [anon_sym_actual] = ACTIONS(4824), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4826), + [sym_safe_nav] = ACTIONS(4826), + [sym_multiline_comment] = ACTIONS(3), + }, + [3467] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_RBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_RPAREN] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_DASH_GT] = ACTIONS(4313), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_while] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + }, + [3468] = { + [sym__alpha_identifier] = ACTIONS(5165), + [anon_sym_AT] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5165), + [anon_sym_EQ] = ACTIONS(5165), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_where] = ACTIONS(5165), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_get] = ACTIONS(5165), + [anon_sym_set] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_DASH_GT] = ACTIONS(5167), + [sym_label] = ACTIONS(5167), + [anon_sym_in] = ACTIONS(5165), + [anon_sym_while] = ACTIONS(5165), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_QMARK_COLON] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_else] = ACTIONS(5165), + [anon_sym_COLON_COLON] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_BANGin] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5165), + [anon_sym_BANGis] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5165), + [anon_sym_as_QMARK] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_BANG_BANG] = ACTIONS(5167), + [anon_sym_suspend] = ACTIONS(5165), + [anon_sym_sealed] = ACTIONS(5165), + [anon_sym_annotation] = ACTIONS(5165), + [anon_sym_data] = ACTIONS(5165), + [anon_sym_inner] = ACTIONS(5165), + [anon_sym_value] = ACTIONS(5165), + [anon_sym_override] = ACTIONS(5165), + [anon_sym_lateinit] = ACTIONS(5165), + [anon_sym_public] = ACTIONS(5165), + [anon_sym_private] = ACTIONS(5165), + [anon_sym_internal] = ACTIONS(5165), + [anon_sym_protected] = ACTIONS(5165), + [anon_sym_tailrec] = ACTIONS(5165), + [anon_sym_operator] = ACTIONS(5165), + [anon_sym_infix] = ACTIONS(5165), + [anon_sym_inline] = ACTIONS(5165), + [anon_sym_external] = ACTIONS(5165), + [sym_property_modifier] = ACTIONS(5165), + [anon_sym_abstract] = ACTIONS(5165), + [anon_sym_final] = ACTIONS(5165), + [anon_sym_open] = ACTIONS(5165), + [anon_sym_vararg] = ACTIONS(5165), + [anon_sym_noinline] = ACTIONS(5165), + [anon_sym_crossinline] = ACTIONS(5165), + [anon_sym_expect] = ACTIONS(5165), + [anon_sym_actual] = ACTIONS(5165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5167), + [sym_safe_nav] = ACTIONS(5167), + [sym_multiline_comment] = ACTIONS(3), + }, + [3469] = { + [sym__alpha_identifier] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_as] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_where] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(5010), + [anon_sym_set] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_label] = ACTIONS(5012), + [anon_sym_in] = ACTIONS(5010), + [anon_sym_while] = ACTIONS(5010), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_QMARK_COLON] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_BANGin] = ACTIONS(5012), + [anon_sym_is] = ACTIONS(5010), + [anon_sym_BANGis] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_as_QMARK] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_BANG_BANG] = ACTIONS(5012), + [anon_sym_suspend] = ACTIONS(5010), + [anon_sym_sealed] = ACTIONS(5010), + [anon_sym_annotation] = ACTIONS(5010), + [anon_sym_data] = ACTIONS(5010), + [anon_sym_inner] = ACTIONS(5010), + [anon_sym_value] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_lateinit] = ACTIONS(5010), + [anon_sym_public] = ACTIONS(5010), + [anon_sym_private] = ACTIONS(5010), + [anon_sym_internal] = ACTIONS(5010), + [anon_sym_protected] = ACTIONS(5010), + [anon_sym_tailrec] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_infix] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym_external] = ACTIONS(5010), + [sym_property_modifier] = ACTIONS(5010), + [anon_sym_abstract] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_open] = ACTIONS(5010), + [anon_sym_vararg] = ACTIONS(5010), + [anon_sym_noinline] = ACTIONS(5010), + [anon_sym_crossinline] = ACTIONS(5010), + [anon_sym_expect] = ACTIONS(5010), + [anon_sym_actual] = ACTIONS(5010), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5012), + [sym_safe_nav] = ACTIONS(5012), + [sym_multiline_comment] = ACTIONS(3), + }, + [3470] = { + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1752), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(1750), + [anon_sym_sealed] = ACTIONS(1750), + [anon_sym_annotation] = ACTIONS(1750), + [anon_sym_data] = ACTIONS(1750), + [anon_sym_inner] = ACTIONS(1750), + [anon_sym_value] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_lateinit] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_internal] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_tailrec] = ACTIONS(1750), + [anon_sym_operator] = ACTIONS(1750), + [anon_sym_infix] = ACTIONS(1750), + [anon_sym_inline] = ACTIONS(1750), + [anon_sym_external] = ACTIONS(1750), + [sym_property_modifier] = ACTIONS(1750), + [anon_sym_abstract] = ACTIONS(1750), + [anon_sym_final] = ACTIONS(1750), + [anon_sym_open] = ACTIONS(1750), + [anon_sym_vararg] = ACTIONS(1750), + [anon_sym_noinline] = ACTIONS(1750), + [anon_sym_crossinline] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1750), + [anon_sym_actual] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [3471] = { + [sym__alpha_identifier] = ACTIONS(4828), + [anon_sym_AT] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_LT] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_where] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(4828), + [anon_sym_set] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_DASH_GT] = ACTIONS(4830), + [sym_label] = ACTIONS(4830), + [anon_sym_in] = ACTIONS(4828), + [anon_sym_while] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_QMARK_COLON] = ACTIONS(4830), + [anon_sym_AMP_AMP] = ACTIONS(4830), + [anon_sym_PIPE_PIPE] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4828), + [anon_sym_COLON_COLON] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4830), + [anon_sym_DASH_EQ] = ACTIONS(4830), + [anon_sym_STAR_EQ] = ACTIONS(4830), + [anon_sym_SLASH_EQ] = ACTIONS(4830), + [anon_sym_PERCENT_EQ] = ACTIONS(4830), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4830), + [anon_sym_BANGin] = ACTIONS(4830), + [anon_sym_is] = ACTIONS(4828), + [anon_sym_BANGis] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_as_QMARK] = ACTIONS(4830), + [anon_sym_PLUS_PLUS] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_BANG_BANG] = ACTIONS(4830), + [anon_sym_suspend] = ACTIONS(4828), + [anon_sym_sealed] = ACTIONS(4828), + [anon_sym_annotation] = ACTIONS(4828), + [anon_sym_data] = ACTIONS(4828), + [anon_sym_inner] = ACTIONS(4828), + [anon_sym_value] = ACTIONS(4828), + [anon_sym_override] = ACTIONS(4828), + [anon_sym_lateinit] = ACTIONS(4828), + [anon_sym_public] = ACTIONS(4828), + [anon_sym_private] = ACTIONS(4828), + [anon_sym_internal] = ACTIONS(4828), + [anon_sym_protected] = ACTIONS(4828), + [anon_sym_tailrec] = ACTIONS(4828), + [anon_sym_operator] = ACTIONS(4828), + [anon_sym_infix] = ACTIONS(4828), + [anon_sym_inline] = ACTIONS(4828), + [anon_sym_external] = ACTIONS(4828), + [sym_property_modifier] = ACTIONS(4828), + [anon_sym_abstract] = ACTIONS(4828), + [anon_sym_final] = ACTIONS(4828), + [anon_sym_open] = ACTIONS(4828), + [anon_sym_vararg] = ACTIONS(4828), + [anon_sym_noinline] = ACTIONS(4828), + [anon_sym_crossinline] = ACTIONS(4828), + [anon_sym_expect] = ACTIONS(4828), + [anon_sym_actual] = ACTIONS(4828), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4830), + [sym_safe_nav] = ACTIONS(4830), + [sym_multiline_comment] = ACTIONS(3), + }, + [3472] = { + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_DASH_GT] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3473] = { + [aux_sym_nullable_type_repeat1] = STATE(3473), + [sym__alpha_identifier] = ACTIONS(4268), + [anon_sym_AT] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_DOT] = ACTIONS(4268), + [anon_sym_as] = ACTIONS(4268), + [anon_sym_EQ] = ACTIONS(4268), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_COMMA] = ACTIONS(4270), + [anon_sym_by] = ACTIONS(4268), + [anon_sym_LT] = ACTIONS(4268), + [anon_sym_GT] = ACTIONS(4268), + [anon_sym_where] = ACTIONS(4268), + [anon_sym_SEMI] = ACTIONS(4270), + [anon_sym_get] = ACTIONS(4268), + [anon_sym_set] = ACTIONS(4268), + [sym__quest] = ACTIONS(6812), + [anon_sym_STAR] = ACTIONS(4268), + [sym_label] = ACTIONS(4270), + [anon_sym_in] = ACTIONS(4268), + [anon_sym_DOT_DOT] = ACTIONS(4270), + [anon_sym_QMARK_COLON] = ACTIONS(4270), + [anon_sym_AMP_AMP] = ACTIONS(4270), + [anon_sym_PIPE_PIPE] = ACTIONS(4270), + [anon_sym_else] = ACTIONS(4268), + [anon_sym_COLON_COLON] = ACTIONS(4270), + [anon_sym_PLUS_EQ] = ACTIONS(4270), + [anon_sym_DASH_EQ] = ACTIONS(4270), + [anon_sym_STAR_EQ] = ACTIONS(4270), + [anon_sym_SLASH_EQ] = ACTIONS(4270), + [anon_sym_PERCENT_EQ] = ACTIONS(4270), + [anon_sym_BANG_EQ] = ACTIONS(4268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), + [anon_sym_EQ_EQ] = ACTIONS(4268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), + [anon_sym_LT_EQ] = ACTIONS(4270), + [anon_sym_GT_EQ] = ACTIONS(4270), + [anon_sym_BANGin] = ACTIONS(4270), + [anon_sym_is] = ACTIONS(4268), + [anon_sym_BANGis] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4268), + [anon_sym_SLASH] = ACTIONS(4268), + [anon_sym_PERCENT] = ACTIONS(4268), + [anon_sym_as_QMARK] = ACTIONS(4270), + [anon_sym_PLUS_PLUS] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4270), + [anon_sym_BANG_BANG] = ACTIONS(4270), + [anon_sym_suspend] = ACTIONS(4268), + [anon_sym_sealed] = ACTIONS(4268), + [anon_sym_annotation] = ACTIONS(4268), + [anon_sym_data] = ACTIONS(4268), + [anon_sym_inner] = ACTIONS(4268), + [anon_sym_value] = ACTIONS(4268), + [anon_sym_override] = ACTIONS(4268), + [anon_sym_lateinit] = ACTIONS(4268), + [anon_sym_public] = ACTIONS(4268), + [anon_sym_private] = ACTIONS(4268), + [anon_sym_internal] = ACTIONS(4268), + [anon_sym_protected] = ACTIONS(4268), + [anon_sym_tailrec] = ACTIONS(4268), + [anon_sym_operator] = ACTIONS(4268), + [anon_sym_infix] = ACTIONS(4268), + [anon_sym_inline] = ACTIONS(4268), + [anon_sym_external] = ACTIONS(4268), + [sym_property_modifier] = ACTIONS(4268), + [anon_sym_abstract] = ACTIONS(4268), + [anon_sym_final] = ACTIONS(4268), + [anon_sym_open] = ACTIONS(4268), + [anon_sym_vararg] = ACTIONS(4268), + [anon_sym_noinline] = ACTIONS(4268), + [anon_sym_crossinline] = ACTIONS(4268), + [anon_sym_expect] = ACTIONS(4268), + [anon_sym_actual] = ACTIONS(4268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4270), + [sym__automatic_semicolon] = ACTIONS(4270), + [sym_safe_nav] = ACTIONS(4270), + [sym_multiline_comment] = ACTIONS(3), + }, + [3474] = { + [sym_type_constraints] = STATE(3381), + [sym_enum_class_body] = STATE(3429), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3475] = { + [aux_sym_nullable_type_repeat1] = STATE(3481), + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [sym__quest] = ACTIONS(6817), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4264), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + }, + [3476] = { + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3477] = { + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3478] = { + [sym__alpha_identifier] = ACTIONS(5000), + [anon_sym_AT] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_as] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_where] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_get] = ACTIONS(5000), + [anon_sym_set] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_label] = ACTIONS(5002), + [anon_sym_in] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5002), + [anon_sym_QMARK_COLON] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5002), + [anon_sym_is] = ACTIONS(5000), + [anon_sym_BANGis] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_as_QMARK] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_BANG_BANG] = ACTIONS(5002), + [anon_sym_suspend] = ACTIONS(5000), + [anon_sym_sealed] = ACTIONS(5000), + [anon_sym_annotation] = ACTIONS(5000), + [anon_sym_data] = ACTIONS(5000), + [anon_sym_inner] = ACTIONS(5000), + [anon_sym_value] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_lateinit] = ACTIONS(5000), + [anon_sym_public] = ACTIONS(5000), + [anon_sym_private] = ACTIONS(5000), + [anon_sym_internal] = ACTIONS(5000), + [anon_sym_protected] = ACTIONS(5000), + [anon_sym_tailrec] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + [anon_sym_infix] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym_external] = ACTIONS(5000), + [sym_property_modifier] = ACTIONS(5000), + [anon_sym_abstract] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_open] = ACTIONS(5000), + [anon_sym_vararg] = ACTIONS(5000), + [anon_sym_noinline] = ACTIONS(5000), + [anon_sym_crossinline] = ACTIONS(5000), + [anon_sym_expect] = ACTIONS(5000), + [anon_sym_actual] = ACTIONS(5000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5002), + [sym_safe_nav] = ACTIONS(5002), + [sym_multiline_comment] = ACTIONS(3), + }, + [3479] = { + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3276), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(3272), + [anon_sym_sealed] = ACTIONS(3272), + [anon_sym_annotation] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3272), + [anon_sym_inner] = ACTIONS(3272), + [anon_sym_value] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_lateinit] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_internal] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_tailrec] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_infix] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym_external] = ACTIONS(3272), + [sym_property_modifier] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_final] = ACTIONS(3272), + [anon_sym_open] = ACTIONS(3272), + [anon_sym_vararg] = ACTIONS(3272), + [anon_sym_noinline] = ACTIONS(3272), + [anon_sym_crossinline] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3272), + [anon_sym_actual] = ACTIONS(3272), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [3480] = { + [sym_class_body] = STATE(3449), + [sym_type_constraints] = STATE(3388), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3481] = { + [aux_sym_nullable_type_repeat1] = STATE(3473), + [sym__alpha_identifier] = ACTIONS(4254), + [anon_sym_AT] = ACTIONS(4256), + [anon_sym_LBRACK] = ACTIONS(4256), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_as] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(4256), + [anon_sym_COMMA] = ACTIONS(4256), + [anon_sym_by] = ACTIONS(4254), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_GT] = ACTIONS(4254), + [anon_sym_where] = ACTIONS(4254), + [anon_sym_SEMI] = ACTIONS(4256), + [anon_sym_get] = ACTIONS(4254), + [anon_sym_set] = ACTIONS(4254), + [sym__quest] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(4254), + [sym_label] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4254), + [anon_sym_DOT_DOT] = ACTIONS(4256), + [anon_sym_QMARK_COLON] = ACTIONS(4256), + [anon_sym_AMP_AMP] = ACTIONS(4256), + [anon_sym_PIPE_PIPE] = ACTIONS(4256), + [anon_sym_else] = ACTIONS(4254), + [anon_sym_COLON_COLON] = ACTIONS(4256), + [anon_sym_PLUS_EQ] = ACTIONS(4256), + [anon_sym_DASH_EQ] = ACTIONS(4256), + [anon_sym_STAR_EQ] = ACTIONS(4256), + [anon_sym_SLASH_EQ] = ACTIONS(4256), + [anon_sym_PERCENT_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ] = ACTIONS(4254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ] = ACTIONS(4254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4256), + [anon_sym_LT_EQ] = ACTIONS(4256), + [anon_sym_GT_EQ] = ACTIONS(4256), + [anon_sym_BANGin] = ACTIONS(4256), + [anon_sym_is] = ACTIONS(4254), + [anon_sym_BANGis] = ACTIONS(4256), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), + [anon_sym_as_QMARK] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_BANG_BANG] = ACTIONS(4256), + [anon_sym_suspend] = ACTIONS(4254), + [anon_sym_sealed] = ACTIONS(4254), + [anon_sym_annotation] = ACTIONS(4254), + [anon_sym_data] = ACTIONS(4254), + [anon_sym_inner] = ACTIONS(4254), + [anon_sym_value] = ACTIONS(4254), + [anon_sym_override] = ACTIONS(4254), + [anon_sym_lateinit] = ACTIONS(4254), + [anon_sym_public] = ACTIONS(4254), + [anon_sym_private] = ACTIONS(4254), + [anon_sym_internal] = ACTIONS(4254), + [anon_sym_protected] = ACTIONS(4254), + [anon_sym_tailrec] = ACTIONS(4254), + [anon_sym_operator] = ACTIONS(4254), + [anon_sym_infix] = ACTIONS(4254), + [anon_sym_inline] = ACTIONS(4254), + [anon_sym_external] = ACTIONS(4254), + [sym_property_modifier] = ACTIONS(4254), + [anon_sym_abstract] = ACTIONS(4254), + [anon_sym_final] = ACTIONS(4254), + [anon_sym_open] = ACTIONS(4254), + [anon_sym_vararg] = ACTIONS(4254), + [anon_sym_noinline] = ACTIONS(4254), + [anon_sym_crossinline] = ACTIONS(4254), + [anon_sym_expect] = ACTIONS(4254), + [anon_sym_actual] = ACTIONS(4254), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4256), + [sym__automatic_semicolon] = ACTIONS(4256), + [sym_safe_nav] = ACTIONS(4256), + [sym_multiline_comment] = ACTIONS(3), + }, + [3482] = { + [sym__alpha_identifier] = ACTIONS(5083), + [anon_sym_AT] = ACTIONS(5085), + [anon_sym_LBRACK] = ACTIONS(5085), + [anon_sym_RBRACK] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5083), + [anon_sym_as] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5085), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5085), + [anon_sym_COMMA] = ACTIONS(5085), + [anon_sym_RPAREN] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5083), + [anon_sym_GT] = ACTIONS(5083), + [anon_sym_where] = ACTIONS(5083), + [anon_sym_SEMI] = ACTIONS(5085), + [anon_sym_get] = ACTIONS(5083), + [anon_sym_set] = ACTIONS(5083), + [anon_sym_STAR] = ACTIONS(5083), + [anon_sym_DASH_GT] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5083), + [anon_sym_while] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_QMARK_COLON] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5085), + [anon_sym_PIPE_PIPE] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5083), + [anon_sym_COLON_COLON] = ACTIONS(5085), + [anon_sym_PLUS_EQ] = ACTIONS(5085), + [anon_sym_DASH_EQ] = ACTIONS(5085), + [anon_sym_STAR_EQ] = ACTIONS(5085), + [anon_sym_SLASH_EQ] = ACTIONS(5085), + [anon_sym_PERCENT_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), + [anon_sym_LT_EQ] = ACTIONS(5085), + [anon_sym_GT_EQ] = ACTIONS(5085), + [anon_sym_BANGin] = ACTIONS(5085), + [anon_sym_is] = ACTIONS(5083), + [anon_sym_BANGis] = ACTIONS(5085), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), + [anon_sym_SLASH] = ACTIONS(5083), + [anon_sym_PERCENT] = ACTIONS(5083), + [anon_sym_as_QMARK] = ACTIONS(5085), + [anon_sym_PLUS_PLUS] = ACTIONS(5085), + [anon_sym_DASH_DASH] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5085), + [anon_sym_suspend] = ACTIONS(5083), + [anon_sym_sealed] = ACTIONS(5083), + [anon_sym_annotation] = ACTIONS(5083), + [anon_sym_data] = ACTIONS(5083), + [anon_sym_inner] = ACTIONS(5083), + [anon_sym_value] = ACTIONS(5083), + [anon_sym_override] = ACTIONS(5083), + [anon_sym_lateinit] = ACTIONS(5083), + [anon_sym_public] = ACTIONS(5083), + [anon_sym_private] = ACTIONS(5083), + [anon_sym_internal] = ACTIONS(5083), + [anon_sym_protected] = ACTIONS(5083), + [anon_sym_tailrec] = ACTIONS(5083), + [anon_sym_operator] = ACTIONS(5083), + [anon_sym_infix] = ACTIONS(5083), + [anon_sym_inline] = ACTIONS(5083), + [anon_sym_external] = ACTIONS(5083), + [sym_property_modifier] = ACTIONS(5083), + [anon_sym_abstract] = ACTIONS(5083), + [anon_sym_final] = ACTIONS(5083), + [anon_sym_open] = ACTIONS(5083), + [anon_sym_vararg] = ACTIONS(5083), + [anon_sym_noinline] = ACTIONS(5083), + [anon_sym_crossinline] = ACTIONS(5083), + [anon_sym_expect] = ACTIONS(5083), + [anon_sym_actual] = ACTIONS(5083), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5085), + [sym_safe_nav] = ACTIONS(5085), + [sym_multiline_comment] = ACTIONS(3), + }, + [3483] = { + [ts_builtin_sym_end] = ACTIONS(6823), + [sym__alpha_identifier] = ACTIONS(6825), + [anon_sym_AT] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6823), + [anon_sym_package] = ACTIONS(6825), + [anon_sym_import] = ACTIONS(6825), + [anon_sym_typealias] = ACTIONS(6825), + [anon_sym_class] = ACTIONS(6825), + [anon_sym_interface] = ACTIONS(6825), + [anon_sym_enum] = ACTIONS(6825), + [anon_sym_LBRACE] = ACTIONS(6823), + [anon_sym_LPAREN] = ACTIONS(6823), + [anon_sym_val] = ACTIONS(6825), + [anon_sym_var] = ACTIONS(6825), + [anon_sym_object] = ACTIONS(6825), + [anon_sym_fun] = ACTIONS(6825), + [anon_sym_get] = ACTIONS(6825), + [anon_sym_set] = ACTIONS(6825), + [anon_sym_this] = ACTIONS(6825), + [anon_sym_super] = ACTIONS(6825), + [anon_sym_STAR] = ACTIONS(6823), + [sym_label] = ACTIONS(6825), + [anon_sym_for] = ACTIONS(6825), + [anon_sym_while] = ACTIONS(6825), + [anon_sym_do] = ACTIONS(6825), + [anon_sym_if] = ACTIONS(6825), + [anon_sym_when] = ACTIONS(6825), + [anon_sym_try] = ACTIONS(6825), + [anon_sym_throw] = ACTIONS(6825), + [anon_sym_return] = ACTIONS(6825), + [anon_sym_continue] = ACTIONS(6825), + [anon_sym_break] = ACTIONS(6825), + [anon_sym_COLON_COLON] = ACTIONS(6823), + [anon_sym_PLUS] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6825), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_BANG] = ACTIONS(6823), + [anon_sym_suspend] = ACTIONS(6825), + [anon_sym_sealed] = ACTIONS(6825), + [anon_sym_annotation] = ACTIONS(6825), + [anon_sym_data] = ACTIONS(6825), + [anon_sym_inner] = ACTIONS(6825), + [anon_sym_value] = ACTIONS(6825), + [anon_sym_override] = ACTIONS(6825), + [anon_sym_lateinit] = ACTIONS(6825), + [anon_sym_public] = ACTIONS(6825), + [anon_sym_private] = ACTIONS(6825), + [anon_sym_internal] = ACTIONS(6825), + [anon_sym_protected] = ACTIONS(6825), + [anon_sym_tailrec] = ACTIONS(6825), + [anon_sym_operator] = ACTIONS(6825), + [anon_sym_infix] = ACTIONS(6825), + [anon_sym_inline] = ACTIONS(6825), + [anon_sym_external] = ACTIONS(6825), + [sym_property_modifier] = ACTIONS(6825), + [anon_sym_abstract] = ACTIONS(6825), + [anon_sym_final] = ACTIONS(6825), + [anon_sym_open] = ACTIONS(6825), + [anon_sym_vararg] = ACTIONS(6825), + [anon_sym_noinline] = ACTIONS(6825), + [anon_sym_crossinline] = ACTIONS(6825), + [anon_sym_expect] = ACTIONS(6825), + [anon_sym_actual] = ACTIONS(6825), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6823), + [anon_sym_continue_AT] = ACTIONS(6823), + [anon_sym_break_AT] = ACTIONS(6823), + [anon_sym_this_AT] = ACTIONS(6823), + [anon_sym_super_AT] = ACTIONS(6823), + [sym_real_literal] = ACTIONS(6823), + [sym_integer_literal] = ACTIONS(6825), + [sym_hex_literal] = ACTIONS(6823), + [sym_bin_literal] = ACTIONS(6823), + [anon_sym_true] = ACTIONS(6825), + [anon_sym_false] = ACTIONS(6825), + [anon_sym_SQUOTE] = ACTIONS(6823), + [sym_null_literal] = ACTIONS(6825), + [sym__backtick_identifier] = ACTIONS(6823), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6823), + }, + [3484] = { + [sym_type_constraints] = STATE(3305), + [sym_enum_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6827), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3485] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3486] = { + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3487] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + }, + [3488] = { + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_RBRACK] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [anon_sym_DASH_GT] = ACTIONS(4768), + [sym_label] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_while] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_suspend] = ACTIONS(4766), + [anon_sym_sealed] = ACTIONS(4766), + [anon_sym_annotation] = ACTIONS(4766), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_value] = ACTIONS(4766), + [anon_sym_override] = ACTIONS(4766), + [anon_sym_lateinit] = ACTIONS(4766), + [anon_sym_public] = ACTIONS(4766), + [anon_sym_private] = ACTIONS(4766), + [anon_sym_internal] = ACTIONS(4766), + [anon_sym_protected] = ACTIONS(4766), + [anon_sym_tailrec] = ACTIONS(4766), + [anon_sym_operator] = ACTIONS(4766), + [anon_sym_infix] = ACTIONS(4766), + [anon_sym_inline] = ACTIONS(4766), + [anon_sym_external] = ACTIONS(4766), + [sym_property_modifier] = ACTIONS(4766), + [anon_sym_abstract] = ACTIONS(4766), + [anon_sym_final] = ACTIONS(4766), + [anon_sym_open] = ACTIONS(4766), + [anon_sym_vararg] = ACTIONS(4766), + [anon_sym_noinline] = ACTIONS(4766), + [anon_sym_crossinline] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), + [sym_multiline_comment] = ACTIONS(3), + }, + [3489] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_interface] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3942), + [anon_sym_var] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3947), + [sym_label] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3490] = { + [sym__alpha_identifier] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_by] = ACTIONS(4523), + [anon_sym_where] = ACTIONS(4523), + [anon_sym_object] = ACTIONS(4523), + [anon_sym_fun] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_get] = ACTIONS(4523), + [anon_sym_set] = ACTIONS(4523), + [anon_sym_this] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4523), + [anon_sym_in] = ACTIONS(4523), + [anon_sym_if] = ACTIONS(4523), + [anon_sym_else] = ACTIONS(4523), + [anon_sym_when] = ACTIONS(4523), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_throw] = ACTIONS(4523), + [anon_sym_return] = ACTIONS(4523), + [anon_sym_continue] = ACTIONS(4523), + [anon_sym_break] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_BANGin] = ACTIONS(4525), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_BANGis] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_suspend] = ACTIONS(4523), + [anon_sym_sealed] = ACTIONS(4523), + [anon_sym_annotation] = ACTIONS(4523), + [anon_sym_data] = ACTIONS(4523), + [anon_sym_inner] = ACTIONS(4523), + [anon_sym_value] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_lateinit] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_protected] = ACTIONS(4523), + [anon_sym_tailrec] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_infix] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_external] = ACTIONS(4523), + [sym_property_modifier] = ACTIONS(4523), + [anon_sym_abstract] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_open] = ACTIONS(4523), + [anon_sym_vararg] = ACTIONS(4523), + [anon_sym_noinline] = ACTIONS(4523), + [anon_sym_crossinline] = ACTIONS(4523), + [anon_sym_expect] = ACTIONS(4523), + [anon_sym_actual] = ACTIONS(4523), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4525), + [anon_sym_continue_AT] = ACTIONS(4525), + [anon_sym_break_AT] = ACTIONS(4525), + [anon_sym_this_AT] = ACTIONS(4525), + [anon_sym_super_AT] = ACTIONS(4525), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_SQUOTE] = ACTIONS(4525), + [sym_null_literal] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(4525), + [sym__automatic_semicolon] = ACTIONS(4525), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4525), + }, + [3491] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + }, + [3492] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_RBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [anon_sym_DASH_GT] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_while] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(6831), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [3493] = { + [sym__alpha_identifier] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_by] = ACTIONS(4686), + [anon_sym_where] = ACTIONS(4686), + [anon_sym_object] = ACTIONS(4686), + [anon_sym_fun] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4686), + [anon_sym_this] = ACTIONS(4686), + [anon_sym_super] = ACTIONS(4686), + [anon_sym_STAR] = ACTIONS(4688), + [sym_label] = ACTIONS(4686), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_if] = ACTIONS(4686), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_when] = ACTIONS(4686), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_throw] = ACTIONS(4686), + [anon_sym_return] = ACTIONS(4686), + [anon_sym_continue] = ACTIONS(4686), + [anon_sym_break] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_BANGin] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_BANGis] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_suspend] = ACTIONS(4686), + [anon_sym_sealed] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4686), + [anon_sym_inner] = ACTIONS(4686), + [anon_sym_value] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_lateinit] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_protected] = ACTIONS(4686), + [anon_sym_tailrec] = ACTIONS(4686), + [anon_sym_operator] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_inline] = ACTIONS(4686), + [anon_sym_external] = ACTIONS(4686), + [sym_property_modifier] = ACTIONS(4686), + [anon_sym_abstract] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_vararg] = ACTIONS(4686), + [anon_sym_noinline] = ACTIONS(4686), + [anon_sym_crossinline] = ACTIONS(4686), + [anon_sym_expect] = ACTIONS(4686), + [anon_sym_actual] = ACTIONS(4686), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4688), + [anon_sym_continue_AT] = ACTIONS(4688), + [anon_sym_break_AT] = ACTIONS(4688), + [anon_sym_this_AT] = ACTIONS(4688), + [anon_sym_super_AT] = ACTIONS(4688), + [sym_real_literal] = ACTIONS(4688), + [sym_integer_literal] = ACTIONS(4686), + [sym_hex_literal] = ACTIONS(4688), + [sym_bin_literal] = ACTIONS(4688), + [anon_sym_true] = ACTIONS(4686), + [anon_sym_false] = ACTIONS(4686), + [anon_sym_SQUOTE] = ACTIONS(4688), + [sym_null_literal] = ACTIONS(4686), + [sym__backtick_identifier] = ACTIONS(4688), + [sym__automatic_semicolon] = ACTIONS(4688), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4688), + }, + [3494] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_RBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(6833), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_DASH_GT] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(6835), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [3495] = { + [sym__alpha_identifier] = ACTIONS(4553), + [anon_sym_AT] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_by] = ACTIONS(4553), + [anon_sym_where] = ACTIONS(4553), + [anon_sym_object] = ACTIONS(4553), + [anon_sym_fun] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_get] = ACTIONS(4553), + [anon_sym_set] = ACTIONS(4553), + [anon_sym_this] = ACTIONS(4553), + [anon_sym_super] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4555), + [sym_label] = ACTIONS(4553), + [anon_sym_in] = ACTIONS(4553), + [anon_sym_if] = ACTIONS(4553), + [anon_sym_else] = ACTIONS(4553), + [anon_sym_when] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4553), + [anon_sym_throw] = ACTIONS(4553), + [anon_sym_return] = ACTIONS(4553), + [anon_sym_continue] = ACTIONS(4553), + [anon_sym_break] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(4553), + [anon_sym_BANGis] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_PLUS_PLUS] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4553), + [anon_sym_suspend] = ACTIONS(4553), + [anon_sym_sealed] = ACTIONS(4553), + [anon_sym_annotation] = ACTIONS(4553), + [anon_sym_data] = ACTIONS(4553), + [anon_sym_inner] = ACTIONS(4553), + [anon_sym_value] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_lateinit] = ACTIONS(4553), + [anon_sym_public] = ACTIONS(4553), + [anon_sym_private] = ACTIONS(4553), + [anon_sym_internal] = ACTIONS(4553), + [anon_sym_protected] = ACTIONS(4553), + [anon_sym_tailrec] = ACTIONS(4553), + [anon_sym_operator] = ACTIONS(4553), + [anon_sym_infix] = ACTIONS(4553), + [anon_sym_inline] = ACTIONS(4553), + [anon_sym_external] = ACTIONS(4553), + [sym_property_modifier] = ACTIONS(4553), + [anon_sym_abstract] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_open] = ACTIONS(4553), + [anon_sym_vararg] = ACTIONS(4553), + [anon_sym_noinline] = ACTIONS(4553), + [anon_sym_crossinline] = ACTIONS(4553), + [anon_sym_expect] = ACTIONS(4553), + [anon_sym_actual] = ACTIONS(4553), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4555), + [anon_sym_continue_AT] = ACTIONS(4555), + [anon_sym_break_AT] = ACTIONS(4555), + [anon_sym_this_AT] = ACTIONS(4555), + [anon_sym_super_AT] = ACTIONS(4555), + [sym_real_literal] = ACTIONS(4555), + [sym_integer_literal] = ACTIONS(4553), + [sym_hex_literal] = ACTIONS(4555), + [sym_bin_literal] = ACTIONS(4555), + [anon_sym_true] = ACTIONS(4553), + [anon_sym_false] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4555), + [sym_null_literal] = ACTIONS(4553), + [sym__backtick_identifier] = ACTIONS(4555), + [sym__automatic_semicolon] = ACTIONS(4555), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4555), + }, + [3496] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_DASH_GT] = ACTIONS(4734), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_while] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + }, + [3497] = { + [sym_type_arguments] = STATE(3818), + [sym__alpha_identifier] = ACTIONS(4104), + [anon_sym_AT] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_typealias] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_interface] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_val] = ACTIONS(4104), + [anon_sym_var] = ACTIONS(4104), + [anon_sym_LT] = ACTIONS(6837), + [anon_sym_object] = ACTIONS(4104), + [anon_sym_fun] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(4104), + [anon_sym_set] = ACTIONS(4104), + [anon_sym_this] = ACTIONS(4104), + [anon_sym_super] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4146), + [sym_label] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_when] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_suspend] = ACTIONS(4104), + [anon_sym_sealed] = ACTIONS(4104), + [anon_sym_annotation] = ACTIONS(4104), + [anon_sym_data] = ACTIONS(4104), + [anon_sym_inner] = ACTIONS(4104), + [anon_sym_value] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_lateinit] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_internal] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_tailrec] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_infix] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym_external] = ACTIONS(4104), + [sym_property_modifier] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_final] = ACTIONS(4104), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_vararg] = ACTIONS(4104), + [anon_sym_noinline] = ACTIONS(4104), + [anon_sym_crossinline] = ACTIONS(4104), + [anon_sym_expect] = ACTIONS(4104), + [anon_sym_actual] = ACTIONS(4104), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4146), + [anon_sym_continue_AT] = ACTIONS(4146), + [anon_sym_break_AT] = ACTIONS(4146), + [anon_sym_this_AT] = ACTIONS(4146), + [anon_sym_super_AT] = ACTIONS(4146), + [sym_real_literal] = ACTIONS(4146), + [sym_integer_literal] = ACTIONS(4104), + [sym_hex_literal] = ACTIONS(4146), + [sym_bin_literal] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4104), + [anon_sym_false] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4104), + [sym__backtick_identifier] = ACTIONS(4146), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4146), + }, + [3498] = { + [sym_class_body] = STATE(3465), + [sym_type_constraints] = STATE(3330), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3499] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_RBRACK] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_RPAREN] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_DASH_GT] = ACTIONS(4752), + [sym_label] = ACTIONS(4752), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_while] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + }, + [3500] = { + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3501] = { + [sym_class_body] = STATE(3467), + [sym_type_constraints] = STATE(3313), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3502] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [anon_sym_DASH_GT] = ACTIONS(4756), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_while] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + }, + [3503] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_RBRACK] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [anon_sym_DASH_GT] = ACTIONS(4760), + [sym_label] = ACTIONS(4760), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_while] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + }, + [3504] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_RBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_RPAREN] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_DASH_GT] = ACTIONS(4764), + [sym_label] = ACTIONS(4764), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_while] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_BANG_BANG] = ACTIONS(4764), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), + [sym_multiline_comment] = ACTIONS(3), + }, + [3505] = { + [sym_class_body] = STATE(3436), + [sym_type_constraints] = STATE(3363), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(5924), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3506] = { + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_RBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(3966), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_RPAREN] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_DASH_GT] = ACTIONS(3966), + [sym_label] = ACTIONS(3966), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_while] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_suspend] = ACTIONS(3964), + [anon_sym_sealed] = ACTIONS(3964), + [anon_sym_annotation] = ACTIONS(3964), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_override] = ACTIONS(3964), + [anon_sym_lateinit] = ACTIONS(3964), + [anon_sym_public] = ACTIONS(3964), + [anon_sym_private] = ACTIONS(3964), + [anon_sym_internal] = ACTIONS(3964), + [anon_sym_protected] = ACTIONS(3964), + [anon_sym_tailrec] = ACTIONS(3964), + [anon_sym_operator] = ACTIONS(3964), + [anon_sym_infix] = ACTIONS(3964), + [anon_sym_inline] = ACTIONS(3964), + [anon_sym_external] = ACTIONS(3964), + [sym_property_modifier] = ACTIONS(3964), + [anon_sym_abstract] = ACTIONS(3964), + [anon_sym_final] = ACTIONS(3964), + [anon_sym_open] = ACTIONS(3964), + [anon_sym_vararg] = ACTIONS(3964), + [anon_sym_noinline] = ACTIONS(3964), + [anon_sym_crossinline] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + }, + [3507] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_as] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4772), + [anon_sym_RPAREN] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [anon_sym_DASH_GT] = ACTIONS(4772), + [sym_label] = ACTIONS(4772), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_while] = ACTIONS(4770), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_QMARK_COLON] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4770), + [anon_sym_COLON_COLON] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4772), + [anon_sym_DASH_EQ] = ACTIONS(4772), + [anon_sym_STAR_EQ] = ACTIONS(4772), + [anon_sym_SLASH_EQ] = ACTIONS(4772), + [anon_sym_PERCENT_EQ] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4772), + [anon_sym_BANGin] = ACTIONS(4772), + [anon_sym_is] = ACTIONS(4770), + [anon_sym_BANGis] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_as_QMARK] = ACTIONS(4772), + [anon_sym_PLUS_PLUS] = ACTIONS(4772), + [anon_sym_DASH_DASH] = ACTIONS(4772), + [anon_sym_BANG_BANG] = ACTIONS(4772), + [anon_sym_suspend] = ACTIONS(4770), + [anon_sym_sealed] = ACTIONS(4770), + [anon_sym_annotation] = ACTIONS(4770), + [anon_sym_data] = ACTIONS(4770), + [anon_sym_inner] = ACTIONS(4770), + [anon_sym_value] = ACTIONS(4770), + [anon_sym_override] = ACTIONS(4770), + [anon_sym_lateinit] = ACTIONS(4770), + [anon_sym_public] = ACTIONS(4770), + [anon_sym_private] = ACTIONS(4770), + [anon_sym_internal] = ACTIONS(4770), + [anon_sym_protected] = ACTIONS(4770), + [anon_sym_tailrec] = ACTIONS(4770), + [anon_sym_operator] = ACTIONS(4770), + [anon_sym_infix] = ACTIONS(4770), + [anon_sym_inline] = ACTIONS(4770), + [anon_sym_external] = ACTIONS(4770), + [sym_property_modifier] = ACTIONS(4770), + [anon_sym_abstract] = ACTIONS(4770), + [anon_sym_final] = ACTIONS(4770), + [anon_sym_open] = ACTIONS(4770), + [anon_sym_vararg] = ACTIONS(4770), + [anon_sym_noinline] = ACTIONS(4770), + [anon_sym_crossinline] = ACTIONS(4770), + [anon_sym_expect] = ACTIONS(4770), + [anon_sym_actual] = ACTIONS(4770), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), + [sym_multiline_comment] = ACTIONS(3), + }, + [3508] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_RBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_RPAREN] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [anon_sym_DASH_GT] = ACTIONS(4776), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_while] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + }, + [3509] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_while] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + }, + [3510] = { + [sym__alpha_identifier] = ACTIONS(4784), + [anon_sym_AT] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_RBRACK] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_RPAREN] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_where] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(4784), + [anon_sym_set] = ACTIONS(4784), + [anon_sym_STAR] = ACTIONS(4784), + [anon_sym_DASH_GT] = ACTIONS(4786), + [sym_label] = ACTIONS(4786), + [anon_sym_in] = ACTIONS(4784), + [anon_sym_while] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4786), + [anon_sym_QMARK_COLON] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_COLON_COLON] = ACTIONS(4786), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_PERCENT_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4786), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_BANGin] = ACTIONS(4786), + [anon_sym_is] = ACTIONS(4784), + [anon_sym_BANGis] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_PERCENT] = ACTIONS(4784), + [anon_sym_as_QMARK] = ACTIONS(4786), + [anon_sym_PLUS_PLUS] = ACTIONS(4786), + [anon_sym_DASH_DASH] = ACTIONS(4786), + [anon_sym_BANG_BANG] = ACTIONS(4786), + [anon_sym_suspend] = ACTIONS(4784), + [anon_sym_sealed] = ACTIONS(4784), + [anon_sym_annotation] = ACTIONS(4784), + [anon_sym_data] = ACTIONS(4784), + [anon_sym_inner] = ACTIONS(4784), + [anon_sym_value] = ACTIONS(4784), + [anon_sym_override] = ACTIONS(4784), + [anon_sym_lateinit] = ACTIONS(4784), + [anon_sym_public] = ACTIONS(4784), + [anon_sym_private] = ACTIONS(4784), + [anon_sym_internal] = ACTIONS(4784), + [anon_sym_protected] = ACTIONS(4784), + [anon_sym_tailrec] = ACTIONS(4784), + [anon_sym_operator] = ACTIONS(4784), + [anon_sym_infix] = ACTIONS(4784), + [anon_sym_inline] = ACTIONS(4784), + [anon_sym_external] = ACTIONS(4784), + [sym_property_modifier] = ACTIONS(4784), + [anon_sym_abstract] = ACTIONS(4784), + [anon_sym_final] = ACTIONS(4784), + [anon_sym_open] = ACTIONS(4784), + [anon_sym_vararg] = ACTIONS(4784), + [anon_sym_noinline] = ACTIONS(4784), + [anon_sym_crossinline] = ACTIONS(4784), + [anon_sym_expect] = ACTIONS(4784), + [anon_sym_actual] = ACTIONS(4784), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4786), + [sym_safe_nav] = ACTIONS(4786), + [sym_multiline_comment] = ACTIONS(3), + }, + [3511] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_RBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_DASH_GT] = ACTIONS(4790), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_suspend] = ACTIONS(4788), + [anon_sym_sealed] = ACTIONS(4788), + [anon_sym_annotation] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_override] = ACTIONS(4788), + [anon_sym_lateinit] = ACTIONS(4788), + [anon_sym_public] = ACTIONS(4788), + [anon_sym_private] = ACTIONS(4788), + [anon_sym_internal] = ACTIONS(4788), + [anon_sym_protected] = ACTIONS(4788), + [anon_sym_tailrec] = ACTIONS(4788), + [anon_sym_operator] = ACTIONS(4788), + [anon_sym_infix] = ACTIONS(4788), + [anon_sym_inline] = ACTIONS(4788), + [anon_sym_external] = ACTIONS(4788), + [sym_property_modifier] = ACTIONS(4788), + [anon_sym_abstract] = ACTIONS(4788), + [anon_sym_final] = ACTIONS(4788), + [anon_sym_open] = ACTIONS(4788), + [anon_sym_vararg] = ACTIONS(4788), + [anon_sym_noinline] = ACTIONS(4788), + [anon_sym_crossinline] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + }, + [3512] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_RBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_RPAREN] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [anon_sym_DASH_GT] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_suspend] = ACTIONS(4792), + [anon_sym_sealed] = ACTIONS(4792), + [anon_sym_annotation] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_override] = ACTIONS(4792), + [anon_sym_lateinit] = ACTIONS(4792), + [anon_sym_public] = ACTIONS(4792), + [anon_sym_private] = ACTIONS(4792), + [anon_sym_internal] = ACTIONS(4792), + [anon_sym_protected] = ACTIONS(4792), + [anon_sym_tailrec] = ACTIONS(4792), + [anon_sym_operator] = ACTIONS(4792), + [anon_sym_infix] = ACTIONS(4792), + [anon_sym_inline] = ACTIONS(4792), + [anon_sym_external] = ACTIONS(4792), + [sym_property_modifier] = ACTIONS(4792), + [anon_sym_abstract] = ACTIONS(4792), + [anon_sym_final] = ACTIONS(4792), + [anon_sym_open] = ACTIONS(4792), + [anon_sym_vararg] = ACTIONS(4792), + [anon_sym_noinline] = ACTIONS(4792), + [anon_sym_crossinline] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + }, + [3513] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_RBRACK] = ACTIONS(4806), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_RPAREN] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [anon_sym_DASH_GT] = ACTIONS(4806), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + }, + [3514] = { + [sym__alpha_identifier] = ACTIONS(4808), + [anon_sym_AT] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(4810), + [anon_sym_RBRACK] = ACTIONS(4810), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_as] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_LBRACE] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_COMMA] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_where] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_get] = ACTIONS(4808), + [anon_sym_set] = ACTIONS(4808), + [anon_sym_STAR] = ACTIONS(4808), + [anon_sym_DASH_GT] = ACTIONS(4810), + [sym_label] = ACTIONS(4810), + [anon_sym_in] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4810), + [anon_sym_QMARK_COLON] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_COLON_COLON] = ACTIONS(4810), + [anon_sym_PLUS_EQ] = ACTIONS(4810), + [anon_sym_DASH_EQ] = ACTIONS(4810), + [anon_sym_STAR_EQ] = ACTIONS(4810), + [anon_sym_SLASH_EQ] = ACTIONS(4810), + [anon_sym_PERCENT_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT_EQ] = ACTIONS(4810), + [anon_sym_GT_EQ] = ACTIONS(4810), + [anon_sym_BANGin] = ACTIONS(4810), + [anon_sym_is] = ACTIONS(4808), + [anon_sym_BANGis] = ACTIONS(4810), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_PERCENT] = ACTIONS(4808), + [anon_sym_as_QMARK] = ACTIONS(4810), + [anon_sym_PLUS_PLUS] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4810), + [anon_sym_BANG_BANG] = ACTIONS(4810), + [anon_sym_suspend] = ACTIONS(4808), + [anon_sym_sealed] = ACTIONS(4808), + [anon_sym_annotation] = ACTIONS(4808), + [anon_sym_data] = ACTIONS(4808), + [anon_sym_inner] = ACTIONS(4808), + [anon_sym_value] = ACTIONS(4808), + [anon_sym_override] = ACTIONS(4808), + [anon_sym_lateinit] = ACTIONS(4808), + [anon_sym_public] = ACTIONS(4808), + [anon_sym_private] = ACTIONS(4808), + [anon_sym_internal] = ACTIONS(4808), + [anon_sym_protected] = ACTIONS(4808), + [anon_sym_tailrec] = ACTIONS(4808), + [anon_sym_operator] = ACTIONS(4808), + [anon_sym_infix] = ACTIONS(4808), + [anon_sym_inline] = ACTIONS(4808), + [anon_sym_external] = ACTIONS(4808), + [sym_property_modifier] = ACTIONS(4808), + [anon_sym_abstract] = ACTIONS(4808), + [anon_sym_final] = ACTIONS(4808), + [anon_sym_open] = ACTIONS(4808), + [anon_sym_vararg] = ACTIONS(4808), + [anon_sym_noinline] = ACTIONS(4808), + [anon_sym_crossinline] = ACTIONS(4808), + [anon_sym_expect] = ACTIONS(4808), + [anon_sym_actual] = ACTIONS(4808), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4810), + [sym_safe_nav] = ACTIONS(4810), + [sym_multiline_comment] = ACTIONS(3), + }, + [3515] = { + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_RBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4070), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4068), + [anon_sym_sealed] = ACTIONS(4068), + [anon_sym_annotation] = ACTIONS(4068), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_lateinit] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_internal] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_tailrec] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_infix] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym_external] = ACTIONS(4068), + [sym_property_modifier] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_final] = ACTIONS(4068), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_vararg] = ACTIONS(4068), + [anon_sym_noinline] = ACTIONS(4068), + [anon_sym_crossinline] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + }, + [3516] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_RBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_RPAREN] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_DASH_GT] = ACTIONS(4970), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + }, + [3517] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_RBRACK] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [anon_sym_DASH_GT] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_while] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + }, + [3518] = { + [sym__alpha_identifier] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_RBRACK] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4822), + [anon_sym_RBRACE] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4822), + [anon_sym_COMMA] = ACTIONS(4822), + [anon_sym_RPAREN] = ACTIONS(4822), + [anon_sym_LT] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_where] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_get] = ACTIONS(4820), + [anon_sym_set] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_DASH_GT] = ACTIONS(4822), + [sym_label] = ACTIONS(4822), + [anon_sym_in] = ACTIONS(4820), + [anon_sym_while] = ACTIONS(4820), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_QMARK_COLON] = ACTIONS(4822), + [anon_sym_AMP_AMP] = ACTIONS(4822), + [anon_sym_PIPE_PIPE] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4820), + [anon_sym_COLON_COLON] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4822), + [anon_sym_DASH_EQ] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4822), + [anon_sym_SLASH_EQ] = ACTIONS(4822), + [anon_sym_PERCENT_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4822), + [anon_sym_BANGin] = ACTIONS(4822), + [anon_sym_is] = ACTIONS(4820), + [anon_sym_BANGis] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4822), + [anon_sym_PLUS_PLUS] = ACTIONS(4822), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_BANG_BANG] = ACTIONS(4822), + [anon_sym_suspend] = ACTIONS(4820), + [anon_sym_sealed] = ACTIONS(4820), + [anon_sym_annotation] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4820), + [anon_sym_inner] = ACTIONS(4820), + [anon_sym_value] = ACTIONS(4820), + [anon_sym_override] = ACTIONS(4820), + [anon_sym_lateinit] = ACTIONS(4820), + [anon_sym_public] = ACTIONS(4820), + [anon_sym_private] = ACTIONS(4820), + [anon_sym_internal] = ACTIONS(4820), + [anon_sym_protected] = ACTIONS(4820), + [anon_sym_tailrec] = ACTIONS(4820), + [anon_sym_operator] = ACTIONS(4820), + [anon_sym_infix] = ACTIONS(4820), + [anon_sym_inline] = ACTIONS(4820), + [anon_sym_external] = ACTIONS(4820), + [sym_property_modifier] = ACTIONS(4820), + [anon_sym_abstract] = ACTIONS(4820), + [anon_sym_final] = ACTIONS(4820), + [anon_sym_open] = ACTIONS(4820), + [anon_sym_vararg] = ACTIONS(4820), + [anon_sym_noinline] = ACTIONS(4820), + [anon_sym_crossinline] = ACTIONS(4820), + [anon_sym_expect] = ACTIONS(4820), + [anon_sym_actual] = ACTIONS(4820), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4822), + [sym_safe_nav] = ACTIONS(4822), + [sym_multiline_comment] = ACTIONS(3), + }, + [3519] = { + [sym_type_constraints] = STATE(3646), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3520] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + }, + [3521] = { + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4906), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_while] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_suspend] = ACTIONS(4904), + [anon_sym_sealed] = ACTIONS(4904), + [anon_sym_annotation] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_override] = ACTIONS(4904), + [anon_sym_lateinit] = ACTIONS(4904), + [anon_sym_public] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4904), + [anon_sym_internal] = ACTIONS(4904), + [anon_sym_protected] = ACTIONS(4904), + [anon_sym_tailrec] = ACTIONS(4904), + [anon_sym_operator] = ACTIONS(4904), + [anon_sym_infix] = ACTIONS(4904), + [anon_sym_inline] = ACTIONS(4904), + [anon_sym_external] = ACTIONS(4904), + [sym_property_modifier] = ACTIONS(4904), + [anon_sym_abstract] = ACTIONS(4904), + [anon_sym_final] = ACTIONS(4904), + [anon_sym_open] = ACTIONS(4904), + [anon_sym_vararg] = ACTIONS(4904), + [anon_sym_noinline] = ACTIONS(4904), + [anon_sym_crossinline] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), + [sym_multiline_comment] = ACTIONS(3), + }, + [3522] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_DASH_GT] = ACTIONS(4914), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_while] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_suspend] = ACTIONS(4912), + [anon_sym_sealed] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_override] = ACTIONS(4912), + [anon_sym_lateinit] = ACTIONS(4912), + [anon_sym_public] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4912), + [anon_sym_internal] = ACTIONS(4912), + [anon_sym_protected] = ACTIONS(4912), + [anon_sym_tailrec] = ACTIONS(4912), + [anon_sym_operator] = ACTIONS(4912), + [anon_sym_infix] = ACTIONS(4912), + [anon_sym_inline] = ACTIONS(4912), + [anon_sym_external] = ACTIONS(4912), + [sym_property_modifier] = ACTIONS(4912), + [anon_sym_abstract] = ACTIONS(4912), + [anon_sym_final] = ACTIONS(4912), + [anon_sym_open] = ACTIONS(4912), + [anon_sym_vararg] = ACTIONS(4912), + [anon_sym_noinline] = ACTIONS(4912), + [anon_sym_crossinline] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), + [sym_multiline_comment] = ACTIONS(3), + }, + [3523] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_DASH_GT] = ACTIONS(4918), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_suspend] = ACTIONS(4916), + [anon_sym_sealed] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_override] = ACTIONS(4916), + [anon_sym_lateinit] = ACTIONS(4916), + [anon_sym_public] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4916), + [anon_sym_internal] = ACTIONS(4916), + [anon_sym_protected] = ACTIONS(4916), + [anon_sym_tailrec] = ACTIONS(4916), + [anon_sym_operator] = ACTIONS(4916), + [anon_sym_infix] = ACTIONS(4916), + [anon_sym_inline] = ACTIONS(4916), + [anon_sym_external] = ACTIONS(4916), + [sym_property_modifier] = ACTIONS(4916), + [anon_sym_abstract] = ACTIONS(4916), + [anon_sym_final] = ACTIONS(4916), + [anon_sym_open] = ACTIONS(4916), + [anon_sym_vararg] = ACTIONS(4916), + [anon_sym_noinline] = ACTIONS(4916), + [anon_sym_crossinline] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), + [sym_multiline_comment] = ACTIONS(3), + }, + [3524] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_RBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4954), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_suspend] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_lateinit] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_tailrec] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4952), + [anon_sym_infix] = ACTIONS(4952), + [anon_sym_inline] = ACTIONS(4952), + [anon_sym_external] = ACTIONS(4952), + [sym_property_modifier] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_final] = ACTIONS(4952), + [anon_sym_open] = ACTIONS(4952), + [anon_sym_vararg] = ACTIONS(4952), + [anon_sym_noinline] = ACTIONS(4952), + [anon_sym_crossinline] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + }, + [3525] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_DASH_GT] = ACTIONS(4958), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_suspend] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_lateinit] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_tailrec] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4956), + [anon_sym_infix] = ACTIONS(4956), + [anon_sym_inline] = ACTIONS(4956), + [anon_sym_external] = ACTIONS(4956), + [sym_property_modifier] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_final] = ACTIONS(4956), + [anon_sym_open] = ACTIONS(4956), + [anon_sym_vararg] = ACTIONS(4956), + [anon_sym_noinline] = ACTIONS(4956), + [anon_sym_crossinline] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + }, + [3526] = { + [sym__alpha_identifier] = ACTIONS(5046), + [anon_sym_AT] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_as] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_where] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_get] = ACTIONS(5046), + [anon_sym_set] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_label] = ACTIONS(5048), + [anon_sym_in] = ACTIONS(5046), + [anon_sym_while] = ACTIONS(5046), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_QMARK_COLON] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5048), + [anon_sym_DASH_EQ] = ACTIONS(5048), + [anon_sym_STAR_EQ] = ACTIONS(5048), + [anon_sym_SLASH_EQ] = ACTIONS(5048), + [anon_sym_PERCENT_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_BANGin] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5046), + [anon_sym_BANGis] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_as_QMARK] = ACTIONS(5048), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_BANG_BANG] = ACTIONS(5048), + [anon_sym_suspend] = ACTIONS(5046), + [anon_sym_sealed] = ACTIONS(5046), + [anon_sym_annotation] = ACTIONS(5046), + [anon_sym_data] = ACTIONS(5046), + [anon_sym_inner] = ACTIONS(5046), + [anon_sym_value] = ACTIONS(5046), + [anon_sym_override] = ACTIONS(5046), + [anon_sym_lateinit] = ACTIONS(5046), + [anon_sym_public] = ACTIONS(5046), + [anon_sym_private] = ACTIONS(5046), + [anon_sym_internal] = ACTIONS(5046), + [anon_sym_protected] = ACTIONS(5046), + [anon_sym_tailrec] = ACTIONS(5046), + [anon_sym_operator] = ACTIONS(5046), + [anon_sym_infix] = ACTIONS(5046), + [anon_sym_inline] = ACTIONS(5046), + [anon_sym_external] = ACTIONS(5046), + [sym_property_modifier] = ACTIONS(5046), + [anon_sym_abstract] = ACTIONS(5046), + [anon_sym_final] = ACTIONS(5046), + [anon_sym_open] = ACTIONS(5046), + [anon_sym_vararg] = ACTIONS(5046), + [anon_sym_noinline] = ACTIONS(5046), + [anon_sym_crossinline] = ACTIONS(5046), + [anon_sym_expect] = ACTIONS(5046), + [anon_sym_actual] = ACTIONS(5046), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5048), + [sym_safe_nav] = ACTIONS(5048), + [sym_multiline_comment] = ACTIONS(3), + }, + [3527] = { + [sym__alpha_identifier] = ACTIONS(5062), + [anon_sym_AT] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_as] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_where] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_get] = ACTIONS(5062), + [anon_sym_set] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5064), + [sym_label] = ACTIONS(5064), + [anon_sym_in] = ACTIONS(5062), + [anon_sym_while] = ACTIONS(5062), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_QMARK_COLON] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_else] = ACTIONS(5062), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_PERCENT_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_BANGin] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5062), + [anon_sym_BANGis] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_as_QMARK] = ACTIONS(5064), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_BANG_BANG] = ACTIONS(5064), + [anon_sym_suspend] = ACTIONS(5062), + [anon_sym_sealed] = ACTIONS(5062), + [anon_sym_annotation] = ACTIONS(5062), + [anon_sym_data] = ACTIONS(5062), + [anon_sym_inner] = ACTIONS(5062), + [anon_sym_value] = ACTIONS(5062), + [anon_sym_override] = ACTIONS(5062), + [anon_sym_lateinit] = ACTIONS(5062), + [anon_sym_public] = ACTIONS(5062), + [anon_sym_private] = ACTIONS(5062), + [anon_sym_internal] = ACTIONS(5062), + [anon_sym_protected] = ACTIONS(5062), + [anon_sym_tailrec] = ACTIONS(5062), + [anon_sym_operator] = ACTIONS(5062), + [anon_sym_infix] = ACTIONS(5062), + [anon_sym_inline] = ACTIONS(5062), + [anon_sym_external] = ACTIONS(5062), + [sym_property_modifier] = ACTIONS(5062), + [anon_sym_abstract] = ACTIONS(5062), + [anon_sym_final] = ACTIONS(5062), + [anon_sym_open] = ACTIONS(5062), + [anon_sym_vararg] = ACTIONS(5062), + [anon_sym_noinline] = ACTIONS(5062), + [anon_sym_crossinline] = ACTIONS(5062), + [anon_sym_expect] = ACTIONS(5062), + [anon_sym_actual] = ACTIONS(5062), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5064), + [sym_safe_nav] = ACTIONS(5064), + [sym_multiline_comment] = ACTIONS(3), + }, + [3528] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3529] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(6845), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3530] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4990), + [sym_label] = ACTIONS(4990), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + }, + [3531] = { + [sym__alpha_identifier] = ACTIONS(4568), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_EQ] = ACTIONS(4570), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_by] = ACTIONS(4568), + [anon_sym_where] = ACTIONS(4568), + [anon_sym_object] = ACTIONS(4568), + [anon_sym_fun] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_get] = ACTIONS(4568), + [anon_sym_set] = ACTIONS(4568), + [anon_sym_this] = ACTIONS(4568), + [anon_sym_super] = ACTIONS(4568), + [anon_sym_STAR] = ACTIONS(4570), + [sym_label] = ACTIONS(4568), + [anon_sym_in] = ACTIONS(4568), + [anon_sym_if] = ACTIONS(4568), + [anon_sym_else] = ACTIONS(4568), + [anon_sym_when] = ACTIONS(4568), + [anon_sym_try] = ACTIONS(4568), + [anon_sym_throw] = ACTIONS(4568), + [anon_sym_return] = ACTIONS(4568), + [anon_sym_continue] = ACTIONS(4568), + [anon_sym_break] = ACTIONS(4568), + [anon_sym_COLON_COLON] = ACTIONS(4570), + [anon_sym_BANGin] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4568), + [anon_sym_BANGis] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_BANG] = ACTIONS(4568), + [anon_sym_suspend] = ACTIONS(4568), + [anon_sym_sealed] = ACTIONS(4568), + [anon_sym_annotation] = ACTIONS(4568), + [anon_sym_data] = ACTIONS(4568), + [anon_sym_inner] = ACTIONS(4568), + [anon_sym_value] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_lateinit] = ACTIONS(4568), + [anon_sym_public] = ACTIONS(4568), + [anon_sym_private] = ACTIONS(4568), + [anon_sym_internal] = ACTIONS(4568), + [anon_sym_protected] = ACTIONS(4568), + [anon_sym_tailrec] = ACTIONS(4568), + [anon_sym_operator] = ACTIONS(4568), + [anon_sym_infix] = ACTIONS(4568), + [anon_sym_inline] = ACTIONS(4568), + [anon_sym_external] = ACTIONS(4568), + [sym_property_modifier] = ACTIONS(4568), + [anon_sym_abstract] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_open] = ACTIONS(4568), + [anon_sym_vararg] = ACTIONS(4568), + [anon_sym_noinline] = ACTIONS(4568), + [anon_sym_crossinline] = ACTIONS(4568), + [anon_sym_expect] = ACTIONS(4568), + [anon_sym_actual] = ACTIONS(4568), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4570), + [anon_sym_continue_AT] = ACTIONS(4570), + [anon_sym_break_AT] = ACTIONS(4570), + [anon_sym_this_AT] = ACTIONS(4570), + [anon_sym_super_AT] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4570), + [sym_integer_literal] = ACTIONS(4568), + [sym_hex_literal] = ACTIONS(4570), + [sym_bin_literal] = ACTIONS(4570), + [anon_sym_true] = ACTIONS(4568), + [anon_sym_false] = ACTIONS(4568), + [anon_sym_SQUOTE] = ACTIONS(4570), + [sym_null_literal] = ACTIONS(4568), + [sym__backtick_identifier] = ACTIONS(4570), + [sym__automatic_semicolon] = ACTIONS(4570), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4570), + }, + [3532] = { + [sym__alpha_identifier] = ACTIONS(4572), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4572), + [anon_sym_where] = ACTIONS(4572), + [anon_sym_object] = ACTIONS(4572), + [anon_sym_fun] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4572), + [anon_sym_set] = ACTIONS(4572), + [anon_sym_this] = ACTIONS(4572), + [anon_sym_super] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4575), + [sym_label] = ACTIONS(4572), + [anon_sym_in] = ACTIONS(4572), + [anon_sym_if] = ACTIONS(4572), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_when] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4572), + [anon_sym_throw] = ACTIONS(4572), + [anon_sym_return] = ACTIONS(4572), + [anon_sym_continue] = ACTIONS(4572), + [anon_sym_break] = ACTIONS(4572), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4572), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4572), + [anon_sym_suspend] = ACTIONS(4572), + [anon_sym_sealed] = ACTIONS(4572), + [anon_sym_annotation] = ACTIONS(4572), + [anon_sym_data] = ACTIONS(4572), + [anon_sym_inner] = ACTIONS(4572), + [anon_sym_value] = ACTIONS(4572), + [anon_sym_override] = ACTIONS(4572), + [anon_sym_lateinit] = ACTIONS(4572), + [anon_sym_public] = ACTIONS(4572), + [anon_sym_private] = ACTIONS(4572), + [anon_sym_internal] = ACTIONS(4572), + [anon_sym_protected] = ACTIONS(4572), + [anon_sym_tailrec] = ACTIONS(4572), + [anon_sym_operator] = ACTIONS(4572), + [anon_sym_infix] = ACTIONS(4572), + [anon_sym_inline] = ACTIONS(4572), + [anon_sym_external] = ACTIONS(4572), + [sym_property_modifier] = ACTIONS(4572), + [anon_sym_abstract] = ACTIONS(4572), + [anon_sym_final] = ACTIONS(4572), + [anon_sym_open] = ACTIONS(4572), + [anon_sym_vararg] = ACTIONS(4572), + [anon_sym_noinline] = ACTIONS(4572), + [anon_sym_crossinline] = ACTIONS(4572), + [anon_sym_expect] = ACTIONS(4572), + [anon_sym_actual] = ACTIONS(4572), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4575), + [anon_sym_continue_AT] = ACTIONS(4575), + [anon_sym_break_AT] = ACTIONS(4575), + [anon_sym_this_AT] = ACTIONS(4575), + [anon_sym_super_AT] = ACTIONS(4575), + [sym_real_literal] = ACTIONS(4575), + [sym_integer_literal] = ACTIONS(4572), + [sym_hex_literal] = ACTIONS(4575), + [sym_bin_literal] = ACTIONS(4575), + [anon_sym_true] = ACTIONS(4572), + [anon_sym_false] = ACTIONS(4572), + [anon_sym_SQUOTE] = ACTIONS(4575), + [sym_null_literal] = ACTIONS(4572), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4575), + }, + [3533] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_as] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_COMMA] = ACTIONS(4212), + [anon_sym_by] = ACTIONS(4210), + [anon_sym_LT] = ACTIONS(4210), + [anon_sym_GT] = ACTIONS(4210), + [anon_sym_where] = ACTIONS(4210), + [anon_sym_SEMI] = ACTIONS(4212), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4210), + [sym__quest] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4210), + [sym_label] = ACTIONS(4212), + [anon_sym_in] = ACTIONS(4210), + [anon_sym_DOT_DOT] = ACTIONS(4212), + [anon_sym_QMARK_COLON] = ACTIONS(4212), + [anon_sym_AMP_AMP] = ACTIONS(4212), + [anon_sym_PIPE_PIPE] = ACTIONS(4212), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS_EQ] = ACTIONS(4212), + [anon_sym_DASH_EQ] = ACTIONS(4212), + [anon_sym_STAR_EQ] = ACTIONS(4212), + [anon_sym_SLASH_EQ] = ACTIONS(4212), + [anon_sym_PERCENT_EQ] = ACTIONS(4212), + [anon_sym_BANG_EQ] = ACTIONS(4210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4212), + [anon_sym_EQ_EQ] = ACTIONS(4210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4212), + [anon_sym_LT_EQ] = ACTIONS(4212), + [anon_sym_GT_EQ] = ACTIONS(4212), + [anon_sym_BANGin] = ACTIONS(4212), + [anon_sym_is] = ACTIONS(4210), + [anon_sym_BANGis] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_SLASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_as_QMARK] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4212), + [sym__automatic_semicolon] = ACTIONS(4212), + [sym_safe_nav] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + }, + [3534] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4986), + [sym_label] = ACTIONS(4986), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + }, + [3535] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6849), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [3536] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6851), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [3537] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym_COMMA] = ACTIONS(4216), + [anon_sym_by] = ACTIONS(4214), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4216), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4214), + [sym__quest] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4216), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4216), + [anon_sym_QMARK_COLON] = ACTIONS(4216), + [anon_sym_AMP_AMP] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4216), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4216), + [anon_sym_PLUS_EQ] = ACTIONS(4216), + [anon_sym_DASH_EQ] = ACTIONS(4216), + [anon_sym_STAR_EQ] = ACTIONS(4216), + [anon_sym_SLASH_EQ] = ACTIONS(4216), + [anon_sym_PERCENT_EQ] = ACTIONS(4216), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4216), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4216), + [anon_sym_LT_EQ] = ACTIONS(4216), + [anon_sym_GT_EQ] = ACTIONS(4216), + [anon_sym_BANGin] = ACTIONS(4216), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4216), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_BANG_BANG] = ACTIONS(4216), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4216), + [sym__automatic_semicolon] = ACTIONS(4216), + [sym_safe_nav] = ACTIONS(4216), + [sym_multiline_comment] = ACTIONS(3), + }, + [3538] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(6853), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [3539] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_DASH_GT] = ACTIONS(4982), + [sym_label] = ACTIONS(4982), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + }, + [3540] = { + [sym__alpha_identifier] = ACTIONS(5066), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_as] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_where] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_get] = ACTIONS(5066), + [anon_sym_set] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_DASH_GT] = ACTIONS(5068), + [sym_label] = ACTIONS(5068), + [anon_sym_in] = ACTIONS(5066), + [anon_sym_while] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_QMARK_COLON] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_COLON_COLON] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_PERCENT_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5066), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5066), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_BANGin] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5066), + [anon_sym_BANGis] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5066), + [anon_sym_as_QMARK] = ACTIONS(5068), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_BANG_BANG] = ACTIONS(5068), + [anon_sym_suspend] = ACTIONS(5066), + [anon_sym_sealed] = ACTIONS(5066), + [anon_sym_annotation] = ACTIONS(5066), + [anon_sym_data] = ACTIONS(5066), + [anon_sym_inner] = ACTIONS(5066), + [anon_sym_value] = ACTIONS(5066), + [anon_sym_override] = ACTIONS(5066), + [anon_sym_lateinit] = ACTIONS(5066), + [anon_sym_public] = ACTIONS(5066), + [anon_sym_private] = ACTIONS(5066), + [anon_sym_internal] = ACTIONS(5066), + [anon_sym_protected] = ACTIONS(5066), + [anon_sym_tailrec] = ACTIONS(5066), + [anon_sym_operator] = ACTIONS(5066), + [anon_sym_infix] = ACTIONS(5066), + [anon_sym_inline] = ACTIONS(5066), + [anon_sym_external] = ACTIONS(5066), + [sym_property_modifier] = ACTIONS(5066), + [anon_sym_abstract] = ACTIONS(5066), + [anon_sym_final] = ACTIONS(5066), + [anon_sym_open] = ACTIONS(5066), + [anon_sym_vararg] = ACTIONS(5066), + [anon_sym_noinline] = ACTIONS(5066), + [anon_sym_crossinline] = ACTIONS(5066), + [anon_sym_expect] = ACTIONS(5066), + [anon_sym_actual] = ACTIONS(5066), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5068), + [sym_safe_nav] = ACTIONS(5068), + [sym_multiline_comment] = ACTIONS(3), + }, + [3541] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_RBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [anon_sym_DASH_GT] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_while] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [3542] = { + [sym__alpha_identifier] = ACTIONS(5091), + [anon_sym_AT] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_RBRACK] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_RPAREN] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5091), + [anon_sym_where] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_get] = ACTIONS(5091), + [anon_sym_set] = ACTIONS(5091), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5093), + [sym_label] = ACTIONS(5093), + [anon_sym_in] = ACTIONS(5091), + [anon_sym_while] = ACTIONS(5091), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_QMARK_COLON] = ACTIONS(5093), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_else] = ACTIONS(5091), + [anon_sym_COLON_COLON] = ACTIONS(5093), + [anon_sym_PLUS_EQ] = ACTIONS(5093), + [anon_sym_DASH_EQ] = ACTIONS(5093), + [anon_sym_STAR_EQ] = ACTIONS(5093), + [anon_sym_SLASH_EQ] = ACTIONS(5093), + [anon_sym_PERCENT_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_BANGin] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5091), + [anon_sym_BANGis] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5091), + [anon_sym_SLASH] = ACTIONS(5091), + [anon_sym_PERCENT] = ACTIONS(5091), + [anon_sym_as_QMARK] = ACTIONS(5093), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_BANG_BANG] = ACTIONS(5093), + [anon_sym_suspend] = ACTIONS(5091), + [anon_sym_sealed] = ACTIONS(5091), + [anon_sym_annotation] = ACTIONS(5091), + [anon_sym_data] = ACTIONS(5091), + [anon_sym_inner] = ACTIONS(5091), + [anon_sym_value] = ACTIONS(5091), + [anon_sym_override] = ACTIONS(5091), + [anon_sym_lateinit] = ACTIONS(5091), + [anon_sym_public] = ACTIONS(5091), + [anon_sym_private] = ACTIONS(5091), + [anon_sym_internal] = ACTIONS(5091), + [anon_sym_protected] = ACTIONS(5091), + [anon_sym_tailrec] = ACTIONS(5091), + [anon_sym_operator] = ACTIONS(5091), + [anon_sym_infix] = ACTIONS(5091), + [anon_sym_inline] = ACTIONS(5091), + [anon_sym_external] = ACTIONS(5091), + [sym_property_modifier] = ACTIONS(5091), + [anon_sym_abstract] = ACTIONS(5091), + [anon_sym_final] = ACTIONS(5091), + [anon_sym_open] = ACTIONS(5091), + [anon_sym_vararg] = ACTIONS(5091), + [anon_sym_noinline] = ACTIONS(5091), + [anon_sym_crossinline] = ACTIONS(5091), + [anon_sym_expect] = ACTIONS(5091), + [anon_sym_actual] = ACTIONS(5091), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5093), + [sym_safe_nav] = ACTIONS(5093), + [sym_multiline_comment] = ACTIONS(3), + }, + [3543] = { + [sym_function_body] = STATE(3969), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(6857), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [3544] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_RBRACK] = ACTIONS(5101), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_RPAREN] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [anon_sym_DASH_GT] = ACTIONS(5101), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_while] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + }, + [3545] = { + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_as] = ACTIONS(4127), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_COMMA] = ACTIONS(4129), + [anon_sym_by] = ACTIONS(4127), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_where] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_AMP] = ACTIONS(4127), + [sym__quest] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4127), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_QMARK_COLON] = ACTIONS(4129), + [anon_sym_AMP_AMP] = ACTIONS(4129), + [anon_sym_PIPE_PIPE] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [anon_sym_DASH_EQ] = ACTIONS(4129), + [anon_sym_STAR_EQ] = ACTIONS(4129), + [anon_sym_SLASH_EQ] = ACTIONS(4129), + [anon_sym_PERCENT_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4129), + [anon_sym_LT_EQ] = ACTIONS(4129), + [anon_sym_GT_EQ] = ACTIONS(4129), + [anon_sym_BANGin] = ACTIONS(4129), + [anon_sym_is] = ACTIONS(4127), + [anon_sym_BANGis] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_as_QMARK] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4129), + [sym__automatic_semicolon] = ACTIONS(4129), + [sym_safe_nav] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + }, + [3546] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_label] = ACTIONS(4978), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + }, + [3547] = { + [sym__alpha_identifier] = ACTIONS(4218), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_as] = ACTIONS(4218), + [anon_sym_EQ] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_by] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4218), + [anon_sym_GT] = ACTIONS(4218), + [anon_sym_where] = ACTIONS(4218), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4218), + [anon_sym_set] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [sym__quest] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4218), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4218), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4218), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_SLASH] = ACTIONS(4218), + [anon_sym_PERCENT] = ACTIONS(4218), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4218), + [anon_sym_sealed] = ACTIONS(4218), + [anon_sym_annotation] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4218), + [anon_sym_inner] = ACTIONS(4218), + [anon_sym_value] = ACTIONS(4218), + [anon_sym_override] = ACTIONS(4218), + [anon_sym_lateinit] = ACTIONS(4218), + [anon_sym_public] = ACTIONS(4218), + [anon_sym_private] = ACTIONS(4218), + [anon_sym_internal] = ACTIONS(4218), + [anon_sym_protected] = ACTIONS(4218), + [anon_sym_tailrec] = ACTIONS(4218), + [anon_sym_operator] = ACTIONS(4218), + [anon_sym_infix] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym_external] = ACTIONS(4218), + [sym_property_modifier] = ACTIONS(4218), + [anon_sym_abstract] = ACTIONS(4218), + [anon_sym_final] = ACTIONS(4218), + [anon_sym_open] = ACTIONS(4218), + [anon_sym_vararg] = ACTIONS(4218), + [anon_sym_noinline] = ACTIONS(4218), + [anon_sym_crossinline] = ACTIONS(4218), + [anon_sym_expect] = ACTIONS(4218), + [anon_sym_actual] = ACTIONS(4218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + }, + [3548] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_RBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4437), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_while] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [3549] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(5133), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), + }, + [3550] = { + [sym_function_body] = STATE(3093), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [3551] = { + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_DASH_GT] = ACTIONS(4172), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_while] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3552] = { + [sym__alpha_identifier] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_DASH_GT] = ACTIONS(1586), + [sym_label] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + }, + [3553] = { + [ts_builtin_sym_end] = ACTIONS(6861), + [sym__alpha_identifier] = ACTIONS(6863), + [anon_sym_AT] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6861), + [anon_sym_package] = ACTIONS(6863), + [anon_sym_import] = ACTIONS(6863), + [anon_sym_typealias] = ACTIONS(6863), + [anon_sym_class] = ACTIONS(6863), + [anon_sym_interface] = ACTIONS(6863), + [anon_sym_enum] = ACTIONS(6863), + [anon_sym_LBRACE] = ACTIONS(6861), + [anon_sym_LPAREN] = ACTIONS(6861), + [anon_sym_val] = ACTIONS(6863), + [anon_sym_var] = ACTIONS(6863), + [anon_sym_object] = ACTIONS(6863), + [anon_sym_fun] = ACTIONS(6863), + [anon_sym_get] = ACTIONS(6863), + [anon_sym_set] = ACTIONS(6863), + [anon_sym_this] = ACTIONS(6863), + [anon_sym_super] = ACTIONS(6863), + [anon_sym_STAR] = ACTIONS(6861), + [sym_label] = ACTIONS(6863), + [anon_sym_for] = ACTIONS(6863), + [anon_sym_while] = ACTIONS(6863), + [anon_sym_do] = ACTIONS(6863), + [anon_sym_if] = ACTIONS(6863), + [anon_sym_when] = ACTIONS(6863), + [anon_sym_try] = ACTIONS(6863), + [anon_sym_throw] = ACTIONS(6863), + [anon_sym_return] = ACTIONS(6863), + [anon_sym_continue] = ACTIONS(6863), + [anon_sym_break] = ACTIONS(6863), + [anon_sym_COLON_COLON] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6863), + [anon_sym_PLUS_PLUS] = ACTIONS(6861), + [anon_sym_DASH_DASH] = ACTIONS(6861), + [anon_sym_BANG] = ACTIONS(6861), + [anon_sym_suspend] = ACTIONS(6863), + [anon_sym_sealed] = ACTIONS(6863), + [anon_sym_annotation] = ACTIONS(6863), + [anon_sym_data] = ACTIONS(6863), + [anon_sym_inner] = ACTIONS(6863), + [anon_sym_value] = ACTIONS(6863), + [anon_sym_override] = ACTIONS(6863), + [anon_sym_lateinit] = ACTIONS(6863), + [anon_sym_public] = ACTIONS(6863), + [anon_sym_private] = ACTIONS(6863), + [anon_sym_internal] = ACTIONS(6863), + [anon_sym_protected] = ACTIONS(6863), + [anon_sym_tailrec] = ACTIONS(6863), + [anon_sym_operator] = ACTIONS(6863), + [anon_sym_infix] = ACTIONS(6863), + [anon_sym_inline] = ACTIONS(6863), + [anon_sym_external] = ACTIONS(6863), + [sym_property_modifier] = ACTIONS(6863), + [anon_sym_abstract] = ACTIONS(6863), + [anon_sym_final] = ACTIONS(6863), + [anon_sym_open] = ACTIONS(6863), + [anon_sym_vararg] = ACTIONS(6863), + [anon_sym_noinline] = ACTIONS(6863), + [anon_sym_crossinline] = ACTIONS(6863), + [anon_sym_expect] = ACTIONS(6863), + [anon_sym_actual] = ACTIONS(6863), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6861), + [anon_sym_continue_AT] = ACTIONS(6861), + [anon_sym_break_AT] = ACTIONS(6861), + [anon_sym_this_AT] = ACTIONS(6861), + [anon_sym_super_AT] = ACTIONS(6861), + [sym_real_literal] = ACTIONS(6861), + [sym_integer_literal] = ACTIONS(6863), + [sym_hex_literal] = ACTIONS(6861), + [sym_bin_literal] = ACTIONS(6861), + [anon_sym_true] = ACTIONS(6863), + [anon_sym_false] = ACTIONS(6863), + [anon_sym_SQUOTE] = ACTIONS(6861), + [sym_null_literal] = ACTIONS(6863), + [sym__backtick_identifier] = ACTIONS(6861), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6861), + }, + [3554] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(6865), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_label] = ACTIONS(5028), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_while] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_suspend] = ACTIONS(5026), + [anon_sym_sealed] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_lateinit] = ACTIONS(5026), + [anon_sym_public] = ACTIONS(5026), + [anon_sym_private] = ACTIONS(5026), + [anon_sym_internal] = ACTIONS(5026), + [anon_sym_protected] = ACTIONS(5026), + [anon_sym_tailrec] = ACTIONS(5026), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_infix] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym_external] = ACTIONS(5026), + [sym_property_modifier] = ACTIONS(5026), + [anon_sym_abstract] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_open] = ACTIONS(5026), + [anon_sym_vararg] = ACTIONS(5026), + [anon_sym_noinline] = ACTIONS(5026), + [anon_sym_crossinline] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + }, + [3555] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_DASH_GT] = ACTIONS(5155), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_while] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + }, + [3556] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_RBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4437), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_while] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [3557] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_DASH_GT] = ACTIONS(5151), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_while] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + }, + [3558] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_RBRACK] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_while] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + }, + [3559] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_RBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_RPAREN] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_DASH_GT] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3560] = { + [sym__alpha_identifier] = ACTIONS(5127), + [anon_sym_AT] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5127), + [anon_sym_EQ] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(5127), + [anon_sym_set] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [anon_sym_DASH_GT] = ACTIONS(5129), + [sym_label] = ACTIONS(5129), + [anon_sym_in] = ACTIONS(5127), + [anon_sym_while] = ACTIONS(5127), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_QMARK_COLON] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_else] = ACTIONS(5127), + [anon_sym_COLON_COLON] = ACTIONS(5129), + [anon_sym_PLUS_EQ] = ACTIONS(5129), + [anon_sym_DASH_EQ] = ACTIONS(5129), + [anon_sym_STAR_EQ] = ACTIONS(5129), + [anon_sym_SLASH_EQ] = ACTIONS(5129), + [anon_sym_PERCENT_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_BANGin] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5127), + [anon_sym_BANGis] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5127), + [anon_sym_as_QMARK] = ACTIONS(5129), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_BANG_BANG] = ACTIONS(5129), + [anon_sym_suspend] = ACTIONS(5127), + [anon_sym_sealed] = ACTIONS(5127), + [anon_sym_annotation] = ACTIONS(5127), + [anon_sym_data] = ACTIONS(5127), + [anon_sym_inner] = ACTIONS(5127), + [anon_sym_value] = ACTIONS(5127), + [anon_sym_override] = ACTIONS(5127), + [anon_sym_lateinit] = ACTIONS(5127), + [anon_sym_public] = ACTIONS(5127), + [anon_sym_private] = ACTIONS(5127), + [anon_sym_internal] = ACTIONS(5127), + [anon_sym_protected] = ACTIONS(5127), + [anon_sym_tailrec] = ACTIONS(5127), + [anon_sym_operator] = ACTIONS(5127), + [anon_sym_infix] = ACTIONS(5127), + [anon_sym_inline] = ACTIONS(5127), + [anon_sym_external] = ACTIONS(5127), + [sym_property_modifier] = ACTIONS(5127), + [anon_sym_abstract] = ACTIONS(5127), + [anon_sym_final] = ACTIONS(5127), + [anon_sym_open] = ACTIONS(5127), + [anon_sym_vararg] = ACTIONS(5127), + [anon_sym_noinline] = ACTIONS(5127), + [anon_sym_crossinline] = ACTIONS(5127), + [anon_sym_expect] = ACTIONS(5127), + [anon_sym_actual] = ACTIONS(5127), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5129), + [sym_safe_nav] = ACTIONS(5129), + [sym_multiline_comment] = ACTIONS(3), + }, + [3561] = { + [aux_sym_type_constraints_repeat1] = STATE(3561), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6867), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [3562] = { + [sym__alpha_identifier] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_as] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_where] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(5014), + [anon_sym_set] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_DASH_GT] = ACTIONS(5016), + [sym_label] = ACTIONS(5016), + [anon_sym_in] = ACTIONS(5014), + [anon_sym_while] = ACTIONS(5014), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_QMARK_COLON] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_BANGin] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_BANGis] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_as_QMARK] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_BANG_BANG] = ACTIONS(5016), + [anon_sym_suspend] = ACTIONS(5014), + [anon_sym_sealed] = ACTIONS(5014), + [anon_sym_annotation] = ACTIONS(5014), + [anon_sym_data] = ACTIONS(5014), + [anon_sym_inner] = ACTIONS(5014), + [anon_sym_value] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_lateinit] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_tailrec] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym_external] = ACTIONS(5014), + [sym_property_modifier] = ACTIONS(5014), + [anon_sym_abstract] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_vararg] = ACTIONS(5014), + [anon_sym_noinline] = ACTIONS(5014), + [anon_sym_crossinline] = ACTIONS(5014), + [anon_sym_expect] = ACTIONS(5014), + [anon_sym_actual] = ACTIONS(5014), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5016), + [sym_safe_nav] = ACTIONS(5016), + [sym_multiline_comment] = ACTIONS(3), + }, + [3563] = { + [sym__alpha_identifier] = ACTIONS(4648), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_EQ] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_by] = ACTIONS(4648), + [anon_sym_where] = ACTIONS(4648), + [anon_sym_object] = ACTIONS(4648), + [anon_sym_fun] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4648), + [anon_sym_set] = ACTIONS(4648), + [anon_sym_this] = ACTIONS(4648), + [anon_sym_super] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4650), + [sym_label] = ACTIONS(4648), + [anon_sym_in] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_when] = ACTIONS(4648), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_throw] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_BANGin] = ACTIONS(4650), + [anon_sym_is] = ACTIONS(4648), + [anon_sym_BANGis] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_BANG] = ACTIONS(4648), + [anon_sym_suspend] = ACTIONS(4648), + [anon_sym_sealed] = ACTIONS(4648), + [anon_sym_annotation] = ACTIONS(4648), + [anon_sym_data] = ACTIONS(4648), + [anon_sym_inner] = ACTIONS(4648), + [anon_sym_value] = ACTIONS(4648), + [anon_sym_override] = ACTIONS(4648), + [anon_sym_lateinit] = ACTIONS(4648), + [anon_sym_public] = ACTIONS(4648), + [anon_sym_private] = ACTIONS(4648), + [anon_sym_internal] = ACTIONS(4648), + [anon_sym_protected] = ACTIONS(4648), + [anon_sym_tailrec] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_infix] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym_external] = ACTIONS(4648), + [sym_property_modifier] = ACTIONS(4648), + [anon_sym_abstract] = ACTIONS(4648), + [anon_sym_final] = ACTIONS(4648), + [anon_sym_open] = ACTIONS(4648), + [anon_sym_vararg] = ACTIONS(4648), + [anon_sym_noinline] = ACTIONS(4648), + [anon_sym_crossinline] = ACTIONS(4648), + [anon_sym_expect] = ACTIONS(4648), + [anon_sym_actual] = ACTIONS(4648), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4650), + [anon_sym_continue_AT] = ACTIONS(4650), + [anon_sym_break_AT] = ACTIONS(4650), + [anon_sym_this_AT] = ACTIONS(4650), + [anon_sym_super_AT] = ACTIONS(4650), + [sym_real_literal] = ACTIONS(4650), + [sym_integer_literal] = ACTIONS(4648), + [sym_hex_literal] = ACTIONS(4650), + [sym_bin_literal] = ACTIONS(4650), + [anon_sym_true] = ACTIONS(4648), + [anon_sym_false] = ACTIONS(4648), + [anon_sym_SQUOTE] = ACTIONS(4650), + [sym_null_literal] = ACTIONS(4648), + [sym__backtick_identifier] = ACTIONS(4650), + [sym__automatic_semicolon] = ACTIONS(4650), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4650), + }, + [3564] = { + [sym__alpha_identifier] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4707), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_by] = ACTIONS(4704), + [anon_sym_where] = ACTIONS(4704), + [anon_sym_object] = ACTIONS(4704), + [anon_sym_fun] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_get] = ACTIONS(4704), + [anon_sym_set] = ACTIONS(4704), + [anon_sym_this] = ACTIONS(4704), + [anon_sym_super] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4707), + [sym_label] = ACTIONS(4704), + [anon_sym_in] = ACTIONS(4704), + [anon_sym_if] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4704), + [anon_sym_when] = ACTIONS(4704), + [anon_sym_try] = ACTIONS(4704), + [anon_sym_throw] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4704), + [anon_sym_continue] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4704), + [anon_sym_COLON_COLON] = ACTIONS(4707), + [anon_sym_BANGin] = ACTIONS(4707), + [anon_sym_is] = ACTIONS(4704), + [anon_sym_BANGis] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_PLUS_PLUS] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4704), + [anon_sym_suspend] = ACTIONS(4704), + [anon_sym_sealed] = ACTIONS(4704), + [anon_sym_annotation] = ACTIONS(4704), + [anon_sym_data] = ACTIONS(4704), + [anon_sym_inner] = ACTIONS(4704), + [anon_sym_value] = ACTIONS(4704), + [anon_sym_override] = ACTIONS(4704), + [anon_sym_lateinit] = ACTIONS(4704), + [anon_sym_public] = ACTIONS(4704), + [anon_sym_private] = ACTIONS(4704), + [anon_sym_internal] = ACTIONS(4704), + [anon_sym_protected] = ACTIONS(4704), + [anon_sym_tailrec] = ACTIONS(4704), + [anon_sym_operator] = ACTIONS(4704), + [anon_sym_infix] = ACTIONS(4704), + [anon_sym_inline] = ACTIONS(4704), + [anon_sym_external] = ACTIONS(4704), + [sym_property_modifier] = ACTIONS(4704), + [anon_sym_abstract] = ACTIONS(4704), + [anon_sym_final] = ACTIONS(4704), + [anon_sym_open] = ACTIONS(4704), + [anon_sym_vararg] = ACTIONS(4704), + [anon_sym_noinline] = ACTIONS(4704), + [anon_sym_crossinline] = ACTIONS(4704), + [anon_sym_expect] = ACTIONS(4704), + [anon_sym_actual] = ACTIONS(4704), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4707), + [anon_sym_continue_AT] = ACTIONS(4707), + [anon_sym_break_AT] = ACTIONS(4707), + [anon_sym_this_AT] = ACTIONS(4707), + [anon_sym_super_AT] = ACTIONS(4707), + [sym_real_literal] = ACTIONS(4707), + [sym_integer_literal] = ACTIONS(4704), + [sym_hex_literal] = ACTIONS(4707), + [sym_bin_literal] = ACTIONS(4707), + [anon_sym_true] = ACTIONS(4704), + [anon_sym_false] = ACTIONS(4704), + [anon_sym_SQUOTE] = ACTIONS(4707), + [sym_null_literal] = ACTIONS(4704), + [sym__backtick_identifier] = ACTIONS(4707), + [sym__automatic_semicolon] = ACTIONS(4707), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4707), + }, + [3565] = { + [sym_type_constraints] = STATE(3876), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6870), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3566] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6874), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3567] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3568] = { + [sym_type_constraints] = STATE(3904), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6882), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3569] = { + [sym_type_constraints] = STATE(3907), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6884), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3570] = { + [sym_type_constraints] = STATE(3910), + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6886), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [3571] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(6888), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3572] = { + [sym_type_constraints] = STATE(3914), + [sym_function_body] = STATE(3231), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6890), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4134), + [anon_sym_fun] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_this] = ACTIONS(4134), + [anon_sym_super] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4134), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_when] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4136), + [anon_sym_continue_AT] = ACTIONS(4136), + [anon_sym_break_AT] = ACTIONS(4136), + [anon_sym_this_AT] = ACTIONS(4136), + [anon_sym_super_AT] = ACTIONS(4136), + [sym_real_literal] = ACTIONS(4136), + [sym_integer_literal] = ACTIONS(4134), + [sym_hex_literal] = ACTIONS(4136), + [sym_bin_literal] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4136), + [sym_null_literal] = ACTIONS(4134), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4136), + }, + [3573] = { + [sym_function_body] = STATE(3239), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(6892), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [3574] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(4994), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + }, + [3575] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3576] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(6874), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3577] = { + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [anon_sym_DASH_GT] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [3578] = { + [sym_type_constraints] = STATE(3762), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3579] = { + [sym_type_constraints] = STATE(3769), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3580] = { + [sym_type_constraints] = STATE(3777), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3581] = { + [sym_type_constraints] = STATE(3786), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3582] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_RBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_RPAREN] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_DASH_GT] = ACTIONS(4966), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_suspend] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_lateinit] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_tailrec] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4964), + [anon_sym_infix] = ACTIONS(4964), + [anon_sym_inline] = ACTIONS(4964), + [anon_sym_external] = ACTIONS(4964), + [sym_property_modifier] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_final] = ACTIONS(4964), + [anon_sym_open] = ACTIONS(4964), + [anon_sym_vararg] = ACTIONS(4964), + [anon_sym_noinline] = ACTIONS(4964), + [anon_sym_crossinline] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + }, + [3583] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_DASH_GT] = ACTIONS(4942), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_suspend] = ACTIONS(4940), + [anon_sym_sealed] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_override] = ACTIONS(4940), + [anon_sym_lateinit] = ACTIONS(4940), + [anon_sym_public] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4940), + [anon_sym_internal] = ACTIONS(4940), + [anon_sym_protected] = ACTIONS(4940), + [anon_sym_tailrec] = ACTIONS(4940), + [anon_sym_operator] = ACTIONS(4940), + [anon_sym_infix] = ACTIONS(4940), + [anon_sym_inline] = ACTIONS(4940), + [anon_sym_external] = ACTIONS(4940), + [sym_property_modifier] = ACTIONS(4940), + [anon_sym_abstract] = ACTIONS(4940), + [anon_sym_final] = ACTIONS(4940), + [anon_sym_open] = ACTIONS(4940), + [anon_sym_vararg] = ACTIONS(4940), + [anon_sym_noinline] = ACTIONS(4940), + [anon_sym_crossinline] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + }, + [3584] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_RBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_DASH_GT] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_while] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + }, + [3585] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6894), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3586] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_by] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4712), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym_null_literal] = ACTIONS(4710), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), + }, + [3587] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6898), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3588] = { + [sym__alpha_identifier] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_where] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(4932), + [anon_sym_set] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_DASH_GT] = ACTIONS(4934), + [sym_label] = ACTIONS(4934), + [anon_sym_in] = ACTIONS(4932), + [anon_sym_while] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_QMARK_COLON] = ACTIONS(4934), + [anon_sym_AMP_AMP] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4934), + [anon_sym_DASH_EQ] = ACTIONS(4934), + [anon_sym_STAR_EQ] = ACTIONS(4934), + [anon_sym_SLASH_EQ] = ACTIONS(4934), + [anon_sym_PERCENT_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4934), + [anon_sym_BANGin] = ACTIONS(4934), + [anon_sym_is] = ACTIONS(4932), + [anon_sym_BANGis] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_as_QMARK] = ACTIONS(4934), + [anon_sym_PLUS_PLUS] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_BANG_BANG] = ACTIONS(4934), + [anon_sym_suspend] = ACTIONS(4932), + [anon_sym_sealed] = ACTIONS(4932), + [anon_sym_annotation] = ACTIONS(4932), + [anon_sym_data] = ACTIONS(4932), + [anon_sym_inner] = ACTIONS(4932), + [anon_sym_value] = ACTIONS(4932), + [anon_sym_override] = ACTIONS(4932), + [anon_sym_lateinit] = ACTIONS(4932), + [anon_sym_public] = ACTIONS(4932), + [anon_sym_private] = ACTIONS(4932), + [anon_sym_internal] = ACTIONS(4932), + [anon_sym_protected] = ACTIONS(4932), + [anon_sym_tailrec] = ACTIONS(4932), + [anon_sym_operator] = ACTIONS(4932), + [anon_sym_infix] = ACTIONS(4932), + [anon_sym_inline] = ACTIONS(4932), + [anon_sym_external] = ACTIONS(4932), + [sym_property_modifier] = ACTIONS(4932), + [anon_sym_abstract] = ACTIONS(4932), + [anon_sym_final] = ACTIONS(4932), + [anon_sym_open] = ACTIONS(4932), + [anon_sym_vararg] = ACTIONS(4932), + [anon_sym_noinline] = ACTIONS(4932), + [anon_sym_crossinline] = ACTIONS(4932), + [anon_sym_expect] = ACTIONS(4932), + [anon_sym_actual] = ACTIONS(4932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4934), + [sym_safe_nav] = ACTIONS(4934), + [sym_multiline_comment] = ACTIONS(3), + }, + [3589] = { + [aux_sym_type_constraints_repeat1] = STATE(3561), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_EQ] = ACTIONS(4349), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_by] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [3590] = { + [sym_type_constraints] = STATE(3789), + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3591] = { + [sym_type_constraints] = STATE(3967), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6904), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3592] = { + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3593] = { + [sym_class_body] = STATE(4052), + [sym_type_constraints] = STATE(3807), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6908), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3594] = { + [sym_type_constraints] = STATE(3792), + [sym_enum_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6910), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3595] = { + [sym_type_constraints] = STATE(3699), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3596] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_RBRACK] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_RPAREN] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [anon_sym_DASH_GT] = ACTIONS(5105), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_while] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + }, + [3597] = { + [sym_class_body] = STATE(4082), + [sym_type_constraints] = STATE(3763), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3598] = { + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3599] = { + [sym_class_body] = STATE(4084), + [sym_type_constraints] = STATE(3787), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(6912), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3600] = { + [sym__alpha_identifier] = ACTIONS(4852), + [anon_sym_AT] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_RBRACK] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_RBRACE] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4854), + [anon_sym_COMMA] = ACTIONS(4854), + [anon_sym_RPAREN] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_where] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym_get] = ACTIONS(4852), + [anon_sym_set] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4854), + [sym_label] = ACTIONS(4854), + [anon_sym_in] = ACTIONS(4852), + [anon_sym_while] = ACTIONS(4852), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_QMARK_COLON] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4854), + [anon_sym_DASH_EQ] = ACTIONS(4854), + [anon_sym_STAR_EQ] = ACTIONS(4854), + [anon_sym_SLASH_EQ] = ACTIONS(4854), + [anon_sym_PERCENT_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4854), + [anon_sym_BANGin] = ACTIONS(4854), + [anon_sym_is] = ACTIONS(4852), + [anon_sym_BANGis] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4854), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_BANG_BANG] = ACTIONS(4854), + [anon_sym_suspend] = ACTIONS(4852), + [anon_sym_sealed] = ACTIONS(4852), + [anon_sym_annotation] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4852), + [anon_sym_inner] = ACTIONS(4852), + [anon_sym_value] = ACTIONS(4852), + [anon_sym_override] = ACTIONS(4852), + [anon_sym_lateinit] = ACTIONS(4852), + [anon_sym_public] = ACTIONS(4852), + [anon_sym_private] = ACTIONS(4852), + [anon_sym_internal] = ACTIONS(4852), + [anon_sym_protected] = ACTIONS(4852), + [anon_sym_tailrec] = ACTIONS(4852), + [anon_sym_operator] = ACTIONS(4852), + [anon_sym_infix] = ACTIONS(4852), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym_external] = ACTIONS(4852), + [sym_property_modifier] = ACTIONS(4852), + [anon_sym_abstract] = ACTIONS(4852), + [anon_sym_final] = ACTIONS(4852), + [anon_sym_open] = ACTIONS(4852), + [anon_sym_vararg] = ACTIONS(4852), + [anon_sym_noinline] = ACTIONS(4852), + [anon_sym_crossinline] = ACTIONS(4852), + [anon_sym_expect] = ACTIONS(4852), + [anon_sym_actual] = ACTIONS(4852), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4854), + [sym_safe_nav] = ACTIONS(4854), + [sym_multiline_comment] = ACTIONS(3), + }, + [3601] = { + [sym_class_body] = STATE(4073), + [sym_type_constraints] = STATE(3798), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3602] = { + [sym__alpha_identifier] = ACTIONS(4848), + [anon_sym_AT] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_RBRACK] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_where] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_get] = ACTIONS(4848), + [anon_sym_set] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_DASH_GT] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4848), + [anon_sym_while] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_QMARK_COLON] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4848), + [anon_sym_COLON_COLON] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4850), + [anon_sym_DASH_EQ] = ACTIONS(4850), + [anon_sym_STAR_EQ] = ACTIONS(4850), + [anon_sym_SLASH_EQ] = ACTIONS(4850), + [anon_sym_PERCENT_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4848), + [anon_sym_BANGis] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_as_QMARK] = ACTIONS(4850), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4850), + [anon_sym_suspend] = ACTIONS(4848), + [anon_sym_sealed] = ACTIONS(4848), + [anon_sym_annotation] = ACTIONS(4848), + [anon_sym_data] = ACTIONS(4848), + [anon_sym_inner] = ACTIONS(4848), + [anon_sym_value] = ACTIONS(4848), + [anon_sym_override] = ACTIONS(4848), + [anon_sym_lateinit] = ACTIONS(4848), + [anon_sym_public] = ACTIONS(4848), + [anon_sym_private] = ACTIONS(4848), + [anon_sym_internal] = ACTIONS(4848), + [anon_sym_protected] = ACTIONS(4848), + [anon_sym_tailrec] = ACTIONS(4848), + [anon_sym_operator] = ACTIONS(4848), + [anon_sym_infix] = ACTIONS(4848), + [anon_sym_inline] = ACTIONS(4848), + [anon_sym_external] = ACTIONS(4848), + [sym_property_modifier] = ACTIONS(4848), + [anon_sym_abstract] = ACTIONS(4848), + [anon_sym_final] = ACTIONS(4848), + [anon_sym_open] = ACTIONS(4848), + [anon_sym_vararg] = ACTIONS(4848), + [anon_sym_noinline] = ACTIONS(4848), + [anon_sym_crossinline] = ACTIONS(4848), + [anon_sym_expect] = ACTIONS(4848), + [anon_sym_actual] = ACTIONS(4848), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4850), + [sym_safe_nav] = ACTIONS(4850), + [sym_multiline_comment] = ACTIONS(3), + }, + [3603] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_RBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_RPAREN] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_DASH_GT] = ACTIONS(4962), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_suspend] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_lateinit] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_tailrec] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4960), + [anon_sym_infix] = ACTIONS(4960), + [anon_sym_inline] = ACTIONS(4960), + [anon_sym_external] = ACTIONS(4960), + [sym_property_modifier] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_final] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_vararg] = ACTIONS(4960), + [anon_sym_noinline] = ACTIONS(4960), + [anon_sym_crossinline] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + }, + [3604] = { + [sym__alpha_identifier] = ACTIONS(4844), + [anon_sym_AT] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_RBRACK] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4846), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_COMMA] = ACTIONS(4846), + [anon_sym_RPAREN] = ACTIONS(4846), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym_get] = ACTIONS(4844), + [anon_sym_set] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_DASH_GT] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4844), + [anon_sym_while] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_QMARK_COLON] = ACTIONS(4846), + [anon_sym_AMP_AMP] = ACTIONS(4846), + [anon_sym_PIPE_PIPE] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4846), + [anon_sym_DASH_EQ] = ACTIONS(4846), + [anon_sym_STAR_EQ] = ACTIONS(4846), + [anon_sym_SLASH_EQ] = ACTIONS(4846), + [anon_sym_PERCENT_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4846), + [anon_sym_BANGin] = ACTIONS(4846), + [anon_sym_is] = ACTIONS(4844), + [anon_sym_BANGis] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_as_QMARK] = ACTIONS(4846), + [anon_sym_PLUS_PLUS] = ACTIONS(4846), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4846), + [anon_sym_suspend] = ACTIONS(4844), + [anon_sym_sealed] = ACTIONS(4844), + [anon_sym_annotation] = ACTIONS(4844), + [anon_sym_data] = ACTIONS(4844), + [anon_sym_inner] = ACTIONS(4844), + [anon_sym_value] = ACTIONS(4844), + [anon_sym_override] = ACTIONS(4844), + [anon_sym_lateinit] = ACTIONS(4844), + [anon_sym_public] = ACTIONS(4844), + [anon_sym_private] = ACTIONS(4844), + [anon_sym_internal] = ACTIONS(4844), + [anon_sym_protected] = ACTIONS(4844), + [anon_sym_tailrec] = ACTIONS(4844), + [anon_sym_operator] = ACTIONS(4844), + [anon_sym_infix] = ACTIONS(4844), + [anon_sym_inline] = ACTIONS(4844), + [anon_sym_external] = ACTIONS(4844), + [sym_property_modifier] = ACTIONS(4844), + [anon_sym_abstract] = ACTIONS(4844), + [anon_sym_final] = ACTIONS(4844), + [anon_sym_open] = ACTIONS(4844), + [anon_sym_vararg] = ACTIONS(4844), + [anon_sym_noinline] = ACTIONS(4844), + [anon_sym_crossinline] = ACTIONS(4844), + [anon_sym_expect] = ACTIONS(4844), + [anon_sym_actual] = ACTIONS(4844), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4846), + [sym_safe_nav] = ACTIONS(4846), + [sym_multiline_comment] = ACTIONS(3), + }, + [3605] = { + [sym_type_constraints] = STATE(3968), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3606] = { + [sym_type_constraints] = STATE(3694), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3607] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_RBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [3608] = { + [aux_sym_type_constraints_repeat1] = STATE(3589), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4441), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_if] = ACTIONS(4439), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_when] = ACTIONS(4439), + [anon_sym_try] = ACTIONS(4439), + [anon_sym_throw] = ACTIONS(4439), + [anon_sym_return] = ACTIONS(4439), + [anon_sym_continue] = ACTIONS(4439), + [anon_sym_break] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4441), + [anon_sym_continue_AT] = ACTIONS(4441), + [anon_sym_break_AT] = ACTIONS(4441), + [anon_sym_this_AT] = ACTIONS(4441), + [anon_sym_super_AT] = ACTIONS(4441), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4439), + [anon_sym_false] = ACTIONS(4439), + [anon_sym_SQUOTE] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4439), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), + }, + [3609] = { + [sym_type_constraints] = STATE(3970), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(6916), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3610] = { + [sym_type_constraints] = STATE(3971), + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6918), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3611] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_RBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5157), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_DASH_GT] = ACTIONS(5076), + [sym_label] = ACTIONS(5076), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_while] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_PLUS_EQ] = ACTIONS(5159), + [anon_sym_DASH_EQ] = ACTIONS(5159), + [anon_sym_STAR_EQ] = ACTIONS(5159), + [anon_sym_SLASH_EQ] = ACTIONS(5159), + [anon_sym_PERCENT_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_suspend] = ACTIONS(5074), + [anon_sym_sealed] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5074), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_lateinit] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_internal] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_tailrec] = ACTIONS(5074), + [anon_sym_operator] = ACTIONS(5074), + [anon_sym_infix] = ACTIONS(5074), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_external] = ACTIONS(5074), + [sym_property_modifier] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_final] = ACTIONS(5074), + [anon_sym_open] = ACTIONS(5074), + [anon_sym_vararg] = ACTIONS(5074), + [anon_sym_noinline] = ACTIONS(5074), + [anon_sym_crossinline] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + }, + [3612] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(4206), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_RPAREN] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4199), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [3613] = { + [sym__alpha_identifier] = ACTIONS(4836), + [anon_sym_AT] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_RBRACK] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_where] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_get] = ACTIONS(4836), + [anon_sym_set] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_DASH_GT] = ACTIONS(4838), + [sym_label] = ACTIONS(4838), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_while] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4838), + [anon_sym_DASH_EQ] = ACTIONS(4838), + [anon_sym_STAR_EQ] = ACTIONS(4838), + [anon_sym_SLASH_EQ] = ACTIONS(4838), + [anon_sym_PERCENT_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_BANGin] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4836), + [anon_sym_BANGis] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_as_QMARK] = ACTIONS(4838), + [anon_sym_PLUS_PLUS] = ACTIONS(4838), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_BANG_BANG] = ACTIONS(4838), + [anon_sym_suspend] = ACTIONS(4836), + [anon_sym_sealed] = ACTIONS(4836), + [anon_sym_annotation] = ACTIONS(4836), + [anon_sym_data] = ACTIONS(4836), + [anon_sym_inner] = ACTIONS(4836), + [anon_sym_value] = ACTIONS(4836), + [anon_sym_override] = ACTIONS(4836), + [anon_sym_lateinit] = ACTIONS(4836), + [anon_sym_public] = ACTIONS(4836), + [anon_sym_private] = ACTIONS(4836), + [anon_sym_internal] = ACTIONS(4836), + [anon_sym_protected] = ACTIONS(4836), + [anon_sym_tailrec] = ACTIONS(4836), + [anon_sym_operator] = ACTIONS(4836), + [anon_sym_infix] = ACTIONS(4836), + [anon_sym_inline] = ACTIONS(4836), + [anon_sym_external] = ACTIONS(4836), + [sym_property_modifier] = ACTIONS(4836), + [anon_sym_abstract] = ACTIONS(4836), + [anon_sym_final] = ACTIONS(4836), + [anon_sym_open] = ACTIONS(4836), + [anon_sym_vararg] = ACTIONS(4836), + [anon_sym_noinline] = ACTIONS(4836), + [anon_sym_crossinline] = ACTIONS(4836), + [anon_sym_expect] = ACTIONS(4836), + [anon_sym_actual] = ACTIONS(4836), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4838), + [sym_safe_nav] = ACTIONS(4838), + [sym_multiline_comment] = ACTIONS(3), + }, + [3614] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_RBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5456), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(4179), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [3615] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5460), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_RPAREN] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4199), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [3616] = { + [sym_type_constraints] = STATE(3828), + [sym_enum_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(6920), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3617] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_RBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_RPAREN] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_DASH_GT] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3618] = { + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(6549), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_object] = ACTIONS(4098), + [anon_sym_fun] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [anon_sym_this] = ACTIONS(4098), + [anon_sym_super] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4100), + [sym_label] = ACTIONS(4098), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_if] = ACTIONS(4098), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_when] = ACTIONS(4098), + [anon_sym_try] = ACTIONS(4098), + [anon_sym_throw] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4098), + [anon_sym_continue] = ACTIONS(4098), + [anon_sym_break] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4100), + [anon_sym_continue_AT] = ACTIONS(4100), + [anon_sym_break_AT] = ACTIONS(4100), + [anon_sym_this_AT] = ACTIONS(4100), + [anon_sym_super_AT] = ACTIONS(4100), + [sym_real_literal] = ACTIONS(4100), + [sym_integer_literal] = ACTIONS(4098), + [sym_hex_literal] = ACTIONS(4100), + [sym_bin_literal] = ACTIONS(4100), + [anon_sym_true] = ACTIONS(4098), + [anon_sym_false] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4100), + [sym_null_literal] = ACTIONS(4098), + [sym__backtick_identifier] = ACTIONS(4100), + [sym__automatic_semicolon] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4100), + }, + [3619] = { + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_RBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [anon_sym_DASH_GT] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [3620] = { + [sym__alpha_identifier] = ACTIONS(5070), + [anon_sym_AT] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_where] = ACTIONS(5070), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_get] = ACTIONS(5070), + [anon_sym_set] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5072), + [sym_label] = ACTIONS(5072), + [anon_sym_in] = ACTIONS(5070), + [anon_sym_while] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_QMARK_COLON] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_BANGin] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_BANGis] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_as_QMARK] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_BANG_BANG] = ACTIONS(5072), + [anon_sym_suspend] = ACTIONS(5070), + [anon_sym_sealed] = ACTIONS(5070), + [anon_sym_annotation] = ACTIONS(5070), + [anon_sym_data] = ACTIONS(5070), + [anon_sym_inner] = ACTIONS(5070), + [anon_sym_value] = ACTIONS(5070), + [anon_sym_override] = ACTIONS(5070), + [anon_sym_lateinit] = ACTIONS(5070), + [anon_sym_public] = ACTIONS(5070), + [anon_sym_private] = ACTIONS(5070), + [anon_sym_internal] = ACTIONS(5070), + [anon_sym_protected] = ACTIONS(5070), + [anon_sym_tailrec] = ACTIONS(5070), + [anon_sym_operator] = ACTIONS(5070), + [anon_sym_infix] = ACTIONS(5070), + [anon_sym_inline] = ACTIONS(5070), + [anon_sym_external] = ACTIONS(5070), + [sym_property_modifier] = ACTIONS(5070), + [anon_sym_abstract] = ACTIONS(5070), + [anon_sym_final] = ACTIONS(5070), + [anon_sym_open] = ACTIONS(5070), + [anon_sym_vararg] = ACTIONS(5070), + [anon_sym_noinline] = ACTIONS(5070), + [anon_sym_crossinline] = ACTIONS(5070), + [anon_sym_expect] = ACTIONS(5070), + [anon_sym_actual] = ACTIONS(5070), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5072), + [sym_safe_nav] = ACTIONS(5072), + [sym_multiline_comment] = ACTIONS(3), + }, + [3621] = { + [sym_type_constraints] = STATE(3685), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3622] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_RBRACK] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [anon_sym_DASH_GT] = ACTIONS(5097), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_while] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), + }, + [3623] = { + [sym_type_constraints] = STATE(3684), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [3624] = { + [aux_sym_nullable_type_repeat1] = STATE(3481), + [sym__alpha_identifier] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_as] = ACTIONS(4295), + [anon_sym_EQ] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_by] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [anon_sym_where] = ACTIONS(4295), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_get] = ACTIONS(4295), + [anon_sym_set] = ACTIONS(4295), + [sym__quest] = ACTIONS(6817), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4295), + [anon_sym_DOT_DOT] = ACTIONS(4297), + [anon_sym_QMARK_COLON] = ACTIONS(4297), + [anon_sym_AMP_AMP] = ACTIONS(4297), + [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [anon_sym_else] = ACTIONS(4295), + [anon_sym_COLON_COLON] = ACTIONS(4297), + [anon_sym_PLUS_EQ] = ACTIONS(4297), + [anon_sym_DASH_EQ] = ACTIONS(4297), + [anon_sym_STAR_EQ] = ACTIONS(4297), + [anon_sym_SLASH_EQ] = ACTIONS(4297), + [anon_sym_PERCENT_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), + [anon_sym_LT_EQ] = ACTIONS(4297), + [anon_sym_GT_EQ] = ACTIONS(4297), + [anon_sym_BANGin] = ACTIONS(4297), + [anon_sym_is] = ACTIONS(4295), + [anon_sym_BANGis] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4297), + [anon_sym_PLUS_PLUS] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4297), + [anon_sym_suspend] = ACTIONS(4295), + [anon_sym_sealed] = ACTIONS(4295), + [anon_sym_annotation] = ACTIONS(4295), + [anon_sym_data] = ACTIONS(4295), + [anon_sym_inner] = ACTIONS(4295), + [anon_sym_value] = ACTIONS(4295), + [anon_sym_override] = ACTIONS(4295), + [anon_sym_lateinit] = ACTIONS(4295), + [anon_sym_public] = ACTIONS(4295), + [anon_sym_private] = ACTIONS(4295), + [anon_sym_internal] = ACTIONS(4295), + [anon_sym_protected] = ACTIONS(4295), + [anon_sym_tailrec] = ACTIONS(4295), + [anon_sym_operator] = ACTIONS(4295), + [anon_sym_infix] = ACTIONS(4295), + [anon_sym_inline] = ACTIONS(4295), + [anon_sym_external] = ACTIONS(4295), + [sym_property_modifier] = ACTIONS(4295), + [anon_sym_abstract] = ACTIONS(4295), + [anon_sym_final] = ACTIONS(4295), + [anon_sym_open] = ACTIONS(4295), + [anon_sym_vararg] = ACTIONS(4295), + [anon_sym_noinline] = ACTIONS(4295), + [anon_sym_crossinline] = ACTIONS(4295), + [anon_sym_expect] = ACTIONS(4295), + [anon_sym_actual] = ACTIONS(4295), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4297), + [sym__automatic_semicolon] = ACTIONS(4297), + [sym_safe_nav] = ACTIONS(4297), + [sym_multiline_comment] = ACTIONS(3), + }, + [3625] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6922), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + }, + [3626] = { + [sym_type_constraints] = STATE(3679), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [3627] = { + [sym_type_constraints] = STATE(3972), + [sym_function_body] = STATE(4076), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6924), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_PLUS_EQ] = ACTIONS(4136), + [anon_sym_DASH_EQ] = ACTIONS(4136), + [anon_sym_STAR_EQ] = ACTIONS(4136), + [anon_sym_SLASH_EQ] = ACTIONS(4136), + [anon_sym_PERCENT_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4134), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [3628] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(6926), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3629] = { + [ts_builtin_sym_end] = ACTIONS(6928), + [sym__alpha_identifier] = ACTIONS(6930), + [anon_sym_AT] = ACTIONS(6928), + [anon_sym_LBRACK] = ACTIONS(6928), + [anon_sym_package] = ACTIONS(6930), + [anon_sym_import] = ACTIONS(6930), + [anon_sym_typealias] = ACTIONS(6930), + [anon_sym_class] = ACTIONS(6930), + [anon_sym_interface] = ACTIONS(6930), + [anon_sym_enum] = ACTIONS(6930), + [anon_sym_LBRACE] = ACTIONS(6928), + [anon_sym_LPAREN] = ACTIONS(6928), + [anon_sym_val] = ACTIONS(6930), + [anon_sym_var] = ACTIONS(6930), + [anon_sym_object] = ACTIONS(6930), + [anon_sym_fun] = ACTIONS(6930), + [anon_sym_get] = ACTIONS(6930), + [anon_sym_set] = ACTIONS(6930), + [anon_sym_this] = ACTIONS(6930), + [anon_sym_super] = ACTIONS(6930), + [anon_sym_STAR] = ACTIONS(6928), + [sym_label] = ACTIONS(6930), + [anon_sym_for] = ACTIONS(6930), + [anon_sym_while] = ACTIONS(6930), + [anon_sym_do] = ACTIONS(6930), + [anon_sym_if] = ACTIONS(6930), + [anon_sym_when] = ACTIONS(6930), + [anon_sym_try] = ACTIONS(6930), + [anon_sym_throw] = ACTIONS(6930), + [anon_sym_return] = ACTIONS(6930), + [anon_sym_continue] = ACTIONS(6930), + [anon_sym_break] = ACTIONS(6930), + [anon_sym_COLON_COLON] = ACTIONS(6928), + [anon_sym_PLUS] = ACTIONS(6930), + [anon_sym_DASH] = ACTIONS(6930), + [anon_sym_PLUS_PLUS] = ACTIONS(6928), + [anon_sym_DASH_DASH] = ACTIONS(6928), + [anon_sym_BANG] = ACTIONS(6928), + [anon_sym_suspend] = ACTIONS(6930), + [anon_sym_sealed] = ACTIONS(6930), + [anon_sym_annotation] = ACTIONS(6930), + [anon_sym_data] = ACTIONS(6930), + [anon_sym_inner] = ACTIONS(6930), + [anon_sym_value] = ACTIONS(6930), + [anon_sym_override] = ACTIONS(6930), + [anon_sym_lateinit] = ACTIONS(6930), + [anon_sym_public] = ACTIONS(6930), + [anon_sym_private] = ACTIONS(6930), + [anon_sym_internal] = ACTIONS(6930), + [anon_sym_protected] = ACTIONS(6930), + [anon_sym_tailrec] = ACTIONS(6930), + [anon_sym_operator] = ACTIONS(6930), + [anon_sym_infix] = ACTIONS(6930), + [anon_sym_inline] = ACTIONS(6930), + [anon_sym_external] = ACTIONS(6930), + [sym_property_modifier] = ACTIONS(6930), + [anon_sym_abstract] = ACTIONS(6930), + [anon_sym_final] = ACTIONS(6930), + [anon_sym_open] = ACTIONS(6930), + [anon_sym_vararg] = ACTIONS(6930), + [anon_sym_noinline] = ACTIONS(6930), + [anon_sym_crossinline] = ACTIONS(6930), + [anon_sym_expect] = ACTIONS(6930), + [anon_sym_actual] = ACTIONS(6930), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6928), + [anon_sym_continue_AT] = ACTIONS(6928), + [anon_sym_break_AT] = ACTIONS(6928), + [anon_sym_this_AT] = ACTIONS(6928), + [anon_sym_super_AT] = ACTIONS(6928), + [sym_real_literal] = ACTIONS(6928), + [sym_integer_literal] = ACTIONS(6930), + [sym_hex_literal] = ACTIONS(6928), + [sym_bin_literal] = ACTIONS(6928), + [anon_sym_true] = ACTIONS(6930), + [anon_sym_false] = ACTIONS(6930), + [anon_sym_SQUOTE] = ACTIONS(6928), + [sym_null_literal] = ACTIONS(6930), + [sym__backtick_identifier] = ACTIONS(6928), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6928), + }, + [3630] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(6932), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + }, + [3631] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_RBRACK] = ACTIONS(5177), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_DASH_GT] = ACTIONS(5177), + [sym_label] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_while] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + }, + [3632] = { + [sym_function_body] = STATE(3868), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(6934), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3633] = { + [sym__alpha_identifier] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4287), + [anon_sym_as] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_COMMA] = ACTIONS(4289), + [anon_sym_by] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_where] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4289), + [anon_sym_get] = ACTIONS(4287), + [anon_sym_set] = ACTIONS(4287), + [sym__quest] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_DASH_GT] = ACTIONS(4291), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4287), + [anon_sym_DOT_DOT] = ACTIONS(4289), + [anon_sym_QMARK_COLON] = ACTIONS(4289), + [anon_sym_AMP_AMP] = ACTIONS(4289), + [anon_sym_PIPE_PIPE] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4289), + [anon_sym_PLUS_EQ] = ACTIONS(4289), + [anon_sym_DASH_EQ] = ACTIONS(4289), + [anon_sym_STAR_EQ] = ACTIONS(4289), + [anon_sym_SLASH_EQ] = ACTIONS(4289), + [anon_sym_PERCENT_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4289), + [anon_sym_LT_EQ] = ACTIONS(4289), + [anon_sym_GT_EQ] = ACTIONS(4289), + [anon_sym_BANGin] = ACTIONS(4289), + [anon_sym_is] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_as_QMARK] = ACTIONS(4289), + [anon_sym_PLUS_PLUS] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4289), + [anon_sym_suspend] = ACTIONS(4287), + [anon_sym_sealed] = ACTIONS(4287), + [anon_sym_annotation] = ACTIONS(4287), + [anon_sym_data] = ACTIONS(4287), + [anon_sym_inner] = ACTIONS(4287), + [anon_sym_value] = ACTIONS(4287), + [anon_sym_override] = ACTIONS(4287), + [anon_sym_lateinit] = ACTIONS(4287), + [anon_sym_public] = ACTIONS(4287), + [anon_sym_private] = ACTIONS(4287), + [anon_sym_internal] = ACTIONS(4287), + [anon_sym_protected] = ACTIONS(4287), + [anon_sym_tailrec] = ACTIONS(4287), + [anon_sym_operator] = ACTIONS(4287), + [anon_sym_infix] = ACTIONS(4287), + [anon_sym_inline] = ACTIONS(4287), + [anon_sym_external] = ACTIONS(4287), + [sym_property_modifier] = ACTIONS(4287), + [anon_sym_abstract] = ACTIONS(4287), + [anon_sym_final] = ACTIONS(4287), + [anon_sym_open] = ACTIONS(4287), + [anon_sym_vararg] = ACTIONS(4287), + [anon_sym_noinline] = ACTIONS(4287), + [anon_sym_crossinline] = ACTIONS(4287), + [anon_sym_expect] = ACTIONS(4287), + [anon_sym_actual] = ACTIONS(4287), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4289), + [sym__automatic_semicolon] = ACTIONS(4289), + [sym_safe_nav] = ACTIONS(4289), + [sym_multiline_comment] = ACTIONS(3), + }, + [3634] = { + [sym_type_constraints] = STATE(3670), + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3635] = { + [sym_type_constraints] = STATE(3644), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3636] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(6936), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(6938), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [3637] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(6940), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [3638] = { + [sym_type_constraints] = STATE(3642), + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3639] = { + [sym_type_constraints] = STATE(3643), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3640] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_typealias] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_interface] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_val] = ACTIONS(3942), + [anon_sym_var] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3947), + [sym_label] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3641] = { + [sym_type_constraints] = STATE(3941), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3642] = { + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3643] = { + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3644] = { + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3645] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3338), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(6946), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_while] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [3646] = { + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3647] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3645), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(6946), + [anon_sym_RPAREN] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4549), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_while] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_PLUS_EQ] = ACTIONS(4551), + [anon_sym_DASH_EQ] = ACTIONS(4551), + [anon_sym_STAR_EQ] = ACTIONS(4551), + [anon_sym_SLASH_EQ] = ACTIONS(4551), + [anon_sym_PERCENT_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_suspend] = ACTIONS(4549), + [anon_sym_sealed] = ACTIONS(4549), + [anon_sym_annotation] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_lateinit] = ACTIONS(4549), + [anon_sym_public] = ACTIONS(4549), + [anon_sym_private] = ACTIONS(4549), + [anon_sym_internal] = ACTIONS(4549), + [anon_sym_protected] = ACTIONS(4549), + [anon_sym_tailrec] = ACTIONS(4549), + [anon_sym_operator] = ACTIONS(4549), + [anon_sym_infix] = ACTIONS(4549), + [anon_sym_inline] = ACTIONS(4549), + [anon_sym_external] = ACTIONS(4549), + [sym_property_modifier] = ACTIONS(4549), + [anon_sym_abstract] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_open] = ACTIONS(4549), + [anon_sym_vararg] = ACTIONS(4549), + [anon_sym_noinline] = ACTIONS(4549), + [anon_sym_crossinline] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + }, + [3648] = { + [aux_sym_user_type_repeat1] = STATE(3675), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6948), + [anon_sym_typealias] = ACTIONS(4120), + [anon_sym_class] = ACTIONS(4120), + [anon_sym_interface] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_val] = ACTIONS(4120), + [anon_sym_var] = ACTIONS(4120), + [anon_sym_object] = ACTIONS(4120), + [anon_sym_fun] = ACTIONS(4120), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_this] = ACTIONS(4120), + [anon_sym_super] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_do] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4122), + [anon_sym_continue_AT] = ACTIONS(4122), + [anon_sym_break_AT] = ACTIONS(4122), + [anon_sym_this_AT] = ACTIONS(4122), + [anon_sym_super_AT] = ACTIONS(4122), + [sym_real_literal] = ACTIONS(4122), + [sym_integer_literal] = ACTIONS(4120), + [sym_hex_literal] = ACTIONS(4122), + [sym_bin_literal] = ACTIONS(4122), + [anon_sym_true] = ACTIONS(4120), + [anon_sym_false] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4122), + [sym_null_literal] = ACTIONS(4120), + [sym__backtick_identifier] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4122), + }, + [3649] = { + [sym_type_constraints] = STATE(3828), + [sym_enum_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(6950), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3650] = { + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3651] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_catch] = ACTIONS(4435), + [anon_sym_finally] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [3652] = { + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6040), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3653] = { + [sym_type_constraints] = STATE(3849), + [sym_enum_class_body] = STATE(3922), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3654] = { + [sym_class_body] = STATE(4052), + [sym_type_constraints] = STATE(3807), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3655] = { + [sym_type_constraints] = STATE(3792), + [sym_enum_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(6954), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3656] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4419), + [anon_sym_fun] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_this] = ACTIONS(4419), + [anon_sym_super] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_when] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4421), + [anon_sym_continue_AT] = ACTIONS(4421), + [anon_sym_break_AT] = ACTIONS(4421), + [anon_sym_this_AT] = ACTIONS(4421), + [anon_sym_super_AT] = ACTIONS(4421), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(4419), + [anon_sym_false] = ACTIONS(4419), + [anon_sym_SQUOTE] = ACTIONS(4421), + [sym_null_literal] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4421), + }, + [3657] = { + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3658] = { + [sym_class_body] = STATE(4082), + [sym_type_constraints] = STATE(3763), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3659] = { + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(5964), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3660] = { + [sym_class_body] = STATE(4084), + [sym_type_constraints] = STATE(3787), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3661] = { + [sym_class_body] = STATE(4073), + [sym_type_constraints] = STATE(3798), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3662] = { + [sym_type_constraints] = STATE(3843), + [sym_enum_class_body] = STATE(3934), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + }, + [3663] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_EQ] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_by] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_object] = ACTIONS(4682), + [anon_sym_fun] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_this] = ACTIONS(4682), + [anon_sym_super] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4684), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_if] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_when] = ACTIONS(4682), + [anon_sym_try] = ACTIONS(4682), + [anon_sym_throw] = ACTIONS(4682), + [anon_sym_return] = ACTIONS(4682), + [anon_sym_continue] = ACTIONS(4682), + [anon_sym_break] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_value] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4684), + [anon_sym_continue_AT] = ACTIONS(4684), + [anon_sym_break_AT] = ACTIONS(4684), + [anon_sym_this_AT] = ACTIONS(4684), + [anon_sym_super_AT] = ACTIONS(4684), + [sym_real_literal] = ACTIONS(4684), + [sym_integer_literal] = ACTIONS(4682), + [sym_hex_literal] = ACTIONS(4684), + [sym_bin_literal] = ACTIONS(4684), + [anon_sym_true] = ACTIONS(4682), + [anon_sym_false] = ACTIONS(4682), + [anon_sym_SQUOTE] = ACTIONS(4684), + [sym_null_literal] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4684), + [sym__automatic_semicolon] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4684), + }, + [3664] = { + [sym_class_body] = STATE(3947), + [sym_type_constraints] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3665] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_object] = ACTIONS(4678), + [anon_sym_fun] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4680), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_this] = ACTIONS(4678), + [anon_sym_super] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4680), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_if] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_try] = ACTIONS(4678), + [anon_sym_throw] = ACTIONS(4678), + [anon_sym_return] = ACTIONS(4678), + [anon_sym_continue] = ACTIONS(4678), + [anon_sym_break] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_BANGin] = ACTIONS(4680), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4680), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4680), + [anon_sym_DASH_DASH] = ACTIONS(4680), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4680), + [anon_sym_continue_AT] = ACTIONS(4680), + [anon_sym_break_AT] = ACTIONS(4680), + [anon_sym_this_AT] = ACTIONS(4680), + [anon_sym_super_AT] = ACTIONS(4680), + [sym_real_literal] = ACTIONS(4680), + [sym_integer_literal] = ACTIONS(4678), + [sym_hex_literal] = ACTIONS(4680), + [sym_bin_literal] = ACTIONS(4680), + [anon_sym_true] = ACTIONS(4678), + [anon_sym_false] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4680), + [sym_null_literal] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4680), + [sym__automatic_semicolon] = ACTIONS(4680), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4680), + }, + [3666] = { + [sym__alpha_identifier] = ACTIONS(4405), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(4405), + [anon_sym_as] = ACTIONS(4405), + [anon_sym_EQ] = ACTIONS(4405), + [anon_sym_constructor] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_RBRACE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_where] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4405), + [anon_sym_set] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4405), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4405), + [anon_sym_DOT_DOT] = ACTIONS(4407), + [anon_sym_QMARK_COLON] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_PLUS_EQ] = ACTIONS(4407), + [anon_sym_DASH_EQ] = ACTIONS(4407), + [anon_sym_STAR_EQ] = ACTIONS(4407), + [anon_sym_SLASH_EQ] = ACTIONS(4407), + [anon_sym_PERCENT_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), + [anon_sym_LT_EQ] = ACTIONS(4407), + [anon_sym_GT_EQ] = ACTIONS(4407), + [anon_sym_BANGin] = ACTIONS(4407), + [anon_sym_is] = ACTIONS(4405), + [anon_sym_BANGis] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_SLASH] = ACTIONS(4405), + [anon_sym_PERCENT] = ACTIONS(4405), + [anon_sym_as_QMARK] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4407), + [anon_sym_suspend] = ACTIONS(4405), + [anon_sym_sealed] = ACTIONS(4405), + [anon_sym_annotation] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4405), + [anon_sym_inner] = ACTIONS(4405), + [anon_sym_value] = ACTIONS(4405), + [anon_sym_override] = ACTIONS(4405), + [anon_sym_lateinit] = ACTIONS(4405), + [anon_sym_public] = ACTIONS(4405), + [anon_sym_private] = ACTIONS(4405), + [anon_sym_internal] = ACTIONS(4405), + [anon_sym_protected] = ACTIONS(4405), + [anon_sym_tailrec] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_infix] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym_external] = ACTIONS(4405), + [sym_property_modifier] = ACTIONS(4405), + [anon_sym_abstract] = ACTIONS(4405), + [anon_sym_final] = ACTIONS(4405), + [anon_sym_open] = ACTIONS(4405), + [anon_sym_vararg] = ACTIONS(4405), + [anon_sym_noinline] = ACTIONS(4405), + [anon_sym_crossinline] = ACTIONS(4405), + [anon_sym_expect] = ACTIONS(4405), + [anon_sym_actual] = ACTIONS(4405), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4407), + [sym__automatic_semicolon] = ACTIONS(4407), + [sym_safe_nav] = ACTIONS(4407), + [sym_multiline_comment] = ACTIONS(3), + }, + [3667] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_object] = ACTIONS(4435), + [anon_sym_fun] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_this] = ACTIONS(4435), + [anon_sym_super] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_if] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_when] = ACTIONS(4435), + [anon_sym_try] = ACTIONS(4435), + [anon_sym_throw] = ACTIONS(4435), + [anon_sym_return] = ACTIONS(4435), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_break] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4437), + [anon_sym_continue_AT] = ACTIONS(4437), + [anon_sym_break_AT] = ACTIONS(4437), + [anon_sym_this_AT] = ACTIONS(4437), + [anon_sym_super_AT] = ACTIONS(4437), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(4435), + [anon_sym_false] = ACTIONS(4435), + [anon_sym_SQUOTE] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4437), + }, + [3668] = { + [sym_function_body] = STATE(3893), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [3669] = { + [sym_function_body] = STATE(3898), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [3670] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3671] = { + [ts_builtin_sym_end] = ACTIONS(6958), + [sym__alpha_identifier] = ACTIONS(6960), + [anon_sym_AT] = ACTIONS(6958), + [anon_sym_LBRACK] = ACTIONS(6958), + [anon_sym_import] = ACTIONS(6960), + [anon_sym_typealias] = ACTIONS(6960), + [anon_sym_class] = ACTIONS(6960), + [anon_sym_interface] = ACTIONS(6960), + [anon_sym_enum] = ACTIONS(6960), + [anon_sym_LBRACE] = ACTIONS(6958), + [anon_sym_LPAREN] = ACTIONS(6958), + [anon_sym_val] = ACTIONS(6960), + [anon_sym_var] = ACTIONS(6960), + [anon_sym_object] = ACTIONS(6960), + [anon_sym_fun] = ACTIONS(6960), + [anon_sym_get] = ACTIONS(6960), + [anon_sym_set] = ACTIONS(6960), + [anon_sym_this] = ACTIONS(6960), + [anon_sym_super] = ACTIONS(6960), + [anon_sym_STAR] = ACTIONS(6958), + [sym_label] = ACTIONS(6960), + [anon_sym_for] = ACTIONS(6960), + [anon_sym_while] = ACTIONS(6960), + [anon_sym_do] = ACTIONS(6960), + [anon_sym_if] = ACTIONS(6960), + [anon_sym_when] = ACTIONS(6960), + [anon_sym_try] = ACTIONS(6960), + [anon_sym_throw] = ACTIONS(6960), + [anon_sym_return] = ACTIONS(6960), + [anon_sym_continue] = ACTIONS(6960), + [anon_sym_break] = ACTIONS(6960), + [anon_sym_COLON_COLON] = ACTIONS(6958), + [anon_sym_PLUS] = ACTIONS(6960), + [anon_sym_DASH] = ACTIONS(6960), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_BANG] = ACTIONS(6958), + [anon_sym_suspend] = ACTIONS(6960), + [anon_sym_sealed] = ACTIONS(6960), + [anon_sym_annotation] = ACTIONS(6960), + [anon_sym_data] = ACTIONS(6960), + [anon_sym_inner] = ACTIONS(6960), + [anon_sym_value] = ACTIONS(6960), + [anon_sym_override] = ACTIONS(6960), + [anon_sym_lateinit] = ACTIONS(6960), + [anon_sym_public] = ACTIONS(6960), + [anon_sym_private] = ACTIONS(6960), + [anon_sym_internal] = ACTIONS(6960), + [anon_sym_protected] = ACTIONS(6960), + [anon_sym_tailrec] = ACTIONS(6960), + [anon_sym_operator] = ACTIONS(6960), + [anon_sym_infix] = ACTIONS(6960), + [anon_sym_inline] = ACTIONS(6960), + [anon_sym_external] = ACTIONS(6960), + [sym_property_modifier] = ACTIONS(6960), + [anon_sym_abstract] = ACTIONS(6960), + [anon_sym_final] = ACTIONS(6960), + [anon_sym_open] = ACTIONS(6960), + [anon_sym_vararg] = ACTIONS(6960), + [anon_sym_noinline] = ACTIONS(6960), + [anon_sym_crossinline] = ACTIONS(6960), + [anon_sym_expect] = ACTIONS(6960), + [anon_sym_actual] = ACTIONS(6960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6958), + [anon_sym_continue_AT] = ACTIONS(6958), + [anon_sym_break_AT] = ACTIONS(6958), + [anon_sym_this_AT] = ACTIONS(6958), + [anon_sym_super_AT] = ACTIONS(6958), + [sym_real_literal] = ACTIONS(6958), + [sym_integer_literal] = ACTIONS(6960), + [sym_hex_literal] = ACTIONS(6958), + [sym_bin_literal] = ACTIONS(6958), + [anon_sym_true] = ACTIONS(6960), + [anon_sym_false] = ACTIONS(6960), + [anon_sym_SQUOTE] = ACTIONS(6958), + [sym_null_literal] = ACTIONS(6960), + [sym__backtick_identifier] = ACTIONS(6958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6958), + }, + [3672] = { + [aux_sym_user_type_repeat1] = STATE(3346), + [sym__alpha_identifier] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_DOT] = ACTIONS(6962), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_by] = ACTIONS(4120), + [anon_sym_LT] = ACTIONS(4120), + [anon_sym_GT] = ACTIONS(4120), + [anon_sym_where] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym_get] = ACTIONS(4120), + [anon_sym_set] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [sym_label] = ACTIONS(4122), + [anon_sym_in] = ACTIONS(4120), + [anon_sym_DOT_DOT] = ACTIONS(4122), + [anon_sym_QMARK_COLON] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_PIPE_PIPE] = ACTIONS(4122), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_PLUS_EQ] = ACTIONS(4122), + [anon_sym_DASH_EQ] = ACTIONS(4122), + [anon_sym_STAR_EQ] = ACTIONS(4122), + [anon_sym_SLASH_EQ] = ACTIONS(4122), + [anon_sym_PERCENT_EQ] = ACTIONS(4122), + [anon_sym_BANG_EQ] = ACTIONS(4120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4122), + [anon_sym_EQ_EQ] = ACTIONS(4120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4122), + [anon_sym_LT_EQ] = ACTIONS(4122), + [anon_sym_GT_EQ] = ACTIONS(4122), + [anon_sym_BANGin] = ACTIONS(4122), + [anon_sym_is] = ACTIONS(4120), + [anon_sym_BANGis] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_SLASH] = ACTIONS(4120), + [anon_sym_PERCENT] = ACTIONS(4120), + [anon_sym_as_QMARK] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_BANG_BANG] = ACTIONS(4122), + [anon_sym_suspend] = ACTIONS(4120), + [anon_sym_sealed] = ACTIONS(4120), + [anon_sym_annotation] = ACTIONS(4120), + [anon_sym_data] = ACTIONS(4120), + [anon_sym_inner] = ACTIONS(4120), + [anon_sym_value] = ACTIONS(4120), + [anon_sym_override] = ACTIONS(4120), + [anon_sym_lateinit] = ACTIONS(4120), + [anon_sym_public] = ACTIONS(4120), + [anon_sym_private] = ACTIONS(4120), + [anon_sym_internal] = ACTIONS(4120), + [anon_sym_protected] = ACTIONS(4120), + [anon_sym_tailrec] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_infix] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym_external] = ACTIONS(4120), + [sym_property_modifier] = ACTIONS(4120), + [anon_sym_abstract] = ACTIONS(4120), + [anon_sym_final] = ACTIONS(4120), + [anon_sym_open] = ACTIONS(4120), + [anon_sym_vararg] = ACTIONS(4120), + [anon_sym_noinline] = ACTIONS(4120), + [anon_sym_crossinline] = ACTIONS(4120), + [anon_sym_expect] = ACTIONS(4120), + [anon_sym_actual] = ACTIONS(4120), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4122), + [sym__automatic_semicolon] = ACTIONS(4122), + [sym_safe_nav] = ACTIONS(4122), + [sym_multiline_comment] = ACTIONS(3), + }, + [3673] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_typealias] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_interface] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_val] = ACTIONS(4156), + [anon_sym_var] = ACTIONS(4156), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [3674] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6692), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3675] = { + [aux_sym_user_type_repeat1] = STATE(3691), + [sym__alpha_identifier] = ACTIONS(4113), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(6948), + [anon_sym_typealias] = ACTIONS(4113), + [anon_sym_class] = ACTIONS(4113), + [anon_sym_interface] = ACTIONS(4113), + [anon_sym_enum] = ACTIONS(4113), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym_val] = ACTIONS(4113), + [anon_sym_var] = ACTIONS(4113), + [anon_sym_object] = ACTIONS(4113), + [anon_sym_fun] = ACTIONS(4113), + [anon_sym_get] = ACTIONS(4113), + [anon_sym_set] = ACTIONS(4113), + [anon_sym_this] = ACTIONS(4113), + [anon_sym_super] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4115), + [sym_label] = ACTIONS(4113), + [anon_sym_for] = ACTIONS(4113), + [anon_sym_while] = ACTIONS(4113), + [anon_sym_do] = ACTIONS(4113), + [anon_sym_if] = ACTIONS(4113), + [anon_sym_when] = ACTIONS(4113), + [anon_sym_try] = ACTIONS(4113), + [anon_sym_throw] = ACTIONS(4113), + [anon_sym_return] = ACTIONS(4113), + [anon_sym_continue] = ACTIONS(4113), + [anon_sym_break] = ACTIONS(4113), + [anon_sym_COLON_COLON] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4113), + [anon_sym_PLUS_PLUS] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4115), + [anon_sym_suspend] = ACTIONS(4113), + [anon_sym_sealed] = ACTIONS(4113), + [anon_sym_annotation] = ACTIONS(4113), + [anon_sym_data] = ACTIONS(4113), + [anon_sym_inner] = ACTIONS(4113), + [anon_sym_value] = ACTIONS(4113), + [anon_sym_override] = ACTIONS(4113), + [anon_sym_lateinit] = ACTIONS(4113), + [anon_sym_public] = ACTIONS(4113), + [anon_sym_private] = ACTIONS(4113), + [anon_sym_internal] = ACTIONS(4113), + [anon_sym_protected] = ACTIONS(4113), + [anon_sym_tailrec] = ACTIONS(4113), + [anon_sym_operator] = ACTIONS(4113), + [anon_sym_infix] = ACTIONS(4113), + [anon_sym_inline] = ACTIONS(4113), + [anon_sym_external] = ACTIONS(4113), + [sym_property_modifier] = ACTIONS(4113), + [anon_sym_abstract] = ACTIONS(4113), + [anon_sym_final] = ACTIONS(4113), + [anon_sym_open] = ACTIONS(4113), + [anon_sym_vararg] = ACTIONS(4113), + [anon_sym_noinline] = ACTIONS(4113), + [anon_sym_crossinline] = ACTIONS(4113), + [anon_sym_expect] = ACTIONS(4113), + [anon_sym_actual] = ACTIONS(4113), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4115), + [anon_sym_continue_AT] = ACTIONS(4115), + [anon_sym_break_AT] = ACTIONS(4115), + [anon_sym_this_AT] = ACTIONS(4115), + [anon_sym_super_AT] = ACTIONS(4115), + [sym_real_literal] = ACTIONS(4115), + [sym_integer_literal] = ACTIONS(4113), + [sym_hex_literal] = ACTIONS(4115), + [sym_bin_literal] = ACTIONS(4115), + [anon_sym_true] = ACTIONS(4113), + [anon_sym_false] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4115), + [sym_null_literal] = ACTIONS(4113), + [sym__backtick_identifier] = ACTIONS(4115), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4115), + }, + [3676] = { + [sym__alpha_identifier] = ACTIONS(4457), + [anon_sym_AT] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4457), + [anon_sym_as] = ACTIONS(4457), + [anon_sym_EQ] = ACTIONS(4457), + [anon_sym_LBRACE] = ACTIONS(4459), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_where] = ACTIONS(4457), + [anon_sym_SEMI] = ACTIONS(4459), + [anon_sym_get] = ACTIONS(4457), + [anon_sym_set] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [sym_label] = ACTIONS(4459), + [anon_sym_in] = ACTIONS(4457), + [anon_sym_DOT_DOT] = ACTIONS(4459), + [anon_sym_QMARK_COLON] = ACTIONS(4459), + [anon_sym_AMP_AMP] = ACTIONS(4459), + [anon_sym_PIPE_PIPE] = ACTIONS(4459), + [anon_sym_else] = ACTIONS(4457), + [anon_sym_COLON_COLON] = ACTIONS(4459), + [anon_sym_PLUS_EQ] = ACTIONS(4459), + [anon_sym_DASH_EQ] = ACTIONS(4459), + [anon_sym_STAR_EQ] = ACTIONS(4459), + [anon_sym_SLASH_EQ] = ACTIONS(4459), + [anon_sym_PERCENT_EQ] = ACTIONS(4459), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), + [anon_sym_LT_EQ] = ACTIONS(4459), + [anon_sym_GT_EQ] = ACTIONS(4459), + [anon_sym_BANGin] = ACTIONS(4459), + [anon_sym_is] = ACTIONS(4457), + [anon_sym_BANGis] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_PERCENT] = ACTIONS(4457), + [anon_sym_as_QMARK] = ACTIONS(4459), + [anon_sym_PLUS_PLUS] = ACTIONS(4459), + [anon_sym_DASH_DASH] = ACTIONS(4459), + [anon_sym_BANG_BANG] = ACTIONS(4459), + [anon_sym_suspend] = ACTIONS(4457), + [anon_sym_sealed] = ACTIONS(4457), + [anon_sym_annotation] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4457), + [anon_sym_inner] = ACTIONS(4457), + [anon_sym_value] = ACTIONS(4457), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_lateinit] = ACTIONS(4457), + [anon_sym_public] = ACTIONS(4457), + [anon_sym_private] = ACTIONS(4457), + [anon_sym_internal] = ACTIONS(4457), + [anon_sym_protected] = ACTIONS(4457), + [anon_sym_tailrec] = ACTIONS(4457), + [anon_sym_operator] = ACTIONS(4457), + [anon_sym_infix] = ACTIONS(4457), + [anon_sym_inline] = ACTIONS(4457), + [anon_sym_external] = ACTIONS(4457), + [sym_property_modifier] = ACTIONS(4457), + [anon_sym_abstract] = ACTIONS(4457), + [anon_sym_final] = ACTIONS(4457), + [anon_sym_open] = ACTIONS(4457), + [anon_sym_vararg] = ACTIONS(4457), + [anon_sym_noinline] = ACTIONS(4457), + [anon_sym_crossinline] = ACTIONS(4457), + [anon_sym_expect] = ACTIONS(4457), + [anon_sym_actual] = ACTIONS(4457), + [sym_line_comment] = ACTIONS(3), + [aux_sym_unsigned_literal_token1] = ACTIONS(6965), + [anon_sym_L] = ACTIONS(6967), + [sym__backtick_identifier] = ACTIONS(4459), + [sym__automatic_semicolon] = ACTIONS(4459), + [sym_safe_nav] = ACTIONS(4459), + [sym_multiline_comment] = ACTIONS(3), + }, + [3677] = { + [ts_builtin_sym_end] = ACTIONS(6969), + [sym__alpha_identifier] = ACTIONS(6971), + [anon_sym_AT] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_import] = ACTIONS(6971), + [anon_sym_typealias] = ACTIONS(6971), + [anon_sym_class] = ACTIONS(6971), + [anon_sym_interface] = ACTIONS(6971), + [anon_sym_enum] = ACTIONS(6971), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LPAREN] = ACTIONS(6969), + [anon_sym_val] = ACTIONS(6971), + [anon_sym_var] = ACTIONS(6971), + [anon_sym_object] = ACTIONS(6971), + [anon_sym_fun] = ACTIONS(6971), + [anon_sym_get] = ACTIONS(6971), + [anon_sym_set] = ACTIONS(6971), + [anon_sym_this] = ACTIONS(6971), + [anon_sym_super] = ACTIONS(6971), + [anon_sym_STAR] = ACTIONS(6969), + [sym_label] = ACTIONS(6971), + [anon_sym_for] = ACTIONS(6971), + [anon_sym_while] = ACTIONS(6971), + [anon_sym_do] = ACTIONS(6971), + [anon_sym_if] = ACTIONS(6971), + [anon_sym_when] = ACTIONS(6971), + [anon_sym_try] = ACTIONS(6971), + [anon_sym_throw] = ACTIONS(6971), + [anon_sym_return] = ACTIONS(6971), + [anon_sym_continue] = ACTIONS(6971), + [anon_sym_break] = ACTIONS(6971), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_PLUS] = ACTIONS(6971), + [anon_sym_DASH] = ACTIONS(6971), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_BANG] = ACTIONS(6969), + [anon_sym_suspend] = ACTIONS(6971), + [anon_sym_sealed] = ACTIONS(6971), + [anon_sym_annotation] = ACTIONS(6971), + [anon_sym_data] = ACTIONS(6971), + [anon_sym_inner] = ACTIONS(6971), + [anon_sym_value] = ACTIONS(6971), + [anon_sym_override] = ACTIONS(6971), + [anon_sym_lateinit] = ACTIONS(6971), + [anon_sym_public] = ACTIONS(6971), + [anon_sym_private] = ACTIONS(6971), + [anon_sym_internal] = ACTIONS(6971), + [anon_sym_protected] = ACTIONS(6971), + [anon_sym_tailrec] = ACTIONS(6971), + [anon_sym_operator] = ACTIONS(6971), + [anon_sym_infix] = ACTIONS(6971), + [anon_sym_inline] = ACTIONS(6971), + [anon_sym_external] = ACTIONS(6971), + [sym_property_modifier] = ACTIONS(6971), + [anon_sym_abstract] = ACTIONS(6971), + [anon_sym_final] = ACTIONS(6971), + [anon_sym_open] = ACTIONS(6971), + [anon_sym_vararg] = ACTIONS(6971), + [anon_sym_noinline] = ACTIONS(6971), + [anon_sym_crossinline] = ACTIONS(6971), + [anon_sym_expect] = ACTIONS(6971), + [anon_sym_actual] = ACTIONS(6971), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6969), + [anon_sym_continue_AT] = ACTIONS(6969), + [anon_sym_break_AT] = ACTIONS(6969), + [anon_sym_this_AT] = ACTIONS(6969), + [anon_sym_super_AT] = ACTIONS(6969), + [sym_real_literal] = ACTIONS(6969), + [sym_integer_literal] = ACTIONS(6971), + [sym_hex_literal] = ACTIONS(6969), + [sym_bin_literal] = ACTIONS(6969), + [anon_sym_true] = ACTIONS(6971), + [anon_sym_false] = ACTIONS(6971), + [anon_sym_SQUOTE] = ACTIONS(6969), + [sym_null_literal] = ACTIONS(6971), + [sym__backtick_identifier] = ACTIONS(6969), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6969), + }, + [3678] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_constructor] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3947), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3942), + [sym_label] = ACTIONS(3947), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + }, + [3679] = { + [sym_function_body] = STATE(3112), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [3680] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_object] = ACTIONS(4718), + [anon_sym_fun] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_this] = ACTIONS(4718), + [anon_sym_super] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4720), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_when] = ACTIONS(4718), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_throw] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4720), + [anon_sym_continue_AT] = ACTIONS(4720), + [anon_sym_break_AT] = ACTIONS(4720), + [anon_sym_this_AT] = ACTIONS(4720), + [anon_sym_super_AT] = ACTIONS(4720), + [sym_real_literal] = ACTIONS(4720), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4720), + [sym_bin_literal] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4720), + [sym_null_literal] = ACTIONS(4718), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4720), + }, + [3681] = { + [sym_type_constraints] = STATE(3828), + [sym_enum_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3682] = { + [sym_class_body] = STATE(4030), + [sym_type_constraints] = STATE(3824), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3683] = { + [sym__alpha_identifier] = ACTIONS(4098), + [anon_sym_AT] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(6744), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_as] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_COMMA] = ACTIONS(4100), + [anon_sym_by] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_where] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(4098), + [anon_sym_set] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [sym_label] = ACTIONS(4100), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_DOT_DOT] = ACTIONS(4100), + [anon_sym_QMARK_COLON] = ACTIONS(4100), + [anon_sym_AMP_AMP] = ACTIONS(4100), + [anon_sym_PIPE_PIPE] = ACTIONS(4100), + [anon_sym_else] = ACTIONS(4098), + [anon_sym_COLON_COLON] = ACTIONS(4100), + [anon_sym_PLUS_EQ] = ACTIONS(4100), + [anon_sym_DASH_EQ] = ACTIONS(4100), + [anon_sym_STAR_EQ] = ACTIONS(4100), + [anon_sym_SLASH_EQ] = ACTIONS(4100), + [anon_sym_PERCENT_EQ] = ACTIONS(4100), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT_EQ] = ACTIONS(4100), + [anon_sym_GT_EQ] = ACTIONS(4100), + [anon_sym_BANGin] = ACTIONS(4100), + [anon_sym_is] = ACTIONS(4098), + [anon_sym_BANGis] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_SLASH] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_as_QMARK] = ACTIONS(4100), + [anon_sym_PLUS_PLUS] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4100), + [anon_sym_BANG_BANG] = ACTIONS(4100), + [anon_sym_suspend] = ACTIONS(4098), + [anon_sym_sealed] = ACTIONS(4098), + [anon_sym_annotation] = ACTIONS(4098), + [anon_sym_data] = ACTIONS(4098), + [anon_sym_inner] = ACTIONS(4098), + [anon_sym_value] = ACTIONS(4098), + [anon_sym_override] = ACTIONS(4098), + [anon_sym_lateinit] = ACTIONS(4098), + [anon_sym_public] = ACTIONS(4098), + [anon_sym_private] = ACTIONS(4098), + [anon_sym_internal] = ACTIONS(4098), + [anon_sym_protected] = ACTIONS(4098), + [anon_sym_tailrec] = ACTIONS(4098), + [anon_sym_operator] = ACTIONS(4098), + [anon_sym_infix] = ACTIONS(4098), + [anon_sym_inline] = ACTIONS(4098), + [anon_sym_external] = ACTIONS(4098), + [sym_property_modifier] = ACTIONS(4098), + [anon_sym_abstract] = ACTIONS(4098), + [anon_sym_final] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4098), + [anon_sym_vararg] = ACTIONS(4098), + [anon_sym_noinline] = ACTIONS(4098), + [anon_sym_crossinline] = ACTIONS(4098), + [anon_sym_expect] = ACTIONS(4098), + [anon_sym_actual] = ACTIONS(4098), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4100), + [sym__automatic_semicolon] = ACTIONS(4100), + [sym_safe_nav] = ACTIONS(4100), + [sym_multiline_comment] = ACTIONS(3), + }, + [3684] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [3685] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [3686] = { + [aux_sym_type_constraints_repeat1] = STATE(3701), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(6973), + [anon_sym_by] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + }, + [3687] = { + [aux_sym_type_constraints_repeat1] = STATE(3686), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [anon_sym_as] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_LBRACE] = ACTIONS(4441), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(6973), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = ACTIONS(4439), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4439), + [anon_sym_set] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [sym_label] = ACTIONS(4441), + [anon_sym_in] = ACTIONS(4439), + [anon_sym_DOT_DOT] = ACTIONS(4441), + [anon_sym_QMARK_COLON] = ACTIONS(4441), + [anon_sym_AMP_AMP] = ACTIONS(4441), + [anon_sym_PIPE_PIPE] = ACTIONS(4441), + [anon_sym_else] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(4441), + [anon_sym_PLUS_EQ] = ACTIONS(4441), + [anon_sym_DASH_EQ] = ACTIONS(4441), + [anon_sym_STAR_EQ] = ACTIONS(4441), + [anon_sym_SLASH_EQ] = ACTIONS(4441), + [anon_sym_PERCENT_EQ] = ACTIONS(4441), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4441), + [anon_sym_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4441), + [anon_sym_BANGin] = ACTIONS(4441), + [anon_sym_is] = ACTIONS(4439), + [anon_sym_BANGis] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_as_QMARK] = ACTIONS(4441), + [anon_sym_PLUS_PLUS] = ACTIONS(4441), + [anon_sym_DASH_DASH] = ACTIONS(4441), + [anon_sym_BANG_BANG] = ACTIONS(4441), + [anon_sym_suspend] = ACTIONS(4439), + [anon_sym_sealed] = ACTIONS(4439), + [anon_sym_annotation] = ACTIONS(4439), + [anon_sym_data] = ACTIONS(4439), + [anon_sym_inner] = ACTIONS(4439), + [anon_sym_value] = ACTIONS(4439), + [anon_sym_override] = ACTIONS(4439), + [anon_sym_lateinit] = ACTIONS(4439), + [anon_sym_public] = ACTIONS(4439), + [anon_sym_private] = ACTIONS(4439), + [anon_sym_internal] = ACTIONS(4439), + [anon_sym_protected] = ACTIONS(4439), + [anon_sym_tailrec] = ACTIONS(4439), + [anon_sym_operator] = ACTIONS(4439), + [anon_sym_infix] = ACTIONS(4439), + [anon_sym_inline] = ACTIONS(4439), + [anon_sym_external] = ACTIONS(4439), + [sym_property_modifier] = ACTIONS(4439), + [anon_sym_abstract] = ACTIONS(4439), + [anon_sym_final] = ACTIONS(4439), + [anon_sym_open] = ACTIONS(4439), + [anon_sym_vararg] = ACTIONS(4439), + [anon_sym_noinline] = ACTIONS(4439), + [anon_sym_crossinline] = ACTIONS(4439), + [anon_sym_expect] = ACTIONS(4439), + [anon_sym_actual] = ACTIONS(4439), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4441), + [sym__automatic_semicolon] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), + [sym_multiline_comment] = ACTIONS(3), + }, + [3688] = { + [sym_function_body] = STATE(3513), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(6975), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [3689] = { + [sym__alpha_identifier] = ACTIONS(4465), + [anon_sym_AT] = ACTIONS(4467), + [anon_sym_COLON] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_as] = ACTIONS(4465), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_constructor] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_LPAREN] = ACTIONS(4467), + [anon_sym_COMMA] = ACTIONS(4467), + [anon_sym_LT] = ACTIONS(4465), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_where] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym_get] = ACTIONS(4465), + [anon_sym_set] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4465), + [sym_label] = ACTIONS(4467), + [anon_sym_in] = ACTIONS(4465), + [anon_sym_DOT_DOT] = ACTIONS(4467), + [anon_sym_QMARK_COLON] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_PIPE_PIPE] = ACTIONS(4467), + [anon_sym_else] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_PLUS_EQ] = ACTIONS(4467), + [anon_sym_DASH_EQ] = ACTIONS(4467), + [anon_sym_STAR_EQ] = ACTIONS(4467), + [anon_sym_SLASH_EQ] = ACTIONS(4467), + [anon_sym_PERCENT_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ] = ACTIONS(4465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), + [anon_sym_LT_EQ] = ACTIONS(4467), + [anon_sym_GT_EQ] = ACTIONS(4467), + [anon_sym_BANGin] = ACTIONS(4467), + [anon_sym_is] = ACTIONS(4465), + [anon_sym_BANGis] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_as_QMARK] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_BANG_BANG] = ACTIONS(4467), + [anon_sym_suspend] = ACTIONS(4465), + [anon_sym_sealed] = ACTIONS(4465), + [anon_sym_annotation] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4465), + [anon_sym_inner] = ACTIONS(4465), + [anon_sym_value] = ACTIONS(4465), + [anon_sym_override] = ACTIONS(4465), + [anon_sym_lateinit] = ACTIONS(4465), + [anon_sym_public] = ACTIONS(4465), + [anon_sym_private] = ACTIONS(4465), + [anon_sym_internal] = ACTIONS(4465), + [anon_sym_protected] = ACTIONS(4465), + [anon_sym_tailrec] = ACTIONS(4465), + [anon_sym_operator] = ACTIONS(4465), + [anon_sym_infix] = ACTIONS(4465), + [anon_sym_inline] = ACTIONS(4465), + [anon_sym_external] = ACTIONS(4465), + [sym_property_modifier] = ACTIONS(4465), + [anon_sym_abstract] = ACTIONS(4465), + [anon_sym_final] = ACTIONS(4465), + [anon_sym_open] = ACTIONS(4465), + [anon_sym_vararg] = ACTIONS(4465), + [anon_sym_noinline] = ACTIONS(4465), + [anon_sym_crossinline] = ACTIONS(4465), + [anon_sym_expect] = ACTIONS(4465), + [anon_sym_actual] = ACTIONS(4465), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4467), + [sym__automatic_semicolon] = ACTIONS(4467), + [sym_safe_nav] = ACTIONS(4467), + [sym_multiline_comment] = ACTIONS(3), + }, + [3690] = { + [sym_value_arguments] = STATE(4042), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(6977), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3691] = { + [aux_sym_user_type_repeat1] = STATE(3691), + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_typealias] = ACTIONS(4127), + [anon_sym_class] = ACTIONS(4127), + [anon_sym_interface] = ACTIONS(4127), + [anon_sym_enum] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_val] = ACTIONS(4127), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4127), + [anon_sym_for] = ACTIONS(4127), + [anon_sym_while] = ACTIONS(4127), + [anon_sym_do] = ACTIONS(4127), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [3692] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_constructor] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_object] = ACTIONS(4156), + [anon_sym_fun] = ACTIONS(4156), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_this] = ACTIONS(4156), + [anon_sym_super] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [sym_label] = ACTIONS(4156), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_when] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4158), + [anon_sym_continue_AT] = ACTIONS(4158), + [anon_sym_break_AT] = ACTIONS(4158), + [anon_sym_this_AT] = ACTIONS(4158), + [anon_sym_super_AT] = ACTIONS(4158), + [sym_real_literal] = ACTIONS(4158), + [sym_integer_literal] = ACTIONS(4156), + [sym_hex_literal] = ACTIONS(4158), + [sym_bin_literal] = ACTIONS(4158), + [anon_sym_true] = ACTIONS(4156), + [anon_sym_false] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4158), + [sym_null_literal] = ACTIONS(4156), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4158), + }, + [3693] = { + [sym_class_body] = STATE(4084), + [sym_type_constraints] = STATE(3787), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3694] = { + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3695] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6982), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3696] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6986), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3697] = { + [sym_type_constraints] = STATE(3970), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3698] = { + [sym_type_constraints] = STATE(3815), + [sym_enum_class_body] = STATE(4030), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3699] = { + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3700] = { + [sym_type_constraints] = STATE(3968), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3701] = { + [aux_sym_type_constraints_repeat1] = STATE(3701), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6990), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + }, + [3702] = { + [sym_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(6993), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [3703] = { + [sym__alpha_identifier] = ACTIONS(4586), + [anon_sym_AT] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_by] = ACTIONS(4586), + [anon_sym_where] = ACTIONS(4586), + [anon_sym_object] = ACTIONS(4586), + [anon_sym_fun] = ACTIONS(4586), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_get] = ACTIONS(4586), + [anon_sym_set] = ACTIONS(4586), + [anon_sym_this] = ACTIONS(4586), + [anon_sym_super] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4588), + [sym_label] = ACTIONS(4586), + [anon_sym_in] = ACTIONS(4586), + [anon_sym_if] = ACTIONS(4586), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_when] = ACTIONS(4586), + [anon_sym_try] = ACTIONS(4586), + [anon_sym_throw] = ACTIONS(4586), + [anon_sym_return] = ACTIONS(4586), + [anon_sym_continue] = ACTIONS(4586), + [anon_sym_break] = ACTIONS(4586), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym_BANGin] = ACTIONS(4588), + [anon_sym_is] = ACTIONS(4586), + [anon_sym_BANGis] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_PLUS_PLUS] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4588), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_suspend] = ACTIONS(4586), + [anon_sym_sealed] = ACTIONS(4586), + [anon_sym_annotation] = ACTIONS(4586), + [anon_sym_data] = ACTIONS(4586), + [anon_sym_inner] = ACTIONS(4586), + [anon_sym_value] = ACTIONS(4586), + [anon_sym_override] = ACTIONS(4586), + [anon_sym_lateinit] = ACTIONS(4586), + [anon_sym_public] = ACTIONS(4586), + [anon_sym_private] = ACTIONS(4586), + [anon_sym_internal] = ACTIONS(4586), + [anon_sym_protected] = ACTIONS(4586), + [anon_sym_tailrec] = ACTIONS(4586), + [anon_sym_operator] = ACTIONS(4586), + [anon_sym_infix] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym_external] = ACTIONS(4586), + [sym_property_modifier] = ACTIONS(4586), + [anon_sym_abstract] = ACTIONS(4586), + [anon_sym_final] = ACTIONS(4586), + [anon_sym_open] = ACTIONS(4586), + [anon_sym_vararg] = ACTIONS(4586), + [anon_sym_noinline] = ACTIONS(4586), + [anon_sym_crossinline] = ACTIONS(4586), + [anon_sym_expect] = ACTIONS(4586), + [anon_sym_actual] = ACTIONS(4586), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4588), + [anon_sym_continue_AT] = ACTIONS(4588), + [anon_sym_break_AT] = ACTIONS(4588), + [anon_sym_this_AT] = ACTIONS(4588), + [anon_sym_super_AT] = ACTIONS(4588), + [sym_real_literal] = ACTIONS(4588), + [sym_integer_literal] = ACTIONS(4586), + [sym_hex_literal] = ACTIONS(4588), + [sym_bin_literal] = ACTIONS(4588), + [anon_sym_true] = ACTIONS(4586), + [anon_sym_false] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4588), + [sym_null_literal] = ACTIONS(4586), + [sym__backtick_identifier] = ACTIONS(4588), + [sym__automatic_semicolon] = ACTIONS(4588), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4588), + }, + [3704] = { + [sym_class_body] = STATE(4080), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(6995), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [3705] = { + [sym_type_constraints] = STATE(3967), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3706] = { + [sym_class_body] = STATE(4031), + [sym_type_constraints] = STATE(3814), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3707] = { + [sym_type_constraints] = STATE(3966), + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3708] = { + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3709] = { + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [3710] = { + [sym_type_constraints] = STATE(3965), + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3711] = { + [sym__alpha_identifier] = ACTIONS(4564), + [anon_sym_AT] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_by] = ACTIONS(4564), + [anon_sym_object] = ACTIONS(4564), + [anon_sym_fun] = ACTIONS(4564), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_get] = ACTIONS(4564), + [anon_sym_set] = ACTIONS(4564), + [anon_sym_this] = ACTIONS(4564), + [anon_sym_super] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4566), + [sym_label] = ACTIONS(4564), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_if] = ACTIONS(4564), + [anon_sym_else] = ACTIONS(4564), + [anon_sym_when] = ACTIONS(4564), + [anon_sym_try] = ACTIONS(4564), + [anon_sym_throw] = ACTIONS(4564), + [anon_sym_return] = ACTIONS(4564), + [anon_sym_continue] = ACTIONS(4564), + [anon_sym_break] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4566), + [anon_sym_BANGin] = ACTIONS(4566), + [anon_sym_is] = ACTIONS(4564), + [anon_sym_BANGis] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4566), + [anon_sym_BANG] = ACTIONS(4564), + [anon_sym_suspend] = ACTIONS(4564), + [anon_sym_sealed] = ACTIONS(4564), + [anon_sym_annotation] = ACTIONS(4564), + [anon_sym_data] = ACTIONS(4564), + [anon_sym_inner] = ACTIONS(4564), + [anon_sym_value] = ACTIONS(4564), + [anon_sym_override] = ACTIONS(4564), + [anon_sym_lateinit] = ACTIONS(4564), + [anon_sym_public] = ACTIONS(4564), + [anon_sym_private] = ACTIONS(4564), + [anon_sym_internal] = ACTIONS(4564), + [anon_sym_protected] = ACTIONS(4564), + [anon_sym_tailrec] = ACTIONS(4564), + [anon_sym_operator] = ACTIONS(4564), + [anon_sym_infix] = ACTIONS(4564), + [anon_sym_inline] = ACTIONS(4564), + [anon_sym_external] = ACTIONS(4564), + [sym_property_modifier] = ACTIONS(4564), + [anon_sym_abstract] = ACTIONS(4564), + [anon_sym_final] = ACTIONS(4564), + [anon_sym_open] = ACTIONS(4564), + [anon_sym_vararg] = ACTIONS(4564), + [anon_sym_noinline] = ACTIONS(4564), + [anon_sym_crossinline] = ACTIONS(4564), + [anon_sym_expect] = ACTIONS(4564), + [anon_sym_actual] = ACTIONS(4564), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4566), + [anon_sym_continue_AT] = ACTIONS(4566), + [anon_sym_break_AT] = ACTIONS(4566), + [anon_sym_this_AT] = ACTIONS(4566), + [anon_sym_super_AT] = ACTIONS(4566), + [sym_real_literal] = ACTIONS(4566), + [sym_integer_literal] = ACTIONS(4564), + [sym_hex_literal] = ACTIONS(4566), + [sym_bin_literal] = ACTIONS(4566), + [anon_sym_true] = ACTIONS(4564), + [anon_sym_false] = ACTIONS(4564), + [anon_sym_SQUOTE] = ACTIONS(4566), + [sym_null_literal] = ACTIONS(4564), + [sym__backtick_identifier] = ACTIONS(4566), + [sym__automatic_semicolon] = ACTIONS(4566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4566), + }, + [3712] = { + [sym_type_constraints] = STATE(3961), + [sym_function_body] = STATE(3472), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_RBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [3713] = { + [sym_type_constraints] = STATE(3960), + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(6999), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3714] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [3715] = { + [sym_type_constraints] = STATE(3951), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3716] = { + [sym_type_constraints] = STATE(3874), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [3717] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(7003), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [3718] = { + [sym_type_constraints] = STATE(3945), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3719] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(3942), + [anon_sym_as] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(3942), + [anon_sym_GT] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_QMARK_COLON] = ACTIONS(3947), + [anon_sym_AMP_AMP] = ACTIONS(3947), + [anon_sym_PIPE_PIPE] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(3942), + [anon_sym_PERCENT] = ACTIONS(3942), + [anon_sym_as_QMARK] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(3947), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [3720] = { + [sym_type_constraints] = STATE(3011), + [sym_enum_class_body] = STATE(3181), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(7013), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [3721] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [3722] = { + [sym_class_body] = STATE(3297), + [sym_type_constraints] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3723] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7017), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3724] = { + [sym_class_body] = STATE(4054), + [sym_type_constraints] = STATE(3788), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + }, + [3725] = { + [sym_type_constraints] = STATE(3875), + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [3726] = { + [sym_type_constraints] = STATE(3792), + [sym_enum_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3727] = { + [sym__alpha_identifier] = ACTIONS(4156), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_as] = ACTIONS(4156), + [anon_sym_EQ] = ACTIONS(4156), + [anon_sym_constructor] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_COMMA] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4156), + [anon_sym_GT] = ACTIONS(4156), + [anon_sym_where] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4156), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4156), + [anon_sym_DOT_DOT] = ACTIONS(4158), + [anon_sym_QMARK_COLON] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_PIPE_PIPE] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_PLUS_EQ] = ACTIONS(4158), + [anon_sym_DASH_EQ] = ACTIONS(4158), + [anon_sym_STAR_EQ] = ACTIONS(4158), + [anon_sym_SLASH_EQ] = ACTIONS(4158), + [anon_sym_PERCENT_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ] = ACTIONS(4156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4158), + [anon_sym_LT_EQ] = ACTIONS(4158), + [anon_sym_GT_EQ] = ACTIONS(4158), + [anon_sym_BANGin] = ACTIONS(4158), + [anon_sym_is] = ACTIONS(4156), + [anon_sym_BANGis] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_SLASH] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_as_QMARK] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4156), + [anon_sym_sealed] = ACTIONS(4156), + [anon_sym_annotation] = ACTIONS(4156), + [anon_sym_data] = ACTIONS(4156), + [anon_sym_inner] = ACTIONS(4156), + [anon_sym_value] = ACTIONS(4156), + [anon_sym_override] = ACTIONS(4156), + [anon_sym_lateinit] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_internal] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_tailrec] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_infix] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym_external] = ACTIONS(4156), + [sym_property_modifier] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4156), + [anon_sym_vararg] = ACTIONS(4156), + [anon_sym_noinline] = ACTIONS(4156), + [anon_sym_crossinline] = ACTIONS(4156), + [anon_sym_expect] = ACTIONS(4156), + [anon_sym_actual] = ACTIONS(4156), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4158), + [sym__automatic_semicolon] = ACTIONS(4158), + [sym_safe_nav] = ACTIONS(4158), + [sym_multiline_comment] = ACTIONS(3), + }, + [3728] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_constructor] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_where] = ACTIONS(3942), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3942), + [anon_sym_set] = ACTIONS(3942), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3947), + [sym_label] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_BANGin] = ACTIONS(3947), + [anon_sym_is] = ACTIONS(3942), + [anon_sym_BANGis] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_suspend] = ACTIONS(3942), + [anon_sym_sealed] = ACTIONS(3942), + [anon_sym_annotation] = ACTIONS(3942), + [anon_sym_data] = ACTIONS(3942), + [anon_sym_inner] = ACTIONS(3942), + [anon_sym_value] = ACTIONS(3942), + [anon_sym_override] = ACTIONS(3942), + [anon_sym_lateinit] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_internal] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_tailrec] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_infix] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym_external] = ACTIONS(3942), + [sym_property_modifier] = ACTIONS(3942), + [anon_sym_abstract] = ACTIONS(3942), + [anon_sym_final] = ACTIONS(3942), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_vararg] = ACTIONS(3942), + [anon_sym_noinline] = ACTIONS(3942), + [anon_sym_crossinline] = ACTIONS(3942), + [anon_sym_expect] = ACTIONS(3942), + [anon_sym_actual] = ACTIONS(3942), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym__automatic_semicolon] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [3729] = { + [sym_class_body] = STATE(3257), + [sym_type_constraints] = STATE(3028), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3730] = { + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3731] = { + [sym_class_body] = STATE(3248), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(7019), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [3732] = { + [sym_type_constraints] = STATE(3876), + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3733] = { + [sym_class_body] = STATE(3214), + [sym_type_constraints] = STATE(3049), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [3734] = { + [sym__alpha_identifier] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_as] = ACTIONS(4299), + [anon_sym_EQ] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_COMMA] = ACTIONS(4301), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [anon_sym_where] = ACTIONS(4299), + [anon_sym_SEMI] = ACTIONS(4301), + [anon_sym_get] = ACTIONS(4299), + [anon_sym_set] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [sym_label] = ACTIONS(4301), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_PIPE_PIPE] = ACTIONS(4301), + [anon_sym_else] = ACTIONS(4299), + [anon_sym_catch] = ACTIONS(4299), + [anon_sym_finally] = ACTIONS(4299), + [anon_sym_COLON_COLON] = ACTIONS(4301), + [anon_sym_PLUS_EQ] = ACTIONS(4301), + [anon_sym_DASH_EQ] = ACTIONS(4301), + [anon_sym_STAR_EQ] = ACTIONS(4301), + [anon_sym_SLASH_EQ] = ACTIONS(4301), + [anon_sym_PERCENT_EQ] = ACTIONS(4301), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), + [anon_sym_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), + [anon_sym_LT_EQ] = ACTIONS(4301), + [anon_sym_GT_EQ] = ACTIONS(4301), + [anon_sym_BANGin] = ACTIONS(4301), + [anon_sym_is] = ACTIONS(4299), + [anon_sym_BANGis] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_as_QMARK] = ACTIONS(4301), + [anon_sym_PLUS_PLUS] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4301), + [anon_sym_BANG_BANG] = ACTIONS(4301), + [anon_sym_suspend] = ACTIONS(4299), + [anon_sym_sealed] = ACTIONS(4299), + [anon_sym_annotation] = ACTIONS(4299), + [anon_sym_data] = ACTIONS(4299), + [anon_sym_inner] = ACTIONS(4299), + [anon_sym_value] = ACTIONS(4299), + [anon_sym_override] = ACTIONS(4299), + [anon_sym_lateinit] = ACTIONS(4299), + [anon_sym_public] = ACTIONS(4299), + [anon_sym_private] = ACTIONS(4299), + [anon_sym_internal] = ACTIONS(4299), + [anon_sym_protected] = ACTIONS(4299), + [anon_sym_tailrec] = ACTIONS(4299), + [anon_sym_operator] = ACTIONS(4299), + [anon_sym_infix] = ACTIONS(4299), + [anon_sym_inline] = ACTIONS(4299), + [anon_sym_external] = ACTIONS(4299), + [sym_property_modifier] = ACTIONS(4299), + [anon_sym_abstract] = ACTIONS(4299), + [anon_sym_final] = ACTIONS(4299), + [anon_sym_open] = ACTIONS(4299), + [anon_sym_vararg] = ACTIONS(4299), + [anon_sym_noinline] = ACTIONS(4299), + [anon_sym_crossinline] = ACTIONS(4299), + [anon_sym_expect] = ACTIONS(4299), + [anon_sym_actual] = ACTIONS(4299), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4301), + [sym__automatic_semicolon] = ACTIONS(4301), + [sym_safe_nav] = ACTIONS(4301), + [sym_multiline_comment] = ACTIONS(3), + }, + [3735] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [sym_label] = ACTIONS(4305), + [anon_sym_in] = ACTIONS(4303), + [anon_sym_DOT_DOT] = ACTIONS(4305), + [anon_sym_QMARK_COLON] = ACTIONS(4305), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4305), + [anon_sym_else] = ACTIONS(4303), + [anon_sym_catch] = ACTIONS(4303), + [anon_sym_finally] = ACTIONS(4303), + [anon_sym_COLON_COLON] = ACTIONS(4305), + [anon_sym_PLUS_EQ] = ACTIONS(4305), + [anon_sym_DASH_EQ] = ACTIONS(4305), + [anon_sym_STAR_EQ] = ACTIONS(4305), + [anon_sym_SLASH_EQ] = ACTIONS(4305), + [anon_sym_PERCENT_EQ] = ACTIONS(4305), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4305), + [anon_sym_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4305), + [anon_sym_LT_EQ] = ACTIONS(4305), + [anon_sym_GT_EQ] = ACTIONS(4305), + [anon_sym_BANGin] = ACTIONS(4305), + [anon_sym_is] = ACTIONS(4303), + [anon_sym_BANGis] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_as_QMARK] = ACTIONS(4305), + [anon_sym_PLUS_PLUS] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_BANG_BANG] = ACTIONS(4305), + [anon_sym_suspend] = ACTIONS(4303), + [anon_sym_sealed] = ACTIONS(4303), + [anon_sym_annotation] = ACTIONS(4303), + [anon_sym_data] = ACTIONS(4303), + [anon_sym_inner] = ACTIONS(4303), + [anon_sym_value] = ACTIONS(4303), + [anon_sym_override] = ACTIONS(4303), + [anon_sym_lateinit] = ACTIONS(4303), + [anon_sym_public] = ACTIONS(4303), + [anon_sym_private] = ACTIONS(4303), + [anon_sym_internal] = ACTIONS(4303), + [anon_sym_protected] = ACTIONS(4303), + [anon_sym_tailrec] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(4303), + [anon_sym_infix] = ACTIONS(4303), + [anon_sym_inline] = ACTIONS(4303), + [anon_sym_external] = ACTIONS(4303), + [sym_property_modifier] = ACTIONS(4303), + [anon_sym_abstract] = ACTIONS(4303), + [anon_sym_final] = ACTIONS(4303), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_vararg] = ACTIONS(4303), + [anon_sym_noinline] = ACTIONS(4303), + [anon_sym_crossinline] = ACTIONS(4303), + [anon_sym_expect] = ACTIONS(4303), + [anon_sym_actual] = ACTIONS(4303), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), + [sym_multiline_comment] = ACTIONS(3), + }, + [3736] = { + [sym_type_constraints] = STATE(3836), + [sym_enum_class_body] = STATE(3947), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3737] = { + [sym_type_constraints] = STATE(3904), + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3738] = { + [sym_type_constraints] = STATE(3907), + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3739] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7021), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3740] = { + [sym_function_body] = STATE(3619), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7023), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_while] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3741] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3742] = { + [sym_class_body] = STATE(4052), + [sym_type_constraints] = STATE(3807), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3743] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [3744] = { + [sym_function_body] = STATE(3099), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [3745] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_catch] = ACTIONS(4419), + [anon_sym_finally] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3746] = { + [sym__alpha_identifier] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(4680), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_as] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4680), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_LPAREN] = ACTIONS(4680), + [anon_sym_COMMA] = ACTIONS(4680), + [anon_sym_by] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_where] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4680), + [anon_sym_get] = ACTIONS(4678), + [anon_sym_set] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4680), + [anon_sym_QMARK_COLON] = ACTIONS(4680), + [anon_sym_AMP_AMP] = ACTIONS(4680), + [anon_sym_PIPE_PIPE] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_PLUS_EQ] = ACTIONS(4680), + [anon_sym_DASH_EQ] = ACTIONS(4680), + [anon_sym_STAR_EQ] = ACTIONS(4680), + [anon_sym_SLASH_EQ] = ACTIONS(4680), + [anon_sym_PERCENT_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4680), + [anon_sym_LT_EQ] = ACTIONS(4680), + [anon_sym_GT_EQ] = ACTIONS(4680), + [anon_sym_BANGin] = ACTIONS(4680), + [anon_sym_is] = ACTIONS(4678), + [anon_sym_BANGis] = ACTIONS(4680), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_as_QMARK] = ACTIONS(4680), + [anon_sym_PLUS_PLUS] = ACTIONS(4680), + [anon_sym_DASH_DASH] = ACTIONS(4680), + [anon_sym_BANG_BANG] = ACTIONS(4680), + [anon_sym_suspend] = ACTIONS(4678), + [anon_sym_sealed] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4678), + [anon_sym_inner] = ACTIONS(4678), + [anon_sym_value] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_lateinit] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4678), + [anon_sym_tailrec] = ACTIONS(4678), + [anon_sym_operator] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_inline] = ACTIONS(4678), + [anon_sym_external] = ACTIONS(4678), + [sym_property_modifier] = ACTIONS(4678), + [anon_sym_abstract] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_vararg] = ACTIONS(4678), + [anon_sym_noinline] = ACTIONS(4678), + [anon_sym_crossinline] = ACTIONS(4678), + [anon_sym_expect] = ACTIONS(4678), + [anon_sym_actual] = ACTIONS(4678), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4680), + [sym__automatic_semicolon] = ACTIONS(4680), + [sym_safe_nav] = ACTIONS(4680), + [sym_multiline_comment] = ACTIONS(3), + }, + [3747] = { + [sym__alpha_identifier] = ACTIONS(4127), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_LBRACK] = ACTIONS(4129), + [anon_sym_DOT] = ACTIONS(4127), + [anon_sym_typealias] = ACTIONS(4127), + [anon_sym_class] = ACTIONS(4127), + [anon_sym_interface] = ACTIONS(4127), + [anon_sym_enum] = ACTIONS(4127), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym_val] = ACTIONS(4127), + [anon_sym_var] = ACTIONS(4127), + [anon_sym_object] = ACTIONS(4127), + [anon_sym_fun] = ACTIONS(4127), + [anon_sym_get] = ACTIONS(4127), + [anon_sym_set] = ACTIONS(4127), + [anon_sym_this] = ACTIONS(4127), + [anon_sym_super] = ACTIONS(4127), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4127), + [anon_sym_for] = ACTIONS(4127), + [anon_sym_while] = ACTIONS(4127), + [anon_sym_do] = ACTIONS(4127), + [anon_sym_if] = ACTIONS(4127), + [anon_sym_when] = ACTIONS(4127), + [anon_sym_try] = ACTIONS(4127), + [anon_sym_throw] = ACTIONS(4127), + [anon_sym_return] = ACTIONS(4127), + [anon_sym_continue] = ACTIONS(4127), + [anon_sym_break] = ACTIONS(4127), + [anon_sym_COLON_COLON] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(4129), + [anon_sym_DASH_DASH] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4127), + [anon_sym_sealed] = ACTIONS(4127), + [anon_sym_annotation] = ACTIONS(4127), + [anon_sym_data] = ACTIONS(4127), + [anon_sym_inner] = ACTIONS(4127), + [anon_sym_value] = ACTIONS(4127), + [anon_sym_override] = ACTIONS(4127), + [anon_sym_lateinit] = ACTIONS(4127), + [anon_sym_public] = ACTIONS(4127), + [anon_sym_private] = ACTIONS(4127), + [anon_sym_internal] = ACTIONS(4127), + [anon_sym_protected] = ACTIONS(4127), + [anon_sym_tailrec] = ACTIONS(4127), + [anon_sym_operator] = ACTIONS(4127), + [anon_sym_infix] = ACTIONS(4127), + [anon_sym_inline] = ACTIONS(4127), + [anon_sym_external] = ACTIONS(4127), + [sym_property_modifier] = ACTIONS(4127), + [anon_sym_abstract] = ACTIONS(4127), + [anon_sym_final] = ACTIONS(4127), + [anon_sym_open] = ACTIONS(4127), + [anon_sym_vararg] = ACTIONS(4127), + [anon_sym_noinline] = ACTIONS(4127), + [anon_sym_crossinline] = ACTIONS(4127), + [anon_sym_expect] = ACTIONS(4127), + [anon_sym_actual] = ACTIONS(4127), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4129), + [anon_sym_continue_AT] = ACTIONS(4129), + [anon_sym_break_AT] = ACTIONS(4129), + [anon_sym_this_AT] = ACTIONS(4129), + [anon_sym_super_AT] = ACTIONS(4129), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(4127), + [anon_sym_false] = ACTIONS(4127), + [anon_sym_SQUOTE] = ACTIONS(4129), + [sym_null_literal] = ACTIONS(4127), + [sym__backtick_identifier] = ACTIONS(4129), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4129), + }, + [3748] = { + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3749] = { + [sym_type_constraints] = STATE(3941), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3750] = { + [sym_type_constraints] = STATE(3921), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_RBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_DASH_GT] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3751] = { + [sym__alpha_identifier] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_as] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4684), + [anon_sym_LPAREN] = ACTIONS(4684), + [anon_sym_COMMA] = ACTIONS(4684), + [anon_sym_by] = ACTIONS(4682), + [anon_sym_LT] = ACTIONS(4682), + [anon_sym_GT] = ACTIONS(4682), + [anon_sym_where] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4682), + [anon_sym_set] = ACTIONS(4682), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4684), + [anon_sym_in] = ACTIONS(4682), + [anon_sym_DOT_DOT] = ACTIONS(4684), + [anon_sym_QMARK_COLON] = ACTIONS(4684), + [anon_sym_AMP_AMP] = ACTIONS(4684), + [anon_sym_PIPE_PIPE] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_PLUS_EQ] = ACTIONS(4684), + [anon_sym_DASH_EQ] = ACTIONS(4684), + [anon_sym_STAR_EQ] = ACTIONS(4684), + [anon_sym_SLASH_EQ] = ACTIONS(4684), + [anon_sym_PERCENT_EQ] = ACTIONS(4684), + [anon_sym_BANG_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4684), + [anon_sym_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4684), + [anon_sym_LT_EQ] = ACTIONS(4684), + [anon_sym_GT_EQ] = ACTIONS(4684), + [anon_sym_BANGin] = ACTIONS(4684), + [anon_sym_is] = ACTIONS(4682), + [anon_sym_BANGis] = ACTIONS(4684), + [anon_sym_PLUS] = ACTIONS(4682), + [anon_sym_DASH] = ACTIONS(4682), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_PERCENT] = ACTIONS(4682), + [anon_sym_as_QMARK] = ACTIONS(4684), + [anon_sym_PLUS_PLUS] = ACTIONS(4684), + [anon_sym_DASH_DASH] = ACTIONS(4684), + [anon_sym_BANG_BANG] = ACTIONS(4684), + [anon_sym_suspend] = ACTIONS(4682), + [anon_sym_sealed] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4682), + [anon_sym_inner] = ACTIONS(4682), + [anon_sym_value] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_lateinit] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4682), + [anon_sym_tailrec] = ACTIONS(4682), + [anon_sym_operator] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_inline] = ACTIONS(4682), + [anon_sym_external] = ACTIONS(4682), + [sym_property_modifier] = ACTIONS(4682), + [anon_sym_abstract] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_vararg] = ACTIONS(4682), + [anon_sym_noinline] = ACTIONS(4682), + [anon_sym_crossinline] = ACTIONS(4682), + [anon_sym_expect] = ACTIONS(4682), + [anon_sym_actual] = ACTIONS(4682), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4684), + [sym__automatic_semicolon] = ACTIONS(4684), + [sym_safe_nav] = ACTIONS(4684), + [sym_multiline_comment] = ACTIONS(3), + }, + [3752] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_DOT] = ACTIONS(4652), + [anon_sym_as] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_AT2] = ACTIONS(7025), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), + [sym_multiline_comment] = ACTIONS(3), + }, + [3753] = { + [sym__alpha_identifier] = ACTIONS(4586), + [anon_sym_AT] = ACTIONS(4588), + [anon_sym_LBRACK] = ACTIONS(4588), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_as] = ACTIONS(4586), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(4588), + [anon_sym_COMMA] = ACTIONS(4588), + [anon_sym_by] = ACTIONS(4586), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_where] = ACTIONS(4586), + [anon_sym_SEMI] = ACTIONS(4588), + [anon_sym_get] = ACTIONS(4586), + [anon_sym_set] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4586), + [sym_label] = ACTIONS(4588), + [anon_sym_in] = ACTIONS(4586), + [anon_sym_DOT_DOT] = ACTIONS(4588), + [anon_sym_QMARK_COLON] = ACTIONS(4588), + [anon_sym_AMP_AMP] = ACTIONS(4588), + [anon_sym_PIPE_PIPE] = ACTIONS(4588), + [anon_sym_else] = ACTIONS(4586), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym_PLUS_EQ] = ACTIONS(4588), + [anon_sym_DASH_EQ] = ACTIONS(4588), + [anon_sym_STAR_EQ] = ACTIONS(4588), + [anon_sym_SLASH_EQ] = ACTIONS(4588), + [anon_sym_PERCENT_EQ] = ACTIONS(4588), + [anon_sym_BANG_EQ] = ACTIONS(4586), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4588), + [anon_sym_EQ_EQ] = ACTIONS(4586), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4588), + [anon_sym_LT_EQ] = ACTIONS(4588), + [anon_sym_GT_EQ] = ACTIONS(4588), + [anon_sym_BANGin] = ACTIONS(4588), + [anon_sym_is] = ACTIONS(4586), + [anon_sym_BANGis] = ACTIONS(4588), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_PERCENT] = ACTIONS(4586), + [anon_sym_as_QMARK] = ACTIONS(4588), + [anon_sym_PLUS_PLUS] = ACTIONS(4588), + [anon_sym_DASH_DASH] = ACTIONS(4588), + [anon_sym_BANG_BANG] = ACTIONS(4588), + [anon_sym_suspend] = ACTIONS(4586), + [anon_sym_sealed] = ACTIONS(4586), + [anon_sym_annotation] = ACTIONS(4586), + [anon_sym_data] = ACTIONS(4586), + [anon_sym_inner] = ACTIONS(4586), + [anon_sym_value] = ACTIONS(4586), + [anon_sym_override] = ACTIONS(4586), + [anon_sym_lateinit] = ACTIONS(4586), + [anon_sym_public] = ACTIONS(4586), + [anon_sym_private] = ACTIONS(4586), + [anon_sym_internal] = ACTIONS(4586), + [anon_sym_protected] = ACTIONS(4586), + [anon_sym_tailrec] = ACTIONS(4586), + [anon_sym_operator] = ACTIONS(4586), + [anon_sym_infix] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym_external] = ACTIONS(4586), + [sym_property_modifier] = ACTIONS(4586), + [anon_sym_abstract] = ACTIONS(4586), + [anon_sym_final] = ACTIONS(4586), + [anon_sym_open] = ACTIONS(4586), + [anon_sym_vararg] = ACTIONS(4586), + [anon_sym_noinline] = ACTIONS(4586), + [anon_sym_crossinline] = ACTIONS(4586), + [anon_sym_expect] = ACTIONS(4586), + [anon_sym_actual] = ACTIONS(4586), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4588), + [sym__automatic_semicolon] = ACTIONS(4588), + [sym_safe_nav] = ACTIONS(4588), + [sym_multiline_comment] = ACTIONS(3), + }, + [3754] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3755] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3756] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_by] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + }, + [3757] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3758] = { + [sym_type_constraints] = STATE(3918), + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_DASH_GT] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3759] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3760] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3761] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3762] = { + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3763] = { + [sym_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3764] = { + [sym_function_body] = STATE(3600), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [3765] = { + [sym_enum_class_body] = STATE(4034), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3766] = { + [sym_function_body] = STATE(3577), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [3767] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_LPAREN] = ACTIONS(4720), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + }, + [3768] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3769] = { + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3770] = { + [sym_type_constraints] = STATE(3945), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3771] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3772] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3773] = { + [sym_class_body] = STATE(4033), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [sym_label] = ACTIONS(4517), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_suspend] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4515), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_lateinit] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_tailrec] = ACTIONS(4515), + [anon_sym_operator] = ACTIONS(4515), + [anon_sym_infix] = ACTIONS(4515), + [anon_sym_inline] = ACTIONS(4515), + [anon_sym_external] = ACTIONS(4515), + [sym_property_modifier] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_final] = ACTIONS(4515), + [anon_sym_open] = ACTIONS(4515), + [anon_sym_vararg] = ACTIONS(4515), + [anon_sym_noinline] = ACTIONS(4515), + [anon_sym_crossinline] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4517), + [sym__automatic_semicolon] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + }, + [3774] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3775] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3776] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3777] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3778] = { + [sym_class_body] = STATE(3187), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7071), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [3779] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3780] = { + [sym_class_body] = STATE(3088), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7073), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [3781] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3782] = { + [sym__alpha_identifier] = ACTIONS(4660), + [anon_sym_AT] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_DOT] = ACTIONS(4660), + [anon_sym_as] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4660), + [anon_sym_GT] = ACTIONS(4660), + [anon_sym_where] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_get] = ACTIONS(4660), + [anon_sym_set] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4660), + [sym_label] = ACTIONS(4662), + [anon_sym_in] = ACTIONS(4660), + [anon_sym_DOT_DOT] = ACTIONS(4662), + [anon_sym_QMARK_COLON] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_PIPE_PIPE] = ACTIONS(4662), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_PLUS_EQ] = ACTIONS(4662), + [anon_sym_DASH_EQ] = ACTIONS(4662), + [anon_sym_STAR_EQ] = ACTIONS(4662), + [anon_sym_SLASH_EQ] = ACTIONS(4662), + [anon_sym_PERCENT_EQ] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4660), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4662), + [anon_sym_EQ_EQ] = ACTIONS(4660), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4662), + [anon_sym_LT_EQ] = ACTIONS(4662), + [anon_sym_GT_EQ] = ACTIONS(4662), + [anon_sym_BANGin] = ACTIONS(4662), + [anon_sym_is] = ACTIONS(4660), + [anon_sym_BANGis] = ACTIONS(4662), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_as_QMARK] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_BANG_BANG] = ACTIONS(4662), + [anon_sym_suspend] = ACTIONS(4660), + [anon_sym_sealed] = ACTIONS(4660), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_data] = ACTIONS(4660), + [anon_sym_inner] = ACTIONS(4660), + [anon_sym_value] = ACTIONS(4660), + [anon_sym_override] = ACTIONS(4660), + [anon_sym_lateinit] = ACTIONS(4660), + [anon_sym_public] = ACTIONS(4660), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_internal] = ACTIONS(4660), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_tailrec] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_infix] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym_external] = ACTIONS(4660), + [sym_property_modifier] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_final] = ACTIONS(4660), + [anon_sym_open] = ACTIONS(4660), + [anon_sym_vararg] = ACTIONS(4660), + [anon_sym_noinline] = ACTIONS(4660), + [anon_sym_crossinline] = ACTIONS(4660), + [anon_sym_expect] = ACTIONS(4660), + [anon_sym_actual] = ACTIONS(4660), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4662), + [sym__automatic_semicolon] = ACTIONS(4662), + [sym_safe_nav] = ACTIONS(4662), + [sym_multiline_comment] = ACTIONS(3), + }, + [3783] = { + [sym__alpha_identifier] = ACTIONS(4539), + [anon_sym_AT] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_as] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_where] = ACTIONS(4539), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym_get] = ACTIONS(4539), + [anon_sym_set] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(4539), + [sym_label] = ACTIONS(4541), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4541), + [anon_sym_AMP_AMP] = ACTIONS(4541), + [anon_sym_PIPE_PIPE] = ACTIONS(4541), + [anon_sym_else] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4541), + [anon_sym_PLUS_EQ] = ACTIONS(4541), + [anon_sym_DASH_EQ] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4541), + [anon_sym_SLASH_EQ] = ACTIONS(4541), + [anon_sym_PERCENT_EQ] = ACTIONS(4541), + [anon_sym_BANG_EQ] = ACTIONS(4539), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), + [anon_sym_EQ_EQ] = ACTIONS(4539), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), + [anon_sym_LT_EQ] = ACTIONS(4541), + [anon_sym_GT_EQ] = ACTIONS(4541), + [anon_sym_BANGin] = ACTIONS(4541), + [anon_sym_is] = ACTIONS(4539), + [anon_sym_BANGis] = ACTIONS(4541), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_as_QMARK] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(4541), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_BANG_BANG] = ACTIONS(4541), + [anon_sym_suspend] = ACTIONS(4539), + [anon_sym_sealed] = ACTIONS(4539), + [anon_sym_annotation] = ACTIONS(4539), + [anon_sym_data] = ACTIONS(4539), + [anon_sym_inner] = ACTIONS(4539), + [anon_sym_value] = ACTIONS(4539), + [anon_sym_override] = ACTIONS(4539), + [anon_sym_lateinit] = ACTIONS(4539), + [anon_sym_public] = ACTIONS(4539), + [anon_sym_private] = ACTIONS(4539), + [anon_sym_internal] = ACTIONS(4539), + [anon_sym_protected] = ACTIONS(4539), + [anon_sym_tailrec] = ACTIONS(4539), + [anon_sym_operator] = ACTIONS(4539), + [anon_sym_infix] = ACTIONS(4539), + [anon_sym_inline] = ACTIONS(4539), + [anon_sym_external] = ACTIONS(4539), + [sym_property_modifier] = ACTIONS(4539), + [anon_sym_abstract] = ACTIONS(4539), + [anon_sym_final] = ACTIONS(4539), + [anon_sym_open] = ACTIONS(4539), + [anon_sym_vararg] = ACTIONS(4539), + [anon_sym_noinline] = ACTIONS(4539), + [anon_sym_crossinline] = ACTIONS(4539), + [anon_sym_expect] = ACTIONS(4539), + [anon_sym_actual] = ACTIONS(4539), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4541), + [sym__automatic_semicolon] = ACTIONS(4541), + [sym_safe_nav] = ACTIONS(4541), + [sym_multiline_comment] = ACTIONS(3), + }, + [3784] = { + [sym_type_constraints] = STATE(3951), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3785] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_annotation] = ACTIONS(4519), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_lateinit] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_tailrec] = ACTIONS(4519), + [anon_sym_operator] = ACTIONS(4519), + [anon_sym_infix] = ACTIONS(4519), + [anon_sym_inline] = ACTIONS(4519), + [anon_sym_external] = ACTIONS(4519), + [sym_property_modifier] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_open] = ACTIONS(4519), + [anon_sym_vararg] = ACTIONS(4519), + [anon_sym_noinline] = ACTIONS(4519), + [anon_sym_crossinline] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4521), + [sym__automatic_semicolon] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + }, + [3786] = { + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3787] = { + [sym_class_body] = STATE(4054), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + }, + [3788] = { + [sym_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3789] = { + [sym_function_body] = STATE(3409), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_while] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3790] = { + [sym_class_body] = STATE(4082), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3791] = { + [sym__alpha_identifier] = ACTIONS(4564), + [anon_sym_AT] = ACTIONS(4566), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_as] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(4564), + [anon_sym_LBRACE] = ACTIONS(4566), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_LPAREN] = ACTIONS(4566), + [anon_sym_COMMA] = ACTIONS(4566), + [anon_sym_by] = ACTIONS(4564), + [anon_sym_LT] = ACTIONS(4564), + [anon_sym_GT] = ACTIONS(4564), + [anon_sym_where] = ACTIONS(4564), + [anon_sym_SEMI] = ACTIONS(4566), + [anon_sym_get] = ACTIONS(4564), + [anon_sym_set] = ACTIONS(4564), + [anon_sym_STAR] = ACTIONS(4564), + [sym_label] = ACTIONS(4566), + [anon_sym_in] = ACTIONS(4564), + [anon_sym_DOT_DOT] = ACTIONS(4566), + [anon_sym_QMARK_COLON] = ACTIONS(4566), + [anon_sym_AMP_AMP] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4566), + [anon_sym_else] = ACTIONS(4564), + [anon_sym_COLON_COLON] = ACTIONS(4566), + [anon_sym_PLUS_EQ] = ACTIONS(4566), + [anon_sym_DASH_EQ] = ACTIONS(4566), + [anon_sym_STAR_EQ] = ACTIONS(4566), + [anon_sym_SLASH_EQ] = ACTIONS(4566), + [anon_sym_PERCENT_EQ] = ACTIONS(4566), + [anon_sym_BANG_EQ] = ACTIONS(4564), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4564), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4566), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4566), + [anon_sym_BANGin] = ACTIONS(4566), + [anon_sym_is] = ACTIONS(4564), + [anon_sym_BANGis] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4564), + [anon_sym_DASH] = ACTIONS(4564), + [anon_sym_SLASH] = ACTIONS(4564), + [anon_sym_PERCENT] = ACTIONS(4564), + [anon_sym_as_QMARK] = ACTIONS(4566), + [anon_sym_PLUS_PLUS] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4566), + [anon_sym_BANG_BANG] = ACTIONS(4566), + [anon_sym_suspend] = ACTIONS(4564), + [anon_sym_sealed] = ACTIONS(4564), + [anon_sym_annotation] = ACTIONS(4564), + [anon_sym_data] = ACTIONS(4564), + [anon_sym_inner] = ACTIONS(4564), + [anon_sym_value] = ACTIONS(4564), + [anon_sym_override] = ACTIONS(4564), + [anon_sym_lateinit] = ACTIONS(4564), + [anon_sym_public] = ACTIONS(4564), + [anon_sym_private] = ACTIONS(4564), + [anon_sym_internal] = ACTIONS(4564), + [anon_sym_protected] = ACTIONS(4564), + [anon_sym_tailrec] = ACTIONS(4564), + [anon_sym_operator] = ACTIONS(4564), + [anon_sym_infix] = ACTIONS(4564), + [anon_sym_inline] = ACTIONS(4564), + [anon_sym_external] = ACTIONS(4564), + [sym_property_modifier] = ACTIONS(4564), + [anon_sym_abstract] = ACTIONS(4564), + [anon_sym_final] = ACTIONS(4564), + [anon_sym_open] = ACTIONS(4564), + [anon_sym_vararg] = ACTIONS(4564), + [anon_sym_noinline] = ACTIONS(4564), + [anon_sym_crossinline] = ACTIONS(4564), + [anon_sym_expect] = ACTIONS(4564), + [anon_sym_actual] = ACTIONS(4564), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4566), + [sym__automatic_semicolon] = ACTIONS(4566), + [sym_safe_nav] = ACTIONS(4566), + [sym_multiline_comment] = ACTIONS(3), + }, + [3792] = { + [sym_enum_class_body] = STATE(4030), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3793] = { + [sym_class_body] = STATE(4071), + [sym__alpha_identifier] = ACTIONS(4535), + [anon_sym_AT] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_where] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_get] = ACTIONS(4535), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [sym_label] = ACTIONS(4537), + [anon_sym_in] = ACTIONS(4535), + [anon_sym_DOT_DOT] = ACTIONS(4537), + [anon_sym_QMARK_COLON] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_else] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), + [anon_sym_EQ_EQ] = ACTIONS(4535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_BANGin] = ACTIONS(4537), + [anon_sym_is] = ACTIONS(4535), + [anon_sym_BANGis] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_as_QMARK] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_BANG_BANG] = ACTIONS(4537), + [anon_sym_suspend] = ACTIONS(4535), + [anon_sym_sealed] = ACTIONS(4535), + [anon_sym_annotation] = ACTIONS(4535), + [anon_sym_data] = ACTIONS(4535), + [anon_sym_inner] = ACTIONS(4535), + [anon_sym_value] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_lateinit] = ACTIONS(4535), + [anon_sym_public] = ACTIONS(4535), + [anon_sym_private] = ACTIONS(4535), + [anon_sym_internal] = ACTIONS(4535), + [anon_sym_protected] = ACTIONS(4535), + [anon_sym_tailrec] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_infix] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_external] = ACTIONS(4535), + [sym_property_modifier] = ACTIONS(4535), + [anon_sym_abstract] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_open] = ACTIONS(4535), + [anon_sym_vararg] = ACTIONS(4535), + [anon_sym_noinline] = ACTIONS(4535), + [anon_sym_crossinline] = ACTIONS(4535), + [anon_sym_expect] = ACTIONS(4535), + [anon_sym_actual] = ACTIONS(4535), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4537), + [sym__automatic_semicolon] = ACTIONS(4537), + [sym_safe_nav] = ACTIONS(4537), + [sym_multiline_comment] = ACTIONS(3), + }, + [3794] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + }, + [3795] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3796] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3797] = { + [sym_enum_class_body] = STATE(4082), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3798] = { + [sym_class_body] = STATE(4084), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3799] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_as] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_where] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_get] = ACTIONS(4698), + [anon_sym_set] = ACTIONS(4698), + [anon_sym_STAR] = ACTIONS(4698), + [sym_label] = ACTIONS(4700), + [anon_sym_in] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4700), + [anon_sym_QMARK_COLON] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_else] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4700), + [anon_sym_DASH_EQ] = ACTIONS(4700), + [anon_sym_STAR_EQ] = ACTIONS(4700), + [anon_sym_SLASH_EQ] = ACTIONS(4700), + [anon_sym_PERCENT_EQ] = ACTIONS(4700), + [anon_sym_BANG_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4700), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_BANGin] = ACTIONS(4700), + [anon_sym_is] = ACTIONS(4698), + [anon_sym_BANGis] = ACTIONS(4700), + [anon_sym_PLUS] = ACTIONS(4698), + [anon_sym_DASH] = ACTIONS(4698), + [anon_sym_SLASH] = ACTIONS(4698), + [anon_sym_PERCENT] = ACTIONS(4698), + [anon_sym_as_QMARK] = ACTIONS(4700), + [anon_sym_PLUS_PLUS] = ACTIONS(4700), + [anon_sym_DASH_DASH] = ACTIONS(4700), + [anon_sym_BANG_BANG] = ACTIONS(4700), + [anon_sym_suspend] = ACTIONS(4698), + [anon_sym_sealed] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4698), + [anon_sym_data] = ACTIONS(4698), + [anon_sym_inner] = ACTIONS(4698), + [anon_sym_value] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_lateinit] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4698), + [anon_sym_tailrec] = ACTIONS(4698), + [anon_sym_operator] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_inline] = ACTIONS(4698), + [anon_sym_external] = ACTIONS(4698), + [sym_property_modifier] = ACTIONS(4698), + [anon_sym_abstract] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_vararg] = ACTIONS(4698), + [anon_sym_noinline] = ACTIONS(4698), + [anon_sym_crossinline] = ACTIONS(4698), + [anon_sym_expect] = ACTIONS(4698), + [anon_sym_actual] = ACTIONS(4698), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4700), + [sym__automatic_semicolon] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), + [sym_multiline_comment] = ACTIONS(3), + }, + [3800] = { + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + }, + [3801] = { + [sym_value_arguments] = STATE(3250), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(7075), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3802] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(6977), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3803] = { + [sym_class_body] = STATE(4073), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3804] = { + [sym__alpha_identifier] = ACTIONS(4640), + [anon_sym_AT] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_as] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4640), + [anon_sym_GT] = ACTIONS(4640), + [anon_sym_where] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_get] = ACTIONS(4640), + [anon_sym_set] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4640), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4640), + [anon_sym_DOT_DOT] = ACTIONS(4642), + [anon_sym_QMARK_COLON] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_PIPE_PIPE] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_PLUS_EQ] = ACTIONS(4642), + [anon_sym_DASH_EQ] = ACTIONS(4642), + [anon_sym_STAR_EQ] = ACTIONS(4642), + [anon_sym_SLASH_EQ] = ACTIONS(4642), + [anon_sym_PERCENT_EQ] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4640), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4642), + [anon_sym_EQ_EQ] = ACTIONS(4640), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4642), + [anon_sym_LT_EQ] = ACTIONS(4642), + [anon_sym_GT_EQ] = ACTIONS(4642), + [anon_sym_BANGin] = ACTIONS(4642), + [anon_sym_is] = ACTIONS(4640), + [anon_sym_BANGis] = ACTIONS(4642), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_SLASH] = ACTIONS(4640), + [anon_sym_PERCENT] = ACTIONS(4640), + [anon_sym_as_QMARK] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_BANG_BANG] = ACTIONS(4642), + [anon_sym_suspend] = ACTIONS(4640), + [anon_sym_sealed] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4640), + [anon_sym_data] = ACTIONS(4640), + [anon_sym_inner] = ACTIONS(4640), + [anon_sym_value] = ACTIONS(4640), + [anon_sym_override] = ACTIONS(4640), + [anon_sym_lateinit] = ACTIONS(4640), + [anon_sym_public] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4640), + [anon_sym_internal] = ACTIONS(4640), + [anon_sym_protected] = ACTIONS(4640), + [anon_sym_tailrec] = ACTIONS(4640), + [anon_sym_operator] = ACTIONS(4640), + [anon_sym_infix] = ACTIONS(4640), + [anon_sym_inline] = ACTIONS(4640), + [anon_sym_external] = ACTIONS(4640), + [sym_property_modifier] = ACTIONS(4640), + [anon_sym_abstract] = ACTIONS(4640), + [anon_sym_final] = ACTIONS(4640), + [anon_sym_open] = ACTIONS(4640), + [anon_sym_vararg] = ACTIONS(4640), + [anon_sym_noinline] = ACTIONS(4640), + [anon_sym_crossinline] = ACTIONS(4640), + [anon_sym_expect] = ACTIONS(4640), + [anon_sym_actual] = ACTIONS(4640), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4642), + [sym__automatic_semicolon] = ACTIONS(4642), + [sym_safe_nav] = ACTIONS(4642), + [sym_multiline_comment] = ACTIONS(3), + }, + [3805] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3806] = { + [sym__alpha_identifier] = ACTIONS(4636), + [anon_sym_AT] = ACTIONS(4638), + [anon_sym_COLON] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4638), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_as] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4638), + [anon_sym_LPAREN] = ACTIONS(4638), + [anon_sym_COMMA] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_where] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym_get] = ACTIONS(4636), + [anon_sym_set] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4636), + [sym_label] = ACTIONS(4638), + [anon_sym_in] = ACTIONS(4636), + [anon_sym_DOT_DOT] = ACTIONS(4638), + [anon_sym_QMARK_COLON] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_PIPE_PIPE] = ACTIONS(4638), + [anon_sym_else] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_PLUS_EQ] = ACTIONS(4638), + [anon_sym_DASH_EQ] = ACTIONS(4638), + [anon_sym_STAR_EQ] = ACTIONS(4638), + [anon_sym_SLASH_EQ] = ACTIONS(4638), + [anon_sym_PERCENT_EQ] = ACTIONS(4638), + [anon_sym_BANG_EQ] = ACTIONS(4636), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4638), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4638), + [anon_sym_BANGin] = ACTIONS(4638), + [anon_sym_is] = ACTIONS(4636), + [anon_sym_BANGis] = ACTIONS(4638), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_SLASH] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(4636), + [anon_sym_as_QMARK] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_BANG_BANG] = ACTIONS(4638), + [anon_sym_suspend] = ACTIONS(4636), + [anon_sym_sealed] = ACTIONS(4636), + [anon_sym_annotation] = ACTIONS(4636), + [anon_sym_data] = ACTIONS(4636), + [anon_sym_inner] = ACTIONS(4636), + [anon_sym_value] = ACTIONS(4636), + [anon_sym_override] = ACTIONS(4636), + [anon_sym_lateinit] = ACTIONS(4636), + [anon_sym_public] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4636), + [anon_sym_internal] = ACTIONS(4636), + [anon_sym_protected] = ACTIONS(4636), + [anon_sym_tailrec] = ACTIONS(4636), + [anon_sym_operator] = ACTIONS(4636), + [anon_sym_infix] = ACTIONS(4636), + [anon_sym_inline] = ACTIONS(4636), + [anon_sym_external] = ACTIONS(4636), + [sym_property_modifier] = ACTIONS(4636), + [anon_sym_abstract] = ACTIONS(4636), + [anon_sym_final] = ACTIONS(4636), + [anon_sym_open] = ACTIONS(4636), + [anon_sym_vararg] = ACTIONS(4636), + [anon_sym_noinline] = ACTIONS(4636), + [anon_sym_crossinline] = ACTIONS(4636), + [anon_sym_expect] = ACTIONS(4636), + [anon_sym_actual] = ACTIONS(4636), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4638), + [sym__automatic_semicolon] = ACTIONS(4638), + [sym_safe_nav] = ACTIONS(4638), + [sym_multiline_comment] = ACTIONS(3), + }, + [3807] = { + [sym_class_body] = STATE(4030), + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [3808] = { + [sym_function_body] = STATE(3093), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_object] = ACTIONS(4281), + [anon_sym_fun] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_this] = ACTIONS(4281), + [anon_sym_super] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_when] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4283), + [anon_sym_continue_AT] = ACTIONS(4283), + [anon_sym_break_AT] = ACTIONS(4283), + [anon_sym_this_AT] = ACTIONS(4283), + [anon_sym_super_AT] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4283), + [sym_integer_literal] = ACTIONS(4281), + [sym_hex_literal] = ACTIONS(4283), + [sym_bin_literal] = ACTIONS(4283), + [anon_sym_true] = ACTIONS(4281), + [anon_sym_false] = ACTIONS(4281), + [anon_sym_SQUOTE] = ACTIONS(4283), + [sym_null_literal] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4283), + }, + [3809] = { + [sym_function_body] = STATE(3239), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_object] = ACTIONS(4170), + [anon_sym_fun] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_this] = ACTIONS(4170), + [anon_sym_super] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4170), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4170), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_when] = ACTIONS(4170), + [anon_sym_try] = ACTIONS(4170), + [anon_sym_throw] = ACTIONS(4170), + [anon_sym_return] = ACTIONS(4170), + [anon_sym_continue] = ACTIONS(4170), + [anon_sym_break] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4172), + [anon_sym_continue_AT] = ACTIONS(4172), + [anon_sym_break_AT] = ACTIONS(4172), + [anon_sym_this_AT] = ACTIONS(4172), + [anon_sym_super_AT] = ACTIONS(4172), + [sym_real_literal] = ACTIONS(4172), + [sym_integer_literal] = ACTIONS(4170), + [sym_hex_literal] = ACTIONS(4172), + [sym_bin_literal] = ACTIONS(4172), + [anon_sym_true] = ACTIONS(4170), + [anon_sym_false] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4170), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4172), + }, + [3810] = { + [sym_enum_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3811] = { + [ts_builtin_sym_end] = ACTIONS(1423), + [sym__alpha_identifier] = ACTIONS(7081), + [anon_sym_AT] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_typealias] = ACTIONS(7081), + [anon_sym_class] = ACTIONS(7081), + [anon_sym_interface] = ACTIONS(7081), + [anon_sym_enum] = ACTIONS(7081), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_val] = ACTIONS(7081), + [anon_sym_var] = ACTIONS(7081), + [anon_sym_object] = ACTIONS(7081), + [anon_sym_fun] = ACTIONS(7081), + [anon_sym_get] = ACTIONS(7081), + [anon_sym_set] = ACTIONS(7081), + [anon_sym_this] = ACTIONS(7081), + [anon_sym_super] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(1423), + [sym_label] = ACTIONS(7081), + [anon_sym_for] = ACTIONS(7081), + [anon_sym_while] = ACTIONS(7081), + [anon_sym_do] = ACTIONS(7081), + [anon_sym_if] = ACTIONS(7081), + [anon_sym_when] = ACTIONS(7081), + [anon_sym_try] = ACTIONS(7081), + [anon_sym_throw] = ACTIONS(7081), + [anon_sym_return] = ACTIONS(7081), + [anon_sym_continue] = ACTIONS(7081), + [anon_sym_break] = ACTIONS(7081), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_suspend] = ACTIONS(7081), + [anon_sym_sealed] = ACTIONS(7081), + [anon_sym_annotation] = ACTIONS(7081), + [anon_sym_data] = ACTIONS(7081), + [anon_sym_inner] = ACTIONS(7081), + [anon_sym_value] = ACTIONS(7081), + [anon_sym_override] = ACTIONS(7081), + [anon_sym_lateinit] = ACTIONS(7081), + [anon_sym_public] = ACTIONS(7081), + [anon_sym_private] = ACTIONS(7081), + [anon_sym_internal] = ACTIONS(7081), + [anon_sym_protected] = ACTIONS(7081), + [anon_sym_tailrec] = ACTIONS(7081), + [anon_sym_operator] = ACTIONS(7081), + [anon_sym_infix] = ACTIONS(7081), + [anon_sym_inline] = ACTIONS(7081), + [anon_sym_external] = ACTIONS(7081), + [sym_property_modifier] = ACTIONS(7081), + [anon_sym_abstract] = ACTIONS(7081), + [anon_sym_final] = ACTIONS(7081), + [anon_sym_open] = ACTIONS(7081), + [anon_sym_vararg] = ACTIONS(7081), + [anon_sym_noinline] = ACTIONS(7081), + [anon_sym_crossinline] = ACTIONS(7081), + [anon_sym_expect] = ACTIONS(7081), + [anon_sym_actual] = ACTIONS(7081), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1423), + [anon_sym_continue_AT] = ACTIONS(1423), + [anon_sym_break_AT] = ACTIONS(1423), + [anon_sym_this_AT] = ACTIONS(1423), + [anon_sym_super_AT] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(7081), + [sym_hex_literal] = ACTIONS(1423), + [sym_bin_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(7081), + [anon_sym_false] = ACTIONS(7081), + [anon_sym_SQUOTE] = ACTIONS(1423), + [sym_null_literal] = ACTIONS(7081), + [sym__backtick_identifier] = ACTIONS(1423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1423), + }, + [3812] = { + [sym__alpha_identifier] = ACTIONS(4578), + [anon_sym_AT] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4578), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_as] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4578), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4578), + [anon_sym_where] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_get] = ACTIONS(4578), + [anon_sym_set] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4578), + [sym_label] = ACTIONS(4580), + [anon_sym_in] = ACTIONS(4578), + [anon_sym_DOT_DOT] = ACTIONS(4580), + [anon_sym_QMARK_COLON] = ACTIONS(4580), + [anon_sym_AMP_AMP] = ACTIONS(4580), + [anon_sym_PIPE_PIPE] = ACTIONS(4580), + [anon_sym_else] = ACTIONS(4578), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_PLUS_EQ] = ACTIONS(4580), + [anon_sym_DASH_EQ] = ACTIONS(4580), + [anon_sym_STAR_EQ] = ACTIONS(4580), + [anon_sym_SLASH_EQ] = ACTIONS(4580), + [anon_sym_PERCENT_EQ] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4580), + [anon_sym_EQ_EQ] = ACTIONS(4578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4580), + [anon_sym_LT_EQ] = ACTIONS(4580), + [anon_sym_GT_EQ] = ACTIONS(4580), + [anon_sym_BANGin] = ACTIONS(4580), + [anon_sym_is] = ACTIONS(4578), + [anon_sym_BANGis] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_as_QMARK] = ACTIONS(4580), + [anon_sym_PLUS_PLUS] = ACTIONS(4580), + [anon_sym_DASH_DASH] = ACTIONS(4580), + [anon_sym_BANG_BANG] = ACTIONS(4580), + [anon_sym_suspend] = ACTIONS(4578), + [anon_sym_sealed] = ACTIONS(4578), + [anon_sym_annotation] = ACTIONS(4578), + [anon_sym_data] = ACTIONS(4578), + [anon_sym_inner] = ACTIONS(4578), + [anon_sym_value] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_lateinit] = ACTIONS(4578), + [anon_sym_public] = ACTIONS(4578), + [anon_sym_private] = ACTIONS(4578), + [anon_sym_internal] = ACTIONS(4578), + [anon_sym_protected] = ACTIONS(4578), + [anon_sym_tailrec] = ACTIONS(4578), + [anon_sym_operator] = ACTIONS(4578), + [anon_sym_infix] = ACTIONS(4578), + [anon_sym_inline] = ACTIONS(4578), + [anon_sym_external] = ACTIONS(4578), + [sym_property_modifier] = ACTIONS(4578), + [anon_sym_abstract] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_open] = ACTIONS(4578), + [anon_sym_vararg] = ACTIONS(4578), + [anon_sym_noinline] = ACTIONS(4578), + [anon_sym_crossinline] = ACTIONS(4578), + [anon_sym_expect] = ACTIONS(4578), + [anon_sym_actual] = ACTIONS(4578), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4580), + [sym__automatic_semicolon] = ACTIONS(4580), + [sym_safe_nav] = ACTIONS(4580), + [sym_multiline_comment] = ACTIONS(3), + }, + [3813] = { + [sym__alpha_identifier] = ACTIONS(4648), + [anon_sym_AT] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4650), + [anon_sym_DOT] = ACTIONS(4648), + [anon_sym_as] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_by] = ACTIONS(4648), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_where] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_get] = ACTIONS(4648), + [anon_sym_set] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4648), + [sym_label] = ACTIONS(4650), + [anon_sym_in] = ACTIONS(4648), + [anon_sym_DOT_DOT] = ACTIONS(4650), + [anon_sym_QMARK_COLON] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_PIPE_PIPE] = ACTIONS(4650), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_PLUS_EQ] = ACTIONS(4650), + [anon_sym_DASH_EQ] = ACTIONS(4650), + [anon_sym_STAR_EQ] = ACTIONS(4650), + [anon_sym_SLASH_EQ] = ACTIONS(4650), + [anon_sym_PERCENT_EQ] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4650), + [anon_sym_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4650), + [anon_sym_LT_EQ] = ACTIONS(4650), + [anon_sym_GT_EQ] = ACTIONS(4650), + [anon_sym_BANGin] = ACTIONS(4650), + [anon_sym_is] = ACTIONS(4648), + [anon_sym_BANGis] = ACTIONS(4650), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_SLASH] = ACTIONS(4648), + [anon_sym_PERCENT] = ACTIONS(4648), + [anon_sym_as_QMARK] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_BANG_BANG] = ACTIONS(4650), + [anon_sym_suspend] = ACTIONS(4648), + [anon_sym_sealed] = ACTIONS(4648), + [anon_sym_annotation] = ACTIONS(4648), + [anon_sym_data] = ACTIONS(4648), + [anon_sym_inner] = ACTIONS(4648), + [anon_sym_value] = ACTIONS(4648), + [anon_sym_override] = ACTIONS(4648), + [anon_sym_lateinit] = ACTIONS(4648), + [anon_sym_public] = ACTIONS(4648), + [anon_sym_private] = ACTIONS(4648), + [anon_sym_internal] = ACTIONS(4648), + [anon_sym_protected] = ACTIONS(4648), + [anon_sym_tailrec] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_infix] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym_external] = ACTIONS(4648), + [sym_property_modifier] = ACTIONS(4648), + [anon_sym_abstract] = ACTIONS(4648), + [anon_sym_final] = ACTIONS(4648), + [anon_sym_open] = ACTIONS(4648), + [anon_sym_vararg] = ACTIONS(4648), + [anon_sym_noinline] = ACTIONS(4648), + [anon_sym_crossinline] = ACTIONS(4648), + [anon_sym_expect] = ACTIONS(4648), + [anon_sym_actual] = ACTIONS(4648), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4650), + [sym__automatic_semicolon] = ACTIONS(4650), + [sym_safe_nav] = ACTIONS(4650), + [sym_multiline_comment] = ACTIONS(3), + }, + [3814] = { + [sym_class_body] = STATE(4009), + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [sym_label] = ACTIONS(4584), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_suspend] = ACTIONS(4582), + [anon_sym_sealed] = ACTIONS(4582), + [anon_sym_annotation] = ACTIONS(4582), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_override] = ACTIONS(4582), + [anon_sym_lateinit] = ACTIONS(4582), + [anon_sym_public] = ACTIONS(4582), + [anon_sym_private] = ACTIONS(4582), + [anon_sym_internal] = ACTIONS(4582), + [anon_sym_protected] = ACTIONS(4582), + [anon_sym_tailrec] = ACTIONS(4582), + [anon_sym_operator] = ACTIONS(4582), + [anon_sym_infix] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4582), + [anon_sym_external] = ACTIONS(4582), + [sym_property_modifier] = ACTIONS(4582), + [anon_sym_abstract] = ACTIONS(4582), + [anon_sym_final] = ACTIONS(4582), + [anon_sym_open] = ACTIONS(4582), + [anon_sym_vararg] = ACTIONS(4582), + [anon_sym_noinline] = ACTIONS(4582), + [anon_sym_crossinline] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4584), + [sym__automatic_semicolon] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + }, + [3815] = { + [sym_enum_class_body] = STATE(3947), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3816] = { + [sym_type_constraints] = STATE(3011), + [sym_enum_class_body] = STATE(3181), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4226), + [anon_sym_fun] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_super] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4226), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_when] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4228), + [anon_sym_continue_AT] = ACTIONS(4228), + [anon_sym_break_AT] = ACTIONS(4228), + [anon_sym_this_AT] = ACTIONS(4228), + [anon_sym_super_AT] = ACTIONS(4228), + [sym_real_literal] = ACTIONS(4228), + [sym_integer_literal] = ACTIONS(4226), + [sym_hex_literal] = ACTIONS(4228), + [sym_bin_literal] = ACTIONS(4228), + [anon_sym_true] = ACTIONS(4226), + [anon_sym_false] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4228), + [sym_null_literal] = ACTIONS(4226), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4228), + }, + [3817] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3818] = { + [sym__alpha_identifier] = ACTIONS(4218), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_typealias] = ACTIONS(4218), + [anon_sym_class] = ACTIONS(4218), + [anon_sym_interface] = ACTIONS(4218), + [anon_sym_enum] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym_val] = ACTIONS(4218), + [anon_sym_var] = ACTIONS(4218), + [anon_sym_object] = ACTIONS(4218), + [anon_sym_fun] = ACTIONS(4218), + [anon_sym_get] = ACTIONS(4218), + [anon_sym_set] = ACTIONS(4218), + [anon_sym_this] = ACTIONS(4218), + [anon_sym_super] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4218), + [anon_sym_for] = ACTIONS(4218), + [anon_sym_while] = ACTIONS(4218), + [anon_sym_do] = ACTIONS(4218), + [anon_sym_if] = ACTIONS(4218), + [anon_sym_when] = ACTIONS(4218), + [anon_sym_try] = ACTIONS(4218), + [anon_sym_throw] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4218), + [anon_sym_sealed] = ACTIONS(4218), + [anon_sym_annotation] = ACTIONS(4218), + [anon_sym_data] = ACTIONS(4218), + [anon_sym_inner] = ACTIONS(4218), + [anon_sym_value] = ACTIONS(4218), + [anon_sym_override] = ACTIONS(4218), + [anon_sym_lateinit] = ACTIONS(4218), + [anon_sym_public] = ACTIONS(4218), + [anon_sym_private] = ACTIONS(4218), + [anon_sym_internal] = ACTIONS(4218), + [anon_sym_protected] = ACTIONS(4218), + [anon_sym_tailrec] = ACTIONS(4218), + [anon_sym_operator] = ACTIONS(4218), + [anon_sym_infix] = ACTIONS(4218), + [anon_sym_inline] = ACTIONS(4218), + [anon_sym_external] = ACTIONS(4218), + [sym_property_modifier] = ACTIONS(4218), + [anon_sym_abstract] = ACTIONS(4218), + [anon_sym_final] = ACTIONS(4218), + [anon_sym_open] = ACTIONS(4218), + [anon_sym_vararg] = ACTIONS(4218), + [anon_sym_noinline] = ACTIONS(4218), + [anon_sym_crossinline] = ACTIONS(4218), + [anon_sym_expect] = ACTIONS(4218), + [anon_sym_actual] = ACTIONS(4218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4218), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4218), + [anon_sym_false] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [3819] = { + [sym_function_body] = STATE(3513), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(7087), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_RBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_DASH_GT] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [3820] = { + [sym__alpha_identifier] = ACTIONS(4262), + [anon_sym_AT] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4264), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_as] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_LPAREN] = ACTIONS(4264), + [anon_sym_COMMA] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4262), + [anon_sym_GT] = ACTIONS(4262), + [anon_sym_where] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym_get] = ACTIONS(4262), + [anon_sym_set] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4264), + [anon_sym_in] = ACTIONS(4262), + [anon_sym_DOT_DOT] = ACTIONS(4264), + [anon_sym_QMARK_COLON] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_PIPE_PIPE] = ACTIONS(4264), + [anon_sym_else] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_PLUS_EQ] = ACTIONS(4264), + [anon_sym_DASH_EQ] = ACTIONS(4264), + [anon_sym_STAR_EQ] = ACTIONS(4264), + [anon_sym_SLASH_EQ] = ACTIONS(4264), + [anon_sym_PERCENT_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4264), + [anon_sym_LT_EQ] = ACTIONS(4264), + [anon_sym_GT_EQ] = ACTIONS(4264), + [anon_sym_BANGin] = ACTIONS(4264), + [anon_sym_is] = ACTIONS(4262), + [anon_sym_BANGis] = ACTIONS(4264), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_SLASH] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_BANG_BANG] = ACTIONS(4264), + [anon_sym_suspend] = ACTIONS(4262), + [anon_sym_sealed] = ACTIONS(4262), + [anon_sym_annotation] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4262), + [anon_sym_inner] = ACTIONS(4262), + [anon_sym_value] = ACTIONS(4262), + [anon_sym_override] = ACTIONS(4262), + [anon_sym_lateinit] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_internal] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_tailrec] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_infix] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym_external] = ACTIONS(4262), + [sym_property_modifier] = ACTIONS(4262), + [anon_sym_abstract] = ACTIONS(4262), + [anon_sym_final] = ACTIONS(4262), + [anon_sym_open] = ACTIONS(4262), + [anon_sym_vararg] = ACTIONS(4262), + [anon_sym_noinline] = ACTIONS(4262), + [anon_sym_crossinline] = ACTIONS(4262), + [anon_sym_expect] = ACTIONS(4262), + [anon_sym_actual] = ACTIONS(4262), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4264), + [sym__automatic_semicolon] = ACTIONS(4264), + [sym_safe_nav] = ACTIONS(4264), + [sym_multiline_comment] = ACTIONS(3), + }, + [3821] = { + [sym_function_body] = STATE(3969), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_PLUS_EQ] = ACTIONS(4283), + [anon_sym_DASH_EQ] = ACTIONS(4283), + [anon_sym_STAR_EQ] = ACTIONS(4283), + [anon_sym_SLASH_EQ] = ACTIONS(4283), + [anon_sym_PERCENT_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [3822] = { + [sym__alpha_identifier] = ACTIONS(4405), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_constructor] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_RBRACE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4405), + [anon_sym_object] = ACTIONS(4405), + [anon_sym_fun] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4405), + [anon_sym_set] = ACTIONS(4405), + [anon_sym_this] = ACTIONS(4405), + [anon_sym_super] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4405), + [anon_sym_when] = ACTIONS(4405), + [anon_sym_try] = ACTIONS(4405), + [anon_sym_throw] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_BANGin] = ACTIONS(4407), + [anon_sym_is] = ACTIONS(4405), + [anon_sym_BANGis] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4405), + [anon_sym_sealed] = ACTIONS(4405), + [anon_sym_annotation] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4405), + [anon_sym_inner] = ACTIONS(4405), + [anon_sym_value] = ACTIONS(4405), + [anon_sym_override] = ACTIONS(4405), + [anon_sym_lateinit] = ACTIONS(4405), + [anon_sym_public] = ACTIONS(4405), + [anon_sym_private] = ACTIONS(4405), + [anon_sym_internal] = ACTIONS(4405), + [anon_sym_protected] = ACTIONS(4405), + [anon_sym_tailrec] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_infix] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym_external] = ACTIONS(4405), + [sym_property_modifier] = ACTIONS(4405), + [anon_sym_abstract] = ACTIONS(4405), + [anon_sym_final] = ACTIONS(4405), + [anon_sym_open] = ACTIONS(4405), + [anon_sym_vararg] = ACTIONS(4405), + [anon_sym_noinline] = ACTIONS(4405), + [anon_sym_crossinline] = ACTIONS(4405), + [anon_sym_expect] = ACTIONS(4405), + [anon_sym_actual] = ACTIONS(4405), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4407), + [anon_sym_continue_AT] = ACTIONS(4407), + [anon_sym_break_AT] = ACTIONS(4407), + [anon_sym_this_AT] = ACTIONS(4407), + [anon_sym_super_AT] = ACTIONS(4407), + [sym_real_literal] = ACTIONS(4407), + [sym_integer_literal] = ACTIONS(4405), + [sym_hex_literal] = ACTIONS(4407), + [sym_bin_literal] = ACTIONS(4407), + [anon_sym_true] = ACTIONS(4405), + [anon_sym_false] = ACTIONS(4405), + [anon_sym_SQUOTE] = ACTIONS(4407), + [sym_null_literal] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4407), + [sym__automatic_semicolon] = ACTIONS(4407), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4407), + }, + [3823] = { + [sym_function_body] = STATE(3619), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7091), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [anon_sym_DASH_GT] = ACTIONS(4172), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_while] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3824] = { + [sym_class_body] = STATE(3947), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3825] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3826] = { + [sym__alpha_identifier] = ACTIONS(4210), + [anon_sym_AT] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_DOT] = ACTIONS(4210), + [anon_sym_typealias] = ACTIONS(4210), + [anon_sym_class] = ACTIONS(4210), + [anon_sym_interface] = ACTIONS(4210), + [anon_sym_enum] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(4212), + [anon_sym_val] = ACTIONS(4210), + [anon_sym_var] = ACTIONS(4210), + [anon_sym_object] = ACTIONS(4210), + [anon_sym_fun] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_this] = ACTIONS(4210), + [anon_sym_super] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4212), + [sym_label] = ACTIONS(4210), + [anon_sym_for] = ACTIONS(4210), + [anon_sym_while] = ACTIONS(4210), + [anon_sym_do] = ACTIONS(4210), + [anon_sym_if] = ACTIONS(4210), + [anon_sym_when] = ACTIONS(4210), + [anon_sym_try] = ACTIONS(4210), + [anon_sym_throw] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_BANG] = ACTIONS(4212), + [anon_sym_suspend] = ACTIONS(4210), + [anon_sym_sealed] = ACTIONS(4210), + [anon_sym_annotation] = ACTIONS(4210), + [anon_sym_data] = ACTIONS(4210), + [anon_sym_inner] = ACTIONS(4210), + [anon_sym_value] = ACTIONS(4210), + [anon_sym_override] = ACTIONS(4210), + [anon_sym_lateinit] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_internal] = ACTIONS(4210), + [anon_sym_protected] = ACTIONS(4210), + [anon_sym_tailrec] = ACTIONS(4210), + [anon_sym_operator] = ACTIONS(4210), + [anon_sym_infix] = ACTIONS(4210), + [anon_sym_inline] = ACTIONS(4210), + [anon_sym_external] = ACTIONS(4210), + [sym_property_modifier] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_open] = ACTIONS(4210), + [anon_sym_vararg] = ACTIONS(4210), + [anon_sym_noinline] = ACTIONS(4210), + [anon_sym_crossinline] = ACTIONS(4210), + [anon_sym_expect] = ACTIONS(4210), + [anon_sym_actual] = ACTIONS(4210), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4212), + [anon_sym_continue_AT] = ACTIONS(4212), + [anon_sym_break_AT] = ACTIONS(4212), + [anon_sym_this_AT] = ACTIONS(4212), + [anon_sym_super_AT] = ACTIONS(4212), + [sym_real_literal] = ACTIONS(4212), + [sym_integer_literal] = ACTIONS(4210), + [sym_hex_literal] = ACTIONS(4212), + [sym_bin_literal] = ACTIONS(4212), + [anon_sym_true] = ACTIONS(4210), + [anon_sym_false] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [sym_null_literal] = ACTIONS(4210), + [sym__backtick_identifier] = ACTIONS(4212), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4212), + }, + [3827] = { + [sym__alpha_identifier] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_as] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_by] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_where] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_get] = ACTIONS(4523), + [anon_sym_set] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [sym_label] = ACTIONS(4525), + [anon_sym_in] = ACTIONS(4523), + [anon_sym_DOT_DOT] = ACTIONS(4525), + [anon_sym_QMARK_COLON] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_else] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_BANGin] = ACTIONS(4525), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_BANGis] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_as_QMARK] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_BANG_BANG] = ACTIONS(4525), + [anon_sym_suspend] = ACTIONS(4523), + [anon_sym_sealed] = ACTIONS(4523), + [anon_sym_annotation] = ACTIONS(4523), + [anon_sym_data] = ACTIONS(4523), + [anon_sym_inner] = ACTIONS(4523), + [anon_sym_value] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_lateinit] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_protected] = ACTIONS(4523), + [anon_sym_tailrec] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_infix] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_external] = ACTIONS(4523), + [sym_property_modifier] = ACTIONS(4523), + [anon_sym_abstract] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_open] = ACTIONS(4523), + [anon_sym_vararg] = ACTIONS(4523), + [anon_sym_noinline] = ACTIONS(4523), + [anon_sym_crossinline] = ACTIONS(4523), + [anon_sym_expect] = ACTIONS(4523), + [anon_sym_actual] = ACTIONS(4523), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4525), + [sym__automatic_semicolon] = ACTIONS(4525), + [sym_safe_nav] = ACTIONS(4525), + [sym_multiline_comment] = ACTIONS(3), + }, + [3828] = { + [sym_enum_class_body] = STATE(3934), + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + }, + [3829] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3840), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [3830] = { + [sym_enum_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3831] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3832] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3833] = { + [sym__alpha_identifier] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4688), + [anon_sym_DOT] = ACTIONS(4686), + [anon_sym_as] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_RBRACE] = ACTIONS(4688), + [anon_sym_LPAREN] = ACTIONS(4688), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_by] = ACTIONS(4686), + [anon_sym_LT] = ACTIONS(4686), + [anon_sym_GT] = ACTIONS(4686), + [anon_sym_where] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4686), + [anon_sym_STAR] = ACTIONS(4686), + [sym_label] = ACTIONS(4688), + [anon_sym_in] = ACTIONS(4686), + [anon_sym_DOT_DOT] = ACTIONS(4688), + [anon_sym_QMARK_COLON] = ACTIONS(4688), + [anon_sym_AMP_AMP] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4688), + [anon_sym_else] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_PERCENT_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ] = ACTIONS(4686), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ] = ACTIONS(4686), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_BANGin] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_BANGis] = ACTIONS(4688), + [anon_sym_PLUS] = ACTIONS(4686), + [anon_sym_DASH] = ACTIONS(4686), + [anon_sym_SLASH] = ACTIONS(4686), + [anon_sym_PERCENT] = ACTIONS(4686), + [anon_sym_as_QMARK] = ACTIONS(4688), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_BANG_BANG] = ACTIONS(4688), + [anon_sym_suspend] = ACTIONS(4686), + [anon_sym_sealed] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4686), + [anon_sym_data] = ACTIONS(4686), + [anon_sym_inner] = ACTIONS(4686), + [anon_sym_value] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_lateinit] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_protected] = ACTIONS(4686), + [anon_sym_tailrec] = ACTIONS(4686), + [anon_sym_operator] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_inline] = ACTIONS(4686), + [anon_sym_external] = ACTIONS(4686), + [sym_property_modifier] = ACTIONS(4686), + [anon_sym_abstract] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_vararg] = ACTIONS(4686), + [anon_sym_noinline] = ACTIONS(4686), + [anon_sym_crossinline] = ACTIONS(4686), + [anon_sym_expect] = ACTIONS(4686), + [anon_sym_actual] = ACTIONS(4686), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4688), + [sym__automatic_semicolon] = ACTIONS(4688), + [sym_safe_nav] = ACTIONS(4688), + [sym_multiline_comment] = ACTIONS(3), + }, + [3834] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3835] = { + [sym__alpha_identifier] = ACTIONS(4553), + [anon_sym_AT] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4555), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_as] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_by] = ACTIONS(4553), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4553), + [anon_sym_where] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_get] = ACTIONS(4553), + [anon_sym_set] = ACTIONS(4553), + [anon_sym_STAR] = ACTIONS(4553), + [sym_label] = ACTIONS(4555), + [anon_sym_in] = ACTIONS(4553), + [anon_sym_DOT_DOT] = ACTIONS(4555), + [anon_sym_QMARK_COLON] = ACTIONS(4555), + [anon_sym_AMP_AMP] = ACTIONS(4555), + [anon_sym_PIPE_PIPE] = ACTIONS(4555), + [anon_sym_else] = ACTIONS(4553), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_PLUS_EQ] = ACTIONS(4555), + [anon_sym_DASH_EQ] = ACTIONS(4555), + [anon_sym_STAR_EQ] = ACTIONS(4555), + [anon_sym_SLASH_EQ] = ACTIONS(4555), + [anon_sym_PERCENT_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4555), + [anon_sym_EQ_EQ] = ACTIONS(4553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4555), + [anon_sym_LT_EQ] = ACTIONS(4555), + [anon_sym_GT_EQ] = ACTIONS(4555), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(4553), + [anon_sym_BANGis] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4553), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_as_QMARK] = ACTIONS(4555), + [anon_sym_PLUS_PLUS] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4555), + [anon_sym_BANG_BANG] = ACTIONS(4555), + [anon_sym_suspend] = ACTIONS(4553), + [anon_sym_sealed] = ACTIONS(4553), + [anon_sym_annotation] = ACTIONS(4553), + [anon_sym_data] = ACTIONS(4553), + [anon_sym_inner] = ACTIONS(4553), + [anon_sym_value] = ACTIONS(4553), + [anon_sym_override] = ACTIONS(4553), + [anon_sym_lateinit] = ACTIONS(4553), + [anon_sym_public] = ACTIONS(4553), + [anon_sym_private] = ACTIONS(4553), + [anon_sym_internal] = ACTIONS(4553), + [anon_sym_protected] = ACTIONS(4553), + [anon_sym_tailrec] = ACTIONS(4553), + [anon_sym_operator] = ACTIONS(4553), + [anon_sym_infix] = ACTIONS(4553), + [anon_sym_inline] = ACTIONS(4553), + [anon_sym_external] = ACTIONS(4553), + [sym_property_modifier] = ACTIONS(4553), + [anon_sym_abstract] = ACTIONS(4553), + [anon_sym_final] = ACTIONS(4553), + [anon_sym_open] = ACTIONS(4553), + [anon_sym_vararg] = ACTIONS(4553), + [anon_sym_noinline] = ACTIONS(4553), + [anon_sym_crossinline] = ACTIONS(4553), + [anon_sym_expect] = ACTIONS(4553), + [anon_sym_actual] = ACTIONS(4553), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4555), + [sym__automatic_semicolon] = ACTIONS(4555), + [sym_safe_nav] = ACTIONS(4555), + [sym_multiline_comment] = ACTIONS(3), + }, + [3836] = { + [sym_enum_class_body] = STATE(3932), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4634), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + }, + [3837] = { + [sym__alpha_identifier] = ACTIONS(4465), + [anon_sym_AT] = ACTIONS(4467), + [anon_sym_COLON] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_constructor] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_LPAREN] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(4465), + [anon_sym_object] = ACTIONS(4465), + [anon_sym_fun] = ACTIONS(4465), + [anon_sym_get] = ACTIONS(4465), + [anon_sym_set] = ACTIONS(4465), + [anon_sym_this] = ACTIONS(4465), + [anon_sym_super] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [sym_label] = ACTIONS(4465), + [anon_sym_in] = ACTIONS(4465), + [anon_sym_if] = ACTIONS(4465), + [anon_sym_else] = ACTIONS(4465), + [anon_sym_when] = ACTIONS(4465), + [anon_sym_try] = ACTIONS(4465), + [anon_sym_throw] = ACTIONS(4465), + [anon_sym_return] = ACTIONS(4465), + [anon_sym_continue] = ACTIONS(4465), + [anon_sym_break] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_BANGin] = ACTIONS(4467), + [anon_sym_is] = ACTIONS(4465), + [anon_sym_BANGis] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(4465), + [anon_sym_suspend] = ACTIONS(4465), + [anon_sym_sealed] = ACTIONS(4465), + [anon_sym_annotation] = ACTIONS(4465), + [anon_sym_data] = ACTIONS(4465), + [anon_sym_inner] = ACTIONS(4465), + [anon_sym_value] = ACTIONS(4465), + [anon_sym_override] = ACTIONS(4465), + [anon_sym_lateinit] = ACTIONS(4465), + [anon_sym_public] = ACTIONS(4465), + [anon_sym_private] = ACTIONS(4465), + [anon_sym_internal] = ACTIONS(4465), + [anon_sym_protected] = ACTIONS(4465), + [anon_sym_tailrec] = ACTIONS(4465), + [anon_sym_operator] = ACTIONS(4465), + [anon_sym_infix] = ACTIONS(4465), + [anon_sym_inline] = ACTIONS(4465), + [anon_sym_external] = ACTIONS(4465), + [sym_property_modifier] = ACTIONS(4465), + [anon_sym_abstract] = ACTIONS(4465), + [anon_sym_final] = ACTIONS(4465), + [anon_sym_open] = ACTIONS(4465), + [anon_sym_vararg] = ACTIONS(4465), + [anon_sym_noinline] = ACTIONS(4465), + [anon_sym_crossinline] = ACTIONS(4465), + [anon_sym_expect] = ACTIONS(4465), + [anon_sym_actual] = ACTIONS(4465), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4467), + [anon_sym_continue_AT] = ACTIONS(4467), + [anon_sym_break_AT] = ACTIONS(4467), + [anon_sym_this_AT] = ACTIONS(4467), + [anon_sym_super_AT] = ACTIONS(4467), + [sym_real_literal] = ACTIONS(4467), + [sym_integer_literal] = ACTIONS(4465), + [sym_hex_literal] = ACTIONS(4467), + [sym_bin_literal] = ACTIONS(4467), + [anon_sym_true] = ACTIONS(4465), + [anon_sym_false] = ACTIONS(4465), + [anon_sym_SQUOTE] = ACTIONS(4467), + [sym_null_literal] = ACTIONS(4465), + [sym__backtick_identifier] = ACTIONS(4467), + [sym__automatic_semicolon] = ACTIONS(4467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4467), + }, + [3838] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_typealias] = ACTIONS(4214), + [anon_sym_class] = ACTIONS(4214), + [anon_sym_interface] = ACTIONS(4214), + [anon_sym_enum] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym_val] = ACTIONS(4214), + [anon_sym_var] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4216), + [sym_label] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_do] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4216), + [anon_sym_continue_AT] = ACTIONS(4216), + [anon_sym_break_AT] = ACTIONS(4216), + [anon_sym_this_AT] = ACTIONS(4216), + [anon_sym_super_AT] = ACTIONS(4216), + [sym_real_literal] = ACTIONS(4216), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4216), + [sym_bin_literal] = ACTIONS(4216), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4216), + [sym_null_literal] = ACTIONS(4214), + [sym__backtick_identifier] = ACTIONS(4216), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4216), + }, + [3839] = { + [sym_function_body] = STATE(3868), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7095), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3840] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3840), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + }, + [3841] = { + [sym_class_body] = STATE(3932), + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4634), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + }, + [3842] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7100), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3843] = { + [sym_enum_class_body] = STATE(3922), + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3844] = { + [sym__alpha_identifier] = ACTIONS(4543), + [anon_sym_AT] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4543), + [anon_sym_as] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4545), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_COMMA] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4543), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_where] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4545), + [anon_sym_get] = ACTIONS(4543), + [anon_sym_set] = ACTIONS(4543), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4543), + [anon_sym_DOT_DOT] = ACTIONS(4545), + [anon_sym_QMARK_COLON] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_else] = ACTIONS(4543), + [anon_sym_COLON_COLON] = ACTIONS(4545), + [anon_sym_PLUS_EQ] = ACTIONS(4545), + [anon_sym_DASH_EQ] = ACTIONS(4545), + [anon_sym_STAR_EQ] = ACTIONS(4545), + [anon_sym_SLASH_EQ] = ACTIONS(4545), + [anon_sym_PERCENT_EQ] = ACTIONS(4545), + [anon_sym_BANG_EQ] = ACTIONS(4543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4545), + [anon_sym_EQ_EQ] = ACTIONS(4543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4545), + [anon_sym_LT_EQ] = ACTIONS(4545), + [anon_sym_GT_EQ] = ACTIONS(4545), + [anon_sym_BANGin] = ACTIONS(4545), + [anon_sym_is] = ACTIONS(4543), + [anon_sym_BANGis] = ACTIONS(4545), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4543), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4545), + [anon_sym_PLUS_PLUS] = ACTIONS(4545), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_BANG_BANG] = ACTIONS(4545), + [anon_sym_suspend] = ACTIONS(4543), + [anon_sym_sealed] = ACTIONS(4543), + [anon_sym_annotation] = ACTIONS(4543), + [anon_sym_data] = ACTIONS(4543), + [anon_sym_inner] = ACTIONS(4543), + [anon_sym_value] = ACTIONS(4543), + [anon_sym_override] = ACTIONS(4543), + [anon_sym_lateinit] = ACTIONS(4543), + [anon_sym_public] = ACTIONS(4543), + [anon_sym_private] = ACTIONS(4543), + [anon_sym_internal] = ACTIONS(4543), + [anon_sym_protected] = ACTIONS(4543), + [anon_sym_tailrec] = ACTIONS(4543), + [anon_sym_operator] = ACTIONS(4543), + [anon_sym_infix] = ACTIONS(4543), + [anon_sym_inline] = ACTIONS(4543), + [anon_sym_external] = ACTIONS(4543), + [sym_property_modifier] = ACTIONS(4543), + [anon_sym_abstract] = ACTIONS(4543), + [anon_sym_final] = ACTIONS(4543), + [anon_sym_open] = ACTIONS(4543), + [anon_sym_vararg] = ACTIONS(4543), + [anon_sym_noinline] = ACTIONS(4543), + [anon_sym_crossinline] = ACTIONS(4543), + [anon_sym_expect] = ACTIONS(4543), + [anon_sym_actual] = ACTIONS(4543), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4545), + [sym__automatic_semicolon] = ACTIONS(4545), + [sym_safe_nav] = ACTIONS(4545), + [sym_multiline_comment] = ACTIONS(3), + }, + [3845] = { + [sym__alpha_identifier] = ACTIONS(4568), + [anon_sym_AT] = ACTIONS(4570), + [anon_sym_LBRACK] = ACTIONS(4570), + [anon_sym_DOT] = ACTIONS(4568), + [anon_sym_as] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4570), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_LPAREN] = ACTIONS(4570), + [anon_sym_COMMA] = ACTIONS(4570), + [anon_sym_by] = ACTIONS(4568), + [anon_sym_LT] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4568), + [anon_sym_where] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_get] = ACTIONS(4568), + [anon_sym_set] = ACTIONS(4568), + [anon_sym_STAR] = ACTIONS(4568), + [sym_label] = ACTIONS(4570), + [anon_sym_in] = ACTIONS(4568), + [anon_sym_DOT_DOT] = ACTIONS(4570), + [anon_sym_QMARK_COLON] = ACTIONS(4570), + [anon_sym_AMP_AMP] = ACTIONS(4570), + [anon_sym_PIPE_PIPE] = ACTIONS(4570), + [anon_sym_else] = ACTIONS(4568), + [anon_sym_COLON_COLON] = ACTIONS(4570), + [anon_sym_PLUS_EQ] = ACTIONS(4570), + [anon_sym_DASH_EQ] = ACTIONS(4570), + [anon_sym_STAR_EQ] = ACTIONS(4570), + [anon_sym_SLASH_EQ] = ACTIONS(4570), + [anon_sym_PERCENT_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_BANGin] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4568), + [anon_sym_BANGis] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4568), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_as_QMARK] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_BANG_BANG] = ACTIONS(4570), + [anon_sym_suspend] = ACTIONS(4568), + [anon_sym_sealed] = ACTIONS(4568), + [anon_sym_annotation] = ACTIONS(4568), + [anon_sym_data] = ACTIONS(4568), + [anon_sym_inner] = ACTIONS(4568), + [anon_sym_value] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_lateinit] = ACTIONS(4568), + [anon_sym_public] = ACTIONS(4568), + [anon_sym_private] = ACTIONS(4568), + [anon_sym_internal] = ACTIONS(4568), + [anon_sym_protected] = ACTIONS(4568), + [anon_sym_tailrec] = ACTIONS(4568), + [anon_sym_operator] = ACTIONS(4568), + [anon_sym_infix] = ACTIONS(4568), + [anon_sym_inline] = ACTIONS(4568), + [anon_sym_external] = ACTIONS(4568), + [sym_property_modifier] = ACTIONS(4568), + [anon_sym_abstract] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_open] = ACTIONS(4568), + [anon_sym_vararg] = ACTIONS(4568), + [anon_sym_noinline] = ACTIONS(4568), + [anon_sym_crossinline] = ACTIONS(4568), + [anon_sym_expect] = ACTIONS(4568), + [anon_sym_actual] = ACTIONS(4568), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4570), + [sym__automatic_semicolon] = ACTIONS(4570), + [sym_safe_nav] = ACTIONS(4570), + [sym_multiline_comment] = ACTIONS(3), + }, + [3846] = { + [sym__alpha_identifier] = ACTIONS(4572), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4572), + [anon_sym_as] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_where] = ACTIONS(4572), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4572), + [anon_sym_set] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4572), + [sym_label] = ACTIONS(4575), + [anon_sym_in] = ACTIONS(4572), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_else] = ACTIONS(4572), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4572), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_SLASH] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_suspend] = ACTIONS(4572), + [anon_sym_sealed] = ACTIONS(4572), + [anon_sym_annotation] = ACTIONS(4572), + [anon_sym_data] = ACTIONS(4572), + [anon_sym_inner] = ACTIONS(4572), + [anon_sym_value] = ACTIONS(4572), + [anon_sym_override] = ACTIONS(4572), + [anon_sym_lateinit] = ACTIONS(4572), + [anon_sym_public] = ACTIONS(4572), + [anon_sym_private] = ACTIONS(4572), + [anon_sym_internal] = ACTIONS(4572), + [anon_sym_protected] = ACTIONS(4572), + [anon_sym_tailrec] = ACTIONS(4572), + [anon_sym_operator] = ACTIONS(4572), + [anon_sym_infix] = ACTIONS(4572), + [anon_sym_inline] = ACTIONS(4572), + [anon_sym_external] = ACTIONS(4572), + [sym_property_modifier] = ACTIONS(4572), + [anon_sym_abstract] = ACTIONS(4572), + [anon_sym_final] = ACTIONS(4572), + [anon_sym_open] = ACTIONS(4572), + [anon_sym_vararg] = ACTIONS(4572), + [anon_sym_noinline] = ACTIONS(4572), + [anon_sym_crossinline] = ACTIONS(4572), + [anon_sym_expect] = ACTIONS(4572), + [anon_sym_actual] = ACTIONS(4572), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + }, + [3847] = { + [sym_class_body] = STATE(3482), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7102), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_RPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_while] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [3848] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3851), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_EQ] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4549), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_PLUS_EQ] = ACTIONS(4551), + [anon_sym_DASH_EQ] = ACTIONS(4551), + [anon_sym_STAR_EQ] = ACTIONS(4551), + [anon_sym_SLASH_EQ] = ACTIONS(4551), + [anon_sym_PERCENT_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4549), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_suspend] = ACTIONS(4549), + [anon_sym_sealed] = ACTIONS(4549), + [anon_sym_annotation] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_lateinit] = ACTIONS(4549), + [anon_sym_public] = ACTIONS(4549), + [anon_sym_private] = ACTIONS(4549), + [anon_sym_internal] = ACTIONS(4549), + [anon_sym_protected] = ACTIONS(4549), + [anon_sym_tailrec] = ACTIONS(4549), + [anon_sym_operator] = ACTIONS(4549), + [anon_sym_infix] = ACTIONS(4549), + [anon_sym_inline] = ACTIONS(4549), + [anon_sym_external] = ACTIONS(4549), + [sym_property_modifier] = ACTIONS(4549), + [anon_sym_abstract] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_open] = ACTIONS(4549), + [anon_sym_vararg] = ACTIONS(4549), + [anon_sym_noinline] = ACTIONS(4549), + [anon_sym_crossinline] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4551), + [sym__automatic_semicolon] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + }, + [3849] = { + [sym_enum_class_body] = STATE(3906), + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3850] = { + [sym_class_body] = STATE(3469), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [3851] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3840), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [3852] = { + [sym__alpha_identifier] = ACTIONS(4531), + [anon_sym_AT] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_as] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_where] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym_get] = ACTIONS(4531), + [anon_sym_set] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [sym_label] = ACTIONS(4533), + [anon_sym_in] = ACTIONS(4531), + [anon_sym_DOT_DOT] = ACTIONS(4533), + [anon_sym_QMARK_COLON] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_else] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4533), + [anon_sym_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_BANGin] = ACTIONS(4533), + [anon_sym_is] = ACTIONS(4531), + [anon_sym_BANGis] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_as_QMARK] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_BANG_BANG] = ACTIONS(4533), + [anon_sym_suspend] = ACTIONS(4531), + [anon_sym_sealed] = ACTIONS(4531), + [anon_sym_annotation] = ACTIONS(4531), + [anon_sym_data] = ACTIONS(4531), + [anon_sym_inner] = ACTIONS(4531), + [anon_sym_value] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_lateinit] = ACTIONS(4531), + [anon_sym_public] = ACTIONS(4531), + [anon_sym_private] = ACTIONS(4531), + [anon_sym_internal] = ACTIONS(4531), + [anon_sym_protected] = ACTIONS(4531), + [anon_sym_tailrec] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_infix] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_external] = ACTIONS(4531), + [sym_property_modifier] = ACTIONS(4531), + [anon_sym_abstract] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_open] = ACTIONS(4531), + [anon_sym_vararg] = ACTIONS(4531), + [anon_sym_noinline] = ACTIONS(4531), + [anon_sym_crossinline] = ACTIONS(4531), + [anon_sym_expect] = ACTIONS(4531), + [anon_sym_actual] = ACTIONS(4531), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4533), + [sym__automatic_semicolon] = ACTIONS(4533), + [sym_safe_nav] = ACTIONS(4533), + [sym_multiline_comment] = ACTIONS(3), + }, + [3853] = { + [sym_value_arguments] = STATE(4025), + [sym__alpha_identifier] = ACTIONS(7108), + [anon_sym_AT] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7110), + [anon_sym_typealias] = ACTIONS(7108), + [anon_sym_class] = ACTIONS(7108), + [anon_sym_interface] = ACTIONS(7108), + [anon_sym_enum] = ACTIONS(7108), + [anon_sym_LBRACE] = ACTIONS(7110), + [anon_sym_LPAREN] = ACTIONS(7112), + [anon_sym_val] = ACTIONS(7108), + [anon_sym_var] = ACTIONS(7108), + [anon_sym_object] = ACTIONS(7108), + [anon_sym_fun] = ACTIONS(7108), + [anon_sym_get] = ACTIONS(7108), + [anon_sym_set] = ACTIONS(7108), + [anon_sym_this] = ACTIONS(7108), + [anon_sym_super] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7110), + [sym_label] = ACTIONS(7108), + [anon_sym_for] = ACTIONS(7108), + [anon_sym_while] = ACTIONS(7108), + [anon_sym_do] = ACTIONS(7108), + [anon_sym_if] = ACTIONS(7108), + [anon_sym_when] = ACTIONS(7108), + [anon_sym_try] = ACTIONS(7108), + [anon_sym_throw] = ACTIONS(7108), + [anon_sym_return] = ACTIONS(7108), + [anon_sym_continue] = ACTIONS(7108), + [anon_sym_break] = ACTIONS(7108), + [anon_sym_COLON_COLON] = ACTIONS(7110), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_BANG] = ACTIONS(7110), + [anon_sym_suspend] = ACTIONS(7108), + [anon_sym_sealed] = ACTIONS(7108), + [anon_sym_annotation] = ACTIONS(7108), + [anon_sym_data] = ACTIONS(7108), + [anon_sym_inner] = ACTIONS(7108), + [anon_sym_value] = ACTIONS(7108), + [anon_sym_override] = ACTIONS(7108), + [anon_sym_lateinit] = ACTIONS(7108), + [anon_sym_public] = ACTIONS(7108), + [anon_sym_private] = ACTIONS(7108), + [anon_sym_internal] = ACTIONS(7108), + [anon_sym_protected] = ACTIONS(7108), + [anon_sym_tailrec] = ACTIONS(7108), + [anon_sym_operator] = ACTIONS(7108), + [anon_sym_infix] = ACTIONS(7108), + [anon_sym_inline] = ACTIONS(7108), + [anon_sym_external] = ACTIONS(7108), + [sym_property_modifier] = ACTIONS(7108), + [anon_sym_abstract] = ACTIONS(7108), + [anon_sym_final] = ACTIONS(7108), + [anon_sym_open] = ACTIONS(7108), + [anon_sym_vararg] = ACTIONS(7108), + [anon_sym_noinline] = ACTIONS(7108), + [anon_sym_crossinline] = ACTIONS(7108), + [anon_sym_expect] = ACTIONS(7108), + [anon_sym_actual] = ACTIONS(7108), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7110), + [anon_sym_continue_AT] = ACTIONS(7110), + [anon_sym_break_AT] = ACTIONS(7110), + [anon_sym_this_AT] = ACTIONS(7110), + [anon_sym_super_AT] = ACTIONS(7110), + [sym_real_literal] = ACTIONS(7110), + [sym_integer_literal] = ACTIONS(7108), + [sym_hex_literal] = ACTIONS(7110), + [sym_bin_literal] = ACTIONS(7110), + [anon_sym_true] = ACTIONS(7108), + [anon_sym_false] = ACTIONS(7108), + [anon_sym_SQUOTE] = ACTIONS(7110), + [sym_null_literal] = ACTIONS(7108), + [sym__backtick_identifier] = ACTIONS(7110), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7110), + }, + [3854] = { + [sym_class_body] = STATE(3214), + [sym_type_constraints] = STATE(3049), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_fun] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_this] = ACTIONS(3250), + [anon_sym_super] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_when] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3254), + [anon_sym_continue_AT] = ACTIONS(3254), + [anon_sym_break_AT] = ACTIONS(3254), + [anon_sym_this_AT] = ACTIONS(3254), + [anon_sym_super_AT] = ACTIONS(3254), + [sym_real_literal] = ACTIONS(3254), + [sym_integer_literal] = ACTIONS(3250), + [sym_hex_literal] = ACTIONS(3254), + [sym_bin_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3254), + [sym_null_literal] = ACTIONS(3250), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3254), + }, + [3855] = { + [sym__alpha_identifier] = ACTIONS(4704), + [anon_sym_AT] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4707), + [anon_sym_DOT] = ACTIONS(4704), + [anon_sym_as] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_by] = ACTIONS(4704), + [anon_sym_LT] = ACTIONS(4704), + [anon_sym_GT] = ACTIONS(4704), + [anon_sym_where] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_get] = ACTIONS(4704), + [anon_sym_set] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [sym_label] = ACTIONS(4707), + [anon_sym_in] = ACTIONS(4704), + [anon_sym_DOT_DOT] = ACTIONS(4707), + [anon_sym_QMARK_COLON] = ACTIONS(4707), + [anon_sym_AMP_AMP] = ACTIONS(4707), + [anon_sym_PIPE_PIPE] = ACTIONS(4707), + [anon_sym_else] = ACTIONS(4704), + [anon_sym_COLON_COLON] = ACTIONS(4707), + [anon_sym_PLUS_EQ] = ACTIONS(4707), + [anon_sym_DASH_EQ] = ACTIONS(4707), + [anon_sym_STAR_EQ] = ACTIONS(4707), + [anon_sym_SLASH_EQ] = ACTIONS(4707), + [anon_sym_PERCENT_EQ] = ACTIONS(4707), + [anon_sym_BANG_EQ] = ACTIONS(4704), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4707), + [anon_sym_EQ_EQ] = ACTIONS(4704), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4707), + [anon_sym_LT_EQ] = ACTIONS(4707), + [anon_sym_GT_EQ] = ACTIONS(4707), + [anon_sym_BANGin] = ACTIONS(4707), + [anon_sym_is] = ACTIONS(4704), + [anon_sym_BANGis] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4704), + [anon_sym_SLASH] = ACTIONS(4704), + [anon_sym_PERCENT] = ACTIONS(4704), + [anon_sym_as_QMARK] = ACTIONS(4707), + [anon_sym_PLUS_PLUS] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4707), + [anon_sym_BANG_BANG] = ACTIONS(4707), + [anon_sym_suspend] = ACTIONS(4704), + [anon_sym_sealed] = ACTIONS(4704), + [anon_sym_annotation] = ACTIONS(4704), + [anon_sym_data] = ACTIONS(4704), + [anon_sym_inner] = ACTIONS(4704), + [anon_sym_value] = ACTIONS(4704), + [anon_sym_override] = ACTIONS(4704), + [anon_sym_lateinit] = ACTIONS(4704), + [anon_sym_public] = ACTIONS(4704), + [anon_sym_private] = ACTIONS(4704), + [anon_sym_internal] = ACTIONS(4704), + [anon_sym_protected] = ACTIONS(4704), + [anon_sym_tailrec] = ACTIONS(4704), + [anon_sym_operator] = ACTIONS(4704), + [anon_sym_infix] = ACTIONS(4704), + [anon_sym_inline] = ACTIONS(4704), + [anon_sym_external] = ACTIONS(4704), + [sym_property_modifier] = ACTIONS(4704), + [anon_sym_abstract] = ACTIONS(4704), + [anon_sym_final] = ACTIONS(4704), + [anon_sym_open] = ACTIONS(4704), + [anon_sym_vararg] = ACTIONS(4704), + [anon_sym_noinline] = ACTIONS(4704), + [anon_sym_crossinline] = ACTIONS(4704), + [anon_sym_expect] = ACTIONS(4704), + [anon_sym_actual] = ACTIONS(4704), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4707), + [sym__automatic_semicolon] = ACTIONS(4707), + [sym_safe_nav] = ACTIONS(4707), + [sym_multiline_comment] = ACTIONS(3), + }, + [3856] = { + [sym_class_body] = STATE(3248), + [sym_type_constraints] = STATE(3039), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4248), + [anon_sym_fun] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_this] = ACTIONS(4248), + [anon_sym_super] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4248), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4248), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_when] = ACTIONS(4248), + [anon_sym_try] = ACTIONS(4248), + [anon_sym_throw] = ACTIONS(4248), + [anon_sym_return] = ACTIONS(4248), + [anon_sym_continue] = ACTIONS(4248), + [anon_sym_break] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4250), + [anon_sym_continue_AT] = ACTIONS(4250), + [anon_sym_break_AT] = ACTIONS(4250), + [anon_sym_this_AT] = ACTIONS(4250), + [anon_sym_super_AT] = ACTIONS(4250), + [sym_real_literal] = ACTIONS(4250), + [sym_integer_literal] = ACTIONS(4248), + [sym_hex_literal] = ACTIONS(4250), + [sym_bin_literal] = ACTIONS(4250), + [anon_sym_true] = ACTIONS(4248), + [anon_sym_false] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4250), + [sym_null_literal] = ACTIONS(4248), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4250), + }, + [3857] = { + [sym_type_constraints] = STATE(3036), + [sym_enum_class_body] = STATE(3257), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3858] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1986), + [sym__in_operator] = STATE(2011), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2020), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2022), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7059), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7035), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7039), + [anon_sym_DOT_DOT] = ACTIONS(7041), + [anon_sym_QMARK_COLON] = ACTIONS(7043), + [anon_sym_AMP_AMP] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7069), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_BANGin] = ACTIONS(7047), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7035), + [anon_sym_PERCENT] = ACTIONS(7035), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [3859] = { + [sym_class_body] = STATE(3257), + [sym_type_constraints] = STATE(3028), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_fun] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_this] = ACTIONS(3228), + [anon_sym_super] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_when] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3232), + [anon_sym_continue_AT] = ACTIONS(3232), + [anon_sym_break_AT] = ACTIONS(3232), + [anon_sym_this_AT] = ACTIONS(3232), + [anon_sym_super_AT] = ACTIONS(3232), + [sym_real_literal] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3228), + [sym_hex_literal] = ACTIONS(3232), + [sym_bin_literal] = ACTIONS(3232), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_null_literal] = ACTIONS(3228), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3232), + }, + [3860] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3297), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3861] = { + [sym_class_body] = STATE(3297), + [sym_type_constraints] = STATE(3017), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(4232), + [anon_sym_fun] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_this] = ACTIONS(4232), + [anon_sym_super] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_when] = ACTIONS(4232), + [anon_sym_try] = ACTIONS(4232), + [anon_sym_throw] = ACTIONS(4232), + [anon_sym_return] = ACTIONS(4232), + [anon_sym_continue] = ACTIONS(4232), + [anon_sym_break] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4234), + [anon_sym_continue_AT] = ACTIONS(4234), + [anon_sym_break_AT] = ACTIONS(4234), + [anon_sym_this_AT] = ACTIONS(4234), + [anon_sym_super_AT] = ACTIONS(4234), + [sym_real_literal] = ACTIONS(4234), + [sym_integer_literal] = ACTIONS(4232), + [sym_hex_literal] = ACTIONS(4234), + [sym_bin_literal] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_SQUOTE] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4234), + }, + [3862] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3235), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_this] = ACTIONS(3236), + [anon_sym_super] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_when] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_AT] = ACTIONS(3240), + [sym_real_literal] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3236), + [sym_hex_literal] = ACTIONS(3240), + [sym_bin_literal] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3240), + }, + [3863] = { + [sym__alpha_identifier] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_QMARK_COLON] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_PLUS_EQ] = ACTIONS(1752), + [anon_sym_DASH_EQ] = ACTIONS(1752), + [anon_sym_STAR_EQ] = ACTIONS(1752), + [anon_sym_SLASH_EQ] = ACTIONS(1752), + [anon_sym_PERCENT_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1752), + [anon_sym_GT_EQ] = ACTIONS(1752), + [anon_sym_BANGin] = ACTIONS(1752), + [anon_sym_is] = ACTIONS(1750), + [anon_sym_BANGis] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_as_QMARK] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1752), + [anon_sym_BANG_BANG] = ACTIONS(1752), + [anon_sym_suspend] = ACTIONS(1750), + [anon_sym_sealed] = ACTIONS(1750), + [anon_sym_annotation] = ACTIONS(1750), + [anon_sym_data] = ACTIONS(1750), + [anon_sym_inner] = ACTIONS(1750), + [anon_sym_value] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_lateinit] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_internal] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_tailrec] = ACTIONS(1750), + [anon_sym_operator] = ACTIONS(1750), + [anon_sym_infix] = ACTIONS(1750), + [anon_sym_inline] = ACTIONS(1750), + [anon_sym_external] = ACTIONS(1750), + [sym_property_modifier] = ACTIONS(1750), + [anon_sym_abstract] = ACTIONS(1750), + [anon_sym_final] = ACTIONS(1750), + [anon_sym_open] = ACTIONS(1750), + [anon_sym_vararg] = ACTIONS(1750), + [anon_sym_noinline] = ACTIONS(1750), + [anon_sym_crossinline] = ACTIONS(1750), + [anon_sym_expect] = ACTIONS(1750), + [anon_sym_actual] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1752), + [sym_safe_nav] = ACTIONS(1752), + [sym_multiline_comment] = ACTIONS(3), + }, + [3864] = { + [sym__alpha_identifier] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_as] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LPAREN] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_where] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym_get] = ACTIONS(5022), + [anon_sym_set] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [sym_label] = ACTIONS(5024), + [anon_sym_in] = ACTIONS(5022), + [anon_sym_DOT_DOT] = ACTIONS(5024), + [anon_sym_QMARK_COLON] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_else] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_BANGin] = ACTIONS(5024), + [anon_sym_is] = ACTIONS(5022), + [anon_sym_BANGis] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_as_QMARK] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_BANG_BANG] = ACTIONS(5024), + [anon_sym_suspend] = ACTIONS(5022), + [anon_sym_sealed] = ACTIONS(5022), + [anon_sym_annotation] = ACTIONS(5022), + [anon_sym_data] = ACTIONS(5022), + [anon_sym_inner] = ACTIONS(5022), + [anon_sym_value] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_lateinit] = ACTIONS(5022), + [anon_sym_public] = ACTIONS(5022), + [anon_sym_private] = ACTIONS(5022), + [anon_sym_internal] = ACTIONS(5022), + [anon_sym_protected] = ACTIONS(5022), + [anon_sym_tailrec] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_infix] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym_external] = ACTIONS(5022), + [sym_property_modifier] = ACTIONS(5022), + [anon_sym_abstract] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_open] = ACTIONS(5022), + [anon_sym_vararg] = ACTIONS(5022), + [anon_sym_noinline] = ACTIONS(5022), + [anon_sym_crossinline] = ACTIONS(5022), + [anon_sym_expect] = ACTIONS(5022), + [anon_sym_actual] = ACTIONS(5022), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5024), + [sym__automatic_semicolon] = ACTIONS(5024), + [sym_safe_nav] = ACTIONS(5024), + [sym_multiline_comment] = ACTIONS(3), + }, + [3865] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3869), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [3866] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3865), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_object] = ACTIONS(4549), + [anon_sym_fun] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_this] = ACTIONS(4549), + [anon_sym_super] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4549), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_if] = ACTIONS(4549), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_when] = ACTIONS(4549), + [anon_sym_try] = ACTIONS(4549), + [anon_sym_throw] = ACTIONS(4549), + [anon_sym_return] = ACTIONS(4549), + [anon_sym_continue] = ACTIONS(4549), + [anon_sym_break] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4549), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4551), + [anon_sym_continue_AT] = ACTIONS(4551), + [anon_sym_break_AT] = ACTIONS(4551), + [anon_sym_this_AT] = ACTIONS(4551), + [anon_sym_super_AT] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4551), + [sym_integer_literal] = ACTIONS(4549), + [sym_hex_literal] = ACTIONS(4551), + [sym_bin_literal] = ACTIONS(4551), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [anon_sym_SQUOTE] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4549), + [sym__backtick_identifier] = ACTIONS(4551), + [sym__automatic_semicolon] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4551), + }, + [3867] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5157), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [sym_label] = ACTIONS(5076), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(7123), + [anon_sym_PLUS_EQ] = ACTIONS(5159), + [anon_sym_DASH_EQ] = ACTIONS(5159), + [anon_sym_STAR_EQ] = ACTIONS(5159), + [anon_sym_SLASH_EQ] = ACTIONS(5159), + [anon_sym_PERCENT_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_suspend] = ACTIONS(5074), + [anon_sym_sealed] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5074), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_lateinit] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_internal] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_tailrec] = ACTIONS(5074), + [anon_sym_operator] = ACTIONS(5074), + [anon_sym_infix] = ACTIONS(5074), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_external] = ACTIONS(5074), + [sym_property_modifier] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_final] = ACTIONS(5074), + [anon_sym_open] = ACTIONS(5074), + [anon_sym_vararg] = ACTIONS(5074), + [anon_sym_noinline] = ACTIONS(5074), + [anon_sym_crossinline] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5076), + [sym__automatic_semicolon] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + }, + [3868] = { + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [3869] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3869), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_object] = ACTIONS(4557), + [anon_sym_fun] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_this] = ACTIONS(4557), + [anon_sym_super] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4557), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4557), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_when] = ACTIONS(4557), + [anon_sym_try] = ACTIONS(4557), + [anon_sym_throw] = ACTIONS(4557), + [anon_sym_return] = ACTIONS(4557), + [anon_sym_continue] = ACTIONS(4557), + [anon_sym_break] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4557), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4559), + [anon_sym_continue_AT] = ACTIONS(4559), + [anon_sym_break_AT] = ACTIONS(4559), + [anon_sym_this_AT] = ACTIONS(4559), + [anon_sym_super_AT] = ACTIONS(4559), + [sym_real_literal] = ACTIONS(4559), + [sym_integer_literal] = ACTIONS(4557), + [sym_hex_literal] = ACTIONS(4559), + [sym_bin_literal] = ACTIONS(4559), + [anon_sym_true] = ACTIONS(4557), + [anon_sym_false] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4559), + [sym_null_literal] = ACTIONS(4557), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4559), + }, + [3870] = { + [sym__alpha_identifier] = ACTIONS(7129), + [anon_sym_AT] = ACTIONS(7131), + [anon_sym_LBRACK] = ACTIONS(7131), + [anon_sym_typealias] = ACTIONS(7129), + [anon_sym_class] = ACTIONS(7129), + [anon_sym_interface] = ACTIONS(7129), + [anon_sym_enum] = ACTIONS(7129), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_LPAREN] = ACTIONS(7131), + [anon_sym_val] = ACTIONS(7129), + [anon_sym_var] = ACTIONS(7129), + [anon_sym_object] = ACTIONS(7129), + [anon_sym_fun] = ACTIONS(7129), + [anon_sym_get] = ACTIONS(7129), + [anon_sym_set] = ACTIONS(7129), + [anon_sym_this] = ACTIONS(7129), + [anon_sym_super] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7131), + [sym_label] = ACTIONS(7129), + [anon_sym_for] = ACTIONS(7129), + [anon_sym_while] = ACTIONS(7129), + [anon_sym_do] = ACTIONS(7129), + [anon_sym_if] = ACTIONS(7129), + [anon_sym_when] = ACTIONS(7129), + [anon_sym_try] = ACTIONS(7129), + [anon_sym_throw] = ACTIONS(7129), + [anon_sym_return] = ACTIONS(7129), + [anon_sym_continue] = ACTIONS(7129), + [anon_sym_break] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(7131), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_BANG] = ACTIONS(7131), + [anon_sym_suspend] = ACTIONS(7129), + [anon_sym_sealed] = ACTIONS(7129), + [anon_sym_annotation] = ACTIONS(7129), + [anon_sym_data] = ACTIONS(7129), + [anon_sym_inner] = ACTIONS(7129), + [anon_sym_value] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_lateinit] = ACTIONS(7129), + [anon_sym_public] = ACTIONS(7129), + [anon_sym_private] = ACTIONS(7129), + [anon_sym_internal] = ACTIONS(7129), + [anon_sym_protected] = ACTIONS(7129), + [anon_sym_tailrec] = ACTIONS(7129), + [anon_sym_operator] = ACTIONS(7129), + [anon_sym_infix] = ACTIONS(7129), + [anon_sym_inline] = ACTIONS(7129), + [anon_sym_external] = ACTIONS(7129), + [sym_property_modifier] = ACTIONS(7129), + [anon_sym_abstract] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_open] = ACTIONS(7129), + [anon_sym_vararg] = ACTIONS(7129), + [anon_sym_noinline] = ACTIONS(7129), + [anon_sym_crossinline] = ACTIONS(7129), + [anon_sym_expect] = ACTIONS(7129), + [anon_sym_actual] = ACTIONS(7129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7131), + [anon_sym_continue_AT] = ACTIONS(7131), + [anon_sym_break_AT] = ACTIONS(7131), + [anon_sym_this_AT] = ACTIONS(7131), + [anon_sym_super_AT] = ACTIONS(7131), + [sym_real_literal] = ACTIONS(7131), + [sym_integer_literal] = ACTIONS(7129), + [sym_hex_literal] = ACTIONS(7131), + [sym_bin_literal] = ACTIONS(7131), + [anon_sym_true] = ACTIONS(7129), + [anon_sym_false] = ACTIONS(7129), + [anon_sym_SQUOTE] = ACTIONS(7131), + [sym_null_literal] = ACTIONS(7129), + [sym__backtick_identifier] = ACTIONS(7131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7131), + }, + [3871] = { + [sym__alpha_identifier] = ACTIONS(5169), + [anon_sym_AT] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_DOT] = ACTIONS(5169), + [anon_sym_as] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_LBRACE] = ACTIONS(5171), + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_where] = ACTIONS(5169), + [anon_sym_SEMI] = ACTIONS(5171), + [anon_sym_get] = ACTIONS(5169), + [anon_sym_set] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [sym_label] = ACTIONS(5171), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5171), + [anon_sym_AMP_AMP] = ACTIONS(5171), + [anon_sym_PIPE_PIPE] = ACTIONS(5171), + [anon_sym_else] = ACTIONS(5169), + [anon_sym_COLON_COLON] = ACTIONS(5171), + [anon_sym_PLUS_EQ] = ACTIONS(5171), + [anon_sym_DASH_EQ] = ACTIONS(5171), + [anon_sym_STAR_EQ] = ACTIONS(5171), + [anon_sym_SLASH_EQ] = ACTIONS(5171), + [anon_sym_PERCENT_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ] = ACTIONS(5169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ] = ACTIONS(5169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_BANGin] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5169), + [anon_sym_BANGis] = ACTIONS(5171), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5169), + [anon_sym_as_QMARK] = ACTIONS(5171), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_BANG_BANG] = ACTIONS(5171), + [anon_sym_suspend] = ACTIONS(5169), + [anon_sym_sealed] = ACTIONS(5169), + [anon_sym_annotation] = ACTIONS(5169), + [anon_sym_data] = ACTIONS(5169), + [anon_sym_inner] = ACTIONS(5169), + [anon_sym_value] = ACTIONS(5169), + [anon_sym_override] = ACTIONS(5169), + [anon_sym_lateinit] = ACTIONS(5169), + [anon_sym_public] = ACTIONS(5169), + [anon_sym_private] = ACTIONS(5169), + [anon_sym_internal] = ACTIONS(5169), + [anon_sym_protected] = ACTIONS(5169), + [anon_sym_tailrec] = ACTIONS(5169), + [anon_sym_operator] = ACTIONS(5169), + [anon_sym_infix] = ACTIONS(5169), + [anon_sym_inline] = ACTIONS(5169), + [anon_sym_external] = ACTIONS(5169), + [sym_property_modifier] = ACTIONS(5169), + [anon_sym_abstract] = ACTIONS(5169), + [anon_sym_final] = ACTIONS(5169), + [anon_sym_open] = ACTIONS(5169), + [anon_sym_vararg] = ACTIONS(5169), + [anon_sym_noinline] = ACTIONS(5169), + [anon_sym_crossinline] = ACTIONS(5169), + [anon_sym_expect] = ACTIONS(5169), + [anon_sym_actual] = ACTIONS(5169), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5171), + [sym__automatic_semicolon] = ACTIONS(5171), + [sym_safe_nav] = ACTIONS(5171), + [sym_multiline_comment] = ACTIONS(3), + }, + [3872] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [3873] = { + [sym_class_body] = STATE(3467), + [sym_type_constraints] = STATE(3313), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_DASH_GT] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [3874] = { + [sym_function_body] = STATE(3112), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_fun] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_this] = ACTIONS(4409), + [anon_sym_super] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_when] = ACTIONS(4409), + [anon_sym_try] = ACTIONS(4409), + [anon_sym_throw] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4411), + [anon_sym_continue_AT] = ACTIONS(4411), + [anon_sym_break_AT] = ACTIONS(4411), + [anon_sym_this_AT] = ACTIONS(4411), + [anon_sym_super_AT] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4411), + [sym_integer_literal] = ACTIONS(4409), + [sym_hex_literal] = ACTIONS(4411), + [sym_bin_literal] = ACTIONS(4411), + [anon_sym_true] = ACTIONS(4409), + [anon_sym_false] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4411), + [sym_null_literal] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4411), + }, + [3875] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_when] = ACTIONS(4244), + [anon_sym_try] = ACTIONS(4244), + [anon_sym_throw] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_AT] = ACTIONS(4246), + [sym_real_literal] = ACTIONS(4246), + [sym_integer_literal] = ACTIONS(4244), + [sym_hex_literal] = ACTIONS(4246), + [sym_bin_literal] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(4244), + [anon_sym_false] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), + }, + [3876] = { + [sym_function_body] = STATE(3142), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_object] = ACTIONS(4240), + [anon_sym_fun] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_this] = ACTIONS(4240), + [anon_sym_super] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_when] = ACTIONS(4240), + [anon_sym_try] = ACTIONS(4240), + [anon_sym_throw] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4242), + [anon_sym_continue_AT] = ACTIONS(4242), + [anon_sym_break_AT] = ACTIONS(4242), + [anon_sym_this_AT] = ACTIONS(4242), + [anon_sym_super_AT] = ACTIONS(4242), + [sym_real_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4240), + [sym_hex_literal] = ACTIONS(4242), + [sym_bin_literal] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4240), + [anon_sym_false] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4242), + [sym_null_literal] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4242), + }, + [3877] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3878] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3879] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3880] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3881] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [sym_label] = ACTIONS(4990), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4990), + [sym__automatic_semicolon] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + }, + [3882] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3883] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3884] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3885] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3886] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7159), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7161), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [3887] = { + [sym__alpha_identifier] = ACTIONS(4816), + [anon_sym_AT] = ACTIONS(4818), + [anon_sym_LBRACK] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4816), + [anon_sym_as] = ACTIONS(4816), + [anon_sym_EQ] = ACTIONS(4816), + [anon_sym_LBRACE] = ACTIONS(4818), + [anon_sym_RBRACE] = ACTIONS(4818), + [anon_sym_LPAREN] = ACTIONS(4818), + [anon_sym_COMMA] = ACTIONS(4818), + [anon_sym_LT] = ACTIONS(4816), + [anon_sym_GT] = ACTIONS(4816), + [anon_sym_where] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4818), + [anon_sym_get] = ACTIONS(4816), + [anon_sym_set] = ACTIONS(4816), + [anon_sym_STAR] = ACTIONS(4816), + [sym_label] = ACTIONS(4818), + [anon_sym_in] = ACTIONS(4816), + [anon_sym_DOT_DOT] = ACTIONS(4818), + [anon_sym_QMARK_COLON] = ACTIONS(4818), + [anon_sym_AMP_AMP] = ACTIONS(4818), + [anon_sym_PIPE_PIPE] = ACTIONS(4818), + [anon_sym_else] = ACTIONS(4816), + [anon_sym_COLON_COLON] = ACTIONS(4818), + [anon_sym_PLUS_EQ] = ACTIONS(4818), + [anon_sym_DASH_EQ] = ACTIONS(4818), + [anon_sym_STAR_EQ] = ACTIONS(4818), + [anon_sym_SLASH_EQ] = ACTIONS(4818), + [anon_sym_PERCENT_EQ] = ACTIONS(4818), + [anon_sym_BANG_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4818), + [anon_sym_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4818), + [anon_sym_LT_EQ] = ACTIONS(4818), + [anon_sym_GT_EQ] = ACTIONS(4818), + [anon_sym_BANGin] = ACTIONS(4818), + [anon_sym_is] = ACTIONS(4816), + [anon_sym_BANGis] = ACTIONS(4818), + [anon_sym_PLUS] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4816), + [anon_sym_SLASH] = ACTIONS(4816), + [anon_sym_PERCENT] = ACTIONS(4816), + [anon_sym_as_QMARK] = ACTIONS(4818), + [anon_sym_PLUS_PLUS] = ACTIONS(4818), + [anon_sym_DASH_DASH] = ACTIONS(4818), + [anon_sym_BANG_BANG] = ACTIONS(4818), + [anon_sym_suspend] = ACTIONS(4816), + [anon_sym_sealed] = ACTIONS(4816), + [anon_sym_annotation] = ACTIONS(4816), + [anon_sym_data] = ACTIONS(4816), + [anon_sym_inner] = ACTIONS(4816), + [anon_sym_value] = ACTIONS(4816), + [anon_sym_override] = ACTIONS(4816), + [anon_sym_lateinit] = ACTIONS(4816), + [anon_sym_public] = ACTIONS(4816), + [anon_sym_private] = ACTIONS(4816), + [anon_sym_internal] = ACTIONS(4816), + [anon_sym_protected] = ACTIONS(4816), + [anon_sym_tailrec] = ACTIONS(4816), + [anon_sym_operator] = ACTIONS(4816), + [anon_sym_infix] = ACTIONS(4816), + [anon_sym_inline] = ACTIONS(4816), + [anon_sym_external] = ACTIONS(4816), + [sym_property_modifier] = ACTIONS(4816), + [anon_sym_abstract] = ACTIONS(4816), + [anon_sym_final] = ACTIONS(4816), + [anon_sym_open] = ACTIONS(4816), + [anon_sym_vararg] = ACTIONS(4816), + [anon_sym_noinline] = ACTIONS(4816), + [anon_sym_crossinline] = ACTIONS(4816), + [anon_sym_expect] = ACTIONS(4816), + [anon_sym_actual] = ACTIONS(4816), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4818), + [sym__automatic_semicolon] = ACTIONS(4818), + [sym_safe_nav] = ACTIONS(4818), + [sym_multiline_comment] = ACTIONS(3), + }, + [3888] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3889] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3890] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [3891] = { + [sym__alpha_identifier] = ACTIONS(4844), + [anon_sym_AT] = ACTIONS(4846), + [anon_sym_LBRACK] = ACTIONS(4846), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_as] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4846), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_COMMA] = ACTIONS(4846), + [anon_sym_LT] = ACTIONS(4844), + [anon_sym_GT] = ACTIONS(4844), + [anon_sym_where] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4846), + [anon_sym_get] = ACTIONS(4844), + [anon_sym_set] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_QMARK_COLON] = ACTIONS(4846), + [anon_sym_AMP_AMP] = ACTIONS(4846), + [anon_sym_PIPE_PIPE] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(4846), + [anon_sym_PLUS_EQ] = ACTIONS(4846), + [anon_sym_DASH_EQ] = ACTIONS(4846), + [anon_sym_STAR_EQ] = ACTIONS(4846), + [anon_sym_SLASH_EQ] = ACTIONS(4846), + [anon_sym_PERCENT_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ] = ACTIONS(4844), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ] = ACTIONS(4844), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), + [anon_sym_LT_EQ] = ACTIONS(4846), + [anon_sym_GT_EQ] = ACTIONS(4846), + [anon_sym_BANGin] = ACTIONS(4846), + [anon_sym_is] = ACTIONS(4844), + [anon_sym_BANGis] = ACTIONS(4846), + [anon_sym_PLUS] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4844), + [anon_sym_SLASH] = ACTIONS(4844), + [anon_sym_PERCENT] = ACTIONS(4844), + [anon_sym_as_QMARK] = ACTIONS(4846), + [anon_sym_PLUS_PLUS] = ACTIONS(4846), + [anon_sym_DASH_DASH] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4846), + [anon_sym_suspend] = ACTIONS(4844), + [anon_sym_sealed] = ACTIONS(4844), + [anon_sym_annotation] = ACTIONS(4844), + [anon_sym_data] = ACTIONS(4844), + [anon_sym_inner] = ACTIONS(4844), + [anon_sym_value] = ACTIONS(4844), + [anon_sym_override] = ACTIONS(4844), + [anon_sym_lateinit] = ACTIONS(4844), + [anon_sym_public] = ACTIONS(4844), + [anon_sym_private] = ACTIONS(4844), + [anon_sym_internal] = ACTIONS(4844), + [anon_sym_protected] = ACTIONS(4844), + [anon_sym_tailrec] = ACTIONS(4844), + [anon_sym_operator] = ACTIONS(4844), + [anon_sym_infix] = ACTIONS(4844), + [anon_sym_inline] = ACTIONS(4844), + [anon_sym_external] = ACTIONS(4844), + [sym_property_modifier] = ACTIONS(4844), + [anon_sym_abstract] = ACTIONS(4844), + [anon_sym_final] = ACTIONS(4844), + [anon_sym_open] = ACTIONS(4844), + [anon_sym_vararg] = ACTIONS(4844), + [anon_sym_noinline] = ACTIONS(4844), + [anon_sym_crossinline] = ACTIONS(4844), + [anon_sym_expect] = ACTIONS(4844), + [anon_sym_actual] = ACTIONS(4844), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4846), + [sym__automatic_semicolon] = ACTIONS(4846), + [sym_safe_nav] = ACTIONS(4846), + [sym_multiline_comment] = ACTIONS(3), + }, + [3892] = { + [sym__alpha_identifier] = ACTIONS(4848), + [anon_sym_AT] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_DOT] = ACTIONS(4848), + [anon_sym_as] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_COMMA] = ACTIONS(4850), + [anon_sym_LT] = ACTIONS(4848), + [anon_sym_GT] = ACTIONS(4848), + [anon_sym_where] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_get] = ACTIONS(4848), + [anon_sym_set] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_QMARK_COLON] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4850), + [anon_sym_PIPE_PIPE] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4848), + [anon_sym_COLON_COLON] = ACTIONS(4850), + [anon_sym_PLUS_EQ] = ACTIONS(4850), + [anon_sym_DASH_EQ] = ACTIONS(4850), + [anon_sym_STAR_EQ] = ACTIONS(4850), + [anon_sym_SLASH_EQ] = ACTIONS(4850), + [anon_sym_PERCENT_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4850), + [anon_sym_LT_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4850), + [anon_sym_is] = ACTIONS(4848), + [anon_sym_BANGis] = ACTIONS(4850), + [anon_sym_PLUS] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [anon_sym_SLASH] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_as_QMARK] = ACTIONS(4850), + [anon_sym_PLUS_PLUS] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4850), + [anon_sym_suspend] = ACTIONS(4848), + [anon_sym_sealed] = ACTIONS(4848), + [anon_sym_annotation] = ACTIONS(4848), + [anon_sym_data] = ACTIONS(4848), + [anon_sym_inner] = ACTIONS(4848), + [anon_sym_value] = ACTIONS(4848), + [anon_sym_override] = ACTIONS(4848), + [anon_sym_lateinit] = ACTIONS(4848), + [anon_sym_public] = ACTIONS(4848), + [anon_sym_private] = ACTIONS(4848), + [anon_sym_internal] = ACTIONS(4848), + [anon_sym_protected] = ACTIONS(4848), + [anon_sym_tailrec] = ACTIONS(4848), + [anon_sym_operator] = ACTIONS(4848), + [anon_sym_infix] = ACTIONS(4848), + [anon_sym_inline] = ACTIONS(4848), + [anon_sym_external] = ACTIONS(4848), + [sym_property_modifier] = ACTIONS(4848), + [anon_sym_abstract] = ACTIONS(4848), + [anon_sym_final] = ACTIONS(4848), + [anon_sym_open] = ACTIONS(4848), + [anon_sym_vararg] = ACTIONS(4848), + [anon_sym_noinline] = ACTIONS(4848), + [anon_sym_crossinline] = ACTIONS(4848), + [anon_sym_expect] = ACTIONS(4848), + [anon_sym_actual] = ACTIONS(4848), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4850), + [sym__automatic_semicolon] = ACTIONS(4850), + [sym_safe_nav] = ACTIONS(4850), + [sym_multiline_comment] = ACTIONS(3), + }, + [3893] = { + [sym__alpha_identifier] = ACTIONS(4852), + [anon_sym_AT] = ACTIONS(4854), + [anon_sym_LBRACK] = ACTIONS(4854), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_as] = ACTIONS(4852), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4854), + [anon_sym_RBRACE] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(4854), + [anon_sym_COMMA] = ACTIONS(4854), + [anon_sym_LT] = ACTIONS(4852), + [anon_sym_GT] = ACTIONS(4852), + [anon_sym_where] = ACTIONS(4852), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym_get] = ACTIONS(4852), + [anon_sym_set] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4854), + [anon_sym_in] = ACTIONS(4852), + [anon_sym_DOT_DOT] = ACTIONS(4854), + [anon_sym_QMARK_COLON] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4854), + [anon_sym_PIPE_PIPE] = ACTIONS(4854), + [anon_sym_else] = ACTIONS(4852), + [anon_sym_COLON_COLON] = ACTIONS(4854), + [anon_sym_PLUS_EQ] = ACTIONS(4854), + [anon_sym_DASH_EQ] = ACTIONS(4854), + [anon_sym_STAR_EQ] = ACTIONS(4854), + [anon_sym_SLASH_EQ] = ACTIONS(4854), + [anon_sym_PERCENT_EQ] = ACTIONS(4854), + [anon_sym_BANG_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), + [anon_sym_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), + [anon_sym_LT_EQ] = ACTIONS(4854), + [anon_sym_GT_EQ] = ACTIONS(4854), + [anon_sym_BANGin] = ACTIONS(4854), + [anon_sym_is] = ACTIONS(4852), + [anon_sym_BANGis] = ACTIONS(4854), + [anon_sym_PLUS] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [anon_sym_SLASH] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4854), + [anon_sym_PLUS_PLUS] = ACTIONS(4854), + [anon_sym_DASH_DASH] = ACTIONS(4854), + [anon_sym_BANG_BANG] = ACTIONS(4854), + [anon_sym_suspend] = ACTIONS(4852), + [anon_sym_sealed] = ACTIONS(4852), + [anon_sym_annotation] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4852), + [anon_sym_inner] = ACTIONS(4852), + [anon_sym_value] = ACTIONS(4852), + [anon_sym_override] = ACTIONS(4852), + [anon_sym_lateinit] = ACTIONS(4852), + [anon_sym_public] = ACTIONS(4852), + [anon_sym_private] = ACTIONS(4852), + [anon_sym_internal] = ACTIONS(4852), + [anon_sym_protected] = ACTIONS(4852), + [anon_sym_tailrec] = ACTIONS(4852), + [anon_sym_operator] = ACTIONS(4852), + [anon_sym_infix] = ACTIONS(4852), + [anon_sym_inline] = ACTIONS(4852), + [anon_sym_external] = ACTIONS(4852), + [sym_property_modifier] = ACTIONS(4852), + [anon_sym_abstract] = ACTIONS(4852), + [anon_sym_final] = ACTIONS(4852), + [anon_sym_open] = ACTIONS(4852), + [anon_sym_vararg] = ACTIONS(4852), + [anon_sym_noinline] = ACTIONS(4852), + [anon_sym_crossinline] = ACTIONS(4852), + [anon_sym_expect] = ACTIONS(4852), + [anon_sym_actual] = ACTIONS(4852), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4854), + [sym__automatic_semicolon] = ACTIONS(4854), + [sym_safe_nav] = ACTIONS(4854), + [sym_multiline_comment] = ACTIONS(3), + }, + [3894] = { + [sym__alpha_identifier] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_where] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(4932), + [anon_sym_set] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [sym_label] = ACTIONS(4934), + [anon_sym_in] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_QMARK_COLON] = ACTIONS(4934), + [anon_sym_AMP_AMP] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4934), + [anon_sym_DASH_EQ] = ACTIONS(4934), + [anon_sym_STAR_EQ] = ACTIONS(4934), + [anon_sym_SLASH_EQ] = ACTIONS(4934), + [anon_sym_PERCENT_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4934), + [anon_sym_BANGin] = ACTIONS(4934), + [anon_sym_is] = ACTIONS(4932), + [anon_sym_BANGis] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_as_QMARK] = ACTIONS(4934), + [anon_sym_PLUS_PLUS] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_BANG_BANG] = ACTIONS(4934), + [anon_sym_suspend] = ACTIONS(4932), + [anon_sym_sealed] = ACTIONS(4932), + [anon_sym_annotation] = ACTIONS(4932), + [anon_sym_data] = ACTIONS(4932), + [anon_sym_inner] = ACTIONS(4932), + [anon_sym_value] = ACTIONS(4932), + [anon_sym_override] = ACTIONS(4932), + [anon_sym_lateinit] = ACTIONS(4932), + [anon_sym_public] = ACTIONS(4932), + [anon_sym_private] = ACTIONS(4932), + [anon_sym_internal] = ACTIONS(4932), + [anon_sym_protected] = ACTIONS(4932), + [anon_sym_tailrec] = ACTIONS(4932), + [anon_sym_operator] = ACTIONS(4932), + [anon_sym_infix] = ACTIONS(4932), + [anon_sym_inline] = ACTIONS(4932), + [anon_sym_external] = ACTIONS(4932), + [sym_property_modifier] = ACTIONS(4932), + [anon_sym_abstract] = ACTIONS(4932), + [anon_sym_final] = ACTIONS(4932), + [anon_sym_open] = ACTIONS(4932), + [anon_sym_vararg] = ACTIONS(4932), + [anon_sym_noinline] = ACTIONS(4932), + [anon_sym_crossinline] = ACTIONS(4932), + [anon_sym_expect] = ACTIONS(4932), + [anon_sym_actual] = ACTIONS(4932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4934), + [sym__automatic_semicolon] = ACTIONS(4934), + [sym_safe_nav] = ACTIONS(4934), + [sym_multiline_comment] = ACTIONS(3), + }, + [3895] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + }, + [3896] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_suspend] = ACTIONS(4940), + [anon_sym_sealed] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_override] = ACTIONS(4940), + [anon_sym_lateinit] = ACTIONS(4940), + [anon_sym_public] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4940), + [anon_sym_internal] = ACTIONS(4940), + [anon_sym_protected] = ACTIONS(4940), + [anon_sym_tailrec] = ACTIONS(4940), + [anon_sym_operator] = ACTIONS(4940), + [anon_sym_infix] = ACTIONS(4940), + [anon_sym_inline] = ACTIONS(4940), + [anon_sym_external] = ACTIONS(4940), + [sym_property_modifier] = ACTIONS(4940), + [anon_sym_abstract] = ACTIONS(4940), + [anon_sym_final] = ACTIONS(4940), + [anon_sym_open] = ACTIONS(4940), + [anon_sym_vararg] = ACTIONS(4940), + [anon_sym_noinline] = ACTIONS(4940), + [anon_sym_crossinline] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4942), + [sym__automatic_semicolon] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + }, + [3897] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_suspend] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_lateinit] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_tailrec] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4964), + [anon_sym_infix] = ACTIONS(4964), + [anon_sym_inline] = ACTIONS(4964), + [anon_sym_external] = ACTIONS(4964), + [sym_property_modifier] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_final] = ACTIONS(4964), + [anon_sym_open] = ACTIONS(4964), + [anon_sym_vararg] = ACTIONS(4964), + [anon_sym_noinline] = ACTIONS(4964), + [anon_sym_crossinline] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4966), + [sym__automatic_semicolon] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + }, + [3898] = { + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [3899] = { + [sym__alpha_identifier] = ACTIONS(7165), + [anon_sym_AT] = ACTIONS(7167), + [anon_sym_LBRACK] = ACTIONS(7167), + [anon_sym_typealias] = ACTIONS(7165), + [anon_sym_class] = ACTIONS(7165), + [anon_sym_interface] = ACTIONS(7165), + [anon_sym_enum] = ACTIONS(7165), + [anon_sym_LBRACE] = ACTIONS(7167), + [anon_sym_LPAREN] = ACTIONS(7167), + [anon_sym_val] = ACTIONS(7165), + [anon_sym_var] = ACTIONS(7165), + [anon_sym_object] = ACTIONS(7165), + [anon_sym_fun] = ACTIONS(7165), + [anon_sym_get] = ACTIONS(7165), + [anon_sym_set] = ACTIONS(7165), + [anon_sym_this] = ACTIONS(7165), + [anon_sym_super] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(7167), + [sym_label] = ACTIONS(7165), + [anon_sym_for] = ACTIONS(7165), + [anon_sym_while] = ACTIONS(7165), + [anon_sym_do] = ACTIONS(7165), + [anon_sym_if] = ACTIONS(7165), + [anon_sym_when] = ACTIONS(7165), + [anon_sym_try] = ACTIONS(7165), + [anon_sym_throw] = ACTIONS(7165), + [anon_sym_return] = ACTIONS(7165), + [anon_sym_continue] = ACTIONS(7165), + [anon_sym_break] = ACTIONS(7165), + [anon_sym_COLON_COLON] = ACTIONS(7167), + [anon_sym_PLUS] = ACTIONS(7165), + [anon_sym_DASH] = ACTIONS(7165), + [anon_sym_PLUS_PLUS] = ACTIONS(7167), + [anon_sym_DASH_DASH] = ACTIONS(7167), + [anon_sym_BANG] = ACTIONS(7167), + [anon_sym_suspend] = ACTIONS(7165), + [anon_sym_sealed] = ACTIONS(7165), + [anon_sym_annotation] = ACTIONS(7165), + [anon_sym_data] = ACTIONS(7165), + [anon_sym_inner] = ACTIONS(7165), + [anon_sym_value] = ACTIONS(7165), + [anon_sym_override] = ACTIONS(7165), + [anon_sym_lateinit] = ACTIONS(7165), + [anon_sym_public] = ACTIONS(7165), + [anon_sym_private] = ACTIONS(7165), + [anon_sym_internal] = ACTIONS(7165), + [anon_sym_protected] = ACTIONS(7165), + [anon_sym_tailrec] = ACTIONS(7165), + [anon_sym_operator] = ACTIONS(7165), + [anon_sym_infix] = ACTIONS(7165), + [anon_sym_inline] = ACTIONS(7165), + [anon_sym_external] = ACTIONS(7165), + [sym_property_modifier] = ACTIONS(7165), + [anon_sym_abstract] = ACTIONS(7165), + [anon_sym_final] = ACTIONS(7165), + [anon_sym_open] = ACTIONS(7165), + [anon_sym_vararg] = ACTIONS(7165), + [anon_sym_noinline] = ACTIONS(7165), + [anon_sym_crossinline] = ACTIONS(7165), + [anon_sym_expect] = ACTIONS(7165), + [anon_sym_actual] = ACTIONS(7165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7167), + [anon_sym_continue_AT] = ACTIONS(7167), + [anon_sym_break_AT] = ACTIONS(7167), + [anon_sym_this_AT] = ACTIONS(7167), + [anon_sym_super_AT] = ACTIONS(7167), + [sym_real_literal] = ACTIONS(7167), + [sym_integer_literal] = ACTIONS(7165), + [sym_hex_literal] = ACTIONS(7167), + [sym_bin_literal] = ACTIONS(7167), + [anon_sym_true] = ACTIONS(7165), + [anon_sym_false] = ACTIONS(7165), + [anon_sym_SQUOTE] = ACTIONS(7167), + [sym_null_literal] = ACTIONS(7165), + [sym__backtick_identifier] = ACTIONS(7167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7167), + }, + [3900] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_suspend] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_override] = ACTIONS(4908), + [anon_sym_lateinit] = ACTIONS(4908), + [anon_sym_public] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4908), + [anon_sym_internal] = ACTIONS(4908), + [anon_sym_protected] = ACTIONS(4908), + [anon_sym_tailrec] = ACTIONS(4908), + [anon_sym_operator] = ACTIONS(4908), + [anon_sym_infix] = ACTIONS(4908), + [anon_sym_inline] = ACTIONS(4908), + [anon_sym_external] = ACTIONS(4908), + [sym_property_modifier] = ACTIONS(4908), + [anon_sym_abstract] = ACTIONS(4908), + [anon_sym_final] = ACTIONS(4908), + [anon_sym_open] = ACTIONS(4908), + [anon_sym_vararg] = ACTIONS(4908), + [anon_sym_noinline] = ACTIONS(4908), + [anon_sym_crossinline] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4910), + [sym__automatic_semicolon] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), + [sym_multiline_comment] = ACTIONS(3), + }, + [3901] = { + [sym__alpha_identifier] = ACTIONS(5127), + [anon_sym_AT] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_DOT] = ACTIONS(5127), + [anon_sym_as] = ACTIONS(5127), + [anon_sym_EQ] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_where] = ACTIONS(5127), + [anon_sym_SEMI] = ACTIONS(5129), + [anon_sym_get] = ACTIONS(5127), + [anon_sym_set] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [sym_label] = ACTIONS(5129), + [anon_sym_in] = ACTIONS(5127), + [anon_sym_DOT_DOT] = ACTIONS(5129), + [anon_sym_QMARK_COLON] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_PIPE_PIPE] = ACTIONS(5129), + [anon_sym_else] = ACTIONS(5127), + [anon_sym_COLON_COLON] = ACTIONS(5129), + [anon_sym_PLUS_EQ] = ACTIONS(5129), + [anon_sym_DASH_EQ] = ACTIONS(5129), + [anon_sym_STAR_EQ] = ACTIONS(5129), + [anon_sym_SLASH_EQ] = ACTIONS(5129), + [anon_sym_PERCENT_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5129), + [anon_sym_LT_EQ] = ACTIONS(5129), + [anon_sym_GT_EQ] = ACTIONS(5129), + [anon_sym_BANGin] = ACTIONS(5129), + [anon_sym_is] = ACTIONS(5127), + [anon_sym_BANGis] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_PERCENT] = ACTIONS(5127), + [anon_sym_as_QMARK] = ACTIONS(5129), + [anon_sym_PLUS_PLUS] = ACTIONS(5129), + [anon_sym_DASH_DASH] = ACTIONS(5129), + [anon_sym_BANG_BANG] = ACTIONS(5129), + [anon_sym_suspend] = ACTIONS(5127), + [anon_sym_sealed] = ACTIONS(5127), + [anon_sym_annotation] = ACTIONS(5127), + [anon_sym_data] = ACTIONS(5127), + [anon_sym_inner] = ACTIONS(5127), + [anon_sym_value] = ACTIONS(5127), + [anon_sym_override] = ACTIONS(5127), + [anon_sym_lateinit] = ACTIONS(5127), + [anon_sym_public] = ACTIONS(5127), + [anon_sym_private] = ACTIONS(5127), + [anon_sym_internal] = ACTIONS(5127), + [anon_sym_protected] = ACTIONS(5127), + [anon_sym_tailrec] = ACTIONS(5127), + [anon_sym_operator] = ACTIONS(5127), + [anon_sym_infix] = ACTIONS(5127), + [anon_sym_inline] = ACTIONS(5127), + [anon_sym_external] = ACTIONS(5127), + [sym_property_modifier] = ACTIONS(5127), + [anon_sym_abstract] = ACTIONS(5127), + [anon_sym_final] = ACTIONS(5127), + [anon_sym_open] = ACTIONS(5127), + [anon_sym_vararg] = ACTIONS(5127), + [anon_sym_noinline] = ACTIONS(5127), + [anon_sym_crossinline] = ACTIONS(5127), + [anon_sym_expect] = ACTIONS(5127), + [anon_sym_actual] = ACTIONS(5127), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5129), + [sym__automatic_semicolon] = ACTIONS(5129), + [sym_safe_nav] = ACTIONS(5129), + [sym_multiline_comment] = ACTIONS(3), + }, + [3902] = { + [sym__alpha_identifier] = ACTIONS(5139), + [anon_sym_AT] = ACTIONS(5141), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5139), + [anon_sym_as] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_where] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5139), + [anon_sym_DOT_DOT] = ACTIONS(5141), + [anon_sym_QMARK_COLON] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5139), + [anon_sym_COLON_COLON] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_BANGin] = ACTIONS(5141), + [anon_sym_is] = ACTIONS(5139), + [anon_sym_BANGis] = ACTIONS(5141), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_PERCENT] = ACTIONS(5139), + [anon_sym_as_QMARK] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5141), + [anon_sym_suspend] = ACTIONS(5139), + [anon_sym_sealed] = ACTIONS(5139), + [anon_sym_annotation] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5139), + [anon_sym_inner] = ACTIONS(5139), + [anon_sym_value] = ACTIONS(5139), + [anon_sym_override] = ACTIONS(5139), + [anon_sym_lateinit] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_internal] = ACTIONS(5139), + [anon_sym_protected] = ACTIONS(5139), + [anon_sym_tailrec] = ACTIONS(5139), + [anon_sym_operator] = ACTIONS(5139), + [anon_sym_infix] = ACTIONS(5139), + [anon_sym_inline] = ACTIONS(5139), + [anon_sym_external] = ACTIONS(5139), + [sym_property_modifier] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_open] = ACTIONS(5139), + [anon_sym_vararg] = ACTIONS(5139), + [anon_sym_noinline] = ACTIONS(5139), + [anon_sym_crossinline] = ACTIONS(5139), + [anon_sym_expect] = ACTIONS(5139), + [anon_sym_actual] = ACTIONS(5139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5141), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_safe_nav] = ACTIONS(5141), + [sym_multiline_comment] = ACTIONS(3), + }, + [3903] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_suspend] = ACTIONS(5149), + [anon_sym_sealed] = ACTIONS(5149), + [anon_sym_annotation] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_override] = ACTIONS(5149), + [anon_sym_lateinit] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_internal] = ACTIONS(5149), + [anon_sym_protected] = ACTIONS(5149), + [anon_sym_tailrec] = ACTIONS(5149), + [anon_sym_operator] = ACTIONS(5149), + [anon_sym_infix] = ACTIONS(5149), + [anon_sym_inline] = ACTIONS(5149), + [anon_sym_external] = ACTIONS(5149), + [sym_property_modifier] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_open] = ACTIONS(5149), + [anon_sym_vararg] = ACTIONS(5149), + [anon_sym_noinline] = ACTIONS(5149), + [anon_sym_crossinline] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), + [sym_multiline_comment] = ACTIONS(3), + }, + [3904] = { + [sym_function_body] = STATE(3162), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_fun] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_this] = ACTIONS(4082), + [anon_sym_super] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4082), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_when] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4084), + [anon_sym_continue_AT] = ACTIONS(4084), + [anon_sym_break_AT] = ACTIONS(4084), + [anon_sym_this_AT] = ACTIONS(4084), + [anon_sym_super_AT] = ACTIONS(4084), + [sym_real_literal] = ACTIONS(4084), + [sym_integer_literal] = ACTIONS(4082), + [sym_hex_literal] = ACTIONS(4084), + [sym_bin_literal] = ACTIONS(4084), + [anon_sym_true] = ACTIONS(4082), + [anon_sym_false] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4082), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4084), + }, + [3905] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [sym_label] = ACTIONS(4986), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4986), + [sym__automatic_semicolon] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + }, + [3906] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_suspend] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_lateinit] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_tailrec] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4920), + [anon_sym_infix] = ACTIONS(4920), + [anon_sym_inline] = ACTIONS(4920), + [anon_sym_external] = ACTIONS(4920), + [sym_property_modifier] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_final] = ACTIONS(4920), + [anon_sym_open] = ACTIONS(4920), + [anon_sym_vararg] = ACTIONS(4920), + [anon_sym_noinline] = ACTIONS(4920), + [anon_sym_crossinline] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4922), + [sym__automatic_semicolon] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), + [sym_multiline_comment] = ACTIONS(3), + }, + [3907] = { + [sym_function_body] = STATE(3203), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_object] = ACTIONS(4140), + [anon_sym_fun] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_this] = ACTIONS(4140), + [anon_sym_super] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4140), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_when] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4142), + [anon_sym_continue_AT] = ACTIONS(4142), + [anon_sym_break_AT] = ACTIONS(4142), + [anon_sym_this_AT] = ACTIONS(4142), + [anon_sym_super_AT] = ACTIONS(4142), + [sym_real_literal] = ACTIONS(4142), + [sym_integer_literal] = ACTIONS(4140), + [sym_hex_literal] = ACTIONS(4142), + [sym_bin_literal] = ACTIONS(4142), + [anon_sym_true] = ACTIONS(4140), + [anon_sym_false] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4142), + [sym_null_literal] = ACTIONS(4140), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4142), + }, + [3908] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [sym_label] = ACTIONS(4982), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4982), + [sym__automatic_semicolon] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + }, + [3909] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3869), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_object] = ACTIONS(4527), + [anon_sym_fun] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_this] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_when] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_throw] = ACTIONS(4527), + [anon_sym_return] = ACTIONS(4527), + [anon_sym_continue] = ACTIONS(4527), + [anon_sym_break] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4529), + [anon_sym_continue_AT] = ACTIONS(4529), + [anon_sym_break_AT] = ACTIONS(4529), + [anon_sym_this_AT] = ACTIONS(4529), + [anon_sym_super_AT] = ACTIONS(4529), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4529), + [sym_null_literal] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4529), + }, + [3910] = { + [sym_function_body] = STATE(3296), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_object] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_this] = ACTIONS(4150), + [anon_sym_super] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_when] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4152), + [anon_sym_continue_AT] = ACTIONS(4152), + [anon_sym_break_AT] = ACTIONS(4152), + [anon_sym_this_AT] = ACTIONS(4152), + [anon_sym_super_AT] = ACTIONS(4152), + [sym_real_literal] = ACTIONS(4152), + [sym_integer_literal] = ACTIONS(4150), + [sym_hex_literal] = ACTIONS(4152), + [sym_bin_literal] = ACTIONS(4152), + [anon_sym_true] = ACTIONS(4150), + [anon_sym_false] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4152), + [sym_null_literal] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4152), + }, + [3911] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [sym_label] = ACTIONS(4978), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4978), + [sym__automatic_semicolon] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + }, + [3912] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(4994), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + }, + [3913] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), + [sym_multiline_comment] = ACTIONS(3), + }, + [3914] = { + [sym_function_body] = STATE(3269), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_this] = ACTIONS(4092), + [anon_sym_super] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4092), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_when] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4094), + [anon_sym_continue_AT] = ACTIONS(4094), + [anon_sym_break_AT] = ACTIONS(4094), + [anon_sym_this_AT] = ACTIONS(4094), + [anon_sym_super_AT] = ACTIONS(4094), + [sym_real_literal] = ACTIONS(4094), + [sym_integer_literal] = ACTIONS(4092), + [sym_hex_literal] = ACTIONS(4094), + [sym_bin_literal] = ACTIONS(4094), + [anon_sym_true] = ACTIONS(4092), + [anon_sym_false] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4094), + [sym_null_literal] = ACTIONS(4092), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4094), + }, + [3915] = { + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_PLUS_EQ] = ACTIONS(4172), + [anon_sym_DASH_EQ] = ACTIONS(4172), + [anon_sym_STAR_EQ] = ACTIONS(4172), + [anon_sym_SLASH_EQ] = ACTIONS(4172), + [anon_sym_PERCENT_EQ] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4170), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [3916] = { + [sym__alpha_identifier] = ACTIONS(3380), + [anon_sym_AT] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3380), + [anon_sym_as] = ACTIONS(3380), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_where] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3380), + [anon_sym_set] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [sym_label] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_QMARK_COLON] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_else] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3380), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_as_QMARK] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_BANG_BANG] = ACTIONS(3382), + [anon_sym_suspend] = ACTIONS(3380), + [anon_sym_sealed] = ACTIONS(3380), + [anon_sym_annotation] = ACTIONS(3380), + [anon_sym_data] = ACTIONS(3380), + [anon_sym_inner] = ACTIONS(3380), + [anon_sym_value] = ACTIONS(3380), + [anon_sym_override] = ACTIONS(3380), + [anon_sym_lateinit] = ACTIONS(3380), + [anon_sym_public] = ACTIONS(3380), + [anon_sym_private] = ACTIONS(3380), + [anon_sym_internal] = ACTIONS(3380), + [anon_sym_protected] = ACTIONS(3380), + [anon_sym_tailrec] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_infix] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_external] = ACTIONS(3380), + [sym_property_modifier] = ACTIONS(3380), + [anon_sym_abstract] = ACTIONS(3380), + [anon_sym_final] = ACTIONS(3380), + [anon_sym_open] = ACTIONS(3380), + [anon_sym_vararg] = ACTIONS(3380), + [anon_sym_noinline] = ACTIONS(3380), + [anon_sym_crossinline] = ACTIONS(3380), + [anon_sym_expect] = ACTIONS(3380), + [anon_sym_actual] = ACTIONS(3380), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3382), + [sym__automatic_semicolon] = ACTIONS(3382), + [sym_safe_nav] = ACTIONS(3382), + [sym_multiline_comment] = ACTIONS(3), + }, + [3917] = { + [sym_class_body] = STATE(3436), + [sym_type_constraints] = STATE(3363), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(6146), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_RBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [3918] = { + [sym_function_body] = STATE(3409), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_RBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_while] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3919] = { + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4411), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3920] = { + [sym__alpha_identifier] = ACTIONS(5131), + [anon_sym_AT] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_DOT] = ACTIONS(5131), + [anon_sym_as] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_where] = ACTIONS(5131), + [anon_sym_SEMI] = ACTIONS(5133), + [anon_sym_get] = ACTIONS(5131), + [anon_sym_set] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5131), + [anon_sym_DOT_DOT] = ACTIONS(5133), + [anon_sym_QMARK_COLON] = ACTIONS(5133), + [anon_sym_AMP_AMP] = ACTIONS(5133), + [anon_sym_PIPE_PIPE] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5131), + [anon_sym_COLON_COLON] = ACTIONS(5133), + [anon_sym_PLUS_EQ] = ACTIONS(5133), + [anon_sym_DASH_EQ] = ACTIONS(5133), + [anon_sym_STAR_EQ] = ACTIONS(5133), + [anon_sym_SLASH_EQ] = ACTIONS(5133), + [anon_sym_PERCENT_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5133), + [anon_sym_LT_EQ] = ACTIONS(5133), + [anon_sym_GT_EQ] = ACTIONS(5133), + [anon_sym_BANGin] = ACTIONS(5133), + [anon_sym_is] = ACTIONS(5131), + [anon_sym_BANGis] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_PERCENT] = ACTIONS(5131), + [anon_sym_as_QMARK] = ACTIONS(5133), + [anon_sym_PLUS_PLUS] = ACTIONS(5133), + [anon_sym_DASH_DASH] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5133), + [anon_sym_suspend] = ACTIONS(5131), + [anon_sym_sealed] = ACTIONS(5131), + [anon_sym_annotation] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5131), + [anon_sym_inner] = ACTIONS(5131), + [anon_sym_value] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_lateinit] = ACTIONS(5131), + [anon_sym_public] = ACTIONS(5131), + [anon_sym_private] = ACTIONS(5131), + [anon_sym_internal] = ACTIONS(5131), + [anon_sym_protected] = ACTIONS(5131), + [anon_sym_tailrec] = ACTIONS(5131), + [anon_sym_operator] = ACTIONS(5131), + [anon_sym_infix] = ACTIONS(5131), + [anon_sym_inline] = ACTIONS(5131), + [anon_sym_external] = ACTIONS(5131), + [sym_property_modifier] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_final] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_vararg] = ACTIONS(5131), + [anon_sym_noinline] = ACTIONS(5131), + [anon_sym_crossinline] = ACTIONS(5131), + [anon_sym_expect] = ACTIONS(5131), + [anon_sym_actual] = ACTIONS(5131), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5133), + [sym_safe_nav] = ACTIONS(5133), + [sym_multiline_comment] = ACTIONS(3), + }, + [3921] = { + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_DASH_GT] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3922] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3923] = { + [sym__alpha_identifier] = ACTIONS(5099), + [anon_sym_AT] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_DOT] = ACTIONS(5099), + [anon_sym_as] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5099), + [anon_sym_GT] = ACTIONS(5099), + [anon_sym_where] = ACTIONS(5099), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_get] = ACTIONS(5099), + [anon_sym_set] = ACTIONS(5099), + [anon_sym_STAR] = ACTIONS(5099), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5099), + [anon_sym_DOT_DOT] = ACTIONS(5101), + [anon_sym_QMARK_COLON] = ACTIONS(5101), + [anon_sym_AMP_AMP] = ACTIONS(5101), + [anon_sym_PIPE_PIPE] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5099), + [anon_sym_COLON_COLON] = ACTIONS(5101), + [anon_sym_PLUS_EQ] = ACTIONS(5101), + [anon_sym_DASH_EQ] = ACTIONS(5101), + [anon_sym_STAR_EQ] = ACTIONS(5101), + [anon_sym_SLASH_EQ] = ACTIONS(5101), + [anon_sym_PERCENT_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5101), + [anon_sym_LT_EQ] = ACTIONS(5101), + [anon_sym_GT_EQ] = ACTIONS(5101), + [anon_sym_BANGin] = ACTIONS(5101), + [anon_sym_is] = ACTIONS(5099), + [anon_sym_BANGis] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5099), + [anon_sym_DASH] = ACTIONS(5099), + [anon_sym_SLASH] = ACTIONS(5099), + [anon_sym_PERCENT] = ACTIONS(5099), + [anon_sym_as_QMARK] = ACTIONS(5101), + [anon_sym_PLUS_PLUS] = ACTIONS(5101), + [anon_sym_DASH_DASH] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5101), + [anon_sym_suspend] = ACTIONS(5099), + [anon_sym_sealed] = ACTIONS(5099), + [anon_sym_annotation] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5099), + [anon_sym_inner] = ACTIONS(5099), + [anon_sym_value] = ACTIONS(5099), + [anon_sym_override] = ACTIONS(5099), + [anon_sym_lateinit] = ACTIONS(5099), + [anon_sym_public] = ACTIONS(5099), + [anon_sym_private] = ACTIONS(5099), + [anon_sym_internal] = ACTIONS(5099), + [anon_sym_protected] = ACTIONS(5099), + [anon_sym_tailrec] = ACTIONS(5099), + [anon_sym_operator] = ACTIONS(5099), + [anon_sym_infix] = ACTIONS(5099), + [anon_sym_inline] = ACTIONS(5099), + [anon_sym_external] = ACTIONS(5099), + [sym_property_modifier] = ACTIONS(5099), + [anon_sym_abstract] = ACTIONS(5099), + [anon_sym_final] = ACTIONS(5099), + [anon_sym_open] = ACTIONS(5099), + [anon_sym_vararg] = ACTIONS(5099), + [anon_sym_noinline] = ACTIONS(5099), + [anon_sym_crossinline] = ACTIONS(5099), + [anon_sym_expect] = ACTIONS(5099), + [anon_sym_actual] = ACTIONS(5099), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5101), + [sym__automatic_semicolon] = ACTIONS(5101), + [sym_safe_nav] = ACTIONS(5101), + [sym_multiline_comment] = ACTIONS(3), + }, + [3924] = { + [sym__alpha_identifier] = ACTIONS(5091), + [anon_sym_AT] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5091), + [anon_sym_as] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5093), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5091), + [anon_sym_where] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(5093), + [anon_sym_get] = ACTIONS(5091), + [anon_sym_set] = ACTIONS(5091), + [anon_sym_STAR] = ACTIONS(5091), + [sym_label] = ACTIONS(5093), + [anon_sym_in] = ACTIONS(5091), + [anon_sym_DOT_DOT] = ACTIONS(5093), + [anon_sym_QMARK_COLON] = ACTIONS(5093), + [anon_sym_AMP_AMP] = ACTIONS(5093), + [anon_sym_PIPE_PIPE] = ACTIONS(5093), + [anon_sym_else] = ACTIONS(5091), + [anon_sym_COLON_COLON] = ACTIONS(5093), + [anon_sym_PLUS_EQ] = ACTIONS(5093), + [anon_sym_DASH_EQ] = ACTIONS(5093), + [anon_sym_STAR_EQ] = ACTIONS(5093), + [anon_sym_SLASH_EQ] = ACTIONS(5093), + [anon_sym_PERCENT_EQ] = ACTIONS(5093), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT_EQ] = ACTIONS(5093), + [anon_sym_GT_EQ] = ACTIONS(5093), + [anon_sym_BANGin] = ACTIONS(5093), + [anon_sym_is] = ACTIONS(5091), + [anon_sym_BANGis] = ACTIONS(5093), + [anon_sym_PLUS] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5091), + [anon_sym_SLASH] = ACTIONS(5091), + [anon_sym_PERCENT] = ACTIONS(5091), + [anon_sym_as_QMARK] = ACTIONS(5093), + [anon_sym_PLUS_PLUS] = ACTIONS(5093), + [anon_sym_DASH_DASH] = ACTIONS(5093), + [anon_sym_BANG_BANG] = ACTIONS(5093), + [anon_sym_suspend] = ACTIONS(5091), + [anon_sym_sealed] = ACTIONS(5091), + [anon_sym_annotation] = ACTIONS(5091), + [anon_sym_data] = ACTIONS(5091), + [anon_sym_inner] = ACTIONS(5091), + [anon_sym_value] = ACTIONS(5091), + [anon_sym_override] = ACTIONS(5091), + [anon_sym_lateinit] = ACTIONS(5091), + [anon_sym_public] = ACTIONS(5091), + [anon_sym_private] = ACTIONS(5091), + [anon_sym_internal] = ACTIONS(5091), + [anon_sym_protected] = ACTIONS(5091), + [anon_sym_tailrec] = ACTIONS(5091), + [anon_sym_operator] = ACTIONS(5091), + [anon_sym_infix] = ACTIONS(5091), + [anon_sym_inline] = ACTIONS(5091), + [anon_sym_external] = ACTIONS(5091), + [sym_property_modifier] = ACTIONS(5091), + [anon_sym_abstract] = ACTIONS(5091), + [anon_sym_final] = ACTIONS(5091), + [anon_sym_open] = ACTIONS(5091), + [anon_sym_vararg] = ACTIONS(5091), + [anon_sym_noinline] = ACTIONS(5091), + [anon_sym_crossinline] = ACTIONS(5091), + [anon_sym_expect] = ACTIONS(5091), + [anon_sym_actual] = ACTIONS(5091), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5093), + [sym__automatic_semicolon] = ACTIONS(5093), + [sym_safe_nav] = ACTIONS(5093), + [sym_multiline_comment] = ACTIONS(3), + }, + [3925] = { + [sym__alpha_identifier] = ACTIONS(5103), + [anon_sym_AT] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(5105), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_as] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5105), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_where] = ACTIONS(5103), + [anon_sym_SEMI] = ACTIONS(5105), + [anon_sym_get] = ACTIONS(5103), + [anon_sym_set] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5103), + [anon_sym_DOT_DOT] = ACTIONS(5105), + [anon_sym_QMARK_COLON] = ACTIONS(5105), + [anon_sym_AMP_AMP] = ACTIONS(5105), + [anon_sym_PIPE_PIPE] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5105), + [anon_sym_PLUS_EQ] = ACTIONS(5105), + [anon_sym_DASH_EQ] = ACTIONS(5105), + [anon_sym_STAR_EQ] = ACTIONS(5105), + [anon_sym_SLASH_EQ] = ACTIONS(5105), + [anon_sym_PERCENT_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5105), + [anon_sym_LT_EQ] = ACTIONS(5105), + [anon_sym_GT_EQ] = ACTIONS(5105), + [anon_sym_BANGin] = ACTIONS(5105), + [anon_sym_is] = ACTIONS(5103), + [anon_sym_BANGis] = ACTIONS(5105), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_as_QMARK] = ACTIONS(5105), + [anon_sym_PLUS_PLUS] = ACTIONS(5105), + [anon_sym_DASH_DASH] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5105), + [anon_sym_suspend] = ACTIONS(5103), + [anon_sym_sealed] = ACTIONS(5103), + [anon_sym_annotation] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5103), + [anon_sym_inner] = ACTIONS(5103), + [anon_sym_value] = ACTIONS(5103), + [anon_sym_override] = ACTIONS(5103), + [anon_sym_lateinit] = ACTIONS(5103), + [anon_sym_public] = ACTIONS(5103), + [anon_sym_private] = ACTIONS(5103), + [anon_sym_internal] = ACTIONS(5103), + [anon_sym_protected] = ACTIONS(5103), + [anon_sym_tailrec] = ACTIONS(5103), + [anon_sym_operator] = ACTIONS(5103), + [anon_sym_infix] = ACTIONS(5103), + [anon_sym_inline] = ACTIONS(5103), + [anon_sym_external] = ACTIONS(5103), + [sym_property_modifier] = ACTIONS(5103), + [anon_sym_abstract] = ACTIONS(5103), + [anon_sym_final] = ACTIONS(5103), + [anon_sym_open] = ACTIONS(5103), + [anon_sym_vararg] = ACTIONS(5103), + [anon_sym_noinline] = ACTIONS(5103), + [anon_sym_crossinline] = ACTIONS(5103), + [anon_sym_expect] = ACTIONS(5103), + [anon_sym_actual] = ACTIONS(5103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5105), + [sym__automatic_semicolon] = ACTIONS(5105), + [sym_safe_nav] = ACTIONS(5105), + [sym_multiline_comment] = ACTIONS(3), + }, + [3926] = { + [sym__alpha_identifier] = ACTIONS(1768), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_EQ] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_where] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_get] = ACTIONS(1768), + [anon_sym_set] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [sym_label] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_QMARK_COLON] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_STAR_EQ] = ACTIONS(1770), + [anon_sym_SLASH_EQ] = ACTIONS(1770), + [anon_sym_PERCENT_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_BANGin] = ACTIONS(1770), + [anon_sym_is] = ACTIONS(1768), + [anon_sym_BANGis] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_as_QMARK] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1770), + [anon_sym_suspend] = ACTIONS(1768), + [anon_sym_sealed] = ACTIONS(1768), + [anon_sym_annotation] = ACTIONS(1768), + [anon_sym_data] = ACTIONS(1768), + [anon_sym_inner] = ACTIONS(1768), + [anon_sym_value] = ACTIONS(1768), + [anon_sym_override] = ACTIONS(1768), + [anon_sym_lateinit] = ACTIONS(1768), + [anon_sym_public] = ACTIONS(1768), + [anon_sym_private] = ACTIONS(1768), + [anon_sym_internal] = ACTIONS(1768), + [anon_sym_protected] = ACTIONS(1768), + [anon_sym_tailrec] = ACTIONS(1768), + [anon_sym_operator] = ACTIONS(1768), + [anon_sym_infix] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [anon_sym_external] = ACTIONS(1768), + [sym_property_modifier] = ACTIONS(1768), + [anon_sym_abstract] = ACTIONS(1768), + [anon_sym_final] = ACTIONS(1768), + [anon_sym_open] = ACTIONS(1768), + [anon_sym_vararg] = ACTIONS(1768), + [anon_sym_noinline] = ACTIONS(1768), + [anon_sym_crossinline] = ACTIONS(1768), + [anon_sym_expect] = ACTIONS(1768), + [anon_sym_actual] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1770), + [sym__automatic_semicolon] = ACTIONS(1770), + [sym_safe_nav] = ACTIONS(1770), + [sym_multiline_comment] = ACTIONS(3), + }, + [3927] = { + [sym__alpha_identifier] = ACTIONS(5066), + [anon_sym_AT] = ACTIONS(5068), + [anon_sym_LBRACK] = ACTIONS(5068), + [anon_sym_DOT] = ACTIONS(5066), + [anon_sym_as] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5066), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_RBRACE] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LT] = ACTIONS(5066), + [anon_sym_GT] = ACTIONS(5066), + [anon_sym_where] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5068), + [anon_sym_get] = ACTIONS(5066), + [anon_sym_set] = ACTIONS(5066), + [anon_sym_STAR] = ACTIONS(5066), + [sym_label] = ACTIONS(5068), + [anon_sym_in] = ACTIONS(5066), + [anon_sym_DOT_DOT] = ACTIONS(5068), + [anon_sym_QMARK_COLON] = ACTIONS(5068), + [anon_sym_AMP_AMP] = ACTIONS(5068), + [anon_sym_PIPE_PIPE] = ACTIONS(5068), + [anon_sym_else] = ACTIONS(5066), + [anon_sym_COLON_COLON] = ACTIONS(5068), + [anon_sym_PLUS_EQ] = ACTIONS(5068), + [anon_sym_DASH_EQ] = ACTIONS(5068), + [anon_sym_STAR_EQ] = ACTIONS(5068), + [anon_sym_SLASH_EQ] = ACTIONS(5068), + [anon_sym_PERCENT_EQ] = ACTIONS(5068), + [anon_sym_BANG_EQ] = ACTIONS(5066), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5068), + [anon_sym_EQ_EQ] = ACTIONS(5066), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5068), + [anon_sym_LT_EQ] = ACTIONS(5068), + [anon_sym_GT_EQ] = ACTIONS(5068), + [anon_sym_BANGin] = ACTIONS(5068), + [anon_sym_is] = ACTIONS(5066), + [anon_sym_BANGis] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5066), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_SLASH] = ACTIONS(5066), + [anon_sym_PERCENT] = ACTIONS(5066), + [anon_sym_as_QMARK] = ACTIONS(5068), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_BANG_BANG] = ACTIONS(5068), + [anon_sym_suspend] = ACTIONS(5066), + [anon_sym_sealed] = ACTIONS(5066), + [anon_sym_annotation] = ACTIONS(5066), + [anon_sym_data] = ACTIONS(5066), + [anon_sym_inner] = ACTIONS(5066), + [anon_sym_value] = ACTIONS(5066), + [anon_sym_override] = ACTIONS(5066), + [anon_sym_lateinit] = ACTIONS(5066), + [anon_sym_public] = ACTIONS(5066), + [anon_sym_private] = ACTIONS(5066), + [anon_sym_internal] = ACTIONS(5066), + [anon_sym_protected] = ACTIONS(5066), + [anon_sym_tailrec] = ACTIONS(5066), + [anon_sym_operator] = ACTIONS(5066), + [anon_sym_infix] = ACTIONS(5066), + [anon_sym_inline] = ACTIONS(5066), + [anon_sym_external] = ACTIONS(5066), + [sym_property_modifier] = ACTIONS(5066), + [anon_sym_abstract] = ACTIONS(5066), + [anon_sym_final] = ACTIONS(5066), + [anon_sym_open] = ACTIONS(5066), + [anon_sym_vararg] = ACTIONS(5066), + [anon_sym_noinline] = ACTIONS(5066), + [anon_sym_crossinline] = ACTIONS(5066), + [anon_sym_expect] = ACTIONS(5066), + [anon_sym_actual] = ACTIONS(5066), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5068), + [sym__automatic_semicolon] = ACTIONS(5068), + [sym_safe_nav] = ACTIONS(5068), + [sym_multiline_comment] = ACTIONS(3), + }, + [3928] = { + [sym__alpha_identifier] = ACTIONS(5062), + [anon_sym_AT] = ACTIONS(5064), + [anon_sym_LBRACK] = ACTIONS(5064), + [anon_sym_DOT] = ACTIONS(5062), + [anon_sym_as] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5064), + [anon_sym_RBRACE] = ACTIONS(5064), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_COMMA] = ACTIONS(5064), + [anon_sym_LT] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5062), + [anon_sym_where] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5064), + [anon_sym_get] = ACTIONS(5062), + [anon_sym_set] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [sym_label] = ACTIONS(5064), + [anon_sym_in] = ACTIONS(5062), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_QMARK_COLON] = ACTIONS(5064), + [anon_sym_AMP_AMP] = ACTIONS(5064), + [anon_sym_PIPE_PIPE] = ACTIONS(5064), + [anon_sym_else] = ACTIONS(5062), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_PLUS_EQ] = ACTIONS(5064), + [anon_sym_DASH_EQ] = ACTIONS(5064), + [anon_sym_STAR_EQ] = ACTIONS(5064), + [anon_sym_SLASH_EQ] = ACTIONS(5064), + [anon_sym_PERCENT_EQ] = ACTIONS(5064), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5064), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5064), + [anon_sym_LT_EQ] = ACTIONS(5064), + [anon_sym_GT_EQ] = ACTIONS(5064), + [anon_sym_BANGin] = ACTIONS(5064), + [anon_sym_is] = ACTIONS(5062), + [anon_sym_BANGis] = ACTIONS(5064), + [anon_sym_PLUS] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_as_QMARK] = ACTIONS(5064), + [anon_sym_PLUS_PLUS] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5064), + [anon_sym_BANG_BANG] = ACTIONS(5064), + [anon_sym_suspend] = ACTIONS(5062), + [anon_sym_sealed] = ACTIONS(5062), + [anon_sym_annotation] = ACTIONS(5062), + [anon_sym_data] = ACTIONS(5062), + [anon_sym_inner] = ACTIONS(5062), + [anon_sym_value] = ACTIONS(5062), + [anon_sym_override] = ACTIONS(5062), + [anon_sym_lateinit] = ACTIONS(5062), + [anon_sym_public] = ACTIONS(5062), + [anon_sym_private] = ACTIONS(5062), + [anon_sym_internal] = ACTIONS(5062), + [anon_sym_protected] = ACTIONS(5062), + [anon_sym_tailrec] = ACTIONS(5062), + [anon_sym_operator] = ACTIONS(5062), + [anon_sym_infix] = ACTIONS(5062), + [anon_sym_inline] = ACTIONS(5062), + [anon_sym_external] = ACTIONS(5062), + [sym_property_modifier] = ACTIONS(5062), + [anon_sym_abstract] = ACTIONS(5062), + [anon_sym_final] = ACTIONS(5062), + [anon_sym_open] = ACTIONS(5062), + [anon_sym_vararg] = ACTIONS(5062), + [anon_sym_noinline] = ACTIONS(5062), + [anon_sym_crossinline] = ACTIONS(5062), + [anon_sym_expect] = ACTIONS(5062), + [anon_sym_actual] = ACTIONS(5062), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5064), + [sym__automatic_semicolon] = ACTIONS(5064), + [sym_safe_nav] = ACTIONS(5064), + [sym_multiline_comment] = ACTIONS(3), + }, + [3929] = { + [sym__alpha_identifier] = ACTIONS(5046), + [anon_sym_AT] = ACTIONS(5048), + [anon_sym_LBRACK] = ACTIONS(5048), + [anon_sym_DOT] = ACTIONS(5046), + [anon_sym_as] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5048), + [anon_sym_RBRACE] = ACTIONS(5048), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_COMMA] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5046), + [anon_sym_where] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5048), + [anon_sym_get] = ACTIONS(5046), + [anon_sym_set] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [sym_label] = ACTIONS(5048), + [anon_sym_in] = ACTIONS(5046), + [anon_sym_DOT_DOT] = ACTIONS(5048), + [anon_sym_QMARK_COLON] = ACTIONS(5048), + [anon_sym_AMP_AMP] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5048), + [anon_sym_PLUS_EQ] = ACTIONS(5048), + [anon_sym_DASH_EQ] = ACTIONS(5048), + [anon_sym_STAR_EQ] = ACTIONS(5048), + [anon_sym_SLASH_EQ] = ACTIONS(5048), + [anon_sym_PERCENT_EQ] = ACTIONS(5048), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5048), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_BANGin] = ACTIONS(5048), + [anon_sym_is] = ACTIONS(5046), + [anon_sym_BANGis] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5046), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_as_QMARK] = ACTIONS(5048), + [anon_sym_PLUS_PLUS] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5048), + [anon_sym_BANG_BANG] = ACTIONS(5048), + [anon_sym_suspend] = ACTIONS(5046), + [anon_sym_sealed] = ACTIONS(5046), + [anon_sym_annotation] = ACTIONS(5046), + [anon_sym_data] = ACTIONS(5046), + [anon_sym_inner] = ACTIONS(5046), + [anon_sym_value] = ACTIONS(5046), + [anon_sym_override] = ACTIONS(5046), + [anon_sym_lateinit] = ACTIONS(5046), + [anon_sym_public] = ACTIONS(5046), + [anon_sym_private] = ACTIONS(5046), + [anon_sym_internal] = ACTIONS(5046), + [anon_sym_protected] = ACTIONS(5046), + [anon_sym_tailrec] = ACTIONS(5046), + [anon_sym_operator] = ACTIONS(5046), + [anon_sym_infix] = ACTIONS(5046), + [anon_sym_inline] = ACTIONS(5046), + [anon_sym_external] = ACTIONS(5046), + [sym_property_modifier] = ACTIONS(5046), + [anon_sym_abstract] = ACTIONS(5046), + [anon_sym_final] = ACTIONS(5046), + [anon_sym_open] = ACTIONS(5046), + [anon_sym_vararg] = ACTIONS(5046), + [anon_sym_noinline] = ACTIONS(5046), + [anon_sym_crossinline] = ACTIONS(5046), + [anon_sym_expect] = ACTIONS(5046), + [anon_sym_actual] = ACTIONS(5046), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5048), + [sym__automatic_semicolon] = ACTIONS(5048), + [sym_safe_nav] = ACTIONS(5048), + [sym_multiline_comment] = ACTIONS(3), + }, + [3930] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3931] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3932] = { + [sym__alpha_identifier] = ACTIONS(5018), + [anon_sym_AT] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_as] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_where] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_get] = ACTIONS(5018), + [anon_sym_set] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [sym_label] = ACTIONS(5020), + [anon_sym_in] = ACTIONS(5018), + [anon_sym_DOT_DOT] = ACTIONS(5020), + [anon_sym_QMARK_COLON] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5018), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5020), + [anon_sym_EQ_EQ] = ACTIONS(5018), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_BANGin] = ACTIONS(5020), + [anon_sym_is] = ACTIONS(5018), + [anon_sym_BANGis] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_as_QMARK] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_BANG_BANG] = ACTIONS(5020), + [anon_sym_suspend] = ACTIONS(5018), + [anon_sym_sealed] = ACTIONS(5018), + [anon_sym_annotation] = ACTIONS(5018), + [anon_sym_data] = ACTIONS(5018), + [anon_sym_inner] = ACTIONS(5018), + [anon_sym_value] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_lateinit] = ACTIONS(5018), + [anon_sym_public] = ACTIONS(5018), + [anon_sym_private] = ACTIONS(5018), + [anon_sym_internal] = ACTIONS(5018), + [anon_sym_protected] = ACTIONS(5018), + [anon_sym_tailrec] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_infix] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym_external] = ACTIONS(5018), + [sym_property_modifier] = ACTIONS(5018), + [anon_sym_abstract] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_open] = ACTIONS(5018), + [anon_sym_vararg] = ACTIONS(5018), + [anon_sym_noinline] = ACTIONS(5018), + [anon_sym_crossinline] = ACTIONS(5018), + [anon_sym_expect] = ACTIONS(5018), + [anon_sym_actual] = ACTIONS(5018), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5020), + [sym__automatic_semicolon] = ACTIONS(5020), + [sym_safe_nav] = ACTIONS(5020), + [sym_multiline_comment] = ACTIONS(3), + }, + [3933] = { + [sym__alpha_identifier] = ACTIONS(5054), + [anon_sym_AT] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_DOT] = ACTIONS(5054), + [anon_sym_as] = ACTIONS(5054), + [anon_sym_EQ] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5056), + [anon_sym_LT] = ACTIONS(5054), + [anon_sym_GT] = ACTIONS(5054), + [anon_sym_where] = ACTIONS(5054), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_get] = ACTIONS(5054), + [anon_sym_set] = ACTIONS(5054), + [anon_sym_STAR] = ACTIONS(5054), + [sym_label] = ACTIONS(5056), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_DOT_DOT] = ACTIONS(5056), + [anon_sym_QMARK_COLON] = ACTIONS(5056), + [anon_sym_AMP_AMP] = ACTIONS(5056), + [anon_sym_PIPE_PIPE] = ACTIONS(5056), + [anon_sym_else] = ACTIONS(5054), + [anon_sym_COLON_COLON] = ACTIONS(5056), + [anon_sym_PLUS_EQ] = ACTIONS(5056), + [anon_sym_DASH_EQ] = ACTIONS(5056), + [anon_sym_STAR_EQ] = ACTIONS(5056), + [anon_sym_SLASH_EQ] = ACTIONS(5056), + [anon_sym_PERCENT_EQ] = ACTIONS(5056), + [anon_sym_BANG_EQ] = ACTIONS(5054), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5056), + [anon_sym_EQ_EQ] = ACTIONS(5054), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5056), + [anon_sym_LT_EQ] = ACTIONS(5056), + [anon_sym_GT_EQ] = ACTIONS(5056), + [anon_sym_BANGin] = ACTIONS(5056), + [anon_sym_is] = ACTIONS(5054), + [anon_sym_BANGis] = ACTIONS(5056), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_PERCENT] = ACTIONS(5054), + [anon_sym_as_QMARK] = ACTIONS(5056), + [anon_sym_PLUS_PLUS] = ACTIONS(5056), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_BANG_BANG] = ACTIONS(5056), + [anon_sym_suspend] = ACTIONS(5054), + [anon_sym_sealed] = ACTIONS(5054), + [anon_sym_annotation] = ACTIONS(5054), + [anon_sym_data] = ACTIONS(5054), + [anon_sym_inner] = ACTIONS(5054), + [anon_sym_value] = ACTIONS(5054), + [anon_sym_override] = ACTIONS(5054), + [anon_sym_lateinit] = ACTIONS(5054), + [anon_sym_public] = ACTIONS(5054), + [anon_sym_private] = ACTIONS(5054), + [anon_sym_internal] = ACTIONS(5054), + [anon_sym_protected] = ACTIONS(5054), + [anon_sym_tailrec] = ACTIONS(5054), + [anon_sym_operator] = ACTIONS(5054), + [anon_sym_infix] = ACTIONS(5054), + [anon_sym_inline] = ACTIONS(5054), + [anon_sym_external] = ACTIONS(5054), + [sym_property_modifier] = ACTIONS(5054), + [anon_sym_abstract] = ACTIONS(5054), + [anon_sym_final] = ACTIONS(5054), + [anon_sym_open] = ACTIONS(5054), + [anon_sym_vararg] = ACTIONS(5054), + [anon_sym_noinline] = ACTIONS(5054), + [anon_sym_crossinline] = ACTIONS(5054), + [anon_sym_expect] = ACTIONS(5054), + [anon_sym_actual] = ACTIONS(5054), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5056), + [sym__automatic_semicolon] = ACTIONS(5056), + [sym_safe_nav] = ACTIONS(5056), + [sym_multiline_comment] = ACTIONS(3), + }, + [3934] = { + [sym__alpha_identifier] = ACTIONS(4390), + [anon_sym_AT] = ACTIONS(4392), + [anon_sym_LBRACK] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_as] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_LT] = ACTIONS(4390), + [anon_sym_GT] = ACTIONS(4390), + [anon_sym_where] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym_get] = ACTIONS(4390), + [anon_sym_set] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4392), + [anon_sym_in] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4392), + [anon_sym_QMARK_COLON] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_PIPE_PIPE] = ACTIONS(4392), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_PLUS_EQ] = ACTIONS(4392), + [anon_sym_DASH_EQ] = ACTIONS(4392), + [anon_sym_STAR_EQ] = ACTIONS(4392), + [anon_sym_SLASH_EQ] = ACTIONS(4392), + [anon_sym_PERCENT_EQ] = ACTIONS(4392), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4392), + [anon_sym_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4392), + [anon_sym_LT_EQ] = ACTIONS(4392), + [anon_sym_GT_EQ] = ACTIONS(4392), + [anon_sym_BANGin] = ACTIONS(4392), + [anon_sym_is] = ACTIONS(4390), + [anon_sym_BANGis] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_SLASH] = ACTIONS(4390), + [anon_sym_PERCENT] = ACTIONS(4390), + [anon_sym_as_QMARK] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_BANG_BANG] = ACTIONS(4392), + [anon_sym_suspend] = ACTIONS(4390), + [anon_sym_sealed] = ACTIONS(4390), + [anon_sym_annotation] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4390), + [anon_sym_inner] = ACTIONS(4390), + [anon_sym_value] = ACTIONS(4390), + [anon_sym_override] = ACTIONS(4390), + [anon_sym_lateinit] = ACTIONS(4390), + [anon_sym_public] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4390), + [anon_sym_internal] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4390), + [anon_sym_tailrec] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_infix] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym_external] = ACTIONS(4390), + [sym_property_modifier] = ACTIONS(4390), + [anon_sym_abstract] = ACTIONS(4390), + [anon_sym_final] = ACTIONS(4390), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_vararg] = ACTIONS(4390), + [anon_sym_noinline] = ACTIONS(4390), + [anon_sym_crossinline] = ACTIONS(4390), + [anon_sym_expect] = ACTIONS(4390), + [anon_sym_actual] = ACTIONS(4390), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4392), + [sym__automatic_semicolon] = ACTIONS(4392), + [sym_safe_nav] = ACTIONS(4392), + [sym_multiline_comment] = ACTIONS(3), + }, + [3935] = { + [sym__alpha_identifier] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_where] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [sym_label] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_QMARK_COLON] = ACTIONS(1762), + [anon_sym_AMP_AMP] = ACTIONS(1762), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1762), + [anon_sym_DASH_EQ] = ACTIONS(1762), + [anon_sym_STAR_EQ] = ACTIONS(1762), + [anon_sym_SLASH_EQ] = ACTIONS(1762), + [anon_sym_PERCENT_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1762), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT_EQ] = ACTIONS(1762), + [anon_sym_BANGin] = ACTIONS(1762), + [anon_sym_is] = ACTIONS(1760), + [anon_sym_BANGis] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_as_QMARK] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_BANG_BANG] = ACTIONS(1762), + [anon_sym_suspend] = ACTIONS(1760), + [anon_sym_sealed] = ACTIONS(1760), + [anon_sym_annotation] = ACTIONS(1760), + [anon_sym_data] = ACTIONS(1760), + [anon_sym_inner] = ACTIONS(1760), + [anon_sym_value] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_lateinit] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_internal] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_tailrec] = ACTIONS(1760), + [anon_sym_operator] = ACTIONS(1760), + [anon_sym_infix] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [anon_sym_external] = ACTIONS(1760), + [sym_property_modifier] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_final] = ACTIONS(1760), + [anon_sym_open] = ACTIONS(1760), + [anon_sym_vararg] = ACTIONS(1760), + [anon_sym_noinline] = ACTIONS(1760), + [anon_sym_crossinline] = ACTIONS(1760), + [anon_sym_expect] = ACTIONS(1760), + [anon_sym_actual] = ACTIONS(1760), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1762), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym_safe_nav] = ACTIONS(1762), + [sym_multiline_comment] = ACTIONS(3), + }, + [3936] = { + [sym__alpha_identifier] = ACTIONS(5115), + [anon_sym_AT] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_DOT] = ACTIONS(5115), + [anon_sym_as] = ACTIONS(5115), + [anon_sym_EQ] = ACTIONS(5115), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_where] = ACTIONS(5115), + [anon_sym_SEMI] = ACTIONS(5117), + [anon_sym_get] = ACTIONS(5115), + [anon_sym_set] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5115), + [anon_sym_DOT_DOT] = ACTIONS(5117), + [anon_sym_QMARK_COLON] = ACTIONS(5117), + [anon_sym_AMP_AMP] = ACTIONS(5117), + [anon_sym_PIPE_PIPE] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5115), + [anon_sym_COLON_COLON] = ACTIONS(5117), + [anon_sym_PLUS_EQ] = ACTIONS(5117), + [anon_sym_DASH_EQ] = ACTIONS(5117), + [anon_sym_STAR_EQ] = ACTIONS(5117), + [anon_sym_SLASH_EQ] = ACTIONS(5117), + [anon_sym_PERCENT_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5117), + [anon_sym_LT_EQ] = ACTIONS(5117), + [anon_sym_GT_EQ] = ACTIONS(5117), + [anon_sym_BANGin] = ACTIONS(5117), + [anon_sym_is] = ACTIONS(5115), + [anon_sym_BANGis] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_as_QMARK] = ACTIONS(5117), + [anon_sym_PLUS_PLUS] = ACTIONS(5117), + [anon_sym_DASH_DASH] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5117), + [anon_sym_suspend] = ACTIONS(5115), + [anon_sym_sealed] = ACTIONS(5115), + [anon_sym_annotation] = ACTIONS(5115), + [anon_sym_data] = ACTIONS(5115), + [anon_sym_inner] = ACTIONS(5115), + [anon_sym_value] = ACTIONS(5115), + [anon_sym_override] = ACTIONS(5115), + [anon_sym_lateinit] = ACTIONS(5115), + [anon_sym_public] = ACTIONS(5115), + [anon_sym_private] = ACTIONS(5115), + [anon_sym_internal] = ACTIONS(5115), + [anon_sym_protected] = ACTIONS(5115), + [anon_sym_tailrec] = ACTIONS(5115), + [anon_sym_operator] = ACTIONS(5115), + [anon_sym_infix] = ACTIONS(5115), + [anon_sym_inline] = ACTIONS(5115), + [anon_sym_external] = ACTIONS(5115), + [sym_property_modifier] = ACTIONS(5115), + [anon_sym_abstract] = ACTIONS(5115), + [anon_sym_final] = ACTIONS(5115), + [anon_sym_open] = ACTIONS(5115), + [anon_sym_vararg] = ACTIONS(5115), + [anon_sym_noinline] = ACTIONS(5115), + [anon_sym_crossinline] = ACTIONS(5115), + [anon_sym_expect] = ACTIONS(5115), + [anon_sym_actual] = ACTIONS(5115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5117), + [sym__automatic_semicolon] = ACTIONS(5117), + [sym_safe_nav] = ACTIONS(5117), + [sym_multiline_comment] = ACTIONS(3), + }, + [3937] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_suspend] = ACTIONS(4944), + [anon_sym_sealed] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_override] = ACTIONS(4944), + [anon_sym_lateinit] = ACTIONS(4944), + [anon_sym_public] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4944), + [anon_sym_internal] = ACTIONS(4944), + [anon_sym_protected] = ACTIONS(4944), + [anon_sym_tailrec] = ACTIONS(4944), + [anon_sym_operator] = ACTIONS(4944), + [anon_sym_infix] = ACTIONS(4944), + [anon_sym_inline] = ACTIONS(4944), + [anon_sym_external] = ACTIONS(4944), + [sym_property_modifier] = ACTIONS(4944), + [anon_sym_abstract] = ACTIONS(4944), + [anon_sym_final] = ACTIONS(4944), + [anon_sym_open] = ACTIONS(4944), + [anon_sym_vararg] = ACTIONS(4944), + [anon_sym_noinline] = ACTIONS(4944), + [anon_sym_crossinline] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4946), + [sym__automatic_semicolon] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), + [sym_multiline_comment] = ACTIONS(3), + }, + [3938] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_suspend] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_lateinit] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_tailrec] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4956), + [anon_sym_infix] = ACTIONS(4956), + [anon_sym_inline] = ACTIONS(4956), + [anon_sym_external] = ACTIONS(4956), + [sym_property_modifier] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_final] = ACTIONS(4956), + [anon_sym_open] = ACTIONS(4956), + [anon_sym_vararg] = ACTIONS(4956), + [anon_sym_noinline] = ACTIONS(4956), + [anon_sym_crossinline] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4958), + [sym__automatic_semicolon] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + }, + [3939] = { + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6132), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3940] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_suspend] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_lateinit] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_tailrec] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4952), + [anon_sym_infix] = ACTIONS(4952), + [anon_sym_inline] = ACTIONS(4952), + [anon_sym_external] = ACTIONS(4952), + [sym_property_modifier] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_final] = ACTIONS(4952), + [anon_sym_open] = ACTIONS(4952), + [anon_sym_vararg] = ACTIONS(4952), + [anon_sym_noinline] = ACTIONS(4952), + [anon_sym_crossinline] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4954), + [sym__automatic_semicolon] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + }, + [3941] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_RBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_DASH_GT] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3942] = { + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3943] = { + [sym_class_body] = STATE(3465), + [sym_type_constraints] = STATE(3330), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6122), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3944] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [3945] = { + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_RBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_DASH_GT] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3946] = { + [sym_type_constraints] = STATE(3305), + [sym_enum_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7169), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3947] = { + [sym__alpha_identifier] = ACTIONS(4632), + [anon_sym_AT] = ACTIONS(4634), + [anon_sym_LBRACK] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4632), + [anon_sym_as] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_LPAREN] = ACTIONS(4634), + [anon_sym_COMMA] = ACTIONS(4634), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_where] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym_get] = ACTIONS(4632), + [anon_sym_set] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4632), + [sym_label] = ACTIONS(4634), + [anon_sym_in] = ACTIONS(4632), + [anon_sym_DOT_DOT] = ACTIONS(4634), + [anon_sym_QMARK_COLON] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_PIPE_PIPE] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_PLUS_EQ] = ACTIONS(4634), + [anon_sym_DASH_EQ] = ACTIONS(4634), + [anon_sym_STAR_EQ] = ACTIONS(4634), + [anon_sym_SLASH_EQ] = ACTIONS(4634), + [anon_sym_PERCENT_EQ] = ACTIONS(4634), + [anon_sym_BANG_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4634), + [anon_sym_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4634), + [anon_sym_LT_EQ] = ACTIONS(4634), + [anon_sym_GT_EQ] = ACTIONS(4634), + [anon_sym_BANGin] = ACTIONS(4634), + [anon_sym_is] = ACTIONS(4632), + [anon_sym_BANGis] = ACTIONS(4634), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_SLASH] = ACTIONS(4632), + [anon_sym_PERCENT] = ACTIONS(4632), + [anon_sym_as_QMARK] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_BANG_BANG] = ACTIONS(4634), + [anon_sym_suspend] = ACTIONS(4632), + [anon_sym_sealed] = ACTIONS(4632), + [anon_sym_annotation] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4632), + [anon_sym_inner] = ACTIONS(4632), + [anon_sym_value] = ACTIONS(4632), + [anon_sym_override] = ACTIONS(4632), + [anon_sym_lateinit] = ACTIONS(4632), + [anon_sym_public] = ACTIONS(4632), + [anon_sym_private] = ACTIONS(4632), + [anon_sym_internal] = ACTIONS(4632), + [anon_sym_protected] = ACTIONS(4632), + [anon_sym_tailrec] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_infix] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym_external] = ACTIONS(4632), + [sym_property_modifier] = ACTIONS(4632), + [anon_sym_abstract] = ACTIONS(4632), + [anon_sym_final] = ACTIONS(4632), + [anon_sym_open] = ACTIONS(4632), + [anon_sym_vararg] = ACTIONS(4632), + [anon_sym_noinline] = ACTIONS(4632), + [anon_sym_crossinline] = ACTIONS(4632), + [anon_sym_expect] = ACTIONS(4632), + [anon_sym_actual] = ACTIONS(4632), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4634), + [sym__automatic_semicolon] = ACTIONS(4634), + [sym_safe_nav] = ACTIONS(4634), + [sym_multiline_comment] = ACTIONS(3), + }, + [3948] = { + [sym_class_body] = STATE(3449), + [sym_type_constraints] = STATE(3388), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7171), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_RBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [3949] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_suspend] = ACTIONS(4916), + [anon_sym_sealed] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_override] = ACTIONS(4916), + [anon_sym_lateinit] = ACTIONS(4916), + [anon_sym_public] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4916), + [anon_sym_internal] = ACTIONS(4916), + [anon_sym_protected] = ACTIONS(4916), + [anon_sym_tailrec] = ACTIONS(4916), + [anon_sym_operator] = ACTIONS(4916), + [anon_sym_infix] = ACTIONS(4916), + [anon_sym_inline] = ACTIONS(4916), + [anon_sym_external] = ACTIONS(4916), + [sym_property_modifier] = ACTIONS(4916), + [anon_sym_abstract] = ACTIONS(4916), + [anon_sym_final] = ACTIONS(4916), + [anon_sym_open] = ACTIONS(4916), + [anon_sym_vararg] = ACTIONS(4916), + [anon_sym_noinline] = ACTIONS(4916), + [anon_sym_crossinline] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4918), + [sym__automatic_semicolon] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), + [sym_multiline_comment] = ACTIONS(3), + }, + [3950] = { + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3951] = { + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3952] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_suspend] = ACTIONS(4912), + [anon_sym_sealed] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_override] = ACTIONS(4912), + [anon_sym_lateinit] = ACTIONS(4912), + [anon_sym_public] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4912), + [anon_sym_internal] = ACTIONS(4912), + [anon_sym_protected] = ACTIONS(4912), + [anon_sym_tailrec] = ACTIONS(4912), + [anon_sym_operator] = ACTIONS(4912), + [anon_sym_infix] = ACTIONS(4912), + [anon_sym_inline] = ACTIONS(4912), + [anon_sym_external] = ACTIONS(4912), + [sym_property_modifier] = ACTIONS(4912), + [anon_sym_abstract] = ACTIONS(4912), + [anon_sym_final] = ACTIONS(4912), + [anon_sym_open] = ACTIONS(4912), + [anon_sym_vararg] = ACTIONS(4912), + [anon_sym_noinline] = ACTIONS(4912), + [anon_sym_crossinline] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4914), + [sym__automatic_semicolon] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), + [sym_multiline_comment] = ACTIONS(3), + }, + [3953] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3954] = { + [sym_type_constraints] = STATE(3381), + [sym_enum_class_body] = STATE(3429), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_RBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [3955] = { + [sym__alpha_identifier] = ACTIONS(4836), + [anon_sym_AT] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_DOT] = ACTIONS(4836), + [anon_sym_as] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_where] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_get] = ACTIONS(4836), + [anon_sym_set] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [sym_label] = ACTIONS(4838), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4838), + [anon_sym_PIPE_PIPE] = ACTIONS(4838), + [anon_sym_else] = ACTIONS(4836), + [anon_sym_COLON_COLON] = ACTIONS(4838), + [anon_sym_PLUS_EQ] = ACTIONS(4838), + [anon_sym_DASH_EQ] = ACTIONS(4838), + [anon_sym_STAR_EQ] = ACTIONS(4838), + [anon_sym_SLASH_EQ] = ACTIONS(4838), + [anon_sym_PERCENT_EQ] = ACTIONS(4838), + [anon_sym_BANG_EQ] = ACTIONS(4836), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4838), + [anon_sym_EQ_EQ] = ACTIONS(4836), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4838), + [anon_sym_LT_EQ] = ACTIONS(4838), + [anon_sym_GT_EQ] = ACTIONS(4838), + [anon_sym_BANGin] = ACTIONS(4838), + [anon_sym_is] = ACTIONS(4836), + [anon_sym_BANGis] = ACTIONS(4838), + [anon_sym_PLUS] = ACTIONS(4836), + [anon_sym_DASH] = ACTIONS(4836), + [anon_sym_SLASH] = ACTIONS(4836), + [anon_sym_PERCENT] = ACTIONS(4836), + [anon_sym_as_QMARK] = ACTIONS(4838), + [anon_sym_PLUS_PLUS] = ACTIONS(4838), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_BANG_BANG] = ACTIONS(4838), + [anon_sym_suspend] = ACTIONS(4836), + [anon_sym_sealed] = ACTIONS(4836), + [anon_sym_annotation] = ACTIONS(4836), + [anon_sym_data] = ACTIONS(4836), + [anon_sym_inner] = ACTIONS(4836), + [anon_sym_value] = ACTIONS(4836), + [anon_sym_override] = ACTIONS(4836), + [anon_sym_lateinit] = ACTIONS(4836), + [anon_sym_public] = ACTIONS(4836), + [anon_sym_private] = ACTIONS(4836), + [anon_sym_internal] = ACTIONS(4836), + [anon_sym_protected] = ACTIONS(4836), + [anon_sym_tailrec] = ACTIONS(4836), + [anon_sym_operator] = ACTIONS(4836), + [anon_sym_infix] = ACTIONS(4836), + [anon_sym_inline] = ACTIONS(4836), + [anon_sym_external] = ACTIONS(4836), + [sym_property_modifier] = ACTIONS(4836), + [anon_sym_abstract] = ACTIONS(4836), + [anon_sym_final] = ACTIONS(4836), + [anon_sym_open] = ACTIONS(4836), + [anon_sym_vararg] = ACTIONS(4836), + [anon_sym_noinline] = ACTIONS(4836), + [anon_sym_crossinline] = ACTIONS(4836), + [anon_sym_expect] = ACTIONS(4836), + [anon_sym_actual] = ACTIONS(4836), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4838), + [sym__automatic_semicolon] = ACTIONS(4838), + [sym_safe_nav] = ACTIONS(4838), + [sym_multiline_comment] = ACTIONS(3), + }, + [3956] = { + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_suspend] = ACTIONS(4904), + [anon_sym_sealed] = ACTIONS(4904), + [anon_sym_annotation] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_override] = ACTIONS(4904), + [anon_sym_lateinit] = ACTIONS(4904), + [anon_sym_public] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4904), + [anon_sym_internal] = ACTIONS(4904), + [anon_sym_protected] = ACTIONS(4904), + [anon_sym_tailrec] = ACTIONS(4904), + [anon_sym_operator] = ACTIONS(4904), + [anon_sym_infix] = ACTIONS(4904), + [anon_sym_inline] = ACTIONS(4904), + [anon_sym_external] = ACTIONS(4904), + [sym_property_modifier] = ACTIONS(4904), + [anon_sym_abstract] = ACTIONS(4904), + [anon_sym_final] = ACTIONS(4904), + [anon_sym_open] = ACTIONS(4904), + [anon_sym_vararg] = ACTIONS(4904), + [anon_sym_noinline] = ACTIONS(4904), + [anon_sym_crossinline] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4906), + [sym__automatic_semicolon] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), + [sym_multiline_comment] = ACTIONS(3), + }, + [3957] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [sym_label] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3135), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + }, + [3958] = { + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [sym_label] = ACTIONS(3994), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_suspend] = ACTIONS(3992), + [anon_sym_sealed] = ACTIONS(3992), + [anon_sym_annotation] = ACTIONS(3992), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_override] = ACTIONS(3992), + [anon_sym_lateinit] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_internal] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_tailrec] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_infix] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym_external] = ACTIONS(3992), + [sym_property_modifier] = ACTIONS(3992), + [anon_sym_abstract] = ACTIONS(3992), + [anon_sym_final] = ACTIONS(3992), + [anon_sym_open] = ACTIONS(3992), + [anon_sym_vararg] = ACTIONS(3992), + [anon_sym_noinline] = ACTIONS(3992), + [anon_sym_crossinline] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [3959] = { + [sym__alpha_identifier] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_DOT] = ACTIONS(4820), + [anon_sym_as] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4820), + [anon_sym_LBRACE] = ACTIONS(4822), + [anon_sym_RBRACE] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4822), + [anon_sym_COMMA] = ACTIONS(4822), + [anon_sym_LT] = ACTIONS(4820), + [anon_sym_GT] = ACTIONS(4820), + [anon_sym_where] = ACTIONS(4820), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_get] = ACTIONS(4820), + [anon_sym_set] = ACTIONS(4820), + [anon_sym_STAR] = ACTIONS(4820), + [sym_label] = ACTIONS(4822), + [anon_sym_in] = ACTIONS(4820), + [anon_sym_DOT_DOT] = ACTIONS(4822), + [anon_sym_QMARK_COLON] = ACTIONS(4822), + [anon_sym_AMP_AMP] = ACTIONS(4822), + [anon_sym_PIPE_PIPE] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4820), + [anon_sym_COLON_COLON] = ACTIONS(4822), + [anon_sym_PLUS_EQ] = ACTIONS(4822), + [anon_sym_DASH_EQ] = ACTIONS(4822), + [anon_sym_STAR_EQ] = ACTIONS(4822), + [anon_sym_SLASH_EQ] = ACTIONS(4822), + [anon_sym_PERCENT_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ] = ACTIONS(4820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ] = ACTIONS(4820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4822), + [anon_sym_LT_EQ] = ACTIONS(4822), + [anon_sym_GT_EQ] = ACTIONS(4822), + [anon_sym_BANGin] = ACTIONS(4822), + [anon_sym_is] = ACTIONS(4820), + [anon_sym_BANGis] = ACTIONS(4822), + [anon_sym_PLUS] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), + [anon_sym_SLASH] = ACTIONS(4820), + [anon_sym_PERCENT] = ACTIONS(4820), + [anon_sym_as_QMARK] = ACTIONS(4822), + [anon_sym_PLUS_PLUS] = ACTIONS(4822), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_BANG_BANG] = ACTIONS(4822), + [anon_sym_suspend] = ACTIONS(4820), + [anon_sym_sealed] = ACTIONS(4820), + [anon_sym_annotation] = ACTIONS(4820), + [anon_sym_data] = ACTIONS(4820), + [anon_sym_inner] = ACTIONS(4820), + [anon_sym_value] = ACTIONS(4820), + [anon_sym_override] = ACTIONS(4820), + [anon_sym_lateinit] = ACTIONS(4820), + [anon_sym_public] = ACTIONS(4820), + [anon_sym_private] = ACTIONS(4820), + [anon_sym_internal] = ACTIONS(4820), + [anon_sym_protected] = ACTIONS(4820), + [anon_sym_tailrec] = ACTIONS(4820), + [anon_sym_operator] = ACTIONS(4820), + [anon_sym_infix] = ACTIONS(4820), + [anon_sym_inline] = ACTIONS(4820), + [anon_sym_external] = ACTIONS(4820), + [sym_property_modifier] = ACTIONS(4820), + [anon_sym_abstract] = ACTIONS(4820), + [anon_sym_final] = ACTIONS(4820), + [anon_sym_open] = ACTIONS(4820), + [anon_sym_vararg] = ACTIONS(4820), + [anon_sym_noinline] = ACTIONS(4820), + [anon_sym_crossinline] = ACTIONS(4820), + [anon_sym_expect] = ACTIONS(4820), + [anon_sym_actual] = ACTIONS(4820), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4822), + [sym__automatic_semicolon] = ACTIONS(4822), + [sym_safe_nav] = ACTIONS(4822), + [sym_multiline_comment] = ACTIONS(3), + }, + [3960] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_RBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3961] = { + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3962] = { + [sym__alpha_identifier] = ACTIONS(4812), + [anon_sym_AT] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(4812), + [anon_sym_as] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4814), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4814), + [anon_sym_LT] = ACTIONS(4812), + [anon_sym_GT] = ACTIONS(4812), + [anon_sym_where] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_get] = ACTIONS(4812), + [anon_sym_set] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4812), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_QMARK_COLON] = ACTIONS(4814), + [anon_sym_AMP_AMP] = ACTIONS(4814), + [anon_sym_PIPE_PIPE] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym_PLUS_EQ] = ACTIONS(4814), + [anon_sym_DASH_EQ] = ACTIONS(4814), + [anon_sym_STAR_EQ] = ACTIONS(4814), + [anon_sym_SLASH_EQ] = ACTIONS(4814), + [anon_sym_PERCENT_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4814), + [anon_sym_LT_EQ] = ACTIONS(4814), + [anon_sym_GT_EQ] = ACTIONS(4814), + [anon_sym_BANGin] = ACTIONS(4814), + [anon_sym_is] = ACTIONS(4812), + [anon_sym_BANGis] = ACTIONS(4814), + [anon_sym_PLUS] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4812), + [anon_sym_SLASH] = ACTIONS(4812), + [anon_sym_PERCENT] = ACTIONS(4812), + [anon_sym_as_QMARK] = ACTIONS(4814), + [anon_sym_PLUS_PLUS] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4814), + [anon_sym_suspend] = ACTIONS(4812), + [anon_sym_sealed] = ACTIONS(4812), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4812), + [anon_sym_inner] = ACTIONS(4812), + [anon_sym_value] = ACTIONS(4812), + [anon_sym_override] = ACTIONS(4812), + [anon_sym_lateinit] = ACTIONS(4812), + [anon_sym_public] = ACTIONS(4812), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_internal] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_tailrec] = ACTIONS(4812), + [anon_sym_operator] = ACTIONS(4812), + [anon_sym_infix] = ACTIONS(4812), + [anon_sym_inline] = ACTIONS(4812), + [anon_sym_external] = ACTIONS(4812), + [sym_property_modifier] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_final] = ACTIONS(4812), + [anon_sym_open] = ACTIONS(4812), + [anon_sym_vararg] = ACTIONS(4812), + [anon_sym_noinline] = ACTIONS(4812), + [anon_sym_crossinline] = ACTIONS(4812), + [anon_sym_expect] = ACTIONS(4812), + [anon_sym_actual] = ACTIONS(4812), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4814), + [sym__automatic_semicolon] = ACTIONS(4814), + [sym_safe_nav] = ACTIONS(4814), + [sym_multiline_comment] = ACTIONS(3), + }, + [3963] = { + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4068), + [anon_sym_sealed] = ACTIONS(4068), + [anon_sym_annotation] = ACTIONS(4068), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_lateinit] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_internal] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_tailrec] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_infix] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym_external] = ACTIONS(4068), + [sym_property_modifier] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_final] = ACTIONS(4068), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_vararg] = ACTIONS(4068), + [anon_sym_noinline] = ACTIONS(4068), + [anon_sym_crossinline] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4070), + [sym__automatic_semicolon] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + }, + [3964] = { + [sym__alpha_identifier] = ACTIONS(4808), + [anon_sym_AT] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(4810), + [anon_sym_DOT] = ACTIONS(4808), + [anon_sym_as] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(4808), + [anon_sym_LBRACE] = ACTIONS(4810), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_COMMA] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4808), + [anon_sym_GT] = ACTIONS(4808), + [anon_sym_where] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_get] = ACTIONS(4808), + [anon_sym_set] = ACTIONS(4808), + [anon_sym_STAR] = ACTIONS(4808), + [sym_label] = ACTIONS(4810), + [anon_sym_in] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4810), + [anon_sym_QMARK_COLON] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_COLON_COLON] = ACTIONS(4810), + [anon_sym_PLUS_EQ] = ACTIONS(4810), + [anon_sym_DASH_EQ] = ACTIONS(4810), + [anon_sym_STAR_EQ] = ACTIONS(4810), + [anon_sym_SLASH_EQ] = ACTIONS(4810), + [anon_sym_PERCENT_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT_EQ] = ACTIONS(4810), + [anon_sym_GT_EQ] = ACTIONS(4810), + [anon_sym_BANGin] = ACTIONS(4810), + [anon_sym_is] = ACTIONS(4808), + [anon_sym_BANGis] = ACTIONS(4810), + [anon_sym_PLUS] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4808), + [anon_sym_SLASH] = ACTIONS(4808), + [anon_sym_PERCENT] = ACTIONS(4808), + [anon_sym_as_QMARK] = ACTIONS(4810), + [anon_sym_PLUS_PLUS] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4810), + [anon_sym_BANG_BANG] = ACTIONS(4810), + [anon_sym_suspend] = ACTIONS(4808), + [anon_sym_sealed] = ACTIONS(4808), + [anon_sym_annotation] = ACTIONS(4808), + [anon_sym_data] = ACTIONS(4808), + [anon_sym_inner] = ACTIONS(4808), + [anon_sym_value] = ACTIONS(4808), + [anon_sym_override] = ACTIONS(4808), + [anon_sym_lateinit] = ACTIONS(4808), + [anon_sym_public] = ACTIONS(4808), + [anon_sym_private] = ACTIONS(4808), + [anon_sym_internal] = ACTIONS(4808), + [anon_sym_protected] = ACTIONS(4808), + [anon_sym_tailrec] = ACTIONS(4808), + [anon_sym_operator] = ACTIONS(4808), + [anon_sym_infix] = ACTIONS(4808), + [anon_sym_inline] = ACTIONS(4808), + [anon_sym_external] = ACTIONS(4808), + [sym_property_modifier] = ACTIONS(4808), + [anon_sym_abstract] = ACTIONS(4808), + [anon_sym_final] = ACTIONS(4808), + [anon_sym_open] = ACTIONS(4808), + [anon_sym_vararg] = ACTIONS(4808), + [anon_sym_noinline] = ACTIONS(4808), + [anon_sym_crossinline] = ACTIONS(4808), + [anon_sym_expect] = ACTIONS(4808), + [anon_sym_actual] = ACTIONS(4808), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4810), + [sym__automatic_semicolon] = ACTIONS(4810), + [sym_safe_nav] = ACTIONS(4810), + [sym_multiline_comment] = ACTIONS(3), + }, + [3965] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_PLUS_EQ] = ACTIONS(4411), + [anon_sym_DASH_EQ] = ACTIONS(4411), + [anon_sym_STAR_EQ] = ACTIONS(4411), + [anon_sym_SLASH_EQ] = ACTIONS(4411), + [anon_sym_PERCENT_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4409), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [3966] = { + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4244), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4244), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [3967] = { + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_PLUS_EQ] = ACTIONS(4242), + [anon_sym_DASH_EQ] = ACTIONS(4242), + [anon_sym_STAR_EQ] = ACTIONS(4242), + [anon_sym_SLASH_EQ] = ACTIONS(4242), + [anon_sym_PERCENT_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [3968] = { + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [3969] = { + [sym__alpha_identifier] = ACTIONS(4804), + [anon_sym_AT] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_as] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4804), + [anon_sym_LBRACE] = ACTIONS(4806), + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4806), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_where] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4806), + [anon_sym_get] = ACTIONS(4804), + [anon_sym_set] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4804), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_DOT_DOT] = ACTIONS(4806), + [anon_sym_QMARK_COLON] = ACTIONS(4806), + [anon_sym_AMP_AMP] = ACTIONS(4806), + [anon_sym_PIPE_PIPE] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym_PLUS_EQ] = ACTIONS(4806), + [anon_sym_DASH_EQ] = ACTIONS(4806), + [anon_sym_STAR_EQ] = ACTIONS(4806), + [anon_sym_SLASH_EQ] = ACTIONS(4806), + [anon_sym_PERCENT_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4806), + [anon_sym_LT_EQ] = ACTIONS(4806), + [anon_sym_GT_EQ] = ACTIONS(4806), + [anon_sym_BANGin] = ACTIONS(4806), + [anon_sym_is] = ACTIONS(4804), + [anon_sym_BANGis] = ACTIONS(4806), + [anon_sym_PLUS] = ACTIONS(4804), + [anon_sym_DASH] = ACTIONS(4804), + [anon_sym_SLASH] = ACTIONS(4804), + [anon_sym_PERCENT] = ACTIONS(4804), + [anon_sym_as_QMARK] = ACTIONS(4806), + [anon_sym_PLUS_PLUS] = ACTIONS(4806), + [anon_sym_DASH_DASH] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4806), + [anon_sym_suspend] = ACTIONS(4804), + [anon_sym_sealed] = ACTIONS(4804), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4804), + [anon_sym_inner] = ACTIONS(4804), + [anon_sym_value] = ACTIONS(4804), + [anon_sym_override] = ACTIONS(4804), + [anon_sym_lateinit] = ACTIONS(4804), + [anon_sym_public] = ACTIONS(4804), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_internal] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_tailrec] = ACTIONS(4804), + [anon_sym_operator] = ACTIONS(4804), + [anon_sym_infix] = ACTIONS(4804), + [anon_sym_inline] = ACTIONS(4804), + [anon_sym_external] = ACTIONS(4804), + [sym_property_modifier] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_final] = ACTIONS(4804), + [anon_sym_open] = ACTIONS(4804), + [anon_sym_vararg] = ACTIONS(4804), + [anon_sym_noinline] = ACTIONS(4804), + [anon_sym_crossinline] = ACTIONS(4804), + [anon_sym_expect] = ACTIONS(4804), + [anon_sym_actual] = ACTIONS(4804), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4806), + [sym__automatic_semicolon] = ACTIONS(4806), + [sym_safe_nav] = ACTIONS(4806), + [sym_multiline_comment] = ACTIONS(3), + }, + [3970] = { + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3971] = { + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [3972] = { + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [3973] = { + [sym__alpha_identifier] = ACTIONS(5095), + [anon_sym_AT] = ACTIONS(5097), + [anon_sym_LBRACK] = ACTIONS(5097), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_as] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5097), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_where] = ACTIONS(5095), + [anon_sym_SEMI] = ACTIONS(5097), + [anon_sym_get] = ACTIONS(5095), + [anon_sym_set] = ACTIONS(5095), + [anon_sym_STAR] = ACTIONS(5095), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5095), + [anon_sym_DOT_DOT] = ACTIONS(5097), + [anon_sym_QMARK_COLON] = ACTIONS(5097), + [anon_sym_AMP_AMP] = ACTIONS(5097), + [anon_sym_PIPE_PIPE] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5095), + [anon_sym_COLON_COLON] = ACTIONS(5097), + [anon_sym_PLUS_EQ] = ACTIONS(5097), + [anon_sym_DASH_EQ] = ACTIONS(5097), + [anon_sym_STAR_EQ] = ACTIONS(5097), + [anon_sym_SLASH_EQ] = ACTIONS(5097), + [anon_sym_PERCENT_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ] = ACTIONS(5095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ] = ACTIONS(5095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5097), + [anon_sym_LT_EQ] = ACTIONS(5097), + [anon_sym_GT_EQ] = ACTIONS(5097), + [anon_sym_BANGin] = ACTIONS(5097), + [anon_sym_is] = ACTIONS(5095), + [anon_sym_BANGis] = ACTIONS(5097), + [anon_sym_PLUS] = ACTIONS(5095), + [anon_sym_DASH] = ACTIONS(5095), + [anon_sym_SLASH] = ACTIONS(5095), + [anon_sym_PERCENT] = ACTIONS(5095), + [anon_sym_as_QMARK] = ACTIONS(5097), + [anon_sym_PLUS_PLUS] = ACTIONS(5097), + [anon_sym_DASH_DASH] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5097), + [anon_sym_suspend] = ACTIONS(5095), + [anon_sym_sealed] = ACTIONS(5095), + [anon_sym_annotation] = ACTIONS(5095), + [anon_sym_data] = ACTIONS(5095), + [anon_sym_inner] = ACTIONS(5095), + [anon_sym_value] = ACTIONS(5095), + [anon_sym_override] = ACTIONS(5095), + [anon_sym_lateinit] = ACTIONS(5095), + [anon_sym_public] = ACTIONS(5095), + [anon_sym_private] = ACTIONS(5095), + [anon_sym_internal] = ACTIONS(5095), + [anon_sym_protected] = ACTIONS(5095), + [anon_sym_tailrec] = ACTIONS(5095), + [anon_sym_operator] = ACTIONS(5095), + [anon_sym_infix] = ACTIONS(5095), + [anon_sym_inline] = ACTIONS(5095), + [anon_sym_external] = ACTIONS(5095), + [sym_property_modifier] = ACTIONS(5095), + [anon_sym_abstract] = ACTIONS(5095), + [anon_sym_final] = ACTIONS(5095), + [anon_sym_open] = ACTIONS(5095), + [anon_sym_vararg] = ACTIONS(5095), + [anon_sym_noinline] = ACTIONS(5095), + [anon_sym_crossinline] = ACTIONS(5095), + [anon_sym_expect] = ACTIONS(5095), + [anon_sym_actual] = ACTIONS(5095), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5097), + [sym__automatic_semicolon] = ACTIONS(5097), + [sym_safe_nav] = ACTIONS(5097), + [sym_multiline_comment] = ACTIONS(3), + }, + [3974] = { + [sym_function_body] = STATE(3099), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_object] = ACTIONS(4401), + [anon_sym_fun] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_this] = ACTIONS(4401), + [anon_sym_super] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4401), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_when] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4403), + [anon_sym_continue_AT] = ACTIONS(4403), + [anon_sym_break_AT] = ACTIONS(4403), + [anon_sym_this_AT] = ACTIONS(4403), + [anon_sym_super_AT] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4403), + [sym_integer_literal] = ACTIONS(4401), + [sym_hex_literal] = ACTIONS(4403), + [sym_bin_literal] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4401), + [anon_sym_false] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4403), + [sym_null_literal] = ACTIONS(4401), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4403), + }, + [3975] = { + [sym_function_body] = STATE(3266), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_this] = ACTIONS(4394), + [anon_sym_super] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4394), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_when] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4394), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4396), + [anon_sym_continue_AT] = ACTIONS(4396), + [anon_sym_break_AT] = ACTIONS(4396), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_AT] = ACTIONS(4396), + [sym_real_literal] = ACTIONS(4396), + [sym_integer_literal] = ACTIONS(4394), + [sym_hex_literal] = ACTIONS(4396), + [sym_bin_literal] = ACTIONS(4396), + [anon_sym_true] = ACTIONS(4394), + [anon_sym_false] = ACTIONS(4394), + [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4396), + }, + [3976] = { + [sym__alpha_identifier] = ACTIONS(5070), + [anon_sym_AT] = ACTIONS(5072), + [anon_sym_LBRACK] = ACTIONS(5072), + [anon_sym_DOT] = ACTIONS(5070), + [anon_sym_as] = ACTIONS(5070), + [anon_sym_EQ] = ACTIONS(5070), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_RBRACE] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_GT] = ACTIONS(5070), + [anon_sym_where] = ACTIONS(5070), + [anon_sym_SEMI] = ACTIONS(5072), + [anon_sym_get] = ACTIONS(5070), + [anon_sym_set] = ACTIONS(5070), + [anon_sym_STAR] = ACTIONS(5070), + [sym_label] = ACTIONS(5072), + [anon_sym_in] = ACTIONS(5070), + [anon_sym_DOT_DOT] = ACTIONS(5072), + [anon_sym_QMARK_COLON] = ACTIONS(5072), + [anon_sym_AMP_AMP] = ACTIONS(5072), + [anon_sym_PIPE_PIPE] = ACTIONS(5072), + [anon_sym_else] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_PLUS_EQ] = ACTIONS(5072), + [anon_sym_DASH_EQ] = ACTIONS(5072), + [anon_sym_STAR_EQ] = ACTIONS(5072), + [anon_sym_SLASH_EQ] = ACTIONS(5072), + [anon_sym_PERCENT_EQ] = ACTIONS(5072), + [anon_sym_BANG_EQ] = ACTIONS(5070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5072), + [anon_sym_EQ_EQ] = ACTIONS(5070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5072), + [anon_sym_LT_EQ] = ACTIONS(5072), + [anon_sym_GT_EQ] = ACTIONS(5072), + [anon_sym_BANGin] = ACTIONS(5072), + [anon_sym_is] = ACTIONS(5070), + [anon_sym_BANGis] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_PERCENT] = ACTIONS(5070), + [anon_sym_as_QMARK] = ACTIONS(5072), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_BANG_BANG] = ACTIONS(5072), + [anon_sym_suspend] = ACTIONS(5070), + [anon_sym_sealed] = ACTIONS(5070), + [anon_sym_annotation] = ACTIONS(5070), + [anon_sym_data] = ACTIONS(5070), + [anon_sym_inner] = ACTIONS(5070), + [anon_sym_value] = ACTIONS(5070), + [anon_sym_override] = ACTIONS(5070), + [anon_sym_lateinit] = ACTIONS(5070), + [anon_sym_public] = ACTIONS(5070), + [anon_sym_private] = ACTIONS(5070), + [anon_sym_internal] = ACTIONS(5070), + [anon_sym_protected] = ACTIONS(5070), + [anon_sym_tailrec] = ACTIONS(5070), + [anon_sym_operator] = ACTIONS(5070), + [anon_sym_infix] = ACTIONS(5070), + [anon_sym_inline] = ACTIONS(5070), + [anon_sym_external] = ACTIONS(5070), + [sym_property_modifier] = ACTIONS(5070), + [anon_sym_abstract] = ACTIONS(5070), + [anon_sym_final] = ACTIONS(5070), + [anon_sym_open] = ACTIONS(5070), + [anon_sym_vararg] = ACTIONS(5070), + [anon_sym_noinline] = ACTIONS(5070), + [anon_sym_crossinline] = ACTIONS(5070), + [anon_sym_expect] = ACTIONS(5070), + [anon_sym_actual] = ACTIONS(5070), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5072), + [sym__automatic_semicolon] = ACTIONS(5072), + [sym_safe_nav] = ACTIONS(5072), + [sym_multiline_comment] = ACTIONS(3), + }, + [3977] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4421), + [anon_sym_DASH_EQ] = ACTIONS(4421), + [anon_sym_STAR_EQ] = ACTIONS(4421), + [anon_sym_SLASH_EQ] = ACTIONS(4421), + [anon_sym_PERCENT_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [3978] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_suspend] = ACTIONS(4792), + [anon_sym_sealed] = ACTIONS(4792), + [anon_sym_annotation] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_override] = ACTIONS(4792), + [anon_sym_lateinit] = ACTIONS(4792), + [anon_sym_public] = ACTIONS(4792), + [anon_sym_private] = ACTIONS(4792), + [anon_sym_internal] = ACTIONS(4792), + [anon_sym_protected] = ACTIONS(4792), + [anon_sym_tailrec] = ACTIONS(4792), + [anon_sym_operator] = ACTIONS(4792), + [anon_sym_infix] = ACTIONS(4792), + [anon_sym_inline] = ACTIONS(4792), + [anon_sym_external] = ACTIONS(4792), + [sym_property_modifier] = ACTIONS(4792), + [anon_sym_abstract] = ACTIONS(4792), + [anon_sym_final] = ACTIONS(4792), + [anon_sym_open] = ACTIONS(4792), + [anon_sym_vararg] = ACTIONS(4792), + [anon_sym_noinline] = ACTIONS(4792), + [anon_sym_crossinline] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4794), + [sym__automatic_semicolon] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + }, + [3979] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_suspend] = ACTIONS(4788), + [anon_sym_sealed] = ACTIONS(4788), + [anon_sym_annotation] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_override] = ACTIONS(4788), + [anon_sym_lateinit] = ACTIONS(4788), + [anon_sym_public] = ACTIONS(4788), + [anon_sym_private] = ACTIONS(4788), + [anon_sym_internal] = ACTIONS(4788), + [anon_sym_protected] = ACTIONS(4788), + [anon_sym_tailrec] = ACTIONS(4788), + [anon_sym_operator] = ACTIONS(4788), + [anon_sym_infix] = ACTIONS(4788), + [anon_sym_inline] = ACTIONS(4788), + [anon_sym_external] = ACTIONS(4788), + [sym_property_modifier] = ACTIONS(4788), + [anon_sym_abstract] = ACTIONS(4788), + [anon_sym_final] = ACTIONS(4788), + [anon_sym_open] = ACTIONS(4788), + [anon_sym_vararg] = ACTIONS(4788), + [anon_sym_noinline] = ACTIONS(4788), + [anon_sym_crossinline] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4790), + [sym__automatic_semicolon] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + }, + [3980] = { + [sym__alpha_identifier] = ACTIONS(4784), + [anon_sym_AT] = ACTIONS(4786), + [anon_sym_LBRACK] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(4784), + [anon_sym_as] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LBRACE] = ACTIONS(4786), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_LPAREN] = ACTIONS(4786), + [anon_sym_COMMA] = ACTIONS(4786), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_where] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(4784), + [anon_sym_set] = ACTIONS(4784), + [anon_sym_STAR] = ACTIONS(4784), + [sym_label] = ACTIONS(4786), + [anon_sym_in] = ACTIONS(4784), + [anon_sym_DOT_DOT] = ACTIONS(4786), + [anon_sym_QMARK_COLON] = ACTIONS(4786), + [anon_sym_AMP_AMP] = ACTIONS(4786), + [anon_sym_PIPE_PIPE] = ACTIONS(4786), + [anon_sym_else] = ACTIONS(4784), + [anon_sym_COLON_COLON] = ACTIONS(4786), + [anon_sym_PLUS_EQ] = ACTIONS(4786), + [anon_sym_DASH_EQ] = ACTIONS(4786), + [anon_sym_STAR_EQ] = ACTIONS(4786), + [anon_sym_SLASH_EQ] = ACTIONS(4786), + [anon_sym_PERCENT_EQ] = ACTIONS(4786), + [anon_sym_BANG_EQ] = ACTIONS(4784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4786), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4786), + [anon_sym_LT_EQ] = ACTIONS(4786), + [anon_sym_GT_EQ] = ACTIONS(4786), + [anon_sym_BANGin] = ACTIONS(4786), + [anon_sym_is] = ACTIONS(4784), + [anon_sym_BANGis] = ACTIONS(4786), + [anon_sym_PLUS] = ACTIONS(4784), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_SLASH] = ACTIONS(4784), + [anon_sym_PERCENT] = ACTIONS(4784), + [anon_sym_as_QMARK] = ACTIONS(4786), + [anon_sym_PLUS_PLUS] = ACTIONS(4786), + [anon_sym_DASH_DASH] = ACTIONS(4786), + [anon_sym_BANG_BANG] = ACTIONS(4786), + [anon_sym_suspend] = ACTIONS(4784), + [anon_sym_sealed] = ACTIONS(4784), + [anon_sym_annotation] = ACTIONS(4784), + [anon_sym_data] = ACTIONS(4784), + [anon_sym_inner] = ACTIONS(4784), + [anon_sym_value] = ACTIONS(4784), + [anon_sym_override] = ACTIONS(4784), + [anon_sym_lateinit] = ACTIONS(4784), + [anon_sym_public] = ACTIONS(4784), + [anon_sym_private] = ACTIONS(4784), + [anon_sym_internal] = ACTIONS(4784), + [anon_sym_protected] = ACTIONS(4784), + [anon_sym_tailrec] = ACTIONS(4784), + [anon_sym_operator] = ACTIONS(4784), + [anon_sym_infix] = ACTIONS(4784), + [anon_sym_inline] = ACTIONS(4784), + [anon_sym_external] = ACTIONS(4784), + [sym_property_modifier] = ACTIONS(4784), + [anon_sym_abstract] = ACTIONS(4784), + [anon_sym_final] = ACTIONS(4784), + [anon_sym_open] = ACTIONS(4784), + [anon_sym_vararg] = ACTIONS(4784), + [anon_sym_noinline] = ACTIONS(4784), + [anon_sym_crossinline] = ACTIONS(4784), + [anon_sym_expect] = ACTIONS(4784), + [anon_sym_actual] = ACTIONS(4784), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4786), + [sym__automatic_semicolon] = ACTIONS(4786), + [sym_safe_nav] = ACTIONS(4786), + [sym_multiline_comment] = ACTIONS(3), + }, + [3981] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4842), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + }, + [3982] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [anon_sym_as] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_LPAREN] = ACTIONS(4776), + [anon_sym_COMMA] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4774), + [anon_sym_where] = ACTIONS(4774), + [anon_sym_SEMI] = ACTIONS(4776), + [anon_sym_get] = ACTIONS(4774), + [anon_sym_set] = ACTIONS(4774), + [anon_sym_STAR] = ACTIONS(4774), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4774), + [anon_sym_DOT_DOT] = ACTIONS(4776), + [anon_sym_QMARK_COLON] = ACTIONS(4776), + [anon_sym_AMP_AMP] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4774), + [anon_sym_COLON_COLON] = ACTIONS(4776), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PERCENT_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4776), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4776), + [anon_sym_BANGin] = ACTIONS(4776), + [anon_sym_is] = ACTIONS(4774), + [anon_sym_BANGis] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4774), + [anon_sym_SLASH] = ACTIONS(4774), + [anon_sym_PERCENT] = ACTIONS(4774), + [anon_sym_as_QMARK] = ACTIONS(4776), + [anon_sym_PLUS_PLUS] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4776), + [anon_sym_suspend] = ACTIONS(4774), + [anon_sym_sealed] = ACTIONS(4774), + [anon_sym_annotation] = ACTIONS(4774), + [anon_sym_data] = ACTIONS(4774), + [anon_sym_inner] = ACTIONS(4774), + [anon_sym_value] = ACTIONS(4774), + [anon_sym_override] = ACTIONS(4774), + [anon_sym_lateinit] = ACTIONS(4774), + [anon_sym_public] = ACTIONS(4774), + [anon_sym_private] = ACTIONS(4774), + [anon_sym_internal] = ACTIONS(4774), + [anon_sym_protected] = ACTIONS(4774), + [anon_sym_tailrec] = ACTIONS(4774), + [anon_sym_operator] = ACTIONS(4774), + [anon_sym_infix] = ACTIONS(4774), + [anon_sym_inline] = ACTIONS(4774), + [anon_sym_external] = ACTIONS(4774), + [sym_property_modifier] = ACTIONS(4774), + [anon_sym_abstract] = ACTIONS(4774), + [anon_sym_final] = ACTIONS(4774), + [anon_sym_open] = ACTIONS(4774), + [anon_sym_vararg] = ACTIONS(4774), + [anon_sym_noinline] = ACTIONS(4774), + [anon_sym_crossinline] = ACTIONS(4774), + [anon_sym_expect] = ACTIONS(4774), + [anon_sym_actual] = ACTIONS(4774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4776), + [sym__automatic_semicolon] = ACTIONS(4776), + [sym_safe_nav] = ACTIONS(4776), + [sym_multiline_comment] = ACTIONS(3), + }, + [3983] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_as] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4772), + [anon_sym_RBRACE] = ACTIONS(4772), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4772), + [anon_sym_LT] = ACTIONS(4770), + [anon_sym_GT] = ACTIONS(4770), + [anon_sym_where] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [sym_label] = ACTIONS(4772), + [anon_sym_in] = ACTIONS(4770), + [anon_sym_DOT_DOT] = ACTIONS(4772), + [anon_sym_QMARK_COLON] = ACTIONS(4772), + [anon_sym_AMP_AMP] = ACTIONS(4772), + [anon_sym_PIPE_PIPE] = ACTIONS(4772), + [anon_sym_else] = ACTIONS(4770), + [anon_sym_COLON_COLON] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4772), + [anon_sym_DASH_EQ] = ACTIONS(4772), + [anon_sym_STAR_EQ] = ACTIONS(4772), + [anon_sym_SLASH_EQ] = ACTIONS(4772), + [anon_sym_PERCENT_EQ] = ACTIONS(4772), + [anon_sym_BANG_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4772), + [anon_sym_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4772), + [anon_sym_LT_EQ] = ACTIONS(4772), + [anon_sym_GT_EQ] = ACTIONS(4772), + [anon_sym_BANGin] = ACTIONS(4772), + [anon_sym_is] = ACTIONS(4770), + [anon_sym_BANGis] = ACTIONS(4772), + [anon_sym_PLUS] = ACTIONS(4770), + [anon_sym_DASH] = ACTIONS(4770), + [anon_sym_SLASH] = ACTIONS(4770), + [anon_sym_PERCENT] = ACTIONS(4770), + [anon_sym_as_QMARK] = ACTIONS(4772), + [anon_sym_PLUS_PLUS] = ACTIONS(4772), + [anon_sym_DASH_DASH] = ACTIONS(4772), + [anon_sym_BANG_BANG] = ACTIONS(4772), + [anon_sym_suspend] = ACTIONS(4770), + [anon_sym_sealed] = ACTIONS(4770), + [anon_sym_annotation] = ACTIONS(4770), + [anon_sym_data] = ACTIONS(4770), + [anon_sym_inner] = ACTIONS(4770), + [anon_sym_value] = ACTIONS(4770), + [anon_sym_override] = ACTIONS(4770), + [anon_sym_lateinit] = ACTIONS(4770), + [anon_sym_public] = ACTIONS(4770), + [anon_sym_private] = ACTIONS(4770), + [anon_sym_internal] = ACTIONS(4770), + [anon_sym_protected] = ACTIONS(4770), + [anon_sym_tailrec] = ACTIONS(4770), + [anon_sym_operator] = ACTIONS(4770), + [anon_sym_infix] = ACTIONS(4770), + [anon_sym_inline] = ACTIONS(4770), + [anon_sym_external] = ACTIONS(4770), + [sym_property_modifier] = ACTIONS(4770), + [anon_sym_abstract] = ACTIONS(4770), + [anon_sym_final] = ACTIONS(4770), + [anon_sym_open] = ACTIONS(4770), + [anon_sym_vararg] = ACTIONS(4770), + [anon_sym_noinline] = ACTIONS(4770), + [anon_sym_crossinline] = ACTIONS(4770), + [anon_sym_expect] = ACTIONS(4770), + [anon_sym_actual] = ACTIONS(4770), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4772), + [sym__automatic_semicolon] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), + [sym_multiline_comment] = ACTIONS(3), + }, + [3984] = { + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(3966), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [sym_label] = ACTIONS(3966), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_suspend] = ACTIONS(3964), + [anon_sym_sealed] = ACTIONS(3964), + [anon_sym_annotation] = ACTIONS(3964), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_override] = ACTIONS(3964), + [anon_sym_lateinit] = ACTIONS(3964), + [anon_sym_public] = ACTIONS(3964), + [anon_sym_private] = ACTIONS(3964), + [anon_sym_internal] = ACTIONS(3964), + [anon_sym_protected] = ACTIONS(3964), + [anon_sym_tailrec] = ACTIONS(3964), + [anon_sym_operator] = ACTIONS(3964), + [anon_sym_infix] = ACTIONS(3964), + [anon_sym_inline] = ACTIONS(3964), + [anon_sym_external] = ACTIONS(3964), + [sym_property_modifier] = ACTIONS(3964), + [anon_sym_abstract] = ACTIONS(3964), + [anon_sym_final] = ACTIONS(3964), + [anon_sym_open] = ACTIONS(3964), + [anon_sym_vararg] = ACTIONS(3964), + [anon_sym_noinline] = ACTIONS(3964), + [anon_sym_crossinline] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3966), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + }, + [3985] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4764), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4764), + [anon_sym_PLUS] = ACTIONS(4762), + [anon_sym_DASH] = ACTIONS(4762), + [anon_sym_SLASH] = ACTIONS(4762), + [anon_sym_PERCENT] = ACTIONS(4762), + [anon_sym_as_QMARK] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_BANG_BANG] = ACTIONS(4764), + [anon_sym_suspend] = ACTIONS(4762), + [anon_sym_sealed] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4762), + [anon_sym_data] = ACTIONS(4762), + [anon_sym_inner] = ACTIONS(4762), + [anon_sym_value] = ACTIONS(4762), + [anon_sym_override] = ACTIONS(4762), + [anon_sym_lateinit] = ACTIONS(4762), + [anon_sym_public] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4762), + [anon_sym_internal] = ACTIONS(4762), + [anon_sym_protected] = ACTIONS(4762), + [anon_sym_tailrec] = ACTIONS(4762), + [anon_sym_operator] = ACTIONS(4762), + [anon_sym_infix] = ACTIONS(4762), + [anon_sym_inline] = ACTIONS(4762), + [anon_sym_external] = ACTIONS(4762), + [sym_property_modifier] = ACTIONS(4762), + [anon_sym_abstract] = ACTIONS(4762), + [anon_sym_final] = ACTIONS(4762), + [anon_sym_open] = ACTIONS(4762), + [anon_sym_vararg] = ACTIONS(4762), + [anon_sym_noinline] = ACTIONS(4762), + [anon_sym_crossinline] = ACTIONS(4762), + [anon_sym_expect] = ACTIONS(4762), + [anon_sym_actual] = ACTIONS(4762), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), + [sym_multiline_comment] = ACTIONS(3), + }, + [3986] = { + [sym__alpha_identifier] = ACTIONS(4758), + [anon_sym_AT] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4760), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_as] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(4758), + [anon_sym_LBRACE] = ACTIONS(4760), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_LPAREN] = ACTIONS(4760), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_LT] = ACTIONS(4758), + [anon_sym_GT] = ACTIONS(4758), + [anon_sym_where] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4760), + [anon_sym_get] = ACTIONS(4758), + [anon_sym_set] = ACTIONS(4758), + [anon_sym_STAR] = ACTIONS(4758), + [sym_label] = ACTIONS(4760), + [anon_sym_in] = ACTIONS(4758), + [anon_sym_DOT_DOT] = ACTIONS(4760), + [anon_sym_QMARK_COLON] = ACTIONS(4760), + [anon_sym_AMP_AMP] = ACTIONS(4760), + [anon_sym_PIPE_PIPE] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4758), + [anon_sym_COLON_COLON] = ACTIONS(4760), + [anon_sym_PLUS_EQ] = ACTIONS(4760), + [anon_sym_DASH_EQ] = ACTIONS(4760), + [anon_sym_STAR_EQ] = ACTIONS(4760), + [anon_sym_SLASH_EQ] = ACTIONS(4760), + [anon_sym_PERCENT_EQ] = ACTIONS(4760), + [anon_sym_BANG_EQ] = ACTIONS(4758), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), + [anon_sym_EQ_EQ] = ACTIONS(4758), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), + [anon_sym_LT_EQ] = ACTIONS(4760), + [anon_sym_GT_EQ] = ACTIONS(4760), + [anon_sym_BANGin] = ACTIONS(4760), + [anon_sym_is] = ACTIONS(4758), + [anon_sym_BANGis] = ACTIONS(4760), + [anon_sym_PLUS] = ACTIONS(4758), + [anon_sym_DASH] = ACTIONS(4758), + [anon_sym_SLASH] = ACTIONS(4758), + [anon_sym_PERCENT] = ACTIONS(4758), + [anon_sym_as_QMARK] = ACTIONS(4760), + [anon_sym_PLUS_PLUS] = ACTIONS(4760), + [anon_sym_DASH_DASH] = ACTIONS(4760), + [anon_sym_BANG_BANG] = ACTIONS(4760), + [anon_sym_suspend] = ACTIONS(4758), + [anon_sym_sealed] = ACTIONS(4758), + [anon_sym_annotation] = ACTIONS(4758), + [anon_sym_data] = ACTIONS(4758), + [anon_sym_inner] = ACTIONS(4758), + [anon_sym_value] = ACTIONS(4758), + [anon_sym_override] = ACTIONS(4758), + [anon_sym_lateinit] = ACTIONS(4758), + [anon_sym_public] = ACTIONS(4758), + [anon_sym_private] = ACTIONS(4758), + [anon_sym_internal] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4758), + [anon_sym_tailrec] = ACTIONS(4758), + [anon_sym_operator] = ACTIONS(4758), + [anon_sym_infix] = ACTIONS(4758), + [anon_sym_inline] = ACTIONS(4758), + [anon_sym_external] = ACTIONS(4758), + [sym_property_modifier] = ACTIONS(4758), + [anon_sym_abstract] = ACTIONS(4758), + [anon_sym_final] = ACTIONS(4758), + [anon_sym_open] = ACTIONS(4758), + [anon_sym_vararg] = ACTIONS(4758), + [anon_sym_noinline] = ACTIONS(4758), + [anon_sym_crossinline] = ACTIONS(4758), + [anon_sym_expect] = ACTIONS(4758), + [anon_sym_actual] = ACTIONS(4758), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4760), + [sym__automatic_semicolon] = ACTIONS(4760), + [sym_safe_nav] = ACTIONS(4760), + [sym_multiline_comment] = ACTIONS(3), + }, + [3987] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_as] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4756), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_LPAREN] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_get] = ACTIONS(4754), + [anon_sym_set] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4754), + [sym_label] = ACTIONS(4756), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_DOT_DOT] = ACTIONS(4756), + [anon_sym_QMARK_COLON] = ACTIONS(4756), + [anon_sym_AMP_AMP] = ACTIONS(4756), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PERCENT_EQ] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT_EQ] = ACTIONS(4756), + [anon_sym_GT_EQ] = ACTIONS(4756), + [anon_sym_BANGin] = ACTIONS(4756), + [anon_sym_is] = ACTIONS(4754), + [anon_sym_BANGis] = ACTIONS(4756), + [anon_sym_PLUS] = ACTIONS(4754), + [anon_sym_DASH] = ACTIONS(4754), + [anon_sym_SLASH] = ACTIONS(4754), + [anon_sym_PERCENT] = ACTIONS(4754), + [anon_sym_as_QMARK] = ACTIONS(4756), + [anon_sym_PLUS_PLUS] = ACTIONS(4756), + [anon_sym_DASH_DASH] = ACTIONS(4756), + [anon_sym_BANG_BANG] = ACTIONS(4756), + [anon_sym_suspend] = ACTIONS(4754), + [anon_sym_sealed] = ACTIONS(4754), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_data] = ACTIONS(4754), + [anon_sym_inner] = ACTIONS(4754), + [anon_sym_value] = ACTIONS(4754), + [anon_sym_override] = ACTIONS(4754), + [anon_sym_lateinit] = ACTIONS(4754), + [anon_sym_public] = ACTIONS(4754), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_internal] = ACTIONS(4754), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_tailrec] = ACTIONS(4754), + [anon_sym_operator] = ACTIONS(4754), + [anon_sym_infix] = ACTIONS(4754), + [anon_sym_inline] = ACTIONS(4754), + [anon_sym_external] = ACTIONS(4754), + [sym_property_modifier] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_final] = ACTIONS(4754), + [anon_sym_open] = ACTIONS(4754), + [anon_sym_vararg] = ACTIONS(4754), + [anon_sym_noinline] = ACTIONS(4754), + [anon_sym_crossinline] = ACTIONS(4754), + [anon_sym_expect] = ACTIONS(4754), + [anon_sym_actual] = ACTIONS(4754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4756), + [sym__automatic_semicolon] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), + [sym_multiline_comment] = ACTIONS(3), + }, + [3988] = { + [sym__alpha_identifier] = ACTIONS(4750), + [anon_sym_AT] = ACTIONS(4752), + [anon_sym_LBRACK] = ACTIONS(4752), + [anon_sym_DOT] = ACTIONS(4750), + [anon_sym_as] = ACTIONS(4750), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_LBRACE] = ACTIONS(4752), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_LPAREN] = ACTIONS(4752), + [anon_sym_COMMA] = ACTIONS(4752), + [anon_sym_LT] = ACTIONS(4750), + [anon_sym_GT] = ACTIONS(4750), + [anon_sym_where] = ACTIONS(4750), + [anon_sym_SEMI] = ACTIONS(4752), + [anon_sym_get] = ACTIONS(4750), + [anon_sym_set] = ACTIONS(4750), + [anon_sym_STAR] = ACTIONS(4750), + [sym_label] = ACTIONS(4752), + [anon_sym_in] = ACTIONS(4750), + [anon_sym_DOT_DOT] = ACTIONS(4752), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4752), + [anon_sym_PIPE_PIPE] = ACTIONS(4752), + [anon_sym_else] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4752), + [anon_sym_DASH_EQ] = ACTIONS(4752), + [anon_sym_STAR_EQ] = ACTIONS(4752), + [anon_sym_SLASH_EQ] = ACTIONS(4752), + [anon_sym_PERCENT_EQ] = ACTIONS(4752), + [anon_sym_BANG_EQ] = ACTIONS(4750), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4752), + [anon_sym_EQ_EQ] = ACTIONS(4750), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4752), + [anon_sym_LT_EQ] = ACTIONS(4752), + [anon_sym_GT_EQ] = ACTIONS(4752), + [anon_sym_BANGin] = ACTIONS(4752), + [anon_sym_is] = ACTIONS(4750), + [anon_sym_BANGis] = ACTIONS(4752), + [anon_sym_PLUS] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_SLASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_as_QMARK] = ACTIONS(4752), + [anon_sym_PLUS_PLUS] = ACTIONS(4752), + [anon_sym_DASH_DASH] = ACTIONS(4752), + [anon_sym_BANG_BANG] = ACTIONS(4752), + [anon_sym_suspend] = ACTIONS(4750), + [anon_sym_sealed] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4750), + [anon_sym_data] = ACTIONS(4750), + [anon_sym_inner] = ACTIONS(4750), + [anon_sym_value] = ACTIONS(4750), + [anon_sym_override] = ACTIONS(4750), + [anon_sym_lateinit] = ACTIONS(4750), + [anon_sym_public] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4750), + [anon_sym_internal] = ACTIONS(4750), + [anon_sym_protected] = ACTIONS(4750), + [anon_sym_tailrec] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4750), + [anon_sym_infix] = ACTIONS(4750), + [anon_sym_inline] = ACTIONS(4750), + [anon_sym_external] = ACTIONS(4750), + [sym_property_modifier] = ACTIONS(4750), + [anon_sym_abstract] = ACTIONS(4750), + [anon_sym_final] = ACTIONS(4750), + [anon_sym_open] = ACTIONS(4750), + [anon_sym_vararg] = ACTIONS(4750), + [anon_sym_noinline] = ACTIONS(4750), + [anon_sym_crossinline] = ACTIONS(4750), + [anon_sym_expect] = ACTIONS(4750), + [anon_sym_actual] = ACTIONS(4750), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4752), + [sym__automatic_semicolon] = ACTIONS(4752), + [sym_safe_nav] = ACTIONS(4752), + [sym_multiline_comment] = ACTIONS(3), + }, + [3989] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + }, + [3990] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + }, + [3991] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_suspend] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_lateinit] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_tailrec] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4896), + [anon_sym_infix] = ACTIONS(4896), + [anon_sym_inline] = ACTIONS(4896), + [anon_sym_external] = ACTIONS(4896), + [sym_property_modifier] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_final] = ACTIONS(4896), + [anon_sym_open] = ACTIONS(4896), + [anon_sym_vararg] = ACTIONS(4896), + [anon_sym_noinline] = ACTIONS(4896), + [anon_sym_crossinline] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4898), + [sym__automatic_semicolon] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + }, + [3992] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_suspend] = ACTIONS(4924), + [anon_sym_sealed] = ACTIONS(4924), + [anon_sym_annotation] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_override] = ACTIONS(4924), + [anon_sym_lateinit] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4924), + [anon_sym_internal] = ACTIONS(4924), + [anon_sym_protected] = ACTIONS(4924), + [anon_sym_tailrec] = ACTIONS(4924), + [anon_sym_operator] = ACTIONS(4924), + [anon_sym_infix] = ACTIONS(4924), + [anon_sym_inline] = ACTIONS(4924), + [anon_sym_external] = ACTIONS(4924), + [sym_property_modifier] = ACTIONS(4924), + [anon_sym_abstract] = ACTIONS(4924), + [anon_sym_final] = ACTIONS(4924), + [anon_sym_open] = ACTIONS(4924), + [anon_sym_vararg] = ACTIONS(4924), + [anon_sym_noinline] = ACTIONS(4924), + [anon_sym_crossinline] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4926), + [sym__automatic_semicolon] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), + [sym_multiline_comment] = ACTIONS(3), + }, + [3993] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_suspend] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_lateinit] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_tailrec] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4928), + [anon_sym_infix] = ACTIONS(4928), + [anon_sym_inline] = ACTIONS(4928), + [anon_sym_external] = ACTIONS(4928), + [sym_property_modifier] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_final] = ACTIONS(4928), + [anon_sym_open] = ACTIONS(4928), + [anon_sym_vararg] = ACTIONS(4928), + [anon_sym_noinline] = ACTIONS(4928), + [anon_sym_crossinline] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4930), + [sym__automatic_semicolon] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), + [sym_multiline_comment] = ACTIONS(3), + }, + [3994] = { + [sym__alpha_identifier] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_as] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [anon_sym_COMMA] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5014), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_where] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_get] = ACTIONS(5014), + [anon_sym_set] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [sym_label] = ACTIONS(5016), + [anon_sym_in] = ACTIONS(5014), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_QMARK_COLON] = ACTIONS(5016), + [anon_sym_AMP_AMP] = ACTIONS(5016), + [anon_sym_PIPE_PIPE] = ACTIONS(5016), + [anon_sym_else] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym_PLUS_EQ] = ACTIONS(5016), + [anon_sym_DASH_EQ] = ACTIONS(5016), + [anon_sym_STAR_EQ] = ACTIONS(5016), + [anon_sym_SLASH_EQ] = ACTIONS(5016), + [anon_sym_PERCENT_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ] = ACTIONS(5014), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5014), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_BANGin] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_BANGis] = ACTIONS(5016), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_as_QMARK] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_BANG_BANG] = ACTIONS(5016), + [anon_sym_suspend] = ACTIONS(5014), + [anon_sym_sealed] = ACTIONS(5014), + [anon_sym_annotation] = ACTIONS(5014), + [anon_sym_data] = ACTIONS(5014), + [anon_sym_inner] = ACTIONS(5014), + [anon_sym_value] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_lateinit] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_protected] = ACTIONS(5014), + [anon_sym_tailrec] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_inline] = ACTIONS(5014), + [anon_sym_external] = ACTIONS(5014), + [sym_property_modifier] = ACTIONS(5014), + [anon_sym_abstract] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_vararg] = ACTIONS(5014), + [anon_sym_noinline] = ACTIONS(5014), + [anon_sym_crossinline] = ACTIONS(5014), + [anon_sym_expect] = ACTIONS(5014), + [anon_sym_actual] = ACTIONS(5014), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5016), + [sym__automatic_semicolon] = ACTIONS(5016), + [sym_safe_nav] = ACTIONS(5016), + [sym_multiline_comment] = ACTIONS(3), + }, + [3995] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_suspend] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_lateinit] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_tailrec] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4948), + [anon_sym_infix] = ACTIONS(4948), + [anon_sym_inline] = ACTIONS(4948), + [anon_sym_external] = ACTIONS(4948), + [sym_property_modifier] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_final] = ACTIONS(4948), + [anon_sym_open] = ACTIONS(4948), + [anon_sym_vararg] = ACTIONS(4948), + [anon_sym_noinline] = ACTIONS(4948), + [anon_sym_crossinline] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4950), + [sym__automatic_semicolon] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + }, + [3996] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [3997] = { + [sym__alpha_identifier] = ACTIONS(5074), + [anon_sym_AT] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_DOT] = ACTIONS(5074), + [anon_sym_as] = ACTIONS(5074), + [anon_sym_EQ] = ACTIONS(5074), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_RBRACE] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5076), + [anon_sym_COMMA] = ACTIONS(5076), + [anon_sym_LT] = ACTIONS(5074), + [anon_sym_GT] = ACTIONS(5074), + [anon_sym_where] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_get] = ACTIONS(5074), + [anon_sym_set] = ACTIONS(5074), + [anon_sym_STAR] = ACTIONS(5074), + [sym_label] = ACTIONS(5076), + [anon_sym_in] = ACTIONS(5074), + [anon_sym_DOT_DOT] = ACTIONS(5076), + [anon_sym_QMARK_COLON] = ACTIONS(5076), + [anon_sym_AMP_AMP] = ACTIONS(5076), + [anon_sym_PIPE_PIPE] = ACTIONS(5076), + [anon_sym_else] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(7123), + [anon_sym_PLUS_EQ] = ACTIONS(5076), + [anon_sym_DASH_EQ] = ACTIONS(5076), + [anon_sym_STAR_EQ] = ACTIONS(5076), + [anon_sym_SLASH_EQ] = ACTIONS(5076), + [anon_sym_PERCENT_EQ] = ACTIONS(5076), + [anon_sym_BANG_EQ] = ACTIONS(5074), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5076), + [anon_sym_EQ_EQ] = ACTIONS(5074), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5076), + [anon_sym_LT_EQ] = ACTIONS(5076), + [anon_sym_GT_EQ] = ACTIONS(5076), + [anon_sym_BANGin] = ACTIONS(5076), + [anon_sym_is] = ACTIONS(5074), + [anon_sym_BANGis] = ACTIONS(5076), + [anon_sym_PLUS] = ACTIONS(5074), + [anon_sym_DASH] = ACTIONS(5074), + [anon_sym_SLASH] = ACTIONS(5074), + [anon_sym_PERCENT] = ACTIONS(5074), + [anon_sym_as_QMARK] = ACTIONS(5076), + [anon_sym_PLUS_PLUS] = ACTIONS(5076), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_BANG_BANG] = ACTIONS(5076), + [anon_sym_suspend] = ACTIONS(5074), + [anon_sym_sealed] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5074), + [anon_sym_data] = ACTIONS(5074), + [anon_sym_inner] = ACTIONS(5074), + [anon_sym_value] = ACTIONS(5074), + [anon_sym_override] = ACTIONS(5074), + [anon_sym_lateinit] = ACTIONS(5074), + [anon_sym_public] = ACTIONS(5074), + [anon_sym_private] = ACTIONS(5074), + [anon_sym_internal] = ACTIONS(5074), + [anon_sym_protected] = ACTIONS(5074), + [anon_sym_tailrec] = ACTIONS(5074), + [anon_sym_operator] = ACTIONS(5074), + [anon_sym_infix] = ACTIONS(5074), + [anon_sym_inline] = ACTIONS(5074), + [anon_sym_external] = ACTIONS(5074), + [sym_property_modifier] = ACTIONS(5074), + [anon_sym_abstract] = ACTIONS(5074), + [anon_sym_final] = ACTIONS(5074), + [anon_sym_open] = ACTIONS(5074), + [anon_sym_vararg] = ACTIONS(5074), + [anon_sym_noinline] = ACTIONS(5074), + [anon_sym_crossinline] = ACTIONS(5074), + [anon_sym_expect] = ACTIONS(5074), + [anon_sym_actual] = ACTIONS(5074), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5076), + [sym__automatic_semicolon] = ACTIONS(5076), + [sym_safe_nav] = ACTIONS(5076), + [sym_multiline_comment] = ACTIONS(3), + }, + [3998] = { + [sym__alpha_identifier] = ACTIONS(5087), + [anon_sym_AT] = ACTIONS(5089), + [anon_sym_LBRACK] = ACTIONS(5089), + [anon_sym_DOT] = ACTIONS(5087), + [anon_sym_as] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5089), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5089), + [anon_sym_COMMA] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5087), + [anon_sym_GT] = ACTIONS(5087), + [anon_sym_where] = ACTIONS(5087), + [anon_sym_SEMI] = ACTIONS(5089), + [anon_sym_get] = ACTIONS(5087), + [anon_sym_set] = ACTIONS(5087), + [anon_sym_STAR] = ACTIONS(5087), + [sym_label] = ACTIONS(5089), + [anon_sym_in] = ACTIONS(5087), + [anon_sym_DOT_DOT] = ACTIONS(5089), + [anon_sym_QMARK_COLON] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5089), + [anon_sym_else] = ACTIONS(5087), + [anon_sym_COLON_COLON] = ACTIONS(5089), + [anon_sym_PLUS_EQ] = ACTIONS(5089), + [anon_sym_DASH_EQ] = ACTIONS(5089), + [anon_sym_STAR_EQ] = ACTIONS(5089), + [anon_sym_SLASH_EQ] = ACTIONS(5089), + [anon_sym_PERCENT_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5089), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5089), + [anon_sym_BANGin] = ACTIONS(5089), + [anon_sym_is] = ACTIONS(5087), + [anon_sym_BANGis] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5087), + [anon_sym_DASH] = ACTIONS(5087), + [anon_sym_SLASH] = ACTIONS(5087), + [anon_sym_PERCENT] = ACTIONS(5087), + [anon_sym_as_QMARK] = ACTIONS(5089), + [anon_sym_PLUS_PLUS] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5089), + [anon_sym_BANG_BANG] = ACTIONS(5089), + [anon_sym_suspend] = ACTIONS(5087), + [anon_sym_sealed] = ACTIONS(5087), + [anon_sym_annotation] = ACTIONS(5087), + [anon_sym_data] = ACTIONS(5087), + [anon_sym_inner] = ACTIONS(5087), + [anon_sym_value] = ACTIONS(5087), + [anon_sym_override] = ACTIONS(5087), + [anon_sym_lateinit] = ACTIONS(5087), + [anon_sym_public] = ACTIONS(5087), + [anon_sym_private] = ACTIONS(5087), + [anon_sym_internal] = ACTIONS(5087), + [anon_sym_protected] = ACTIONS(5087), + [anon_sym_tailrec] = ACTIONS(5087), + [anon_sym_operator] = ACTIONS(5087), + [anon_sym_infix] = ACTIONS(5087), + [anon_sym_inline] = ACTIONS(5087), + [anon_sym_external] = ACTIONS(5087), + [sym_property_modifier] = ACTIONS(5087), + [anon_sym_abstract] = ACTIONS(5087), + [anon_sym_final] = ACTIONS(5087), + [anon_sym_open] = ACTIONS(5087), + [anon_sym_vararg] = ACTIONS(5087), + [anon_sym_noinline] = ACTIONS(5087), + [anon_sym_crossinline] = ACTIONS(5087), + [anon_sym_expect] = ACTIONS(5087), + [anon_sym_actual] = ACTIONS(5087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5089), + [sym__automatic_semicolon] = ACTIONS(5089), + [sym_safe_nav] = ACTIONS(5089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3999] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [sym_label] = ACTIONS(5028), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_suspend] = ACTIONS(5026), + [anon_sym_sealed] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_lateinit] = ACTIONS(5026), + [anon_sym_public] = ACTIONS(5026), + [anon_sym_private] = ACTIONS(5026), + [anon_sym_internal] = ACTIONS(5026), + [anon_sym_protected] = ACTIONS(5026), + [anon_sym_tailrec] = ACTIONS(5026), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_infix] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym_external] = ACTIONS(5026), + [sym_property_modifier] = ACTIONS(5026), + [anon_sym_abstract] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_open] = ACTIONS(5026), + [anon_sym_vararg] = ACTIONS(5026), + [anon_sym_noinline] = ACTIONS(5026), + [anon_sym_crossinline] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5028), + [sym__automatic_semicolon] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + }, + [4000] = { + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3970), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_PLUS_EQ] = ACTIONS(3972), + [anon_sym_DASH_EQ] = ACTIONS(3972), + [anon_sym_STAR_EQ] = ACTIONS(3972), + [anon_sym_SLASH_EQ] = ACTIONS(3972), + [anon_sym_PERCENT_EQ] = ACTIONS(3972), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_BANG_BANG] = ACTIONS(3972), + [anon_sym_suspend] = ACTIONS(3970), + [anon_sym_sealed] = ACTIONS(3970), + [anon_sym_annotation] = ACTIONS(3970), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3970), + [anon_sym_lateinit] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_internal] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_tailrec] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_infix] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym_external] = ACTIONS(3970), + [sym_property_modifier] = ACTIONS(3970), + [anon_sym_abstract] = ACTIONS(3970), + [anon_sym_final] = ACTIONS(3970), + [anon_sym_open] = ACTIONS(3970), + [anon_sym_vararg] = ACTIONS(3970), + [anon_sym_noinline] = ACTIONS(3970), + [anon_sym_crossinline] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym__automatic_semicolon] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3972), + [sym_multiline_comment] = ACTIONS(3), + }, + [4001] = { + [sym__alpha_identifier] = ACTIONS(5175), + [anon_sym_AT] = ACTIONS(5177), + [anon_sym_LBRACK] = ACTIONS(5177), + [anon_sym_DOT] = ACTIONS(5175), + [anon_sym_as] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5177), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5175), + [anon_sym_GT] = ACTIONS(5175), + [anon_sym_where] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym_get] = ACTIONS(5175), + [anon_sym_set] = ACTIONS(5175), + [anon_sym_STAR] = ACTIONS(5175), + [sym_label] = ACTIONS(5177), + [anon_sym_in] = ACTIONS(5175), + [anon_sym_DOT_DOT] = ACTIONS(5177), + [anon_sym_QMARK_COLON] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_else] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_PLUS_EQ] = ACTIONS(5177), + [anon_sym_DASH_EQ] = ACTIONS(5177), + [anon_sym_STAR_EQ] = ACTIONS(5177), + [anon_sym_SLASH_EQ] = ACTIONS(5177), + [anon_sym_PERCENT_EQ] = ACTIONS(5177), + [anon_sym_BANG_EQ] = ACTIONS(5175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5177), + [anon_sym_EQ_EQ] = ACTIONS(5175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5177), + [anon_sym_LT_EQ] = ACTIONS(5177), + [anon_sym_GT_EQ] = ACTIONS(5177), + [anon_sym_BANGin] = ACTIONS(5177), + [anon_sym_is] = ACTIONS(5175), + [anon_sym_BANGis] = ACTIONS(5177), + [anon_sym_PLUS] = ACTIONS(5175), + [anon_sym_DASH] = ACTIONS(5175), + [anon_sym_SLASH] = ACTIONS(5175), + [anon_sym_PERCENT] = ACTIONS(5175), + [anon_sym_as_QMARK] = ACTIONS(5177), + [anon_sym_PLUS_PLUS] = ACTIONS(5177), + [anon_sym_DASH_DASH] = ACTIONS(5177), + [anon_sym_BANG_BANG] = ACTIONS(5177), + [anon_sym_suspend] = ACTIONS(5175), + [anon_sym_sealed] = ACTIONS(5175), + [anon_sym_annotation] = ACTIONS(5175), + [anon_sym_data] = ACTIONS(5175), + [anon_sym_inner] = ACTIONS(5175), + [anon_sym_value] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_lateinit] = ACTIONS(5175), + [anon_sym_public] = ACTIONS(5175), + [anon_sym_private] = ACTIONS(5175), + [anon_sym_internal] = ACTIONS(5175), + [anon_sym_protected] = ACTIONS(5175), + [anon_sym_tailrec] = ACTIONS(5175), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_infix] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym_external] = ACTIONS(5175), + [sym_property_modifier] = ACTIONS(5175), + [anon_sym_abstract] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_open] = ACTIONS(5175), + [anon_sym_vararg] = ACTIONS(5175), + [anon_sym_noinline] = ACTIONS(5175), + [anon_sym_crossinline] = ACTIONS(5175), + [anon_sym_expect] = ACTIONS(5175), + [anon_sym_actual] = ACTIONS(5175), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5177), + [sym__automatic_semicolon] = ACTIONS(5177), + [sym_safe_nav] = ACTIONS(5177), + [sym_multiline_comment] = ACTIONS(3), + }, + [4002] = { + [sym_function_body] = STATE(3190), + [sym__block] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6872), + [anon_sym_LBRACE] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [4003] = { + [sym__alpha_identifier] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_where] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [sym_label] = ACTIONS(1586), + [anon_sym_in] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_QMARK_COLON] = ACTIONS(1586), + [anon_sym_AMP_AMP] = ACTIONS(1586), + [anon_sym_PIPE_PIPE] = ACTIONS(1586), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_PLUS_EQ] = ACTIONS(1586), + [anon_sym_DASH_EQ] = ACTIONS(1586), + [anon_sym_STAR_EQ] = ACTIONS(1586), + [anon_sym_SLASH_EQ] = ACTIONS(1586), + [anon_sym_PERCENT_EQ] = ACTIONS(1586), + [anon_sym_BANG_EQ] = ACTIONS(1588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1586), + [anon_sym_EQ_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1586), + [anon_sym_LT_EQ] = ACTIONS(1586), + [anon_sym_GT_EQ] = ACTIONS(1586), + [anon_sym_BANGin] = ACTIONS(1586), + [anon_sym_is] = ACTIONS(1588), + [anon_sym_BANGis] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_as_QMARK] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_BANG_BANG] = ACTIONS(1586), + [anon_sym_suspend] = ACTIONS(1588), + [anon_sym_sealed] = ACTIONS(1588), + [anon_sym_annotation] = ACTIONS(1588), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1588), + [anon_sym_lateinit] = ACTIONS(1588), + [anon_sym_public] = ACTIONS(1588), + [anon_sym_private] = ACTIONS(1588), + [anon_sym_internal] = ACTIONS(1588), + [anon_sym_protected] = ACTIONS(1588), + [anon_sym_tailrec] = ACTIONS(1588), + [anon_sym_operator] = ACTIONS(1588), + [anon_sym_infix] = ACTIONS(1588), + [anon_sym_inline] = ACTIONS(1588), + [anon_sym_external] = ACTIONS(1588), + [sym_property_modifier] = ACTIONS(1588), + [anon_sym_abstract] = ACTIONS(1588), + [anon_sym_final] = ACTIONS(1588), + [anon_sym_open] = ACTIONS(1588), + [anon_sym_vararg] = ACTIONS(1588), + [anon_sym_noinline] = ACTIONS(1588), + [anon_sym_crossinline] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1586), + [sym__automatic_semicolon] = ACTIONS(1586), + [sym_safe_nav] = ACTIONS(1586), + [sym_multiline_comment] = ACTIONS(3), + }, + [4004] = { + [sym__alpha_identifier] = ACTIONS(5026), + [anon_sym_AT] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_as] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5028), + [anon_sym_RBRACE] = ACTIONS(5028), + [anon_sym_LPAREN] = ACTIONS(5028), + [anon_sym_COMMA] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(5026), + [anon_sym_where] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5028), + [anon_sym_get] = ACTIONS(5026), + [anon_sym_set] = ACTIONS(5026), + [anon_sym_STAR] = ACTIONS(5026), + [sym_label] = ACTIONS(5028), + [anon_sym_in] = ACTIONS(5026), + [anon_sym_DOT_DOT] = ACTIONS(5028), + [anon_sym_QMARK_COLON] = ACTIONS(5028), + [anon_sym_AMP_AMP] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5028), + [anon_sym_else] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5028), + [anon_sym_PLUS_EQ] = ACTIONS(5028), + [anon_sym_DASH_EQ] = ACTIONS(5028), + [anon_sym_STAR_EQ] = ACTIONS(5028), + [anon_sym_SLASH_EQ] = ACTIONS(5028), + [anon_sym_PERCENT_EQ] = ACTIONS(5028), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_BANGin] = ACTIONS(5028), + [anon_sym_is] = ACTIONS(5026), + [anon_sym_BANGis] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5026), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_as_QMARK] = ACTIONS(5028), + [anon_sym_PLUS_PLUS] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5028), + [anon_sym_BANG_BANG] = ACTIONS(5028), + [anon_sym_suspend] = ACTIONS(5026), + [anon_sym_sealed] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5026), + [anon_sym_data] = ACTIONS(5026), + [anon_sym_inner] = ACTIONS(5026), + [anon_sym_value] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_lateinit] = ACTIONS(5026), + [anon_sym_public] = ACTIONS(5026), + [anon_sym_private] = ACTIONS(5026), + [anon_sym_internal] = ACTIONS(5026), + [anon_sym_protected] = ACTIONS(5026), + [anon_sym_tailrec] = ACTIONS(5026), + [anon_sym_operator] = ACTIONS(5026), + [anon_sym_infix] = ACTIONS(5026), + [anon_sym_inline] = ACTIONS(5026), + [anon_sym_external] = ACTIONS(5026), + [sym_property_modifier] = ACTIONS(5026), + [anon_sym_abstract] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_open] = ACTIONS(5026), + [anon_sym_vararg] = ACTIONS(5026), + [anon_sym_noinline] = ACTIONS(5026), + [anon_sym_crossinline] = ACTIONS(5026), + [anon_sym_expect] = ACTIONS(5026), + [anon_sym_actual] = ACTIONS(5026), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5028), + [sym__automatic_semicolon] = ACTIONS(5028), + [sym_safe_nav] = ACTIONS(5028), + [sym_multiline_comment] = ACTIONS(3), + }, + [4005] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_typealias] = ACTIONS(4984), + [anon_sym_class] = ACTIONS(4984), + [anon_sym_interface] = ACTIONS(4984), + [anon_sym_enum] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_val] = ACTIONS(4984), + [anon_sym_var] = ACTIONS(4984), + [anon_sym_object] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_this] = ACTIONS(4984), + [anon_sym_super] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4986), + [sym_label] = ACTIONS(4984), + [anon_sym_for] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_do] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_when] = ACTIONS(4984), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_throw] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4986), + [anon_sym_continue_AT] = ACTIONS(4986), + [anon_sym_break_AT] = ACTIONS(4986), + [anon_sym_this_AT] = ACTIONS(4986), + [anon_sym_super_AT] = ACTIONS(4986), + [sym_real_literal] = ACTIONS(4986), + [sym_integer_literal] = ACTIONS(4984), + [sym_hex_literal] = ACTIONS(4986), + [sym_bin_literal] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4986), + [sym_null_literal] = ACTIONS(4984), + [sym__backtick_identifier] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4986), + }, + [4006] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_typealias] = ACTIONS(4988), + [anon_sym_class] = ACTIONS(4988), + [anon_sym_interface] = ACTIONS(4988), + [anon_sym_enum] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_val] = ACTIONS(4988), + [anon_sym_var] = ACTIONS(4988), + [anon_sym_object] = ACTIONS(4988), + [anon_sym_fun] = ACTIONS(4988), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_this] = ACTIONS(4988), + [anon_sym_super] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4990), + [sym_label] = ACTIONS(4988), + [anon_sym_for] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_do] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_throw] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4990), + [anon_sym_continue_AT] = ACTIONS(4990), + [anon_sym_break_AT] = ACTIONS(4990), + [anon_sym_this_AT] = ACTIONS(4990), + [anon_sym_super_AT] = ACTIONS(4990), + [sym_real_literal] = ACTIONS(4990), + [sym_integer_literal] = ACTIONS(4988), + [sym_hex_literal] = ACTIONS(4990), + [sym_bin_literal] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4990), + [sym_null_literal] = ACTIONS(4988), + [sym__backtick_identifier] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4990), + }, + [4007] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_suspend] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_lateinit] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_tailrec] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4960), + [anon_sym_infix] = ACTIONS(4960), + [anon_sym_inline] = ACTIONS(4960), + [anon_sym_external] = ACTIONS(4960), + [sym_property_modifier] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_final] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_vararg] = ACTIONS(4960), + [anon_sym_noinline] = ACTIONS(4960), + [anon_sym_crossinline] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4962), + [sym__automatic_semicolon] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + }, + [4008] = { + [sym__alpha_identifier] = ACTIONS(5119), + [anon_sym_AT] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_DOT] = ACTIONS(5119), + [anon_sym_as] = ACTIONS(5119), + [anon_sym_EQ] = ACTIONS(5119), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_where] = ACTIONS(5119), + [anon_sym_SEMI] = ACTIONS(5121), + [anon_sym_get] = ACTIONS(5119), + [anon_sym_set] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5119), + [anon_sym_DOT_DOT] = ACTIONS(5121), + [anon_sym_QMARK_COLON] = ACTIONS(5121), + [anon_sym_AMP_AMP] = ACTIONS(5121), + [anon_sym_PIPE_PIPE] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5119), + [anon_sym_COLON_COLON] = ACTIONS(5121), + [anon_sym_PLUS_EQ] = ACTIONS(5121), + [anon_sym_DASH_EQ] = ACTIONS(5121), + [anon_sym_STAR_EQ] = ACTIONS(5121), + [anon_sym_SLASH_EQ] = ACTIONS(5121), + [anon_sym_PERCENT_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5121), + [anon_sym_LT_EQ] = ACTIONS(5121), + [anon_sym_GT_EQ] = ACTIONS(5121), + [anon_sym_BANGin] = ACTIONS(5121), + [anon_sym_is] = ACTIONS(5119), + [anon_sym_BANGis] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_PERCENT] = ACTIONS(5119), + [anon_sym_as_QMARK] = ACTIONS(5121), + [anon_sym_PLUS_PLUS] = ACTIONS(5121), + [anon_sym_DASH_DASH] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5121), + [anon_sym_suspend] = ACTIONS(5119), + [anon_sym_sealed] = ACTIONS(5119), + [anon_sym_annotation] = ACTIONS(5119), + [anon_sym_data] = ACTIONS(5119), + [anon_sym_inner] = ACTIONS(5119), + [anon_sym_value] = ACTIONS(5119), + [anon_sym_override] = ACTIONS(5119), + [anon_sym_lateinit] = ACTIONS(5119), + [anon_sym_public] = ACTIONS(5119), + [anon_sym_private] = ACTIONS(5119), + [anon_sym_internal] = ACTIONS(5119), + [anon_sym_protected] = ACTIONS(5119), + [anon_sym_tailrec] = ACTIONS(5119), + [anon_sym_operator] = ACTIONS(5119), + [anon_sym_infix] = ACTIONS(5119), + [anon_sym_inline] = ACTIONS(5119), + [anon_sym_external] = ACTIONS(5119), + [sym_property_modifier] = ACTIONS(5119), + [anon_sym_abstract] = ACTIONS(5119), + [anon_sym_final] = ACTIONS(5119), + [anon_sym_open] = ACTIONS(5119), + [anon_sym_vararg] = ACTIONS(5119), + [anon_sym_noinline] = ACTIONS(5119), + [anon_sym_crossinline] = ACTIONS(5119), + [anon_sym_expect] = ACTIONS(5119), + [anon_sym_actual] = ACTIONS(5119), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5121), + [sym__automatic_semicolon] = ACTIONS(5121), + [sym_safe_nav] = ACTIONS(5121), + [sym_multiline_comment] = ACTIONS(3), + }, + [4009] = { + [sym__alpha_identifier] = ACTIONS(5123), + [anon_sym_AT] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_DOT] = ACTIONS(5123), + [anon_sym_as] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_where] = ACTIONS(5123), + [anon_sym_SEMI] = ACTIONS(5125), + [anon_sym_get] = ACTIONS(5123), + [anon_sym_set] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5123), + [anon_sym_DOT_DOT] = ACTIONS(5125), + [anon_sym_QMARK_COLON] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5123), + [anon_sym_COLON_COLON] = ACTIONS(5125), + [anon_sym_PLUS_EQ] = ACTIONS(5125), + [anon_sym_DASH_EQ] = ACTIONS(5125), + [anon_sym_STAR_EQ] = ACTIONS(5125), + [anon_sym_SLASH_EQ] = ACTIONS(5125), + [anon_sym_PERCENT_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_BANGin] = ACTIONS(5125), + [anon_sym_is] = ACTIONS(5123), + [anon_sym_BANGis] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_as_QMARK] = ACTIONS(5125), + [anon_sym_PLUS_PLUS] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5125), + [anon_sym_suspend] = ACTIONS(5123), + [anon_sym_sealed] = ACTIONS(5123), + [anon_sym_annotation] = ACTIONS(5123), + [anon_sym_data] = ACTIONS(5123), + [anon_sym_inner] = ACTIONS(5123), + [anon_sym_value] = ACTIONS(5123), + [anon_sym_override] = ACTIONS(5123), + [anon_sym_lateinit] = ACTIONS(5123), + [anon_sym_public] = ACTIONS(5123), + [anon_sym_private] = ACTIONS(5123), + [anon_sym_internal] = ACTIONS(5123), + [anon_sym_protected] = ACTIONS(5123), + [anon_sym_tailrec] = ACTIONS(5123), + [anon_sym_operator] = ACTIONS(5123), + [anon_sym_infix] = ACTIONS(5123), + [anon_sym_inline] = ACTIONS(5123), + [anon_sym_external] = ACTIONS(5123), + [sym_property_modifier] = ACTIONS(5123), + [anon_sym_abstract] = ACTIONS(5123), + [anon_sym_final] = ACTIONS(5123), + [anon_sym_open] = ACTIONS(5123), + [anon_sym_vararg] = ACTIONS(5123), + [anon_sym_noinline] = ACTIONS(5123), + [anon_sym_crossinline] = ACTIONS(5123), + [anon_sym_expect] = ACTIONS(5123), + [anon_sym_actual] = ACTIONS(5123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5125), + [sym__automatic_semicolon] = ACTIONS(5125), + [sym_safe_nav] = ACTIONS(5125), + [sym_multiline_comment] = ACTIONS(3), + }, + [4010] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4435), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4437), + [anon_sym_DASH_EQ] = ACTIONS(4437), + [anon_sym_STAR_EQ] = ACTIONS(4437), + [anon_sym_SLASH_EQ] = ACTIONS(4437), + [anon_sym_PERCENT_EQ] = ACTIONS(4437), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [4011] = { + [sym_function_body] = STATE(3600), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_RBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [4012] = { + [sym_function_body] = STATE(3577), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_RBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6944), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_DASH_GT] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [4013] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_typealias] = ACTIONS(4976), + [anon_sym_class] = ACTIONS(4976), + [anon_sym_interface] = ACTIONS(4976), + [anon_sym_enum] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_val] = ACTIONS(4976), + [anon_sym_var] = ACTIONS(4976), + [anon_sym_object] = ACTIONS(4976), + [anon_sym_fun] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_this] = ACTIONS(4976), + [anon_sym_super] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4978), + [sym_label] = ACTIONS(4976), + [anon_sym_for] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_do] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_when] = ACTIONS(4976), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_throw] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4978), + [anon_sym_continue_AT] = ACTIONS(4978), + [anon_sym_break_AT] = ACTIONS(4978), + [anon_sym_this_AT] = ACTIONS(4978), + [anon_sym_super_AT] = ACTIONS(4978), + [sym_real_literal] = ACTIONS(4978), + [sym_integer_literal] = ACTIONS(4976), + [sym_hex_literal] = ACTIONS(4978), + [sym_bin_literal] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4978), + [sym_null_literal] = ACTIONS(4976), + [sym__backtick_identifier] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4978), + }, + [4014] = { + [sym__alpha_identifier] = ACTIONS(5083), + [anon_sym_AT] = ACTIONS(5085), + [anon_sym_LBRACK] = ACTIONS(5085), + [anon_sym_DOT] = ACTIONS(5083), + [anon_sym_as] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5085), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5085), + [anon_sym_COMMA] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5083), + [anon_sym_GT] = ACTIONS(5083), + [anon_sym_where] = ACTIONS(5083), + [anon_sym_SEMI] = ACTIONS(5085), + [anon_sym_get] = ACTIONS(5083), + [anon_sym_set] = ACTIONS(5083), + [anon_sym_STAR] = ACTIONS(5083), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5083), + [anon_sym_DOT_DOT] = ACTIONS(5085), + [anon_sym_QMARK_COLON] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5085), + [anon_sym_PIPE_PIPE] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5083), + [anon_sym_COLON_COLON] = ACTIONS(5085), + [anon_sym_PLUS_EQ] = ACTIONS(5085), + [anon_sym_DASH_EQ] = ACTIONS(5085), + [anon_sym_STAR_EQ] = ACTIONS(5085), + [anon_sym_SLASH_EQ] = ACTIONS(5085), + [anon_sym_PERCENT_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5085), + [anon_sym_LT_EQ] = ACTIONS(5085), + [anon_sym_GT_EQ] = ACTIONS(5085), + [anon_sym_BANGin] = ACTIONS(5085), + [anon_sym_is] = ACTIONS(5083), + [anon_sym_BANGis] = ACTIONS(5085), + [anon_sym_PLUS] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), + [anon_sym_SLASH] = ACTIONS(5083), + [anon_sym_PERCENT] = ACTIONS(5083), + [anon_sym_as_QMARK] = ACTIONS(5085), + [anon_sym_PLUS_PLUS] = ACTIONS(5085), + [anon_sym_DASH_DASH] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5085), + [anon_sym_suspend] = ACTIONS(5083), + [anon_sym_sealed] = ACTIONS(5083), + [anon_sym_annotation] = ACTIONS(5083), + [anon_sym_data] = ACTIONS(5083), + [anon_sym_inner] = ACTIONS(5083), + [anon_sym_value] = ACTIONS(5083), + [anon_sym_override] = ACTIONS(5083), + [anon_sym_lateinit] = ACTIONS(5083), + [anon_sym_public] = ACTIONS(5083), + [anon_sym_private] = ACTIONS(5083), + [anon_sym_internal] = ACTIONS(5083), + [anon_sym_protected] = ACTIONS(5083), + [anon_sym_tailrec] = ACTIONS(5083), + [anon_sym_operator] = ACTIONS(5083), + [anon_sym_infix] = ACTIONS(5083), + [anon_sym_inline] = ACTIONS(5083), + [anon_sym_external] = ACTIONS(5083), + [sym_property_modifier] = ACTIONS(5083), + [anon_sym_abstract] = ACTIONS(5083), + [anon_sym_final] = ACTIONS(5083), + [anon_sym_open] = ACTIONS(5083), + [anon_sym_vararg] = ACTIONS(5083), + [anon_sym_noinline] = ACTIONS(5083), + [anon_sym_crossinline] = ACTIONS(5083), + [anon_sym_expect] = ACTIONS(5083), + [anon_sym_actual] = ACTIONS(5083), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5085), + [sym__automatic_semicolon] = ACTIONS(5085), + [sym_safe_nav] = ACTIONS(5085), + [sym_multiline_comment] = ACTIONS(3), + }, + [4015] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_typealias] = ACTIONS(4980), + [anon_sym_class] = ACTIONS(4980), + [anon_sym_interface] = ACTIONS(4980), + [anon_sym_enum] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_val] = ACTIONS(4980), + [anon_sym_var] = ACTIONS(4980), + [anon_sym_object] = ACTIONS(4980), + [anon_sym_fun] = ACTIONS(4980), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_this] = ACTIONS(4980), + [anon_sym_super] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4982), + [sym_label] = ACTIONS(4980), + [anon_sym_for] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_do] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_when] = ACTIONS(4980), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_throw] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4982), + [anon_sym_continue_AT] = ACTIONS(4982), + [anon_sym_break_AT] = ACTIONS(4982), + [anon_sym_this_AT] = ACTIONS(4982), + [anon_sym_super_AT] = ACTIONS(4982), + [sym_real_literal] = ACTIONS(4982), + [sym_integer_literal] = ACTIONS(4980), + [sym_hex_literal] = ACTIONS(4982), + [sym_bin_literal] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4982), + [sym_null_literal] = ACTIONS(4980), + [sym__backtick_identifier] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4982), + }, + [4016] = { + [sym_function_body] = STATE(3893), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_PLUS_EQ] = ACTIONS(4403), + [anon_sym_DASH_EQ] = ACTIONS(4403), + [anon_sym_STAR_EQ] = ACTIONS(4403), + [anon_sym_SLASH_EQ] = ACTIONS(4403), + [anon_sym_PERCENT_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4401), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [4017] = { + [sym_function_body] = STATE(3898), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4394), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_PLUS_EQ] = ACTIONS(4396), + [anon_sym_DASH_EQ] = ACTIONS(4396), + [anon_sym_STAR_EQ] = ACTIONS(4396), + [anon_sym_SLASH_EQ] = ACTIONS(4396), + [anon_sym_PERCENT_EQ] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [4018] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(6906), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4019] = { + [sym_class_body] = STATE(4080), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7177), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_EQ] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_PLUS_EQ] = ACTIONS(4425), + [anon_sym_DASH_EQ] = ACTIONS(4425), + [anon_sym_STAR_EQ] = ACTIONS(4425), + [anon_sym_SLASH_EQ] = ACTIONS(4425), + [anon_sym_PERCENT_EQ] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [4020] = { + [sym__alpha_identifier] = ACTIONS(5135), + [anon_sym_AT] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_DOT] = ACTIONS(5135), + [anon_sym_as] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(5135), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_where] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(5137), + [anon_sym_get] = ACTIONS(5135), + [anon_sym_set] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5135), + [anon_sym_DOT_DOT] = ACTIONS(5137), + [anon_sym_QMARK_COLON] = ACTIONS(5137), + [anon_sym_AMP_AMP] = ACTIONS(5137), + [anon_sym_PIPE_PIPE] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5135), + [anon_sym_COLON_COLON] = ACTIONS(5137), + [anon_sym_PLUS_EQ] = ACTIONS(5137), + [anon_sym_DASH_EQ] = ACTIONS(5137), + [anon_sym_STAR_EQ] = ACTIONS(5137), + [anon_sym_SLASH_EQ] = ACTIONS(5137), + [anon_sym_PERCENT_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5137), + [anon_sym_LT_EQ] = ACTIONS(5137), + [anon_sym_GT_EQ] = ACTIONS(5137), + [anon_sym_BANGin] = ACTIONS(5137), + [anon_sym_is] = ACTIONS(5135), + [anon_sym_BANGis] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_PERCENT] = ACTIONS(5135), + [anon_sym_as_QMARK] = ACTIONS(5137), + [anon_sym_PLUS_PLUS] = ACTIONS(5137), + [anon_sym_DASH_DASH] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5137), + [anon_sym_suspend] = ACTIONS(5135), + [anon_sym_sealed] = ACTIONS(5135), + [anon_sym_annotation] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5135), + [anon_sym_inner] = ACTIONS(5135), + [anon_sym_value] = ACTIONS(5135), + [anon_sym_override] = ACTIONS(5135), + [anon_sym_lateinit] = ACTIONS(5135), + [anon_sym_public] = ACTIONS(5135), + [anon_sym_private] = ACTIONS(5135), + [anon_sym_internal] = ACTIONS(5135), + [anon_sym_protected] = ACTIONS(5135), + [anon_sym_tailrec] = ACTIONS(5135), + [anon_sym_operator] = ACTIONS(5135), + [anon_sym_infix] = ACTIONS(5135), + [anon_sym_inline] = ACTIONS(5135), + [anon_sym_external] = ACTIONS(5135), + [sym_property_modifier] = ACTIONS(5135), + [anon_sym_abstract] = ACTIONS(5135), + [anon_sym_final] = ACTIONS(5135), + [anon_sym_open] = ACTIONS(5135), + [anon_sym_vararg] = ACTIONS(5135), + [anon_sym_noinline] = ACTIONS(5135), + [anon_sym_crossinline] = ACTIONS(5135), + [anon_sym_expect] = ACTIONS(5135), + [anon_sym_actual] = ACTIONS(5135), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5137), + [sym__automatic_semicolon] = ACTIONS(5137), + [sym_safe_nav] = ACTIONS(5137), + [sym_multiline_comment] = ACTIONS(3), + }, + [4021] = { + [sym_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7179), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_EQ] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_PLUS_EQ] = ACTIONS(4415), + [anon_sym_DASH_EQ] = ACTIONS(4415), + [anon_sym_STAR_EQ] = ACTIONS(4415), + [anon_sym_SLASH_EQ] = ACTIONS(4415), + [anon_sym_PERCENT_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4413), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [4022] = { + [sym__alpha_identifier] = ACTIONS(4386), + [anon_sym_AT] = ACTIONS(4388), + [anon_sym_LBRACK] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4386), + [anon_sym_as] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym_COMMA] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4386), + [anon_sym_GT] = ACTIONS(4386), + [anon_sym_where] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym_get] = ACTIONS(4386), + [anon_sym_set] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4386), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4386), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_QMARK_COLON] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_PIPE_PIPE] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_PLUS_EQ] = ACTIONS(4388), + [anon_sym_DASH_EQ] = ACTIONS(4388), + [anon_sym_STAR_EQ] = ACTIONS(4388), + [anon_sym_SLASH_EQ] = ACTIONS(4388), + [anon_sym_PERCENT_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4386), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ] = ACTIONS(4386), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4388), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4388), + [anon_sym_BANGin] = ACTIONS(4388), + [anon_sym_is] = ACTIONS(4386), + [anon_sym_BANGis] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_SLASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_as_QMARK] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4386), + [anon_sym_sealed] = ACTIONS(4386), + [anon_sym_annotation] = ACTIONS(4386), + [anon_sym_data] = ACTIONS(4386), + [anon_sym_inner] = ACTIONS(4386), + [anon_sym_value] = ACTIONS(4386), + [anon_sym_override] = ACTIONS(4386), + [anon_sym_lateinit] = ACTIONS(4386), + [anon_sym_public] = ACTIONS(4386), + [anon_sym_private] = ACTIONS(4386), + [anon_sym_internal] = ACTIONS(4386), + [anon_sym_protected] = ACTIONS(4386), + [anon_sym_tailrec] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_infix] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym_external] = ACTIONS(4386), + [sym_property_modifier] = ACTIONS(4386), + [anon_sym_abstract] = ACTIONS(4386), + [anon_sym_final] = ACTIONS(4386), + [anon_sym_open] = ACTIONS(4386), + [anon_sym_vararg] = ACTIONS(4386), + [anon_sym_noinline] = ACTIONS(4386), + [anon_sym_crossinline] = ACTIONS(4386), + [anon_sym_expect] = ACTIONS(4386), + [anon_sym_actual] = ACTIONS(4386), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4388), + [sym__automatic_semicolon] = ACTIONS(4388), + [sym_safe_nav] = ACTIONS(4388), + [sym_multiline_comment] = ACTIONS(3), + }, + [4023] = { + [sym__alpha_identifier] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_as] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_where] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1780), + [anon_sym_set] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [sym_label] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_QMARK_COLON] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PERCENT_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_BANGin] = ACTIONS(1782), + [anon_sym_is] = ACTIONS(1780), + [anon_sym_BANGis] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_as_QMARK] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(1780), + [anon_sym_sealed] = ACTIONS(1780), + [anon_sym_annotation] = ACTIONS(1780), + [anon_sym_data] = ACTIONS(1780), + [anon_sym_inner] = ACTIONS(1780), + [anon_sym_value] = ACTIONS(1780), + [anon_sym_override] = ACTIONS(1780), + [anon_sym_lateinit] = ACTIONS(1780), + [anon_sym_public] = ACTIONS(1780), + [anon_sym_private] = ACTIONS(1780), + [anon_sym_internal] = ACTIONS(1780), + [anon_sym_protected] = ACTIONS(1780), + [anon_sym_tailrec] = ACTIONS(1780), + [anon_sym_operator] = ACTIONS(1780), + [anon_sym_infix] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [anon_sym_external] = ACTIONS(1780), + [sym_property_modifier] = ACTIONS(1780), + [anon_sym_abstract] = ACTIONS(1780), + [anon_sym_final] = ACTIONS(1780), + [anon_sym_open] = ACTIONS(1780), + [anon_sym_vararg] = ACTIONS(1780), + [anon_sym_noinline] = ACTIONS(1780), + [anon_sym_crossinline] = ACTIONS(1780), + [anon_sym_expect] = ACTIONS(1780), + [anon_sym_actual] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym_safe_nav] = ACTIONS(1782), + [sym_multiline_comment] = ACTIONS(3), + }, + [4024] = { + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_as] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_COMMA] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_where] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(205), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [sym_label] = ACTIONS(205), + [anon_sym_in] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(205), + [anon_sym_QMARK_COLON] = ACTIONS(205), + [anon_sym_AMP_AMP] = ACTIONS(205), + [anon_sym_PIPE_PIPE] = ACTIONS(205), + [anon_sym_else] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(205), + [anon_sym_PLUS_EQ] = ACTIONS(205), + [anon_sym_DASH_EQ] = ACTIONS(205), + [anon_sym_STAR_EQ] = ACTIONS(205), + [anon_sym_SLASH_EQ] = ACTIONS(205), + [anon_sym_PERCENT_EQ] = ACTIONS(205), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(205), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(205), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(205), + [anon_sym_BANGin] = ACTIONS(205), + [anon_sym_is] = ACTIONS(207), + [anon_sym_BANGis] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(207), + [anon_sym_as_QMARK] = ACTIONS(205), + [anon_sym_PLUS_PLUS] = ACTIONS(205), + [anon_sym_DASH_DASH] = ACTIONS(205), + [anon_sym_BANG_BANG] = ACTIONS(205), + [anon_sym_suspend] = ACTIONS(207), + [anon_sym_sealed] = ACTIONS(207), + [anon_sym_annotation] = ACTIONS(207), + [anon_sym_data] = ACTIONS(207), + [anon_sym_inner] = ACTIONS(207), + [anon_sym_value] = ACTIONS(207), + [anon_sym_override] = ACTIONS(207), + [anon_sym_lateinit] = ACTIONS(207), + [anon_sym_public] = ACTIONS(207), + [anon_sym_private] = ACTIONS(207), + [anon_sym_internal] = ACTIONS(207), + [anon_sym_protected] = ACTIONS(207), + [anon_sym_tailrec] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(207), + [anon_sym_infix] = ACTIONS(207), + [anon_sym_inline] = ACTIONS(207), + [anon_sym_external] = ACTIONS(207), + [sym_property_modifier] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_open] = ACTIONS(207), + [anon_sym_vararg] = ACTIONS(207), + [anon_sym_noinline] = ACTIONS(207), + [anon_sym_crossinline] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(207), + [anon_sym_actual] = ACTIONS(207), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(205), + [sym__automatic_semicolon] = ACTIONS(205), + [sym_safe_nav] = ACTIONS(205), + [sym_multiline_comment] = ACTIONS(3), + }, + [4025] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_typealias] = ACTIONS(4968), + [anon_sym_class] = ACTIONS(4968), + [anon_sym_interface] = ACTIONS(4968), + [anon_sym_enum] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_val] = ACTIONS(4968), + [anon_sym_var] = ACTIONS(4968), + [anon_sym_object] = ACTIONS(4968), + [anon_sym_fun] = ACTIONS(4968), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_this] = ACTIONS(4968), + [anon_sym_super] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4970), + [sym_label] = ACTIONS(4968), + [anon_sym_for] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_do] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_when] = ACTIONS(4968), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_throw] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4970), + [anon_sym_continue_AT] = ACTIONS(4970), + [anon_sym_break_AT] = ACTIONS(4970), + [anon_sym_this_AT] = ACTIONS(4970), + [anon_sym_super_AT] = ACTIONS(4970), + [sym_real_literal] = ACTIONS(4970), + [sym_integer_literal] = ACTIONS(4968), + [sym_hex_literal] = ACTIONS(4970), + [sym_bin_literal] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_SQUOTE] = ACTIONS(4970), + [sym_null_literal] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4970), + }, + [4026] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_suspend] = ACTIONS(5143), + [anon_sym_sealed] = ACTIONS(5143), + [anon_sym_annotation] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_override] = ACTIONS(5143), + [anon_sym_lateinit] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_internal] = ACTIONS(5143), + [anon_sym_protected] = ACTIONS(5143), + [anon_sym_tailrec] = ACTIONS(5143), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_infix] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym_external] = ACTIONS(5143), + [sym_property_modifier] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_open] = ACTIONS(5143), + [anon_sym_vararg] = ACTIONS(5143), + [anon_sym_noinline] = ACTIONS(5143), + [anon_sym_crossinline] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5145), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + }, + [4027] = { + [sym__alpha_identifier] = ACTIONS(7181), + [anon_sym_AT] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_typealias] = ACTIONS(7181), + [anon_sym_class] = ACTIONS(7181), + [anon_sym_interface] = ACTIONS(7181), + [anon_sym_enum] = ACTIONS(7181), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LPAREN] = ACTIONS(7183), + [anon_sym_val] = ACTIONS(7181), + [anon_sym_var] = ACTIONS(7181), + [anon_sym_object] = ACTIONS(7181), + [anon_sym_fun] = ACTIONS(7181), + [anon_sym_get] = ACTIONS(7181), + [anon_sym_set] = ACTIONS(7181), + [anon_sym_this] = ACTIONS(7181), + [anon_sym_super] = ACTIONS(7181), + [anon_sym_STAR] = ACTIONS(7183), + [sym_label] = ACTIONS(7181), + [anon_sym_for] = ACTIONS(7181), + [anon_sym_while] = ACTIONS(7181), + [anon_sym_do] = ACTIONS(7181), + [anon_sym_if] = ACTIONS(7181), + [anon_sym_when] = ACTIONS(7181), + [anon_sym_try] = ACTIONS(7181), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_return] = ACTIONS(7181), + [anon_sym_continue] = ACTIONS(7181), + [anon_sym_break] = ACTIONS(7181), + [anon_sym_COLON_COLON] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7181), + [anon_sym_DASH] = ACTIONS(7181), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_BANG] = ACTIONS(7183), + [anon_sym_suspend] = ACTIONS(7181), + [anon_sym_sealed] = ACTIONS(7181), + [anon_sym_annotation] = ACTIONS(7181), + [anon_sym_data] = ACTIONS(7181), + [anon_sym_inner] = ACTIONS(7181), + [anon_sym_value] = ACTIONS(7181), + [anon_sym_override] = ACTIONS(7181), + [anon_sym_lateinit] = ACTIONS(7181), + [anon_sym_public] = ACTIONS(7181), + [anon_sym_private] = ACTIONS(7181), + [anon_sym_internal] = ACTIONS(7181), + [anon_sym_protected] = ACTIONS(7181), + [anon_sym_tailrec] = ACTIONS(7181), + [anon_sym_operator] = ACTIONS(7181), + [anon_sym_infix] = ACTIONS(7181), + [anon_sym_inline] = ACTIONS(7181), + [anon_sym_external] = ACTIONS(7181), + [sym_property_modifier] = ACTIONS(7181), + [anon_sym_abstract] = ACTIONS(7181), + [anon_sym_final] = ACTIONS(7181), + [anon_sym_open] = ACTIONS(7181), + [anon_sym_vararg] = ACTIONS(7181), + [anon_sym_noinline] = ACTIONS(7181), + [anon_sym_crossinline] = ACTIONS(7181), + [anon_sym_expect] = ACTIONS(7181), + [anon_sym_actual] = ACTIONS(7181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7183), + [anon_sym_continue_AT] = ACTIONS(7183), + [anon_sym_break_AT] = ACTIONS(7183), + [anon_sym_this_AT] = ACTIONS(7183), + [anon_sym_super_AT] = ACTIONS(7183), + [sym_real_literal] = ACTIONS(7183), + [sym_integer_literal] = ACTIONS(7181), + [sym_hex_literal] = ACTIONS(7183), + [sym_bin_literal] = ACTIONS(7183), + [anon_sym_true] = ACTIONS(7181), + [anon_sym_false] = ACTIONS(7181), + [anon_sym_SQUOTE] = ACTIONS(7183), + [sym_null_literal] = ACTIONS(7181), + [sym__backtick_identifier] = ACTIONS(7183), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7183), + }, + [4028] = { + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_PLUS_EQ] = ACTIONS(4084), + [anon_sym_DASH_EQ] = ACTIONS(4084), + [anon_sym_STAR_EQ] = ACTIONS(4084), + [anon_sym_SLASH_EQ] = ACTIONS(4084), + [anon_sym_PERCENT_EQ] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4029] = { + [sym__alpha_identifier] = ACTIONS(4419), + [anon_sym_AT] = ACTIONS(4421), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_as] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym_COMMA] = ACTIONS(4421), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym_get] = ACTIONS(4419), + [anon_sym_set] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4419), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_QMARK_COLON] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_PIPE_PIPE] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), + [anon_sym_LT_EQ] = ACTIONS(4421), + [anon_sym_GT_EQ] = ACTIONS(4421), + [anon_sym_BANGin] = ACTIONS(4421), + [anon_sym_is] = ACTIONS(4419), + [anon_sym_BANGis] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_as_QMARK] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4421), + [anon_sym_suspend] = ACTIONS(4419), + [anon_sym_sealed] = ACTIONS(4419), + [anon_sym_annotation] = ACTIONS(4419), + [anon_sym_data] = ACTIONS(4419), + [anon_sym_inner] = ACTIONS(4419), + [anon_sym_value] = ACTIONS(4419), + [anon_sym_override] = ACTIONS(4419), + [anon_sym_lateinit] = ACTIONS(4419), + [anon_sym_public] = ACTIONS(4419), + [anon_sym_private] = ACTIONS(4419), + [anon_sym_internal] = ACTIONS(4419), + [anon_sym_protected] = ACTIONS(4419), + [anon_sym_tailrec] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_infix] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym_external] = ACTIONS(4419), + [sym_property_modifier] = ACTIONS(4419), + [anon_sym_abstract] = ACTIONS(4419), + [anon_sym_final] = ACTIONS(4419), + [anon_sym_open] = ACTIONS(4419), + [anon_sym_vararg] = ACTIONS(4419), + [anon_sym_noinline] = ACTIONS(4419), + [anon_sym_crossinline] = ACTIONS(4419), + [anon_sym_expect] = ACTIONS(4419), + [anon_sym_actual] = ACTIONS(4419), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4421), + [sym__automatic_semicolon] = ACTIONS(4421), + [sym_safe_nav] = ACTIONS(4421), + [sym_multiline_comment] = ACTIONS(3), + }, + [4030] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [4031] = { + [sym__alpha_identifier] = ACTIONS(4582), + [anon_sym_AT] = ACTIONS(4584), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4582), + [anon_sym_as] = ACTIONS(4582), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_RBRACE] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(4584), + [anon_sym_COMMA] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4582), + [anon_sym_GT] = ACTIONS(4582), + [anon_sym_where] = ACTIONS(4582), + [anon_sym_SEMI] = ACTIONS(4584), + [anon_sym_get] = ACTIONS(4582), + [anon_sym_set] = ACTIONS(4582), + [anon_sym_STAR] = ACTIONS(4582), + [sym_label] = ACTIONS(4584), + [anon_sym_in] = ACTIONS(4582), + [anon_sym_DOT_DOT] = ACTIONS(4584), + [anon_sym_QMARK_COLON] = ACTIONS(4584), + [anon_sym_AMP_AMP] = ACTIONS(4584), + [anon_sym_PIPE_PIPE] = ACTIONS(4584), + [anon_sym_else] = ACTIONS(4582), + [anon_sym_COLON_COLON] = ACTIONS(4584), + [anon_sym_PLUS_EQ] = ACTIONS(4584), + [anon_sym_DASH_EQ] = ACTIONS(4584), + [anon_sym_STAR_EQ] = ACTIONS(4584), + [anon_sym_SLASH_EQ] = ACTIONS(4584), + [anon_sym_PERCENT_EQ] = ACTIONS(4584), + [anon_sym_BANG_EQ] = ACTIONS(4582), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4584), + [anon_sym_EQ_EQ] = ACTIONS(4582), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4584), + [anon_sym_LT_EQ] = ACTIONS(4584), + [anon_sym_GT_EQ] = ACTIONS(4584), + [anon_sym_BANGin] = ACTIONS(4584), + [anon_sym_is] = ACTIONS(4582), + [anon_sym_BANGis] = ACTIONS(4584), + [anon_sym_PLUS] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [anon_sym_SLASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_as_QMARK] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_BANG_BANG] = ACTIONS(4584), + [anon_sym_suspend] = ACTIONS(4582), + [anon_sym_sealed] = ACTIONS(4582), + [anon_sym_annotation] = ACTIONS(4582), + [anon_sym_data] = ACTIONS(4582), + [anon_sym_inner] = ACTIONS(4582), + [anon_sym_value] = ACTIONS(4582), + [anon_sym_override] = ACTIONS(4582), + [anon_sym_lateinit] = ACTIONS(4582), + [anon_sym_public] = ACTIONS(4582), + [anon_sym_private] = ACTIONS(4582), + [anon_sym_internal] = ACTIONS(4582), + [anon_sym_protected] = ACTIONS(4582), + [anon_sym_tailrec] = ACTIONS(4582), + [anon_sym_operator] = ACTIONS(4582), + [anon_sym_infix] = ACTIONS(4582), + [anon_sym_inline] = ACTIONS(4582), + [anon_sym_external] = ACTIONS(4582), + [sym_property_modifier] = ACTIONS(4582), + [anon_sym_abstract] = ACTIONS(4582), + [anon_sym_final] = ACTIONS(4582), + [anon_sym_open] = ACTIONS(4582), + [anon_sym_vararg] = ACTIONS(4582), + [anon_sym_noinline] = ACTIONS(4582), + [anon_sym_crossinline] = ACTIONS(4582), + [anon_sym_expect] = ACTIONS(4582), + [anon_sym_actual] = ACTIONS(4582), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4584), + [sym__automatic_semicolon] = ACTIONS(4584), + [sym_safe_nav] = ACTIONS(4584), + [sym_multiline_comment] = ACTIONS(3), + }, + [4032] = { + [sym__alpha_identifier] = ACTIONS(5193), + [anon_sym_AT] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_DOT] = ACTIONS(5193), + [anon_sym_as] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(5193), + [anon_sym_LBRACE] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_where] = ACTIONS(5193), + [anon_sym_SEMI] = ACTIONS(5195), + [anon_sym_get] = ACTIONS(5193), + [anon_sym_set] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [sym_label] = ACTIONS(5195), + [anon_sym_in] = ACTIONS(5193), + [anon_sym_DOT_DOT] = ACTIONS(5195), + [anon_sym_QMARK_COLON] = ACTIONS(5195), + [anon_sym_AMP_AMP] = ACTIONS(5195), + [anon_sym_PIPE_PIPE] = ACTIONS(5195), + [anon_sym_else] = ACTIONS(5193), + [anon_sym_COLON_COLON] = ACTIONS(5195), + [anon_sym_PLUS_EQ] = ACTIONS(5195), + [anon_sym_DASH_EQ] = ACTIONS(5195), + [anon_sym_STAR_EQ] = ACTIONS(5195), + [anon_sym_SLASH_EQ] = ACTIONS(5195), + [anon_sym_PERCENT_EQ] = ACTIONS(5195), + [anon_sym_BANG_EQ] = ACTIONS(5193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), + [anon_sym_EQ_EQ] = ACTIONS(5193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), + [anon_sym_LT_EQ] = ACTIONS(5195), + [anon_sym_GT_EQ] = ACTIONS(5195), + [anon_sym_BANGin] = ACTIONS(5195), + [anon_sym_is] = ACTIONS(5193), + [anon_sym_BANGis] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_PERCENT] = ACTIONS(5193), + [anon_sym_as_QMARK] = ACTIONS(5195), + [anon_sym_PLUS_PLUS] = ACTIONS(5195), + [anon_sym_DASH_DASH] = ACTIONS(5195), + [anon_sym_BANG_BANG] = ACTIONS(5195), + [anon_sym_suspend] = ACTIONS(5193), + [anon_sym_sealed] = ACTIONS(5193), + [anon_sym_annotation] = ACTIONS(5193), + [anon_sym_data] = ACTIONS(5193), + [anon_sym_inner] = ACTIONS(5193), + [anon_sym_value] = ACTIONS(5193), + [anon_sym_override] = ACTIONS(5193), + [anon_sym_lateinit] = ACTIONS(5193), + [anon_sym_public] = ACTIONS(5193), + [anon_sym_private] = ACTIONS(5193), + [anon_sym_internal] = ACTIONS(5193), + [anon_sym_protected] = ACTIONS(5193), + [anon_sym_tailrec] = ACTIONS(5193), + [anon_sym_operator] = ACTIONS(5193), + [anon_sym_infix] = ACTIONS(5193), + [anon_sym_inline] = ACTIONS(5193), + [anon_sym_external] = ACTIONS(5193), + [sym_property_modifier] = ACTIONS(5193), + [anon_sym_abstract] = ACTIONS(5193), + [anon_sym_final] = ACTIONS(5193), + [anon_sym_open] = ACTIONS(5193), + [anon_sym_vararg] = ACTIONS(5193), + [anon_sym_noinline] = ACTIONS(5193), + [anon_sym_crossinline] = ACTIONS(5193), + [anon_sym_expect] = ACTIONS(5193), + [anon_sym_actual] = ACTIONS(5193), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5195), + [sym__automatic_semicolon] = ACTIONS(5195), + [sym_safe_nav] = ACTIONS(5195), + [sym_multiline_comment] = ACTIONS(3), + }, + [4033] = { + [sym__alpha_identifier] = ACTIONS(5197), + [anon_sym_AT] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_DOT] = ACTIONS(5197), + [anon_sym_as] = ACTIONS(5197), + [anon_sym_EQ] = ACTIONS(5197), + [anon_sym_LBRACE] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_where] = ACTIONS(5197), + [anon_sym_SEMI] = ACTIONS(5199), + [anon_sym_get] = ACTIONS(5197), + [anon_sym_set] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [sym_label] = ACTIONS(5199), + [anon_sym_in] = ACTIONS(5197), + [anon_sym_DOT_DOT] = ACTIONS(5199), + [anon_sym_QMARK_COLON] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5199), + [anon_sym_PIPE_PIPE] = ACTIONS(5199), + [anon_sym_else] = ACTIONS(5197), + [anon_sym_COLON_COLON] = ACTIONS(5199), + [anon_sym_PLUS_EQ] = ACTIONS(5199), + [anon_sym_DASH_EQ] = ACTIONS(5199), + [anon_sym_STAR_EQ] = ACTIONS(5199), + [anon_sym_SLASH_EQ] = ACTIONS(5199), + [anon_sym_PERCENT_EQ] = ACTIONS(5199), + [anon_sym_BANG_EQ] = ACTIONS(5197), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), + [anon_sym_EQ_EQ] = ACTIONS(5197), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), + [anon_sym_LT_EQ] = ACTIONS(5199), + [anon_sym_GT_EQ] = ACTIONS(5199), + [anon_sym_BANGin] = ACTIONS(5199), + [anon_sym_is] = ACTIONS(5197), + [anon_sym_BANGis] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_PERCENT] = ACTIONS(5197), + [anon_sym_as_QMARK] = ACTIONS(5199), + [anon_sym_PLUS_PLUS] = ACTIONS(5199), + [anon_sym_DASH_DASH] = ACTIONS(5199), + [anon_sym_BANG_BANG] = ACTIONS(5199), + [anon_sym_suspend] = ACTIONS(5197), + [anon_sym_sealed] = ACTIONS(5197), + [anon_sym_annotation] = ACTIONS(5197), + [anon_sym_data] = ACTIONS(5197), + [anon_sym_inner] = ACTIONS(5197), + [anon_sym_value] = ACTIONS(5197), + [anon_sym_override] = ACTIONS(5197), + [anon_sym_lateinit] = ACTIONS(5197), + [anon_sym_public] = ACTIONS(5197), + [anon_sym_private] = ACTIONS(5197), + [anon_sym_internal] = ACTIONS(5197), + [anon_sym_protected] = ACTIONS(5197), + [anon_sym_tailrec] = ACTIONS(5197), + [anon_sym_operator] = ACTIONS(5197), + [anon_sym_infix] = ACTIONS(5197), + [anon_sym_inline] = ACTIONS(5197), + [anon_sym_external] = ACTIONS(5197), + [sym_property_modifier] = ACTIONS(5197), + [anon_sym_abstract] = ACTIONS(5197), + [anon_sym_final] = ACTIONS(5197), + [anon_sym_open] = ACTIONS(5197), + [anon_sym_vararg] = ACTIONS(5197), + [anon_sym_noinline] = ACTIONS(5197), + [anon_sym_crossinline] = ACTIONS(5197), + [anon_sym_expect] = ACTIONS(5197), + [anon_sym_actual] = ACTIONS(5197), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5199), + [sym__automatic_semicolon] = ACTIONS(5199), + [sym_safe_nav] = ACTIONS(5199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4034] = { + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_PLUS_EQ] = ACTIONS(4228), + [anon_sym_DASH_EQ] = ACTIONS(4228), + [anon_sym_STAR_EQ] = ACTIONS(4228), + [anon_sym_SLASH_EQ] = ACTIONS(4228), + [anon_sym_PERCENT_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4226), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [4035] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7185), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4036] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7187), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4037] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4038] = { + [sym__alpha_identifier] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_where] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1774), + [anon_sym_set] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [sym_label] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_QMARK_COLON] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_BANGin] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1774), + [anon_sym_BANGis] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_as_QMARK] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1776), + [anon_sym_BANG_BANG] = ACTIONS(1776), + [anon_sym_suspend] = ACTIONS(1774), + [anon_sym_sealed] = ACTIONS(1774), + [anon_sym_annotation] = ACTIONS(1774), + [anon_sym_data] = ACTIONS(1774), + [anon_sym_inner] = ACTIONS(1774), + [anon_sym_value] = ACTIONS(1774), + [anon_sym_override] = ACTIONS(1774), + [anon_sym_lateinit] = ACTIONS(1774), + [anon_sym_public] = ACTIONS(1774), + [anon_sym_private] = ACTIONS(1774), + [anon_sym_internal] = ACTIONS(1774), + [anon_sym_protected] = ACTIONS(1774), + [anon_sym_tailrec] = ACTIONS(1774), + [anon_sym_operator] = ACTIONS(1774), + [anon_sym_infix] = ACTIONS(1774), + [anon_sym_inline] = ACTIONS(1774), + [anon_sym_external] = ACTIONS(1774), + [sym_property_modifier] = ACTIONS(1774), + [anon_sym_abstract] = ACTIONS(1774), + [anon_sym_final] = ACTIONS(1774), + [anon_sym_open] = ACTIONS(1774), + [anon_sym_vararg] = ACTIONS(1774), + [anon_sym_noinline] = ACTIONS(1774), + [anon_sym_crossinline] = ACTIONS(1774), + [anon_sym_expect] = ACTIONS(1774), + [anon_sym_actual] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1776), + [sym__automatic_semicolon] = ACTIONS(1776), + [sym_safe_nav] = ACTIONS(1776), + [sym_multiline_comment] = ACTIONS(3), + }, + [4039] = { + [sym__alpha_identifier] = ACTIONS(7191), + [anon_sym_AT] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_typealias] = ACTIONS(7191), + [anon_sym_class] = ACTIONS(7191), + [anon_sym_interface] = ACTIONS(7191), + [anon_sym_enum] = ACTIONS(7191), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LPAREN] = ACTIONS(7193), + [anon_sym_val] = ACTIONS(7191), + [anon_sym_var] = ACTIONS(7191), + [anon_sym_object] = ACTIONS(7191), + [anon_sym_fun] = ACTIONS(7191), + [anon_sym_get] = ACTIONS(7191), + [anon_sym_set] = ACTIONS(7191), + [anon_sym_this] = ACTIONS(7191), + [anon_sym_super] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7193), + [sym_label] = ACTIONS(7191), + [anon_sym_for] = ACTIONS(7191), + [anon_sym_while] = ACTIONS(7191), + [anon_sym_do] = ACTIONS(7191), + [anon_sym_if] = ACTIONS(7191), + [anon_sym_when] = ACTIONS(7191), + [anon_sym_try] = ACTIONS(7191), + [anon_sym_throw] = ACTIONS(7191), + [anon_sym_return] = ACTIONS(7191), + [anon_sym_continue] = ACTIONS(7191), + [anon_sym_break] = ACTIONS(7191), + [anon_sym_COLON_COLON] = ACTIONS(7193), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_BANG] = ACTIONS(7193), + [anon_sym_suspend] = ACTIONS(7191), + [anon_sym_sealed] = ACTIONS(7191), + [anon_sym_annotation] = ACTIONS(7191), + [anon_sym_data] = ACTIONS(7191), + [anon_sym_inner] = ACTIONS(7191), + [anon_sym_value] = ACTIONS(7191), + [anon_sym_override] = ACTIONS(7191), + [anon_sym_lateinit] = ACTIONS(7191), + [anon_sym_public] = ACTIONS(7191), + [anon_sym_private] = ACTIONS(7191), + [anon_sym_internal] = ACTIONS(7191), + [anon_sym_protected] = ACTIONS(7191), + [anon_sym_tailrec] = ACTIONS(7191), + [anon_sym_operator] = ACTIONS(7191), + [anon_sym_infix] = ACTIONS(7191), + [anon_sym_inline] = ACTIONS(7191), + [anon_sym_external] = ACTIONS(7191), + [sym_property_modifier] = ACTIONS(7191), + [anon_sym_abstract] = ACTIONS(7191), + [anon_sym_final] = ACTIONS(7191), + [anon_sym_open] = ACTIONS(7191), + [anon_sym_vararg] = ACTIONS(7191), + [anon_sym_noinline] = ACTIONS(7191), + [anon_sym_crossinline] = ACTIONS(7191), + [anon_sym_expect] = ACTIONS(7191), + [anon_sym_actual] = ACTIONS(7191), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7193), + [anon_sym_continue_AT] = ACTIONS(7193), + [anon_sym_break_AT] = ACTIONS(7193), + [anon_sym_this_AT] = ACTIONS(7193), + [anon_sym_super_AT] = ACTIONS(7193), + [sym_real_literal] = ACTIONS(7193), + [sym_integer_literal] = ACTIONS(7191), + [sym_hex_literal] = ACTIONS(7193), + [sym_bin_literal] = ACTIONS(7193), + [anon_sym_true] = ACTIONS(7191), + [anon_sym_false] = ACTIONS(7191), + [anon_sym_SQUOTE] = ACTIONS(7193), + [sym_null_literal] = ACTIONS(7191), + [sym__backtick_identifier] = ACTIONS(7193), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7193), + }, + [4040] = { + [sym__alpha_identifier] = ACTIONS(5036), + [anon_sym_AT] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_as] = ACTIONS(5036), + [anon_sym_EQ] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_COMMA] = ACTIONS(5038), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_where] = ACTIONS(5036), + [anon_sym_SEMI] = ACTIONS(5038), + [anon_sym_get] = ACTIONS(5036), + [anon_sym_set] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [sym_label] = ACTIONS(5038), + [anon_sym_in] = ACTIONS(5036), + [anon_sym_DOT_DOT] = ACTIONS(5038), + [anon_sym_QMARK_COLON] = ACTIONS(5038), + [anon_sym_AMP_AMP] = ACTIONS(5038), + [anon_sym_PIPE_PIPE] = ACTIONS(5038), + [anon_sym_else] = ACTIONS(5036), + [anon_sym_COLON_COLON] = ACTIONS(5038), + [anon_sym_PLUS_EQ] = ACTIONS(5038), + [anon_sym_DASH_EQ] = ACTIONS(5038), + [anon_sym_STAR_EQ] = ACTIONS(5038), + [anon_sym_SLASH_EQ] = ACTIONS(5038), + [anon_sym_PERCENT_EQ] = ACTIONS(5038), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5038), + [anon_sym_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5038), + [anon_sym_LT_EQ] = ACTIONS(5038), + [anon_sym_GT_EQ] = ACTIONS(5038), + [anon_sym_BANGin] = ACTIONS(5038), + [anon_sym_is] = ACTIONS(5036), + [anon_sym_BANGis] = ACTIONS(5038), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_as_QMARK] = ACTIONS(5038), + [anon_sym_PLUS_PLUS] = ACTIONS(5038), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_BANG_BANG] = ACTIONS(5038), + [anon_sym_suspend] = ACTIONS(5036), + [anon_sym_sealed] = ACTIONS(5036), + [anon_sym_annotation] = ACTIONS(5036), + [anon_sym_data] = ACTIONS(5036), + [anon_sym_inner] = ACTIONS(5036), + [anon_sym_value] = ACTIONS(5036), + [anon_sym_override] = ACTIONS(5036), + [anon_sym_lateinit] = ACTIONS(5036), + [anon_sym_public] = ACTIONS(5036), + [anon_sym_private] = ACTIONS(5036), + [anon_sym_internal] = ACTIONS(5036), + [anon_sym_protected] = ACTIONS(5036), + [anon_sym_tailrec] = ACTIONS(5036), + [anon_sym_operator] = ACTIONS(5036), + [anon_sym_infix] = ACTIONS(5036), + [anon_sym_inline] = ACTIONS(5036), + [anon_sym_external] = ACTIONS(5036), + [sym_property_modifier] = ACTIONS(5036), + [anon_sym_abstract] = ACTIONS(5036), + [anon_sym_final] = ACTIONS(5036), + [anon_sym_open] = ACTIONS(5036), + [anon_sym_vararg] = ACTIONS(5036), + [anon_sym_noinline] = ACTIONS(5036), + [anon_sym_crossinline] = ACTIONS(5036), + [anon_sym_expect] = ACTIONS(5036), + [anon_sym_actual] = ACTIONS(5036), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5038), + [sym__automatic_semicolon] = ACTIONS(5038), + [sym_safe_nav] = ACTIONS(5038), + [sym_multiline_comment] = ACTIONS(3), + }, + [4041] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7195), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4042] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4970), + [sym__automatic_semicolon] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + }, + [4043] = { + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_PLUS_EQ] = ACTIONS(4142), + [anon_sym_DASH_EQ] = ACTIONS(4142), + [anon_sym_STAR_EQ] = ACTIONS(4142), + [anon_sym_SLASH_EQ] = ACTIONS(4142), + [anon_sym_PERCENT_EQ] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4140), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4044] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4045] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4046] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4047] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4048] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_suspend] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_lateinit] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_tailrec] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4972), + [anon_sym_infix] = ACTIONS(4972), + [anon_sym_inline] = ACTIONS(4972), + [anon_sym_external] = ACTIONS(4972), + [sym_property_modifier] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_final] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_vararg] = ACTIONS(4972), + [anon_sym_noinline] = ACTIONS(4972), + [anon_sym_crossinline] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4974), + [sym__automatic_semicolon] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + }, + [4049] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4050] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1807), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1793), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1792), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7143), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7147), + [anon_sym_AMP_AMP] = ACTIONS(7157), + [anon_sym_PIPE_PIPE] = ACTIONS(7163), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7139), + [anon_sym_DASH] = ACTIONS(7139), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4051] = { + [sym__alpha_identifier] = ACTIONS(7197), + [anon_sym_AT] = ACTIONS(7199), + [anon_sym_LBRACK] = ACTIONS(7199), + [anon_sym_typealias] = ACTIONS(7197), + [anon_sym_class] = ACTIONS(7197), + [anon_sym_interface] = ACTIONS(7197), + [anon_sym_enum] = ACTIONS(7197), + [anon_sym_LBRACE] = ACTIONS(7199), + [anon_sym_LPAREN] = ACTIONS(7199), + [anon_sym_val] = ACTIONS(7197), + [anon_sym_var] = ACTIONS(7197), + [anon_sym_object] = ACTIONS(7197), + [anon_sym_fun] = ACTIONS(7197), + [anon_sym_get] = ACTIONS(7197), + [anon_sym_set] = ACTIONS(7197), + [anon_sym_this] = ACTIONS(7197), + [anon_sym_super] = ACTIONS(7197), + [anon_sym_STAR] = ACTIONS(7199), + [sym_label] = ACTIONS(7197), + [anon_sym_for] = ACTIONS(7197), + [anon_sym_while] = ACTIONS(7197), + [anon_sym_do] = ACTIONS(7197), + [anon_sym_if] = ACTIONS(7197), + [anon_sym_when] = ACTIONS(7197), + [anon_sym_try] = ACTIONS(7197), + [anon_sym_throw] = ACTIONS(7197), + [anon_sym_return] = ACTIONS(7197), + [anon_sym_continue] = ACTIONS(7197), + [anon_sym_break] = ACTIONS(7197), + [anon_sym_COLON_COLON] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7199), + [anon_sym_DASH_DASH] = ACTIONS(7199), + [anon_sym_BANG] = ACTIONS(7199), + [anon_sym_suspend] = ACTIONS(7197), + [anon_sym_sealed] = ACTIONS(7197), + [anon_sym_annotation] = ACTIONS(7197), + [anon_sym_data] = ACTIONS(7197), + [anon_sym_inner] = ACTIONS(7197), + [anon_sym_value] = ACTIONS(7197), + [anon_sym_override] = ACTIONS(7197), + [anon_sym_lateinit] = ACTIONS(7197), + [anon_sym_public] = ACTIONS(7197), + [anon_sym_private] = ACTIONS(7197), + [anon_sym_internal] = ACTIONS(7197), + [anon_sym_protected] = ACTIONS(7197), + [anon_sym_tailrec] = ACTIONS(7197), + [anon_sym_operator] = ACTIONS(7197), + [anon_sym_infix] = ACTIONS(7197), + [anon_sym_inline] = ACTIONS(7197), + [anon_sym_external] = ACTIONS(7197), + [sym_property_modifier] = ACTIONS(7197), + [anon_sym_abstract] = ACTIONS(7197), + [anon_sym_final] = ACTIONS(7197), + [anon_sym_open] = ACTIONS(7197), + [anon_sym_vararg] = ACTIONS(7197), + [anon_sym_noinline] = ACTIONS(7197), + [anon_sym_crossinline] = ACTIONS(7197), + [anon_sym_expect] = ACTIONS(7197), + [anon_sym_actual] = ACTIONS(7197), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7199), + [anon_sym_continue_AT] = ACTIONS(7199), + [anon_sym_break_AT] = ACTIONS(7199), + [anon_sym_this_AT] = ACTIONS(7199), + [anon_sym_super_AT] = ACTIONS(7199), + [sym_real_literal] = ACTIONS(7199), + [sym_integer_literal] = ACTIONS(7197), + [sym_hex_literal] = ACTIONS(7199), + [sym_bin_literal] = ACTIONS(7199), + [anon_sym_true] = ACTIONS(7197), + [anon_sym_false] = ACTIONS(7197), + [anon_sym_SQUOTE] = ACTIONS(7199), + [sym_null_literal] = ACTIONS(7197), + [sym__backtick_identifier] = ACTIONS(7199), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7199), + }, + [4052] = { + [sym__alpha_identifier] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(4365), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_as] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym_COMMA] = ACTIONS(4365), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [anon_sym_where] = ACTIONS(4363), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4363), + [anon_sym_set] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [sym_label] = ACTIONS(4365), + [anon_sym_in] = ACTIONS(4363), + [anon_sym_DOT_DOT] = ACTIONS(4365), + [anon_sym_QMARK_COLON] = ACTIONS(4365), + [anon_sym_AMP_AMP] = ACTIONS(4365), + [anon_sym_PIPE_PIPE] = ACTIONS(4365), + [anon_sym_else] = ACTIONS(4363), + [anon_sym_COLON_COLON] = ACTIONS(4365), + [anon_sym_PLUS_EQ] = ACTIONS(4365), + [anon_sym_DASH_EQ] = ACTIONS(4365), + [anon_sym_STAR_EQ] = ACTIONS(4365), + [anon_sym_SLASH_EQ] = ACTIONS(4365), + [anon_sym_PERCENT_EQ] = ACTIONS(4365), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4365), + [anon_sym_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4365), + [anon_sym_LT_EQ] = ACTIONS(4365), + [anon_sym_GT_EQ] = ACTIONS(4365), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(4363), + [anon_sym_BANGis] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_as_QMARK] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_BANG_BANG] = ACTIONS(4365), + [anon_sym_suspend] = ACTIONS(4363), + [anon_sym_sealed] = ACTIONS(4363), + [anon_sym_annotation] = ACTIONS(4363), + [anon_sym_data] = ACTIONS(4363), + [anon_sym_inner] = ACTIONS(4363), + [anon_sym_value] = ACTIONS(4363), + [anon_sym_override] = ACTIONS(4363), + [anon_sym_lateinit] = ACTIONS(4363), + [anon_sym_public] = ACTIONS(4363), + [anon_sym_private] = ACTIONS(4363), + [anon_sym_internal] = ACTIONS(4363), + [anon_sym_protected] = ACTIONS(4363), + [anon_sym_tailrec] = ACTIONS(4363), + [anon_sym_operator] = ACTIONS(4363), + [anon_sym_infix] = ACTIONS(4363), + [anon_sym_inline] = ACTIONS(4363), + [anon_sym_external] = ACTIONS(4363), + [sym_property_modifier] = ACTIONS(4363), + [anon_sym_abstract] = ACTIONS(4363), + [anon_sym_final] = ACTIONS(4363), + [anon_sym_open] = ACTIONS(4363), + [anon_sym_vararg] = ACTIONS(4363), + [anon_sym_noinline] = ACTIONS(4363), + [anon_sym_crossinline] = ACTIONS(4363), + [anon_sym_expect] = ACTIONS(4363), + [anon_sym_actual] = ACTIONS(4363), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4365), + [sym__automatic_semicolon] = ACTIONS(4365), + [sym_safe_nav] = ACTIONS(4365), + [sym_multiline_comment] = ACTIONS(3), + }, + [4053] = { + [sym__alpha_identifier] = ACTIONS(4766), + [anon_sym_AT] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_as] = ACTIONS(4766), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_COMMA] = ACTIONS(4768), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_where] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_get] = ACTIONS(4766), + [anon_sym_set] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [sym_label] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4766), + [anon_sym_DOT_DOT] = ACTIONS(4768), + [anon_sym_QMARK_COLON] = ACTIONS(4768), + [anon_sym_AMP_AMP] = ACTIONS(4768), + [anon_sym_PIPE_PIPE] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4766), + [anon_sym_COLON_COLON] = ACTIONS(4768), + [anon_sym_PLUS_EQ] = ACTIONS(4768), + [anon_sym_DASH_EQ] = ACTIONS(4768), + [anon_sym_STAR_EQ] = ACTIONS(4768), + [anon_sym_SLASH_EQ] = ACTIONS(4768), + [anon_sym_PERCENT_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ] = ACTIONS(4766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ] = ACTIONS(4766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4768), + [anon_sym_LT_EQ] = ACTIONS(4768), + [anon_sym_GT_EQ] = ACTIONS(4768), + [anon_sym_BANGin] = ACTIONS(4768), + [anon_sym_is] = ACTIONS(4766), + [anon_sym_BANGis] = ACTIONS(4768), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_as_QMARK] = ACTIONS(4768), + [anon_sym_PLUS_PLUS] = ACTIONS(4768), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_BANG_BANG] = ACTIONS(4768), + [anon_sym_suspend] = ACTIONS(4766), + [anon_sym_sealed] = ACTIONS(4766), + [anon_sym_annotation] = ACTIONS(4766), + [anon_sym_data] = ACTIONS(4766), + [anon_sym_inner] = ACTIONS(4766), + [anon_sym_value] = ACTIONS(4766), + [anon_sym_override] = ACTIONS(4766), + [anon_sym_lateinit] = ACTIONS(4766), + [anon_sym_public] = ACTIONS(4766), + [anon_sym_private] = ACTIONS(4766), + [anon_sym_internal] = ACTIONS(4766), + [anon_sym_protected] = ACTIONS(4766), + [anon_sym_tailrec] = ACTIONS(4766), + [anon_sym_operator] = ACTIONS(4766), + [anon_sym_infix] = ACTIONS(4766), + [anon_sym_inline] = ACTIONS(4766), + [anon_sym_external] = ACTIONS(4766), + [sym_property_modifier] = ACTIONS(4766), + [anon_sym_abstract] = ACTIONS(4766), + [anon_sym_final] = ACTIONS(4766), + [anon_sym_open] = ACTIONS(4766), + [anon_sym_vararg] = ACTIONS(4766), + [anon_sym_noinline] = ACTIONS(4766), + [anon_sym_crossinline] = ACTIONS(4766), + [anon_sym_expect] = ACTIONS(4766), + [anon_sym_actual] = ACTIONS(4766), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4768), + [sym__automatic_semicolon] = ACTIONS(4768), + [sym_safe_nav] = ACTIONS(4768), + [sym_multiline_comment] = ACTIONS(3), + }, + [4054] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [sym_label] = ACTIONS(4309), + [anon_sym_in] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_QMARK_COLON] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_else] = ACTIONS(4307), + [anon_sym_COLON_COLON] = ACTIONS(4309), + [anon_sym_PLUS_EQ] = ACTIONS(4309), + [anon_sym_DASH_EQ] = ACTIONS(4309), + [anon_sym_STAR_EQ] = ACTIONS(4309), + [anon_sym_SLASH_EQ] = ACTIONS(4309), + [anon_sym_PERCENT_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4309), + [anon_sym_LT_EQ] = ACTIONS(4309), + [anon_sym_GT_EQ] = ACTIONS(4309), + [anon_sym_BANGin] = ACTIONS(4309), + [anon_sym_is] = ACTIONS(4307), + [anon_sym_BANGis] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_as_QMARK] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_BANG_BANG] = ACTIONS(4309), + [anon_sym_suspend] = ACTIONS(4307), + [anon_sym_sealed] = ACTIONS(4307), + [anon_sym_annotation] = ACTIONS(4307), + [anon_sym_data] = ACTIONS(4307), + [anon_sym_inner] = ACTIONS(4307), + [anon_sym_value] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_lateinit] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_internal] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_tailrec] = ACTIONS(4307), + [anon_sym_operator] = ACTIONS(4307), + [anon_sym_infix] = ACTIONS(4307), + [anon_sym_inline] = ACTIONS(4307), + [anon_sym_external] = ACTIONS(4307), + [sym_property_modifier] = ACTIONS(4307), + [anon_sym_abstract] = ACTIONS(4307), + [anon_sym_final] = ACTIONS(4307), + [anon_sym_open] = ACTIONS(4307), + [anon_sym_vararg] = ACTIONS(4307), + [anon_sym_noinline] = ACTIONS(4307), + [anon_sym_crossinline] = ACTIONS(4307), + [anon_sym_expect] = ACTIONS(4307), + [anon_sym_actual] = ACTIONS(4307), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [4055] = { + [sym__alpha_identifier] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_get] = ACTIONS(4900), + [anon_sym_set] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_QMARK_COLON] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4902), + [anon_sym_BANGin] = ACTIONS(4902), + [anon_sym_is] = ACTIONS(4900), + [anon_sym_BANGis] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_as_QMARK] = ACTIONS(4902), + [anon_sym_PLUS_PLUS] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4902), + [anon_sym_suspend] = ACTIONS(4900), + [anon_sym_sealed] = ACTIONS(4900), + [anon_sym_annotation] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4900), + [anon_sym_inner] = ACTIONS(4900), + [anon_sym_value] = ACTIONS(4900), + [anon_sym_override] = ACTIONS(4900), + [anon_sym_lateinit] = ACTIONS(4900), + [anon_sym_public] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4900), + [anon_sym_internal] = ACTIONS(4900), + [anon_sym_protected] = ACTIONS(4900), + [anon_sym_tailrec] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4900), + [anon_sym_infix] = ACTIONS(4900), + [anon_sym_inline] = ACTIONS(4900), + [anon_sym_external] = ACTIONS(4900), + [sym_property_modifier] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_final] = ACTIONS(4900), + [anon_sym_open] = ACTIONS(4900), + [anon_sym_vararg] = ACTIONS(4900), + [anon_sym_noinline] = ACTIONS(4900), + [anon_sym_crossinline] = ACTIONS(4900), + [anon_sym_expect] = ACTIONS(4900), + [anon_sym_actual] = ACTIONS(4900), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4902), + [sym__automatic_semicolon] = ACTIONS(4902), + [sym_safe_nav] = ACTIONS(4902), + [sym_multiline_comment] = ACTIONS(3), + }, + [4056] = { + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [4057] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4058] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3236), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_STAR_EQ] = ACTIONS(3240), + [anon_sym_SLASH_EQ] = ACTIONS(3240), + [anon_sym_PERCENT_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [4059] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_suspend] = ACTIONS(4832), + [anon_sym_sealed] = ACTIONS(4832), + [anon_sym_annotation] = ACTIONS(4832), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_override] = ACTIONS(4832), + [anon_sym_lateinit] = ACTIONS(4832), + [anon_sym_public] = ACTIONS(4832), + [anon_sym_private] = ACTIONS(4832), + [anon_sym_internal] = ACTIONS(4832), + [anon_sym_protected] = ACTIONS(4832), + [anon_sym_tailrec] = ACTIONS(4832), + [anon_sym_operator] = ACTIONS(4832), + [anon_sym_infix] = ACTIONS(4832), + [anon_sym_inline] = ACTIONS(4832), + [anon_sym_external] = ACTIONS(4832), + [sym_property_modifier] = ACTIONS(4832), + [anon_sym_abstract] = ACTIONS(4832), + [anon_sym_final] = ACTIONS(4832), + [anon_sym_open] = ACTIONS(4832), + [anon_sym_vararg] = ACTIONS(4832), + [anon_sym_noinline] = ACTIONS(4832), + [anon_sym_crossinline] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4834), + [sym__automatic_semicolon] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + }, + [4060] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(7075), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [4061] = { + [sym__alpha_identifier] = ACTIONS(5050), + [anon_sym_AT] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_DOT] = ACTIONS(5050), + [anon_sym_as] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_COMMA] = ACTIONS(5052), + [anon_sym_LT] = ACTIONS(5050), + [anon_sym_GT] = ACTIONS(5050), + [anon_sym_where] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_get] = ACTIONS(5050), + [anon_sym_set] = ACTIONS(5050), + [anon_sym_STAR] = ACTIONS(5050), + [sym_label] = ACTIONS(5052), + [anon_sym_in] = ACTIONS(5050), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_QMARK_COLON] = ACTIONS(5052), + [anon_sym_AMP_AMP] = ACTIONS(5052), + [anon_sym_PIPE_PIPE] = ACTIONS(5052), + [anon_sym_else] = ACTIONS(5050), + [anon_sym_COLON_COLON] = ACTIONS(5052), + [anon_sym_PLUS_EQ] = ACTIONS(5052), + [anon_sym_DASH_EQ] = ACTIONS(5052), + [anon_sym_STAR_EQ] = ACTIONS(5052), + [anon_sym_SLASH_EQ] = ACTIONS(5052), + [anon_sym_PERCENT_EQ] = ACTIONS(5052), + [anon_sym_BANG_EQ] = ACTIONS(5050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5052), + [anon_sym_EQ_EQ] = ACTIONS(5050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5052), + [anon_sym_LT_EQ] = ACTIONS(5052), + [anon_sym_GT_EQ] = ACTIONS(5052), + [anon_sym_BANGin] = ACTIONS(5052), + [anon_sym_is] = ACTIONS(5050), + [anon_sym_BANGis] = ACTIONS(5052), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5050), + [anon_sym_PERCENT] = ACTIONS(5050), + [anon_sym_as_QMARK] = ACTIONS(5052), + [anon_sym_PLUS_PLUS] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_BANG_BANG] = ACTIONS(5052), + [anon_sym_suspend] = ACTIONS(5050), + [anon_sym_sealed] = ACTIONS(5050), + [anon_sym_annotation] = ACTIONS(5050), + [anon_sym_data] = ACTIONS(5050), + [anon_sym_inner] = ACTIONS(5050), + [anon_sym_value] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5050), + [anon_sym_lateinit] = ACTIONS(5050), + [anon_sym_public] = ACTIONS(5050), + [anon_sym_private] = ACTIONS(5050), + [anon_sym_internal] = ACTIONS(5050), + [anon_sym_protected] = ACTIONS(5050), + [anon_sym_tailrec] = ACTIONS(5050), + [anon_sym_operator] = ACTIONS(5050), + [anon_sym_infix] = ACTIONS(5050), + [anon_sym_inline] = ACTIONS(5050), + [anon_sym_external] = ACTIONS(5050), + [sym_property_modifier] = ACTIONS(5050), + [anon_sym_abstract] = ACTIONS(5050), + [anon_sym_final] = ACTIONS(5050), + [anon_sym_open] = ACTIONS(5050), + [anon_sym_vararg] = ACTIONS(5050), + [anon_sym_noinline] = ACTIONS(5050), + [anon_sym_crossinline] = ACTIONS(5050), + [anon_sym_expect] = ACTIONS(5050), + [anon_sym_actual] = ACTIONS(5050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5052), + [sym__automatic_semicolon] = ACTIONS(5052), + [sym_safe_nav] = ACTIONS(5052), + [sym_multiline_comment] = ACTIONS(3), + }, + [4062] = { + [sym__alpha_identifier] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [sym_label] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_QMARK_COLON] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_BANGin] = ACTIONS(1696), + [anon_sym_is] = ACTIONS(1694), + [anon_sym_BANGis] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_as_QMARK] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG_BANG] = ACTIONS(1696), + [anon_sym_suspend] = ACTIONS(1694), + [anon_sym_sealed] = ACTIONS(1694), + [anon_sym_annotation] = ACTIONS(1694), + [anon_sym_data] = ACTIONS(1694), + [anon_sym_inner] = ACTIONS(1694), + [anon_sym_value] = ACTIONS(1694), + [anon_sym_override] = ACTIONS(1694), + [anon_sym_lateinit] = ACTIONS(1694), + [anon_sym_public] = ACTIONS(1694), + [anon_sym_private] = ACTIONS(1694), + [anon_sym_internal] = ACTIONS(1694), + [anon_sym_protected] = ACTIONS(1694), + [anon_sym_tailrec] = ACTIONS(1694), + [anon_sym_operator] = ACTIONS(1694), + [anon_sym_infix] = ACTIONS(1694), + [anon_sym_inline] = ACTIONS(1694), + [anon_sym_external] = ACTIONS(1694), + [sym_property_modifier] = ACTIONS(1694), + [anon_sym_abstract] = ACTIONS(1694), + [anon_sym_final] = ACTIONS(1694), + [anon_sym_open] = ACTIONS(1694), + [anon_sym_vararg] = ACTIONS(1694), + [anon_sym_noinline] = ACTIONS(1694), + [anon_sym_crossinline] = ACTIONS(1694), + [anon_sym_expect] = ACTIONS(1694), + [anon_sym_actual] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym_safe_nav] = ACTIONS(1696), + [sym_multiline_comment] = ACTIONS(3), + }, + [4063] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4064] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5824), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [4065] = { + [sym__alpha_identifier] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3272), + [anon_sym_as] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_GT] = ACTIONS(3272), + [anon_sym_where] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3276), + [anon_sym_in] = ACTIONS(3272), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_QMARK_COLON] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_PIPE_PIPE] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_PLUS_EQ] = ACTIONS(3276), + [anon_sym_DASH_EQ] = ACTIONS(3276), + [anon_sym_STAR_EQ] = ACTIONS(3276), + [anon_sym_SLASH_EQ] = ACTIONS(3276), + [anon_sym_PERCENT_EQ] = ACTIONS(3276), + [anon_sym_BANG_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3276), + [anon_sym_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3276), + [anon_sym_LT_EQ] = ACTIONS(3276), + [anon_sym_GT_EQ] = ACTIONS(3276), + [anon_sym_BANGin] = ACTIONS(3276), + [anon_sym_is] = ACTIONS(3272), + [anon_sym_BANGis] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_BANG_BANG] = ACTIONS(3276), + [anon_sym_suspend] = ACTIONS(3272), + [anon_sym_sealed] = ACTIONS(3272), + [anon_sym_annotation] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3272), + [anon_sym_inner] = ACTIONS(3272), + [anon_sym_value] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_lateinit] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_internal] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_tailrec] = ACTIONS(3272), + [anon_sym_operator] = ACTIONS(3272), + [anon_sym_infix] = ACTIONS(3272), + [anon_sym_inline] = ACTIONS(3272), + [anon_sym_external] = ACTIONS(3272), + [sym_property_modifier] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_final] = ACTIONS(3272), + [anon_sym_open] = ACTIONS(3272), + [anon_sym_vararg] = ACTIONS(3272), + [anon_sym_noinline] = ACTIONS(3272), + [anon_sym_crossinline] = ACTIONS(3272), + [anon_sym_expect] = ACTIONS(3272), + [anon_sym_actual] = ACTIONS(3272), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3276), + [sym__automatic_semicolon] = ACTIONS(3276), + [sym_safe_nav] = ACTIONS(3276), + [sym_multiline_comment] = ACTIONS(3), + }, + [4066] = { + [sym__alpha_identifier] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4748), + [anon_sym_LBRACK] = ACTIONS(4748), + [anon_sym_DOT] = ACTIONS(4746), + [anon_sym_as] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4748), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_LPAREN] = ACTIONS(4748), + [anon_sym_COMMA] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4746), + [anon_sym_GT] = ACTIONS(4746), + [anon_sym_where] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4748), + [anon_sym_get] = ACTIONS(4746), + [anon_sym_set] = ACTIONS(4746), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(4748), + [anon_sym_in] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_QMARK_COLON] = ACTIONS(4748), + [anon_sym_AMP_AMP] = ACTIONS(4748), + [anon_sym_PIPE_PIPE] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_PLUS_EQ] = ACTIONS(4748), + [anon_sym_DASH_EQ] = ACTIONS(4748), + [anon_sym_STAR_EQ] = ACTIONS(4748), + [anon_sym_SLASH_EQ] = ACTIONS(4748), + [anon_sym_PERCENT_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ] = ACTIONS(4746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ] = ACTIONS(4746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4748), + [anon_sym_LT_EQ] = ACTIONS(4748), + [anon_sym_GT_EQ] = ACTIONS(4748), + [anon_sym_BANGin] = ACTIONS(4748), + [anon_sym_is] = ACTIONS(4746), + [anon_sym_BANGis] = ACTIONS(4748), + [anon_sym_PLUS] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), + [anon_sym_SLASH] = ACTIONS(4746), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4748), + [anon_sym_suspend] = ACTIONS(4746), + [anon_sym_sealed] = ACTIONS(4746), + [anon_sym_annotation] = ACTIONS(4746), + [anon_sym_data] = ACTIONS(4746), + [anon_sym_inner] = ACTIONS(4746), + [anon_sym_value] = ACTIONS(4746), + [anon_sym_override] = ACTIONS(4746), + [anon_sym_lateinit] = ACTIONS(4746), + [anon_sym_public] = ACTIONS(4746), + [anon_sym_private] = ACTIONS(4746), + [anon_sym_internal] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4746), + [anon_sym_tailrec] = ACTIONS(4746), + [anon_sym_operator] = ACTIONS(4746), + [anon_sym_infix] = ACTIONS(4746), + [anon_sym_inline] = ACTIONS(4746), + [anon_sym_external] = ACTIONS(4746), + [sym_property_modifier] = ACTIONS(4746), + [anon_sym_abstract] = ACTIONS(4746), + [anon_sym_final] = ACTIONS(4746), + [anon_sym_open] = ACTIONS(4746), + [anon_sym_vararg] = ACTIONS(4746), + [anon_sym_noinline] = ACTIONS(4746), + [anon_sym_crossinline] = ACTIONS(4746), + [anon_sym_expect] = ACTIONS(4746), + [anon_sym_actual] = ACTIONS(4746), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4748), + [sym__automatic_semicolon] = ACTIONS(4748), + [sym_safe_nav] = ACTIONS(4748), + [sym_multiline_comment] = ACTIONS(3), + }, + [4067] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_suspend] = ACTIONS(5161), + [anon_sym_sealed] = ACTIONS(5161), + [anon_sym_annotation] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_override] = ACTIONS(5161), + [anon_sym_lateinit] = ACTIONS(5161), + [anon_sym_public] = ACTIONS(5161), + [anon_sym_private] = ACTIONS(5161), + [anon_sym_internal] = ACTIONS(5161), + [anon_sym_protected] = ACTIONS(5161), + [anon_sym_tailrec] = ACTIONS(5161), + [anon_sym_operator] = ACTIONS(5161), + [anon_sym_infix] = ACTIONS(5161), + [anon_sym_inline] = ACTIONS(5161), + [anon_sym_external] = ACTIONS(5161), + [sym_property_modifier] = ACTIONS(5161), + [anon_sym_abstract] = ACTIONS(5161), + [anon_sym_final] = ACTIONS(5161), + [anon_sym_open] = ACTIONS(5161), + [anon_sym_vararg] = ACTIONS(5161), + [anon_sym_noinline] = ACTIONS(5161), + [anon_sym_crossinline] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5163), + [sym__automatic_semicolon] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), + [sym_multiline_comment] = ACTIONS(3), + }, + [4068] = { + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_PLUS_EQ] = ACTIONS(4152), + [anon_sym_DASH_EQ] = ACTIONS(4152), + [anon_sym_STAR_EQ] = ACTIONS(4152), + [anon_sym_SLASH_EQ] = ACTIONS(4152), + [anon_sym_PERCENT_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4150), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4069] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_where] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4070] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5032), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_where] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [4071] = { + [sym__alpha_identifier] = ACTIONS(4996), + [anon_sym_AT] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_as] = ACTIONS(4996), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_where] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_get] = ACTIONS(4996), + [anon_sym_set] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4996), + [sym_label] = ACTIONS(4998), + [anon_sym_in] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4998), + [anon_sym_QMARK_COLON] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_else] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_PLUS_EQ] = ACTIONS(4998), + [anon_sym_DASH_EQ] = ACTIONS(4998), + [anon_sym_STAR_EQ] = ACTIONS(4998), + [anon_sym_SLASH_EQ] = ACTIONS(4998), + [anon_sym_PERCENT_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4998), + [anon_sym_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4998), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_BANGin] = ACTIONS(4998), + [anon_sym_is] = ACTIONS(4996), + [anon_sym_BANGis] = ACTIONS(4998), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_as_QMARK] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_BANG_BANG] = ACTIONS(4998), + [anon_sym_suspend] = ACTIONS(4996), + [anon_sym_sealed] = ACTIONS(4996), + [anon_sym_annotation] = ACTIONS(4996), + [anon_sym_data] = ACTIONS(4996), + [anon_sym_inner] = ACTIONS(4996), + [anon_sym_value] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + [anon_sym_lateinit] = ACTIONS(4996), + [anon_sym_public] = ACTIONS(4996), + [anon_sym_private] = ACTIONS(4996), + [anon_sym_internal] = ACTIONS(4996), + [anon_sym_protected] = ACTIONS(4996), + [anon_sym_tailrec] = ACTIONS(4996), + [anon_sym_operator] = ACTIONS(4996), + [anon_sym_infix] = ACTIONS(4996), + [anon_sym_inline] = ACTIONS(4996), + [anon_sym_external] = ACTIONS(4996), + [sym_property_modifier] = ACTIONS(4996), + [anon_sym_abstract] = ACTIONS(4996), + [anon_sym_final] = ACTIONS(4996), + [anon_sym_open] = ACTIONS(4996), + [anon_sym_vararg] = ACTIONS(4996), + [anon_sym_noinline] = ACTIONS(4996), + [anon_sym_crossinline] = ACTIONS(4996), + [anon_sym_expect] = ACTIONS(4996), + [anon_sym_actual] = ACTIONS(4996), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4998), + [sym__automatic_semicolon] = ACTIONS(4998), + [sym_safe_nav] = ACTIONS(4998), + [sym_multiline_comment] = ACTIONS(3), + }, + [4072] = { + [sym__alpha_identifier] = ACTIONS(5000), + [anon_sym_AT] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_as] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_where] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_get] = ACTIONS(5000), + [anon_sym_set] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [sym_label] = ACTIONS(5002), + [anon_sym_in] = ACTIONS(5000), + [anon_sym_DOT_DOT] = ACTIONS(5002), + [anon_sym_QMARK_COLON] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5002), + [anon_sym_EQ_EQ] = ACTIONS(5000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_BANGin] = ACTIONS(5002), + [anon_sym_is] = ACTIONS(5000), + [anon_sym_BANGis] = ACTIONS(5002), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_as_QMARK] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_BANG_BANG] = ACTIONS(5002), + [anon_sym_suspend] = ACTIONS(5000), + [anon_sym_sealed] = ACTIONS(5000), + [anon_sym_annotation] = ACTIONS(5000), + [anon_sym_data] = ACTIONS(5000), + [anon_sym_inner] = ACTIONS(5000), + [anon_sym_value] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_lateinit] = ACTIONS(5000), + [anon_sym_public] = ACTIONS(5000), + [anon_sym_private] = ACTIONS(5000), + [anon_sym_internal] = ACTIONS(5000), + [anon_sym_protected] = ACTIONS(5000), + [anon_sym_tailrec] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + [anon_sym_infix] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym_external] = ACTIONS(5000), + [sym_property_modifier] = ACTIONS(5000), + [anon_sym_abstract] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_open] = ACTIONS(5000), + [anon_sym_vararg] = ACTIONS(5000), + [anon_sym_noinline] = ACTIONS(5000), + [anon_sym_crossinline] = ACTIONS(5000), + [anon_sym_expect] = ACTIONS(5000), + [anon_sym_actual] = ACTIONS(5000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5002), + [sym__automatic_semicolon] = ACTIONS(5002), + [sym_safe_nav] = ACTIONS(5002), + [sym_multiline_comment] = ACTIONS(3), + }, + [4073] = { + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(4248), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4248), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [4074] = { + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_EQ] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3228), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_PLUS_EQ] = ACTIONS(3232), + [anon_sym_DASH_EQ] = ACTIONS(3232), + [anon_sym_STAR_EQ] = ACTIONS(3232), + [anon_sym_SLASH_EQ] = ACTIONS(3232), + [anon_sym_PERCENT_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4075] = { + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4557), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_PLUS_EQ] = ACTIONS(4559), + [anon_sym_DASH_EQ] = ACTIONS(4559), + [anon_sym_STAR_EQ] = ACTIONS(4559), + [anon_sym_SLASH_EQ] = ACTIONS(4559), + [anon_sym_PERCENT_EQ] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + }, + [4076] = { + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_PLUS_EQ] = ACTIONS(4094), + [anon_sym_DASH_EQ] = ACTIONS(4094), + [anon_sym_STAR_EQ] = ACTIONS(4094), + [anon_sym_SLASH_EQ] = ACTIONS(4094), + [anon_sym_PERCENT_EQ] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4077] = { + [sym__alpha_identifier] = ACTIONS(4828), + [anon_sym_AT] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_DOT] = ACTIONS(4828), + [anon_sym_as] = ACTIONS(4828), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_COMMA] = ACTIONS(4830), + [anon_sym_LT] = ACTIONS(4828), + [anon_sym_GT] = ACTIONS(4828), + [anon_sym_where] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(4828), + [anon_sym_set] = ACTIONS(4828), + [anon_sym_STAR] = ACTIONS(4828), + [sym_label] = ACTIONS(4830), + [anon_sym_in] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_QMARK_COLON] = ACTIONS(4830), + [anon_sym_AMP_AMP] = ACTIONS(4830), + [anon_sym_PIPE_PIPE] = ACTIONS(4830), + [anon_sym_else] = ACTIONS(4828), + [anon_sym_COLON_COLON] = ACTIONS(4830), + [anon_sym_PLUS_EQ] = ACTIONS(4830), + [anon_sym_DASH_EQ] = ACTIONS(4830), + [anon_sym_STAR_EQ] = ACTIONS(4830), + [anon_sym_SLASH_EQ] = ACTIONS(4830), + [anon_sym_PERCENT_EQ] = ACTIONS(4830), + [anon_sym_BANG_EQ] = ACTIONS(4828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4830), + [anon_sym_EQ_EQ] = ACTIONS(4828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4830), + [anon_sym_LT_EQ] = ACTIONS(4830), + [anon_sym_GT_EQ] = ACTIONS(4830), + [anon_sym_BANGin] = ACTIONS(4830), + [anon_sym_is] = ACTIONS(4828), + [anon_sym_BANGis] = ACTIONS(4830), + [anon_sym_PLUS] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [anon_sym_SLASH] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_as_QMARK] = ACTIONS(4830), + [anon_sym_PLUS_PLUS] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_BANG_BANG] = ACTIONS(4830), + [anon_sym_suspend] = ACTIONS(4828), + [anon_sym_sealed] = ACTIONS(4828), + [anon_sym_annotation] = ACTIONS(4828), + [anon_sym_data] = ACTIONS(4828), + [anon_sym_inner] = ACTIONS(4828), + [anon_sym_value] = ACTIONS(4828), + [anon_sym_override] = ACTIONS(4828), + [anon_sym_lateinit] = ACTIONS(4828), + [anon_sym_public] = ACTIONS(4828), + [anon_sym_private] = ACTIONS(4828), + [anon_sym_internal] = ACTIONS(4828), + [anon_sym_protected] = ACTIONS(4828), + [anon_sym_tailrec] = ACTIONS(4828), + [anon_sym_operator] = ACTIONS(4828), + [anon_sym_infix] = ACTIONS(4828), + [anon_sym_inline] = ACTIONS(4828), + [anon_sym_external] = ACTIONS(4828), + [sym_property_modifier] = ACTIONS(4828), + [anon_sym_abstract] = ACTIONS(4828), + [anon_sym_final] = ACTIONS(4828), + [anon_sym_open] = ACTIONS(4828), + [anon_sym_vararg] = ACTIONS(4828), + [anon_sym_noinline] = ACTIONS(4828), + [anon_sym_crossinline] = ACTIONS(4828), + [anon_sym_expect] = ACTIONS(4828), + [anon_sym_actual] = ACTIONS(4828), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4830), + [sym__automatic_semicolon] = ACTIONS(4830), + [sym_safe_nav] = ACTIONS(4830), + [sym_multiline_comment] = ACTIONS(3), + }, + [4078] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [sym_label] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3067), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4079] = { + [sym__alpha_identifier] = ACTIONS(4435), + [anon_sym_AT] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4435), + [anon_sym_as] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [anon_sym_where] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_get] = ACTIONS(4435), + [anon_sym_set] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4437), + [anon_sym_in] = ACTIONS(4435), + [anon_sym_DOT_DOT] = ACTIONS(4437), + [anon_sym_QMARK_COLON] = ACTIONS(4437), + [anon_sym_AMP_AMP] = ACTIONS(4437), + [anon_sym_PIPE_PIPE] = ACTIONS(4437), + [anon_sym_else] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(4437), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4437), + [anon_sym_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4437), + [anon_sym_BANGin] = ACTIONS(4437), + [anon_sym_is] = ACTIONS(4435), + [anon_sym_BANGis] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4437), + [anon_sym_PLUS_PLUS] = ACTIONS(4437), + [anon_sym_DASH_DASH] = ACTIONS(4437), + [anon_sym_BANG_BANG] = ACTIONS(4437), + [anon_sym_suspend] = ACTIONS(4435), + [anon_sym_sealed] = ACTIONS(4435), + [anon_sym_annotation] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4435), + [anon_sym_inner] = ACTIONS(4435), + [anon_sym_value] = ACTIONS(4435), + [anon_sym_override] = ACTIONS(4435), + [anon_sym_lateinit] = ACTIONS(4435), + [anon_sym_public] = ACTIONS(4435), + [anon_sym_private] = ACTIONS(4435), + [anon_sym_internal] = ACTIONS(4435), + [anon_sym_protected] = ACTIONS(4435), + [anon_sym_tailrec] = ACTIONS(4435), + [anon_sym_operator] = ACTIONS(4435), + [anon_sym_infix] = ACTIONS(4435), + [anon_sym_inline] = ACTIONS(4435), + [anon_sym_external] = ACTIONS(4435), + [sym_property_modifier] = ACTIONS(4435), + [anon_sym_abstract] = ACTIONS(4435), + [anon_sym_final] = ACTIONS(4435), + [anon_sym_open] = ACTIONS(4435), + [anon_sym_vararg] = ACTIONS(4435), + [anon_sym_noinline] = ACTIONS(4435), + [anon_sym_crossinline] = ACTIONS(4435), + [anon_sym_expect] = ACTIONS(4435), + [anon_sym_actual] = ACTIONS(4435), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4437), + [sym__automatic_semicolon] = ACTIONS(4437), + [sym_safe_nav] = ACTIONS(4437), + [sym_multiline_comment] = ACTIONS(3), + }, + [4080] = { + [sym__alpha_identifier] = ACTIONS(5010), + [anon_sym_AT] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5010), + [anon_sym_as] = ACTIONS(5010), + [anon_sym_EQ] = ACTIONS(5010), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_LT] = ACTIONS(5010), + [anon_sym_GT] = ACTIONS(5010), + [anon_sym_where] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_get] = ACTIONS(5010), + [anon_sym_set] = ACTIONS(5010), + [anon_sym_STAR] = ACTIONS(5010), + [sym_label] = ACTIONS(5012), + [anon_sym_in] = ACTIONS(5010), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_QMARK_COLON] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5010), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5012), + [anon_sym_EQ_EQ] = ACTIONS(5010), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_BANGin] = ACTIONS(5012), + [anon_sym_is] = ACTIONS(5010), + [anon_sym_BANGis] = ACTIONS(5012), + [anon_sym_PLUS] = ACTIONS(5010), + [anon_sym_DASH] = ACTIONS(5010), + [anon_sym_SLASH] = ACTIONS(5010), + [anon_sym_PERCENT] = ACTIONS(5010), + [anon_sym_as_QMARK] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_BANG_BANG] = ACTIONS(5012), + [anon_sym_suspend] = ACTIONS(5010), + [anon_sym_sealed] = ACTIONS(5010), + [anon_sym_annotation] = ACTIONS(5010), + [anon_sym_data] = ACTIONS(5010), + [anon_sym_inner] = ACTIONS(5010), + [anon_sym_value] = ACTIONS(5010), + [anon_sym_override] = ACTIONS(5010), + [anon_sym_lateinit] = ACTIONS(5010), + [anon_sym_public] = ACTIONS(5010), + [anon_sym_private] = ACTIONS(5010), + [anon_sym_internal] = ACTIONS(5010), + [anon_sym_protected] = ACTIONS(5010), + [anon_sym_tailrec] = ACTIONS(5010), + [anon_sym_operator] = ACTIONS(5010), + [anon_sym_infix] = ACTIONS(5010), + [anon_sym_inline] = ACTIONS(5010), + [anon_sym_external] = ACTIONS(5010), + [sym_property_modifier] = ACTIONS(5010), + [anon_sym_abstract] = ACTIONS(5010), + [anon_sym_final] = ACTIONS(5010), + [anon_sym_open] = ACTIONS(5010), + [anon_sym_vararg] = ACTIONS(5010), + [anon_sym_noinline] = ACTIONS(5010), + [anon_sym_crossinline] = ACTIONS(5010), + [anon_sym_expect] = ACTIONS(5010), + [anon_sym_actual] = ACTIONS(5010), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5012), + [sym__automatic_semicolon] = ACTIONS(5012), + [sym_safe_nav] = ACTIONS(5012), + [sym_multiline_comment] = ACTIONS(3), + }, + [4081] = { + [sym__alpha_identifier] = ACTIONS(5165), + [anon_sym_AT] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_as] = ACTIONS(5165), + [anon_sym_EQ] = ACTIONS(5165), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_where] = ACTIONS(5165), + [anon_sym_SEMI] = ACTIONS(5167), + [anon_sym_get] = ACTIONS(5165), + [anon_sym_set] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [sym_label] = ACTIONS(5167), + [anon_sym_in] = ACTIONS(5165), + [anon_sym_DOT_DOT] = ACTIONS(5167), + [anon_sym_QMARK_COLON] = ACTIONS(5167), + [anon_sym_AMP_AMP] = ACTIONS(5167), + [anon_sym_PIPE_PIPE] = ACTIONS(5167), + [anon_sym_else] = ACTIONS(5165), + [anon_sym_COLON_COLON] = ACTIONS(5167), + [anon_sym_PLUS_EQ] = ACTIONS(5167), + [anon_sym_DASH_EQ] = ACTIONS(5167), + [anon_sym_STAR_EQ] = ACTIONS(5167), + [anon_sym_SLASH_EQ] = ACTIONS(5167), + [anon_sym_PERCENT_EQ] = ACTIONS(5167), + [anon_sym_BANG_EQ] = ACTIONS(5165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), + [anon_sym_EQ_EQ] = ACTIONS(5165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), + [anon_sym_LT_EQ] = ACTIONS(5167), + [anon_sym_GT_EQ] = ACTIONS(5167), + [anon_sym_BANGin] = ACTIONS(5167), + [anon_sym_is] = ACTIONS(5165), + [anon_sym_BANGis] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_PERCENT] = ACTIONS(5165), + [anon_sym_as_QMARK] = ACTIONS(5167), + [anon_sym_PLUS_PLUS] = ACTIONS(5167), + [anon_sym_DASH_DASH] = ACTIONS(5167), + [anon_sym_BANG_BANG] = ACTIONS(5167), + [anon_sym_suspend] = ACTIONS(5165), + [anon_sym_sealed] = ACTIONS(5165), + [anon_sym_annotation] = ACTIONS(5165), + [anon_sym_data] = ACTIONS(5165), + [anon_sym_inner] = ACTIONS(5165), + [anon_sym_value] = ACTIONS(5165), + [anon_sym_override] = ACTIONS(5165), + [anon_sym_lateinit] = ACTIONS(5165), + [anon_sym_public] = ACTIONS(5165), + [anon_sym_private] = ACTIONS(5165), + [anon_sym_internal] = ACTIONS(5165), + [anon_sym_protected] = ACTIONS(5165), + [anon_sym_tailrec] = ACTIONS(5165), + [anon_sym_operator] = ACTIONS(5165), + [anon_sym_infix] = ACTIONS(5165), + [anon_sym_inline] = ACTIONS(5165), + [anon_sym_external] = ACTIONS(5165), + [sym_property_modifier] = ACTIONS(5165), + [anon_sym_abstract] = ACTIONS(5165), + [anon_sym_final] = ACTIONS(5165), + [anon_sym_open] = ACTIONS(5165), + [anon_sym_vararg] = ACTIONS(5165), + [anon_sym_noinline] = ACTIONS(5165), + [anon_sym_crossinline] = ACTIONS(5165), + [anon_sym_expect] = ACTIONS(5165), + [anon_sym_actual] = ACTIONS(5165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5167), + [sym__automatic_semicolon] = ACTIONS(5167), + [sym_safe_nav] = ACTIONS(5167), + [sym_multiline_comment] = ACTIONS(3), + }, + [4082] = { + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(4234), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(4232), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_PLUS_EQ] = ACTIONS(4234), + [anon_sym_DASH_EQ] = ACTIONS(4234), + [anon_sym_STAR_EQ] = ACTIONS(4234), + [anon_sym_SLASH_EQ] = ACTIONS(4234), + [anon_sym_PERCENT_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4083] = { + [sym__alpha_identifier] = ACTIONS(4824), + [anon_sym_AT] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_DOT] = ACTIONS(4824), + [anon_sym_as] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_COMMA] = ACTIONS(4826), + [anon_sym_LT] = ACTIONS(4824), + [anon_sym_GT] = ACTIONS(4824), + [anon_sym_where] = ACTIONS(4824), + [anon_sym_SEMI] = ACTIONS(4826), + [anon_sym_get] = ACTIONS(4824), + [anon_sym_set] = ACTIONS(4824), + [anon_sym_STAR] = ACTIONS(4824), + [sym_label] = ACTIONS(4826), + [anon_sym_in] = ACTIONS(4824), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_QMARK_COLON] = ACTIONS(4826), + [anon_sym_AMP_AMP] = ACTIONS(4826), + [anon_sym_PIPE_PIPE] = ACTIONS(4826), + [anon_sym_else] = ACTIONS(4824), + [anon_sym_COLON_COLON] = ACTIONS(4826), + [anon_sym_PLUS_EQ] = ACTIONS(4826), + [anon_sym_DASH_EQ] = ACTIONS(4826), + [anon_sym_STAR_EQ] = ACTIONS(4826), + [anon_sym_SLASH_EQ] = ACTIONS(4826), + [anon_sym_PERCENT_EQ] = ACTIONS(4826), + [anon_sym_BANG_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4826), + [anon_sym_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4826), + [anon_sym_LT_EQ] = ACTIONS(4826), + [anon_sym_GT_EQ] = ACTIONS(4826), + [anon_sym_BANGin] = ACTIONS(4826), + [anon_sym_is] = ACTIONS(4824), + [anon_sym_BANGis] = ACTIONS(4826), + [anon_sym_PLUS] = ACTIONS(4824), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_SLASH] = ACTIONS(4824), + [anon_sym_PERCENT] = ACTIONS(4824), + [anon_sym_as_QMARK] = ACTIONS(4826), + [anon_sym_PLUS_PLUS] = ACTIONS(4826), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_BANG_BANG] = ACTIONS(4826), + [anon_sym_suspend] = ACTIONS(4824), + [anon_sym_sealed] = ACTIONS(4824), + [anon_sym_annotation] = ACTIONS(4824), + [anon_sym_data] = ACTIONS(4824), + [anon_sym_inner] = ACTIONS(4824), + [anon_sym_value] = ACTIONS(4824), + [anon_sym_override] = ACTIONS(4824), + [anon_sym_lateinit] = ACTIONS(4824), + [anon_sym_public] = ACTIONS(4824), + [anon_sym_private] = ACTIONS(4824), + [anon_sym_internal] = ACTIONS(4824), + [anon_sym_protected] = ACTIONS(4824), + [anon_sym_tailrec] = ACTIONS(4824), + [anon_sym_operator] = ACTIONS(4824), + [anon_sym_infix] = ACTIONS(4824), + [anon_sym_inline] = ACTIONS(4824), + [anon_sym_external] = ACTIONS(4824), + [sym_property_modifier] = ACTIONS(4824), + [anon_sym_abstract] = ACTIONS(4824), + [anon_sym_final] = ACTIONS(4824), + [anon_sym_open] = ACTIONS(4824), + [anon_sym_vararg] = ACTIONS(4824), + [anon_sym_noinline] = ACTIONS(4824), + [anon_sym_crossinline] = ACTIONS(4824), + [anon_sym_expect] = ACTIONS(4824), + [anon_sym_actual] = ACTIONS(4824), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4826), + [sym__automatic_semicolon] = ACTIONS(4826), + [sym_safe_nav] = ACTIONS(4826), + [sym_multiline_comment] = ACTIONS(3), + }, + [4084] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_as] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_COMMA] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [anon_sym_where] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4311), + [anon_sym_set] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [sym_label] = ACTIONS(4313), + [anon_sym_in] = ACTIONS(4311), + [anon_sym_DOT_DOT] = ACTIONS(4313), + [anon_sym_QMARK_COLON] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_else] = ACTIONS(4311), + [anon_sym_COLON_COLON] = ACTIONS(4313), + [anon_sym_PLUS_EQ] = ACTIONS(4313), + [anon_sym_DASH_EQ] = ACTIONS(4313), + [anon_sym_STAR_EQ] = ACTIONS(4313), + [anon_sym_SLASH_EQ] = ACTIONS(4313), + [anon_sym_PERCENT_EQ] = ACTIONS(4313), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4313), + [anon_sym_is] = ACTIONS(4311), + [anon_sym_BANGis] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_as_QMARK] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [anon_sym_BANG_BANG] = ACTIONS(4313), + [anon_sym_suspend] = ACTIONS(4311), + [anon_sym_sealed] = ACTIONS(4311), + [anon_sym_annotation] = ACTIONS(4311), + [anon_sym_data] = ACTIONS(4311), + [anon_sym_inner] = ACTIONS(4311), + [anon_sym_value] = ACTIONS(4311), + [anon_sym_override] = ACTIONS(4311), + [anon_sym_lateinit] = ACTIONS(4311), + [anon_sym_public] = ACTIONS(4311), + [anon_sym_private] = ACTIONS(4311), + [anon_sym_internal] = ACTIONS(4311), + [anon_sym_protected] = ACTIONS(4311), + [anon_sym_tailrec] = ACTIONS(4311), + [anon_sym_operator] = ACTIONS(4311), + [anon_sym_infix] = ACTIONS(4311), + [anon_sym_inline] = ACTIONS(4311), + [anon_sym_external] = ACTIONS(4311), + [sym_property_modifier] = ACTIONS(4311), + [anon_sym_abstract] = ACTIONS(4311), + [anon_sym_final] = ACTIONS(4311), + [anon_sym_open] = ACTIONS(4311), + [anon_sym_vararg] = ACTIONS(4311), + [anon_sym_noinline] = ACTIONS(4311), + [anon_sym_crossinline] = ACTIONS(4311), + [anon_sym_expect] = ACTIONS(4311), + [anon_sym_actual] = ACTIONS(4311), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4313), + [sym__automatic_semicolon] = ACTIONS(4313), + [sym_safe_nav] = ACTIONS(4313), + [sym_multiline_comment] = ACTIONS(3), + }, + [4085] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4086] = { + [sym_class_body] = STATE(3187), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7213), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_object] = ACTIONS(4413), + [anon_sym_fun] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_this] = ACTIONS(4413), + [anon_sym_super] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_when] = ACTIONS(4413), + [anon_sym_try] = ACTIONS(4413), + [anon_sym_throw] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4415), + [anon_sym_continue_AT] = ACTIONS(4415), + [anon_sym_break_AT] = ACTIONS(4415), + [anon_sym_this_AT] = ACTIONS(4415), + [anon_sym_super_AT] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4415), + [sym_integer_literal] = ACTIONS(4413), + [sym_hex_literal] = ACTIONS(4415), + [sym_bin_literal] = ACTIONS(4415), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_SQUOTE] = ACTIONS(4415), + [sym_null_literal] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4415), + }, + [4087] = { + [sym_type_constraints] = STATE(4239), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(7215), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4088] = { + [sym_type_constraints] = STATE(4253), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(7219), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4089] = { + [sym_type_constraints] = STATE(4255), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4090] = { + [sym_class_body] = STATE(3088), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_object] = ACTIONS(4423), + [anon_sym_fun] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_this] = ACTIONS(4423), + [anon_sym_super] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_when] = ACTIONS(4423), + [anon_sym_try] = ACTIONS(4423), + [anon_sym_throw] = ACTIONS(4423), + [anon_sym_return] = ACTIONS(4423), + [anon_sym_continue] = ACTIONS(4423), + [anon_sym_break] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4425), + [anon_sym_continue_AT] = ACTIONS(4425), + [anon_sym_break_AT] = ACTIONS(4425), + [anon_sym_this_AT] = ACTIONS(4425), + [anon_sym_super_AT] = ACTIONS(4425), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4423), + [anon_sym_false] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [sym_null_literal] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4425), + }, + [4091] = { + [sym_type_constraints] = STATE(4261), + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4092] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4093] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4094] = { + [sym_type_constraints] = STATE(4250), + [sym_function_body] = STATE(3472), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(7227), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_RPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [4095] = { + [sym_value_arguments] = STATE(3516), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(7229), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4096] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_while] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [4097] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4098] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4099] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4100] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(7245), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [4101] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4102] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4103] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4104] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4105] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5245), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [4106] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3071), + [anon_sym_DASH_EQ] = ACTIONS(3071), + [anon_sym_STAR_EQ] = ACTIONS(3071), + [anon_sym_SLASH_EQ] = ACTIONS(3071), + [anon_sym_PERCENT_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4107] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7247), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(7249), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [4108] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4109] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7251), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_while] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4110] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7253), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4111] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4112] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7257), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4113] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7259), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [4114] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [4115] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7263), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [4116] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [4117] = { + [sym_class_body] = STATE(3482), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7267), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_RBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_RPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [anon_sym_DASH_GT] = ACTIONS(4415), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_while] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [4118] = { + [sym_class_body] = STATE(3469), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_RBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [anon_sym_DASH_GT] = ACTIONS(4425), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [4119] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3105), + [anon_sym_DASH_EQ] = ACTIONS(3105), + [anon_sym_STAR_EQ] = ACTIONS(3105), + [anon_sym_SLASH_EQ] = ACTIONS(3105), + [anon_sym_PERCENT_EQ] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4120] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4121] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7275), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4122] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6686), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [4123] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6647), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [4124] = { + [sym_type_constraints] = STATE(4229), + [sym_function_body] = STATE(4076), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_COMMA] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [4125] = { + [sym_type_constraints] = STATE(4190), + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(7283), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4126] = { + [sym_type_constraints] = STATE(4191), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4127] = { + [sym_type_constraints] = STATE(4193), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4128] = { + [sym_type_constraints] = STATE(4188), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4129] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5908), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [4130] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5904), + [anon_sym_RPAREN] = ACTIONS(4199), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4131] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4132] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3075), + [anon_sym_DASH_EQ] = ACTIONS(3075), + [anon_sym_STAR_EQ] = ACTIONS(3075), + [anon_sym_SLASH_EQ] = ACTIONS(3075), + [anon_sym_PERCENT_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(7239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ] = ACTIONS(7239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4133] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4134] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7201), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7203), + [anon_sym_DOT_DOT] = ACTIONS(7205), + [anon_sym_QMARK_COLON] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7243), + [anon_sym_GT_EQ] = ACTIONS(7243), + [anon_sym_BANGin] = ACTIONS(7209), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7201), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4135] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1491), + [sym__in_operator] = STATE(1512), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1536), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1537), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4136] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7291), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7293), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [4137] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4138] = { + [sym_type_constraints] = STATE(4239), + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4139] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3079), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4140] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4141] = { + [sym_type_constraints] = STATE(4278), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_COLON] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4142] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3120), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4143] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3056), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4144] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4145] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3075), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4146] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4147] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4148] = { + [sym_function_body] = STATE(3868), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7325), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_where] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [4149] = { + [sym_type_constraints] = STATE(4196), + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [4150] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4151] = { + [sym_type_constraints] = STATE(4188), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4152] = { + [sym_type_constraints] = STATE(4193), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4153] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3105), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4154] = { + [sym_type_constraints] = STATE(4194), + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [4155] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3094), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4156] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3060), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4157] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4158] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4159] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4160] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4161] = { + [sym_function_body] = STATE(3969), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_where] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [4162] = { + [sym_type_constraints] = STATE(4191), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4163] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(3947), + [anon_sym_DASH_EQ] = ACTIONS(3947), + [anon_sym_STAR_EQ] = ACTIONS(3947), + [anon_sym_SLASH_EQ] = ACTIONS(3947), + [anon_sym_PERCENT_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [4164] = { + [sym_type_constraints] = STATE(4267), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4165] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3071), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4166] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4167] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_PLUS_EQ] = ACTIONS(4738), + [anon_sym_DASH_EQ] = ACTIONS(4738), + [anon_sym_STAR_EQ] = ACTIONS(4738), + [anon_sym_SLASH_EQ] = ACTIONS(4738), + [anon_sym_PERCENT_EQ] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4168] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7335), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4169] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(7229), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4170] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_PLUS_EQ] = ACTIONS(4182), + [anon_sym_DASH_EQ] = ACTIONS(4182), + [anon_sym_STAR_EQ] = ACTIONS(4182), + [anon_sym_SLASH_EQ] = ACTIONS(4182), + [anon_sym_PERCENT_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4171] = { + [sym_type_constraints] = STATE(4284), + [sym_function_body] = STATE(4076), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4134), + [anon_sym_AT] = ACTIONS(4136), + [anon_sym_COLON] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_as] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4134), + [anon_sym_GT] = ACTIONS(4134), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym_get] = ACTIONS(4134), + [anon_sym_set] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4134), + [anon_sym_DOT_DOT] = ACTIONS(4136), + [anon_sym_QMARK_COLON] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_PIPE_PIPE] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_BANG_EQ] = ACTIONS(4134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ] = ACTIONS(4134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4136), + [anon_sym_LT_EQ] = ACTIONS(4136), + [anon_sym_GT_EQ] = ACTIONS(4136), + [anon_sym_BANGin] = ACTIONS(4136), + [anon_sym_is] = ACTIONS(4134), + [anon_sym_BANGis] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_SLASH] = ACTIONS(4134), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4134), + [anon_sym_sealed] = ACTIONS(4134), + [anon_sym_annotation] = ACTIONS(4134), + [anon_sym_data] = ACTIONS(4134), + [anon_sym_inner] = ACTIONS(4134), + [anon_sym_value] = ACTIONS(4134), + [anon_sym_override] = ACTIONS(4134), + [anon_sym_lateinit] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_internal] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_tailrec] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_infix] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym_external] = ACTIONS(4134), + [sym_property_modifier] = ACTIONS(4134), + [anon_sym_abstract] = ACTIONS(4134), + [anon_sym_final] = ACTIONS(4134), + [anon_sym_open] = ACTIONS(4134), + [anon_sym_vararg] = ACTIONS(4134), + [anon_sym_noinline] = ACTIONS(4134), + [anon_sym_crossinline] = ACTIONS(4134), + [anon_sym_expect] = ACTIONS(4134), + [anon_sym_actual] = ACTIONS(4134), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4136), + [sym__automatic_semicolon] = ACTIONS(4136), + [sym_safe_nav] = ACTIONS(4136), + [sym_multiline_comment] = ACTIONS(3), + }, + [4172] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4173] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4174] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4174), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_RBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_DASH_GT] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_while] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + }, + [4175] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7350), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4176] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_EQ] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7354), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7356), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_PLUS_EQ] = ACTIONS(4798), + [anon_sym_DASH_EQ] = ACTIONS(4798), + [anon_sym_STAR_EQ] = ACTIONS(4798), + [anon_sym_SLASH_EQ] = ACTIONS(4798), + [anon_sym_PERCENT_EQ] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4796), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [4177] = { + [sym_type_constraints] = STATE(4271), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(7358), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4178] = { + [sym_type_constraints] = STATE(4255), + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4179] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(3050), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4180] = { + [sym_type_constraints] = STATE(4253), + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4181] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4174), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_RBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_while] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [4182] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4778), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7360), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_PLUS_EQ] = ACTIONS(4780), + [anon_sym_DASH_EQ] = ACTIONS(4780), + [anon_sym_STAR_EQ] = ACTIONS(4780), + [anon_sym_SLASH_EQ] = ACTIONS(4780), + [anon_sym_PERCENT_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [4183] = { + [sym_type_constraints] = STATE(4265), + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(7362), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4184] = { + [sym_type_constraints] = STATE(4252), + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [4185] = { + [sym_type_constraints] = STATE(4251), + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [4186] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_as] = ACTIONS(4176), + [anon_sym_EQ] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(5351), + [anon_sym_LT] = ACTIONS(4176), + [anon_sym_GT] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4179), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4176), + [sym_label] = ACTIONS(4179), + [anon_sym_in] = ACTIONS(4176), + [anon_sym_DOT_DOT] = ACTIONS(4179), + [anon_sym_QMARK_COLON] = ACTIONS(4179), + [anon_sym_AMP_AMP] = ACTIONS(4179), + [anon_sym_PIPE_PIPE] = ACTIONS(4179), + [anon_sym_else] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_PLUS_EQ] = ACTIONS(4179), + [anon_sym_DASH_EQ] = ACTIONS(4179), + [anon_sym_STAR_EQ] = ACTIONS(4179), + [anon_sym_SLASH_EQ] = ACTIONS(4179), + [anon_sym_PERCENT_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ] = ACTIONS(4176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_BANGin] = ACTIONS(4179), + [anon_sym_is] = ACTIONS(4176), + [anon_sym_BANGis] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4176), + [anon_sym_PERCENT] = ACTIONS(4176), + [anon_sym_as_QMARK] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG_BANG] = ACTIONS(4179), + [anon_sym_suspend] = ACTIONS(4176), + [anon_sym_sealed] = ACTIONS(4176), + [anon_sym_annotation] = ACTIONS(4176), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_override] = ACTIONS(4176), + [anon_sym_lateinit] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_internal] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_tailrec] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_infix] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym_external] = ACTIONS(4176), + [sym_property_modifier] = ACTIONS(4176), + [anon_sym_abstract] = ACTIONS(4176), + [anon_sym_final] = ACTIONS(4176), + [anon_sym_open] = ACTIONS(4176), + [anon_sym_vararg] = ACTIONS(4176), + [anon_sym_noinline] = ACTIONS(4176), + [anon_sym_crossinline] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4179), + [sym_safe_nav] = ACTIONS(4179), + [sym_multiline_comment] = ACTIONS(3), + }, + [4187] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_LPAREN] = ACTIONS(5355), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4199), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4199), + [anon_sym_QMARK_COLON] = ACTIONS(4199), + [anon_sym_AMP_AMP] = ACTIONS(4199), + [anon_sym_PIPE_PIPE] = ACTIONS(4199), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_PLUS_EQ] = ACTIONS(4199), + [anon_sym_DASH_EQ] = ACTIONS(4199), + [anon_sym_STAR_EQ] = ACTIONS(4199), + [anon_sym_SLASH_EQ] = ACTIONS(4199), + [anon_sym_PERCENT_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_BANGin] = ACTIONS(4199), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG_BANG] = ACTIONS(4199), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4199), + [sym_safe_nav] = ACTIONS(4199), + [sym_multiline_comment] = ACTIONS(3), + }, + [4188] = { + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_COMMA] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [4189] = { + [sym_type_constraints] = STATE(4299), + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [4190] = { + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_COMMA] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4191] = { + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_COMMA] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4192] = { + [sym_function_body] = STATE(3619), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7364), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_RPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_while] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [4193] = { + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_COMMA] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4194] = { + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_where] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [4195] = { + [sym_type_constraints] = STATE(3381), + [sym_enum_class_body] = STATE(3429), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [4196] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_COMMA] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_where] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [4197] = { + [sym_type_constraints] = STATE(4271), + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4198] = { + [sym_type_constraints] = STATE(3387), + [sym_enum_class_body] = STATE(3440), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [4199] = { + [sym_type_constraints] = STATE(4267), + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4200] = { + [sym_class_body] = STATE(3449), + [sym_type_constraints] = STATE(3388), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4201] = { + [sym_type_constraints] = STATE(4278), + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4202] = { + [sym_type_constraints] = STATE(3305), + [sym_enum_class_body] = STATE(3449), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7370), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_RPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_while] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4203] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4204] = { + [sym_class_body] = STATE(3465), + [sym_type_constraints] = STATE(3330), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4205] = { + [sym_type_constraints] = STATE(4289), + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [4206] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4176), + [anon_sym_fun] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(4176), + [anon_sym_super] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4176), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4179), + [anon_sym_continue_AT] = ACTIONS(4179), + [anon_sym_break_AT] = ACTIONS(4179), + [anon_sym_this_AT] = ACTIONS(4179), + [anon_sym_super_AT] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4179), + [sym_integer_literal] = ACTIONS(4176), + [sym_hex_literal] = ACTIONS(4179), + [sym_bin_literal] = ACTIONS(4179), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_false] = ACTIONS(4176), + [anon_sym_SQUOTE] = ACTIONS(4179), + [sym_null_literal] = ACTIONS(4176), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4179), + }, + [4207] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(6845), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4196), + [anon_sym_fun] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4199), + [anon_sym_continue_AT] = ACTIONS(4199), + [anon_sym_break_AT] = ACTIONS(4199), + [anon_sym_this_AT] = ACTIONS(4199), + [anon_sym_super_AT] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4199), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4199), + [sym_bin_literal] = ACTIONS(4199), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4199), + [sym_null_literal] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4199), + }, + [4208] = { + [sym_class_body] = STATE(3436), + [sym_type_constraints] = STATE(3363), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [4209] = { + [sym__alpha_identifier] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4179), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7374), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4176), + [anon_sym_set] = ACTIONS(4176), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4179), + [sym_label] = ACTIONS(4176), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4179), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4179), + [anon_sym_DASH_DASH] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4176), + [anon_sym_inner] = ACTIONS(4176), + [anon_sym_value] = ACTIONS(4176), + [anon_sym_expect] = ACTIONS(4176), + [anon_sym_actual] = ACTIONS(4176), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4179), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4210] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_RBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7378), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [anon_sym_DASH_GT] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7380), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [4211] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_RBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7382), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_DASH_GT] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_while] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4212] = { + [sym_function_body] = STATE(3513), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(7384), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_RPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [4213] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_RBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [anon_sym_DASH_GT] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_while] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7386), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [4214] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7388), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [anon_sym_DASH_GT] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4215] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7390), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4216] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_RBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4217] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7394), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [4218] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7396), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_this] = ACTIONS(4736), + [anon_sym_super] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4736), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4736), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_when] = ACTIONS(4736), + [anon_sym_try] = ACTIONS(4736), + [anon_sym_throw] = ACTIONS(4736), + [anon_sym_return] = ACTIONS(4736), + [anon_sym_continue] = ACTIONS(4736), + [anon_sym_break] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4738), + [anon_sym_continue_AT] = ACTIONS(4738), + [anon_sym_break_AT] = ACTIONS(4738), + [anon_sym_this_AT] = ACTIONS(4738), + [anon_sym_super_AT] = ACTIONS(4738), + [sym_real_literal] = ACTIONS(4738), + [sym_integer_literal] = ACTIONS(4736), + [sym_hex_literal] = ACTIONS(4738), + [sym_bin_literal] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4736), + [anon_sym_false] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4738), + [sym_null_literal] = ACTIONS(4736), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), + }, + [4219] = { + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4199), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4199), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(4199), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(4199), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4199), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_BANG] = ACTIONS(3942), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(4199), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4220] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_object] = ACTIONS(4204), + [anon_sym_fun] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_this] = ACTIONS(4204), + [anon_sym_super] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_when] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4204), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4204), + [anon_sym_false] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym_null_literal] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [4221] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7404), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4182), + [anon_sym_continue_AT] = ACTIONS(4182), + [anon_sym_break_AT] = ACTIONS(4182), + [anon_sym_this_AT] = ACTIONS(4182), + [anon_sym_super_AT] = ACTIONS(4182), + [sym_real_literal] = ACTIONS(4182), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4182), + [sym_bin_literal] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4182), + [sym_null_literal] = ACTIONS(4184), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4182), + }, + [4222] = { + [sym_function_body] = STATE(3893), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_COMMA] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_where] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [4223] = { + [sym_function_body] = STATE(3898), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [4224] = { + [sym_type_constraints] = STATE(3828), + [sym_enum_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(7406), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_COMMA] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [4225] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_object] = ACTIONS(4778), + [anon_sym_fun] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_this] = ACTIONS(4778), + [anon_sym_super] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(7408), + [anon_sym_when] = ACTIONS(4778), + [anon_sym_try] = ACTIONS(4778), + [anon_sym_throw] = ACTIONS(4778), + [anon_sym_return] = ACTIONS(4778), + [anon_sym_continue] = ACTIONS(4778), + [anon_sym_break] = ACTIONS(4778), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4780), + [anon_sym_continue_AT] = ACTIONS(4780), + [anon_sym_break_AT] = ACTIONS(4780), + [anon_sym_this_AT] = ACTIONS(4780), + [anon_sym_super_AT] = ACTIONS(4780), + [sym_real_literal] = ACTIONS(4780), + [sym_integer_literal] = ACTIONS(4778), + [sym_hex_literal] = ACTIONS(4780), + [sym_bin_literal] = ACTIONS(4780), + [anon_sym_true] = ACTIONS(4778), + [anon_sym_false] = ACTIONS(4778), + [anon_sym_SQUOTE] = ACTIONS(4780), + [sym_null_literal] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4780), + }, + [4226] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_object] = ACTIONS(4796), + [anon_sym_fun] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7410), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_this] = ACTIONS(4796), + [anon_sym_super] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_if] = ACTIONS(4796), + [anon_sym_else] = ACTIONS(7412), + [anon_sym_when] = ACTIONS(4796), + [anon_sym_try] = ACTIONS(4796), + [anon_sym_throw] = ACTIONS(4796), + [anon_sym_return] = ACTIONS(4796), + [anon_sym_continue] = ACTIONS(4796), + [anon_sym_break] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4798), + [anon_sym_continue_AT] = ACTIONS(4798), + [anon_sym_break_AT] = ACTIONS(4798), + [anon_sym_this_AT] = ACTIONS(4798), + [anon_sym_super_AT] = ACTIONS(4798), + [sym_real_literal] = ACTIONS(4798), + [sym_integer_literal] = ACTIONS(4796), + [sym_hex_literal] = ACTIONS(4798), + [sym_bin_literal] = ACTIONS(4798), + [anon_sym_true] = ACTIONS(4796), + [anon_sym_false] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4798), + [sym_null_literal] = ACTIONS(4796), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4798), + }, + [4227] = { + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [4228] = { + [sym_class_body] = STATE(4052), + [sym_type_constraints] = STATE(3807), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4229] = { + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_COMMA] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_where] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4230] = { + [sym_type_constraints] = STATE(3792), + [sym_enum_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_COMMA] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4231] = { + [sym_class_body] = STATE(3467), + [sym_type_constraints] = STATE(3313), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(7418), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_while] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [4232] = { + [sym_type_constraints] = STATE(3309), + [sym_enum_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4233] = { + [sym__type] = STATE(9390), + [sym__type_reference] = STATE(8089), + [sym_not_nullable_type] = STATE(9390), + [sym_nullable_type] = STATE(9390), + [sym_user_type] = STATE(8379), + [sym__simple_user_type] = STATE(8093), + [sym_type_projection] = STATE(8954), + [sym_type_projection_modifiers] = STATE(6385), + [sym__type_projection_modifier] = STATE(7267), + [sym_function_type] = STATE(9390), + [sym_function_type_parameters] = STATE(9981), + [sym_parenthesized_type] = STATE(8089), + [sym_parenthesized_user_type] = STATE(9830), + [sym_type_modifiers] = STATE(6488), + [sym__type_modifier] = STATE(7266), + [sym_variance_modifier] = STATE(7267), + [sym_annotation] = STATE(7266), + [sym__single_annotation] = STATE(7902), + [sym__multi_annotation] = STATE(7902), + [sym_simple_identifier] = STATE(7963), + [sym__lexical_identifier] = STATE(6078), + [aux_sym_type_projection_modifiers_repeat1] = STATE(7267), + [aux_sym_type_modifiers_repeat1] = STATE(7266), + [sym__alpha_identifier] = ACTIONS(7420), + [anon_sym_AT] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7426), + [anon_sym_LBRACE] = ACTIONS(7426), + [anon_sym_LPAREN] = ACTIONS(7428), + [anon_sym_object] = ACTIONS(7431), + [anon_sym_fun] = ACTIONS(7431), + [anon_sym_get] = ACTIONS(7433), + [anon_sym_set] = ACTIONS(7433), + [anon_sym_this] = ACTIONS(7431), + [anon_sym_super] = ACTIONS(7431), + [anon_sym_dynamic] = ACTIONS(7436), + [anon_sym_STAR] = ACTIONS(7438), + [sym_label] = ACTIONS(7431), + [anon_sym_in] = ACTIONS(7441), + [anon_sym_if] = ACTIONS(7431), + [anon_sym_when] = ACTIONS(7431), + [anon_sym_try] = ACTIONS(7431), + [anon_sym_throw] = ACTIONS(7431), + [anon_sym_return] = ACTIONS(7431), + [anon_sym_continue] = ACTIONS(7431), + [anon_sym_break] = ACTIONS(7431), + [anon_sym_COLON_COLON] = ACTIONS(7426), + [anon_sym_PLUS] = ACTIONS(7431), + [anon_sym_DASH] = ACTIONS(7431), + [anon_sym_PLUS_PLUS] = ACTIONS(7426), + [anon_sym_DASH_DASH] = ACTIONS(7426), + [anon_sym_BANG] = ACTIONS(7426), + [anon_sym_suspend] = ACTIONS(7443), + [anon_sym_data] = ACTIONS(7433), + [anon_sym_inner] = ACTIONS(7433), + [anon_sym_value] = ACTIONS(7433), + [anon_sym_out] = ACTIONS(7441), + [anon_sym_expect] = ACTIONS(7433), + [anon_sym_actual] = ACTIONS(7433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7426), + [anon_sym_continue_AT] = ACTIONS(7426), + [anon_sym_break_AT] = ACTIONS(7426), + [anon_sym_this_AT] = ACTIONS(7426), + [anon_sym_super_AT] = ACTIONS(7426), + [sym_real_literal] = ACTIONS(7426), + [sym_integer_literal] = ACTIONS(7431), + [sym_hex_literal] = ACTIONS(7426), + [sym_bin_literal] = ACTIONS(7426), + [anon_sym_true] = ACTIONS(7431), + [anon_sym_false] = ACTIONS(7431), + [anon_sym_SQUOTE] = ACTIONS(7426), + [sym_null_literal] = ACTIONS(7431), + [sym__backtick_identifier] = ACTIONS(7445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7426), + }, + [4234] = { + [sym_class_body] = STATE(4073), + [sym_type_constraints] = STATE(3798), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [4235] = { + [sym_class_body] = STATE(4082), + [sym_type_constraints] = STATE(3763), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6276), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4236] = { + [sym_class_body] = STATE(4084), + [sym_type_constraints] = STATE(3787), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(7448), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [4237] = { + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4238] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4239] = { + [sym_function_body] = STATE(3400), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_RPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_while] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [4240] = { + [sym_type_constraints] = STATE(3828), + [sym_enum_class_body] = STATE(4022), + [sym__alpha_identifier] = ACTIONS(4226), + [anon_sym_AT] = ACTIONS(4228), + [anon_sym_COLON] = ACTIONS(7450), + [anon_sym_LBRACK] = ACTIONS(4228), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_as] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym_LT] = ACTIONS(4226), + [anon_sym_GT] = ACTIONS(4226), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym_get] = ACTIONS(4226), + [anon_sym_set] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4226), + [anon_sym_DOT_DOT] = ACTIONS(4228), + [anon_sym_QMARK_COLON] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_PIPE_PIPE] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_BANG_EQ] = ACTIONS(4226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ] = ACTIONS(4226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4228), + [anon_sym_LT_EQ] = ACTIONS(4228), + [anon_sym_GT_EQ] = ACTIONS(4228), + [anon_sym_BANGin] = ACTIONS(4228), + [anon_sym_is] = ACTIONS(4226), + [anon_sym_BANGis] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_SLASH] = ACTIONS(4226), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4228), + [anon_sym_suspend] = ACTIONS(4226), + [anon_sym_sealed] = ACTIONS(4226), + [anon_sym_annotation] = ACTIONS(4226), + [anon_sym_data] = ACTIONS(4226), + [anon_sym_inner] = ACTIONS(4226), + [anon_sym_value] = ACTIONS(4226), + [anon_sym_override] = ACTIONS(4226), + [anon_sym_lateinit] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_internal] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_tailrec] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_infix] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym_external] = ACTIONS(4226), + [sym_property_modifier] = ACTIONS(4226), + [anon_sym_abstract] = ACTIONS(4226), + [anon_sym_final] = ACTIONS(4226), + [anon_sym_open] = ACTIONS(4226), + [anon_sym_vararg] = ACTIONS(4226), + [anon_sym_noinline] = ACTIONS(4226), + [anon_sym_crossinline] = ACTIONS(4226), + [anon_sym_expect] = ACTIONS(4226), + [anon_sym_actual] = ACTIONS(4226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4228), + [sym__automatic_semicolon] = ACTIONS(4228), + [sym_safe_nav] = ACTIONS(4228), + [sym_multiline_comment] = ACTIONS(3), + }, + [4241] = { + [sym_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7452), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_where] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [4242] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4174), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_while] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [4243] = { + [sym_value_arguments] = STATE(4042), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(7456), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4244] = { + [sym_class_body] = STATE(4073), + [sym_type_constraints] = STATE(3798), + [sym__alpha_identifier] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(6380), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3254), + [sym_label] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_QMARK_COLON] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_as_QMARK] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_BANG_BANG] = ACTIONS(3254), + [anon_sym_suspend] = ACTIONS(3250), + [anon_sym_sealed] = ACTIONS(3250), + [anon_sym_annotation] = ACTIONS(3250), + [anon_sym_data] = ACTIONS(3250), + [anon_sym_inner] = ACTIONS(3250), + [anon_sym_value] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_lateinit] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_internal] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_tailrec] = ACTIONS(3250), + [anon_sym_operator] = ACTIONS(3250), + [anon_sym_infix] = ACTIONS(3250), + [anon_sym_inline] = ACTIONS(3250), + [anon_sym_external] = ACTIONS(3250), + [sym_property_modifier] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_final] = ACTIONS(3250), + [anon_sym_open] = ACTIONS(3250), + [anon_sym_vararg] = ACTIONS(3250), + [anon_sym_noinline] = ACTIONS(3250), + [anon_sym_crossinline] = ACTIONS(3250), + [anon_sym_expect] = ACTIONS(3250), + [anon_sym_actual] = ACTIONS(3250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3254), + [sym__automatic_semicolon] = ACTIONS(3254), + [sym_safe_nav] = ACTIONS(3254), + [sym_multiline_comment] = ACTIONS(3), + }, + [4245] = { + [sym_class_body] = STATE(4084), + [sym_type_constraints] = STATE(3787), + [sym__alpha_identifier] = ACTIONS(4248), + [anon_sym_AT] = ACTIONS(4250), + [anon_sym_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4248), + [anon_sym_as] = ACTIONS(4248), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_get] = ACTIONS(4248), + [anon_sym_set] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4248), + [anon_sym_DOT_DOT] = ACTIONS(4250), + [anon_sym_QMARK_COLON] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4248), + [anon_sym_COLON_COLON] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ] = ACTIONS(4248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_BANGin] = ACTIONS(4250), + [anon_sym_is] = ACTIONS(4248), + [anon_sym_BANGis] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4250), + [anon_sym_suspend] = ACTIONS(4248), + [anon_sym_sealed] = ACTIONS(4248), + [anon_sym_annotation] = ACTIONS(4248), + [anon_sym_data] = ACTIONS(4248), + [anon_sym_inner] = ACTIONS(4248), + [anon_sym_value] = ACTIONS(4248), + [anon_sym_override] = ACTIONS(4248), + [anon_sym_lateinit] = ACTIONS(4248), + [anon_sym_public] = ACTIONS(4248), + [anon_sym_private] = ACTIONS(4248), + [anon_sym_internal] = ACTIONS(4248), + [anon_sym_protected] = ACTIONS(4248), + [anon_sym_tailrec] = ACTIONS(4248), + [anon_sym_operator] = ACTIONS(4248), + [anon_sym_infix] = ACTIONS(4248), + [anon_sym_inline] = ACTIONS(4248), + [anon_sym_external] = ACTIONS(4248), + [sym_property_modifier] = ACTIONS(4248), + [anon_sym_abstract] = ACTIONS(4248), + [anon_sym_final] = ACTIONS(4248), + [anon_sym_open] = ACTIONS(4248), + [anon_sym_vararg] = ACTIONS(4248), + [anon_sym_noinline] = ACTIONS(4248), + [anon_sym_crossinline] = ACTIONS(4248), + [anon_sym_expect] = ACTIONS(4248), + [anon_sym_actual] = ACTIONS(4248), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4250), + [sym__automatic_semicolon] = ACTIONS(4250), + [sym_safe_nav] = ACTIONS(4250), + [sym_multiline_comment] = ACTIONS(3), + }, + [4246] = { + [sym_type_constraints] = STATE(3830), + [sym_enum_class_body] = STATE(4082), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6376), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4247] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(7460), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4248] = { + [sym_function_body] = STATE(3969), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4281), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(7462), + [anon_sym_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4281), + [anon_sym_as] = ACTIONS(4281), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4281), + [anon_sym_GT] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_get] = ACTIONS(4281), + [anon_sym_set] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4281), + [anon_sym_DOT_DOT] = ACTIONS(4283), + [anon_sym_QMARK_COLON] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_PIPE_PIPE] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_BANG_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_BANGin] = ACTIONS(4283), + [anon_sym_is] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_SLASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4283), + [anon_sym_suspend] = ACTIONS(4281), + [anon_sym_sealed] = ACTIONS(4281), + [anon_sym_annotation] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4281), + [anon_sym_inner] = ACTIONS(4281), + [anon_sym_value] = ACTIONS(4281), + [anon_sym_override] = ACTIONS(4281), + [anon_sym_lateinit] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_internal] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_tailrec] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_infix] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym_external] = ACTIONS(4281), + [sym_property_modifier] = ACTIONS(4281), + [anon_sym_abstract] = ACTIONS(4281), + [anon_sym_final] = ACTIONS(4281), + [anon_sym_open] = ACTIONS(4281), + [anon_sym_vararg] = ACTIONS(4281), + [anon_sym_noinline] = ACTIONS(4281), + [anon_sym_crossinline] = ACTIONS(4281), + [anon_sym_expect] = ACTIONS(4281), + [anon_sym_actual] = ACTIONS(4281), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4283), + [sym__automatic_semicolon] = ACTIONS(4283), + [sym_safe_nav] = ACTIONS(4283), + [sym_multiline_comment] = ACTIONS(3), + }, + [4249] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4242), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_while] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_suspend] = ACTIONS(4549), + [anon_sym_sealed] = ACTIONS(4549), + [anon_sym_annotation] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_lateinit] = ACTIONS(4549), + [anon_sym_public] = ACTIONS(4549), + [anon_sym_private] = ACTIONS(4549), + [anon_sym_internal] = ACTIONS(4549), + [anon_sym_protected] = ACTIONS(4549), + [anon_sym_tailrec] = ACTIONS(4549), + [anon_sym_operator] = ACTIONS(4549), + [anon_sym_infix] = ACTIONS(4549), + [anon_sym_inline] = ACTIONS(4549), + [anon_sym_external] = ACTIONS(4549), + [sym_property_modifier] = ACTIONS(4549), + [anon_sym_abstract] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_open] = ACTIONS(4549), + [anon_sym_vararg] = ACTIONS(4549), + [anon_sym_noinline] = ACTIONS(4549), + [anon_sym_crossinline] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + }, + [4250] = { + [sym_function_body] = STATE(3459), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_RPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4251] = { + [sym_function_body] = STATE(3409), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_RPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_while] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [4252] = { + [sym_function_body] = STATE(3412), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [4253] = { + [sym_function_body] = STATE(3421), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4254] = { + [sym_class_body] = STATE(4082), + [sym_type_constraints] = STATE(3763), + [sym__alpha_identifier] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_DOT] = ACTIONS(3228), + [anon_sym_as] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_GT] = ACTIONS(3228), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_STAR] = ACTIONS(3232), + [sym_label] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_QMARK_COLON] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3232), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_is] = ACTIONS(3228), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_as_QMARK] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_BANG_BANG] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(3228), + [anon_sym_sealed] = ACTIONS(3228), + [anon_sym_annotation] = ACTIONS(3228), + [anon_sym_data] = ACTIONS(3228), + [anon_sym_inner] = ACTIONS(3228), + [anon_sym_value] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_lateinit] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_internal] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_tailrec] = ACTIONS(3228), + [anon_sym_operator] = ACTIONS(3228), + [anon_sym_infix] = ACTIONS(3228), + [anon_sym_inline] = ACTIONS(3228), + [anon_sym_external] = ACTIONS(3228), + [sym_property_modifier] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_final] = ACTIONS(3228), + [anon_sym_open] = ACTIONS(3228), + [anon_sym_vararg] = ACTIONS(3228), + [anon_sym_noinline] = ACTIONS(3228), + [anon_sym_crossinline] = ACTIONS(3228), + [anon_sym_expect] = ACTIONS(3228), + [anon_sym_actual] = ACTIONS(3228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3232), + [sym__automatic_semicolon] = ACTIONS(3232), + [sym_safe_nav] = ACTIONS(3232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4255] = { + [sym_function_body] = STATE(3434), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4256] = { + [sym_function_body] = STATE(3577), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [4257] = { + [sym_type_constraints] = STATE(3792), + [sym_enum_class_body] = STATE(4052), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4258] = { + [sym_class_body] = STATE(4052), + [sym_type_constraints] = STATE(3807), + [sym__alpha_identifier] = ACTIONS(4232), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_COLON] = ACTIONS(7466), + [anon_sym_LBRACK] = ACTIONS(4234), + [anon_sym_DOT] = ACTIONS(4232), + [anon_sym_as] = ACTIONS(4232), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LPAREN] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(4234), + [anon_sym_get] = ACTIONS(4232), + [anon_sym_set] = ACTIONS(4232), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4232), + [anon_sym_DOT_DOT] = ACTIONS(4234), + [anon_sym_QMARK_COLON] = ACTIONS(4234), + [anon_sym_AMP_AMP] = ACTIONS(4234), + [anon_sym_PIPE_PIPE] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_BANG_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4234), + [anon_sym_LT_EQ] = ACTIONS(4234), + [anon_sym_GT_EQ] = ACTIONS(4234), + [anon_sym_BANGin] = ACTIONS(4234), + [anon_sym_is] = ACTIONS(4232), + [anon_sym_BANGis] = ACTIONS(4234), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4234), + [anon_sym_DASH_DASH] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4232), + [anon_sym_sealed] = ACTIONS(4232), + [anon_sym_annotation] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4232), + [anon_sym_inner] = ACTIONS(4232), + [anon_sym_value] = ACTIONS(4232), + [anon_sym_override] = ACTIONS(4232), + [anon_sym_lateinit] = ACTIONS(4232), + [anon_sym_public] = ACTIONS(4232), + [anon_sym_private] = ACTIONS(4232), + [anon_sym_internal] = ACTIONS(4232), + [anon_sym_protected] = ACTIONS(4232), + [anon_sym_tailrec] = ACTIONS(4232), + [anon_sym_operator] = ACTIONS(4232), + [anon_sym_infix] = ACTIONS(4232), + [anon_sym_inline] = ACTIONS(4232), + [anon_sym_external] = ACTIONS(4232), + [sym_property_modifier] = ACTIONS(4232), + [anon_sym_abstract] = ACTIONS(4232), + [anon_sym_final] = ACTIONS(4232), + [anon_sym_open] = ACTIONS(4232), + [anon_sym_vararg] = ACTIONS(4232), + [anon_sym_noinline] = ACTIONS(4232), + [anon_sym_crossinline] = ACTIONS(4232), + [anon_sym_expect] = ACTIONS(4232), + [anon_sym_actual] = ACTIONS(4232), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4234), + [sym__automatic_semicolon] = ACTIONS(4234), + [sym_safe_nav] = ACTIONS(4234), + [sym_multiline_comment] = ACTIONS(3), + }, + [4259] = { + [sym_function_body] = STATE(3551), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4260] = { + [sym_function_body] = STATE(3868), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4170), + [anon_sym_AT] = ACTIONS(4172), + [anon_sym_COLON] = ACTIONS(7468), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4170), + [anon_sym_as] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4172), + [anon_sym_LT] = ACTIONS(4170), + [anon_sym_GT] = ACTIONS(4170), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_get] = ACTIONS(4170), + [anon_sym_set] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4172), + [sym_label] = ACTIONS(4172), + [anon_sym_in] = ACTIONS(4170), + [anon_sym_DOT_DOT] = ACTIONS(4172), + [anon_sym_QMARK_COLON] = ACTIONS(4172), + [anon_sym_AMP_AMP] = ACTIONS(4172), + [anon_sym_PIPE_PIPE] = ACTIONS(4172), + [anon_sym_else] = ACTIONS(4170), + [anon_sym_COLON_COLON] = ACTIONS(4172), + [anon_sym_BANG_EQ] = ACTIONS(4170), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4172), + [anon_sym_EQ_EQ] = ACTIONS(4170), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4172), + [anon_sym_LT_EQ] = ACTIONS(4172), + [anon_sym_GT_EQ] = ACTIONS(4172), + [anon_sym_BANGin] = ACTIONS(4172), + [anon_sym_is] = ACTIONS(4170), + [anon_sym_BANGis] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4170), + [anon_sym_PERCENT] = ACTIONS(4172), + [anon_sym_as_QMARK] = ACTIONS(4172), + [anon_sym_PLUS_PLUS] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4172), + [anon_sym_BANG_BANG] = ACTIONS(4172), + [anon_sym_suspend] = ACTIONS(4170), + [anon_sym_sealed] = ACTIONS(4170), + [anon_sym_annotation] = ACTIONS(4170), + [anon_sym_data] = ACTIONS(4170), + [anon_sym_inner] = ACTIONS(4170), + [anon_sym_value] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4170), + [anon_sym_lateinit] = ACTIONS(4170), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_internal] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_tailrec] = ACTIONS(4170), + [anon_sym_operator] = ACTIONS(4170), + [anon_sym_infix] = ACTIONS(4170), + [anon_sym_inline] = ACTIONS(4170), + [anon_sym_external] = ACTIONS(4170), + [sym_property_modifier] = ACTIONS(4170), + [anon_sym_abstract] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(4170), + [anon_sym_open] = ACTIONS(4170), + [anon_sym_vararg] = ACTIONS(4170), + [anon_sym_noinline] = ACTIONS(4170), + [anon_sym_crossinline] = ACTIONS(4170), + [anon_sym_expect] = ACTIONS(4170), + [anon_sym_actual] = ACTIONS(4170), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4172), + [sym__automatic_semicolon] = ACTIONS(4172), + [sym_safe_nav] = ACTIONS(4172), + [sym_multiline_comment] = ACTIONS(3), + }, + [4261] = { + [sym_function_body] = STATE(3446), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_RPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4262] = { + [sym_type_constraints] = STATE(3810), + [sym_enum_class_body] = STATE(4034), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6360), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3240), + [sym_label] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3236), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_QMARK_COLON] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3240), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_is] = ACTIONS(3236), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_as_QMARK] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_BANG_BANG] = ACTIONS(3240), + [anon_sym_suspend] = ACTIONS(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [4263] = { + [sym_function_body] = STATE(3600), + [sym__block] = STATE(3620), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(7217), + [anon_sym_LBRACE] = ACTIONS(6517), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [4264] = { + [sym_class_body] = STATE(4080), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7470), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_COMMA] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_where] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [4265] = { + [sym_function_body] = STATE(4043), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4150), + [anon_sym_AT] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_as] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4152), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym_get] = ACTIONS(4150), + [anon_sym_set] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4150), + [anon_sym_DOT_DOT] = ACTIONS(4152), + [anon_sym_QMARK_COLON] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_PIPE_PIPE] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_BANG_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4152), + [anon_sym_LT_EQ] = ACTIONS(4152), + [anon_sym_GT_EQ] = ACTIONS(4152), + [anon_sym_BANGin] = ACTIONS(4152), + [anon_sym_is] = ACTIONS(4150), + [anon_sym_BANGis] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_SLASH] = ACTIONS(4150), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4152), + [anon_sym_suspend] = ACTIONS(4150), + [anon_sym_sealed] = ACTIONS(4150), + [anon_sym_annotation] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4150), + [anon_sym_inner] = ACTIONS(4150), + [anon_sym_value] = ACTIONS(4150), + [anon_sym_override] = ACTIONS(4150), + [anon_sym_lateinit] = ACTIONS(4150), + [anon_sym_public] = ACTIONS(4150), + [anon_sym_private] = ACTIONS(4150), + [anon_sym_internal] = ACTIONS(4150), + [anon_sym_protected] = ACTIONS(4150), + [anon_sym_tailrec] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_infix] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym_external] = ACTIONS(4150), + [sym_property_modifier] = ACTIONS(4150), + [anon_sym_abstract] = ACTIONS(4150), + [anon_sym_final] = ACTIONS(4150), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_vararg] = ACTIONS(4150), + [anon_sym_noinline] = ACTIONS(4150), + [anon_sym_crossinline] = ACTIONS(4150), + [anon_sym_expect] = ACTIONS(4150), + [anon_sym_actual] = ACTIONS(4150), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4152), + [sym__automatic_semicolon] = ACTIONS(4152), + [sym_safe_nav] = ACTIONS(4152), + [sym_multiline_comment] = ACTIONS(3), + }, + [4266] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_where] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4267] = { + [sym_function_body] = STATE(3942), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4082), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_as] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [sym_label] = ACTIONS(4084), + [anon_sym_in] = ACTIONS(4082), + [anon_sym_DOT_DOT] = ACTIONS(4084), + [anon_sym_QMARK_COLON] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_else] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_BANG_EQ] = ACTIONS(4082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4084), + [anon_sym_EQ_EQ] = ACTIONS(4082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4084), + [anon_sym_LT_EQ] = ACTIONS(4084), + [anon_sym_GT_EQ] = ACTIONS(4084), + [anon_sym_BANGin] = ACTIONS(4084), + [anon_sym_is] = ACTIONS(4082), + [anon_sym_BANGis] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4084), + [anon_sym_as_QMARK] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_BANG_BANG] = ACTIONS(4084), + [anon_sym_suspend] = ACTIONS(4082), + [anon_sym_sealed] = ACTIONS(4082), + [anon_sym_annotation] = ACTIONS(4082), + [anon_sym_data] = ACTIONS(4082), + [anon_sym_inner] = ACTIONS(4082), + [anon_sym_value] = ACTIONS(4082), + [anon_sym_override] = ACTIONS(4082), + [anon_sym_lateinit] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_internal] = ACTIONS(4082), + [anon_sym_protected] = ACTIONS(4082), + [anon_sym_tailrec] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_infix] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym_external] = ACTIONS(4082), + [sym_property_modifier] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4082), + [anon_sym_vararg] = ACTIONS(4082), + [anon_sym_noinline] = ACTIONS(4082), + [anon_sym_crossinline] = ACTIONS(4082), + [anon_sym_expect] = ACTIONS(4082), + [anon_sym_actual] = ACTIONS(4082), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4084), + [sym__automatic_semicolon] = ACTIONS(4084), + [sym_safe_nav] = ACTIONS(4084), + [sym_multiline_comment] = ACTIONS(3), + }, + [4268] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4269] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4270] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4271] = { + [sym_function_body] = STATE(4028), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4140), + [anon_sym_AT] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_as] = ACTIONS(4140), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_LPAREN] = ACTIONS(4142), + [anon_sym_LT] = ACTIONS(4140), + [anon_sym_GT] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym_get] = ACTIONS(4140), + [anon_sym_set] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [sym_label] = ACTIONS(4142), + [anon_sym_in] = ACTIONS(4140), + [anon_sym_DOT_DOT] = ACTIONS(4142), + [anon_sym_QMARK_COLON] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_else] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_BANG_EQ] = ACTIONS(4140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4142), + [anon_sym_EQ_EQ] = ACTIONS(4140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4142), + [anon_sym_LT_EQ] = ACTIONS(4142), + [anon_sym_GT_EQ] = ACTIONS(4142), + [anon_sym_BANGin] = ACTIONS(4142), + [anon_sym_is] = ACTIONS(4140), + [anon_sym_BANGis] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_SLASH] = ACTIONS(4140), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_as_QMARK] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_BANG_BANG] = ACTIONS(4142), + [anon_sym_suspend] = ACTIONS(4140), + [anon_sym_sealed] = ACTIONS(4140), + [anon_sym_annotation] = ACTIONS(4140), + [anon_sym_data] = ACTIONS(4140), + [anon_sym_inner] = ACTIONS(4140), + [anon_sym_value] = ACTIONS(4140), + [anon_sym_override] = ACTIONS(4140), + [anon_sym_lateinit] = ACTIONS(4140), + [anon_sym_public] = ACTIONS(4140), + [anon_sym_private] = ACTIONS(4140), + [anon_sym_internal] = ACTIONS(4140), + [anon_sym_protected] = ACTIONS(4140), + [anon_sym_tailrec] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_infix] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym_external] = ACTIONS(4140), + [sym_property_modifier] = ACTIONS(4140), + [anon_sym_abstract] = ACTIONS(4140), + [anon_sym_final] = ACTIONS(4140), + [anon_sym_open] = ACTIONS(4140), + [anon_sym_vararg] = ACTIONS(4140), + [anon_sym_noinline] = ACTIONS(4140), + [anon_sym_crossinline] = ACTIONS(4140), + [anon_sym_expect] = ACTIONS(4140), + [anon_sym_actual] = ACTIONS(4140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4142), + [sym__automatic_semicolon] = ACTIONS(4142), + [sym_safe_nav] = ACTIONS(4142), + [sym_multiline_comment] = ACTIONS(3), + }, + [4272] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4273] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4274] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_where] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4275] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4275), + [sym__alpha_identifier] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_as] = ACTIONS(4557), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(7498), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_where] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4557), + [anon_sym_set] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [sym_label] = ACTIONS(4559), + [anon_sym_in] = ACTIONS(4557), + [anon_sym_DOT_DOT] = ACTIONS(4559), + [anon_sym_QMARK_COLON] = ACTIONS(4559), + [anon_sym_AMP_AMP] = ACTIONS(4559), + [anon_sym_PIPE_PIPE] = ACTIONS(4559), + [anon_sym_else] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4559), + [anon_sym_BANG_EQ] = ACTIONS(4557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4559), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4559), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_BANGis] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_as_QMARK] = ACTIONS(4559), + [anon_sym_PLUS_PLUS] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4559), + [anon_sym_BANG_BANG] = ACTIONS(4559), + [anon_sym_suspend] = ACTIONS(4557), + [anon_sym_sealed] = ACTIONS(4557), + [anon_sym_annotation] = ACTIONS(4557), + [anon_sym_data] = ACTIONS(4557), + [anon_sym_inner] = ACTIONS(4557), + [anon_sym_value] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_lateinit] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_protected] = ACTIONS(4557), + [anon_sym_tailrec] = ACTIONS(4557), + [anon_sym_operator] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_inline] = ACTIONS(4557), + [anon_sym_external] = ACTIONS(4557), + [sym_property_modifier] = ACTIONS(4557), + [anon_sym_abstract] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_vararg] = ACTIONS(4557), + [anon_sym_noinline] = ACTIONS(4557), + [anon_sym_crossinline] = ACTIONS(4557), + [anon_sym_expect] = ACTIONS(4557), + [anon_sym_actual] = ACTIONS(4557), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4559), + [sym__automatic_semicolon] = ACTIONS(4559), + [sym_safe_nav] = ACTIONS(4559), + [sym_multiline_comment] = ACTIONS(3), + }, + [4276] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4277] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4278] = { + [sym_function_body] = STATE(3931), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_as] = ACTIONS(4240), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4240), + [anon_sym_SEMI] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4240), + [anon_sym_set] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4242), + [sym_label] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4240), + [anon_sym_DOT_DOT] = ACTIONS(4242), + [anon_sym_QMARK_COLON] = ACTIONS(4242), + [anon_sym_AMP_AMP] = ACTIONS(4242), + [anon_sym_PIPE_PIPE] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4242), + [anon_sym_LT_EQ] = ACTIONS(4242), + [anon_sym_GT_EQ] = ACTIONS(4242), + [anon_sym_BANGin] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4240), + [anon_sym_BANGis] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_as_QMARK] = ACTIONS(4242), + [anon_sym_PLUS_PLUS] = ACTIONS(4242), + [anon_sym_DASH_DASH] = ACTIONS(4242), + [anon_sym_BANG_BANG] = ACTIONS(4242), + [anon_sym_suspend] = ACTIONS(4240), + [anon_sym_sealed] = ACTIONS(4240), + [anon_sym_annotation] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4240), + [anon_sym_inner] = ACTIONS(4240), + [anon_sym_value] = ACTIONS(4240), + [anon_sym_override] = ACTIONS(4240), + [anon_sym_lateinit] = ACTIONS(4240), + [anon_sym_public] = ACTIONS(4240), + [anon_sym_private] = ACTIONS(4240), + [anon_sym_internal] = ACTIONS(4240), + [anon_sym_protected] = ACTIONS(4240), + [anon_sym_tailrec] = ACTIONS(4240), + [anon_sym_operator] = ACTIONS(4240), + [anon_sym_infix] = ACTIONS(4240), + [anon_sym_inline] = ACTIONS(4240), + [anon_sym_external] = ACTIONS(4240), + [sym_property_modifier] = ACTIONS(4240), + [anon_sym_abstract] = ACTIONS(4240), + [anon_sym_final] = ACTIONS(4240), + [anon_sym_open] = ACTIONS(4240), + [anon_sym_vararg] = ACTIONS(4240), + [anon_sym_noinline] = ACTIONS(4240), + [anon_sym_crossinline] = ACTIONS(4240), + [anon_sym_expect] = ACTIONS(4240), + [anon_sym_actual] = ACTIONS(4240), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4242), + [sym__automatic_semicolon] = ACTIONS(4242), + [sym_safe_nav] = ACTIONS(4242), + [sym_multiline_comment] = ACTIONS(3), + }, + [4279] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4280] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4281] = { + [sym_function_body] = STATE(3898), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym_get] = ACTIONS(4394), + [anon_sym_set] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4396), + [sym_label] = ACTIONS(4396), + [anon_sym_in] = ACTIONS(4394), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_QMARK_COLON] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_PIPE_PIPE] = ACTIONS(4396), + [anon_sym_else] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_BANG_EQ] = ACTIONS(4394), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4396), + [anon_sym_EQ_EQ] = ACTIONS(4394), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4396), + [anon_sym_LT_EQ] = ACTIONS(4396), + [anon_sym_GT_EQ] = ACTIONS(4396), + [anon_sym_BANGin] = ACTIONS(4396), + [anon_sym_is] = ACTIONS(4394), + [anon_sym_BANGis] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_SLASH] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_as_QMARK] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_BANG_BANG] = ACTIONS(4396), + [anon_sym_suspend] = ACTIONS(4394), + [anon_sym_sealed] = ACTIONS(4394), + [anon_sym_annotation] = ACTIONS(4394), + [anon_sym_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = ACTIONS(4394), + [anon_sym_override] = ACTIONS(4394), + [anon_sym_lateinit] = ACTIONS(4394), + [anon_sym_public] = ACTIONS(4394), + [anon_sym_private] = ACTIONS(4394), + [anon_sym_internal] = ACTIONS(4394), + [anon_sym_protected] = ACTIONS(4394), + [anon_sym_tailrec] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_infix] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym_external] = ACTIONS(4394), + [sym_property_modifier] = ACTIONS(4394), + [anon_sym_abstract] = ACTIONS(4394), + [anon_sym_final] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4394), + [anon_sym_vararg] = ACTIONS(4394), + [anon_sym_noinline] = ACTIONS(4394), + [anon_sym_crossinline] = ACTIONS(4394), + [anon_sym_expect] = ACTIONS(4394), + [anon_sym_actual] = ACTIONS(4394), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4396), + [sym__automatic_semicolon] = ACTIONS(4396), + [sym_safe_nav] = ACTIONS(4396), + [sym_multiline_comment] = ACTIONS(3), + }, + [4282] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4283] = { + [sym_class_body] = STATE(3482), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7501), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_RPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_while] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [4284] = { + [sym_function_body] = STATE(4068), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4094), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_as] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4094), + [anon_sym_LT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(4092), + [anon_sym_set] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [sym_label] = ACTIONS(4094), + [anon_sym_in] = ACTIONS(4092), + [anon_sym_DOT_DOT] = ACTIONS(4094), + [anon_sym_QMARK_COLON] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_PIPE_PIPE] = ACTIONS(4094), + [anon_sym_else] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_BANG_EQ] = ACTIONS(4092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4094), + [anon_sym_EQ_EQ] = ACTIONS(4092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4094), + [anon_sym_LT_EQ] = ACTIONS(4094), + [anon_sym_GT_EQ] = ACTIONS(4094), + [anon_sym_BANGin] = ACTIONS(4094), + [anon_sym_is] = ACTIONS(4092), + [anon_sym_BANGis] = ACTIONS(4094), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_SLASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4094), + [anon_sym_as_QMARK] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_BANG_BANG] = ACTIONS(4094), + [anon_sym_suspend] = ACTIONS(4092), + [anon_sym_sealed] = ACTIONS(4092), + [anon_sym_annotation] = ACTIONS(4092), + [anon_sym_data] = ACTIONS(4092), + [anon_sym_inner] = ACTIONS(4092), + [anon_sym_value] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_lateinit] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_internal] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_tailrec] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_infix] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym_external] = ACTIONS(4092), + [sym_property_modifier] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_final] = ACTIONS(4092), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_vararg] = ACTIONS(4092), + [anon_sym_noinline] = ACTIONS(4092), + [anon_sym_crossinline] = ACTIONS(4092), + [anon_sym_expect] = ACTIONS(4092), + [anon_sym_actual] = ACTIONS(4092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4094), + [sym__automatic_semicolon] = ACTIONS(4094), + [sym_safe_nav] = ACTIONS(4094), + [sym_multiline_comment] = ACTIONS(3), + }, + [4285] = { + [sym_function_body] = STATE(3893), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4401), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_LBRACK] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_as] = ACTIONS(4401), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_LT] = ACTIONS(4401), + [anon_sym_GT] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4401), + [anon_sym_set] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4401), + [anon_sym_DOT_DOT] = ACTIONS(4403), + [anon_sym_QMARK_COLON] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_PIPE_PIPE] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_BANG_EQ] = ACTIONS(4401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ] = ACTIONS(4401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_BANGin] = ACTIONS(4403), + [anon_sym_is] = ACTIONS(4401), + [anon_sym_BANGis] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_SLASH] = ACTIONS(4401), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4403), + [anon_sym_suspend] = ACTIONS(4401), + [anon_sym_sealed] = ACTIONS(4401), + [anon_sym_annotation] = ACTIONS(4401), + [anon_sym_data] = ACTIONS(4401), + [anon_sym_inner] = ACTIONS(4401), + [anon_sym_value] = ACTIONS(4401), + [anon_sym_override] = ACTIONS(4401), + [anon_sym_lateinit] = ACTIONS(4401), + [anon_sym_public] = ACTIONS(4401), + [anon_sym_private] = ACTIONS(4401), + [anon_sym_internal] = ACTIONS(4401), + [anon_sym_protected] = ACTIONS(4401), + [anon_sym_tailrec] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_infix] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym_external] = ACTIONS(4401), + [sym_property_modifier] = ACTIONS(4401), + [anon_sym_abstract] = ACTIONS(4401), + [anon_sym_final] = ACTIONS(4401), + [anon_sym_open] = ACTIONS(4401), + [anon_sym_vararg] = ACTIONS(4401), + [anon_sym_noinline] = ACTIONS(4401), + [anon_sym_crossinline] = ACTIONS(4401), + [anon_sym_expect] = ACTIONS(4401), + [anon_sym_actual] = ACTIONS(4401), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4403), + [sym__automatic_semicolon] = ACTIONS(4403), + [sym_safe_nav] = ACTIONS(4403), + [sym_multiline_comment] = ACTIONS(3), + }, + [4286] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4287] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4294), + [sym__alpha_identifier] = ACTIONS(4549), + [anon_sym_AT] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_as] = ACTIONS(4549), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4549), + [anon_sym_where] = ACTIONS(4549), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4549), + [anon_sym_set] = ACTIONS(4549), + [anon_sym_STAR] = ACTIONS(4551), + [sym_label] = ACTIONS(4551), + [anon_sym_in] = ACTIONS(4549), + [anon_sym_DOT_DOT] = ACTIONS(4551), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_else] = ACTIONS(4549), + [anon_sym_COLON_COLON] = ACTIONS(4551), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_BANGin] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4549), + [anon_sym_BANGis] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4549), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4549), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_as_QMARK] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_BANG_BANG] = ACTIONS(4551), + [anon_sym_suspend] = ACTIONS(4549), + [anon_sym_sealed] = ACTIONS(4549), + [anon_sym_annotation] = ACTIONS(4549), + [anon_sym_data] = ACTIONS(4549), + [anon_sym_inner] = ACTIONS(4549), + [anon_sym_value] = ACTIONS(4549), + [anon_sym_override] = ACTIONS(4549), + [anon_sym_lateinit] = ACTIONS(4549), + [anon_sym_public] = ACTIONS(4549), + [anon_sym_private] = ACTIONS(4549), + [anon_sym_internal] = ACTIONS(4549), + [anon_sym_protected] = ACTIONS(4549), + [anon_sym_tailrec] = ACTIONS(4549), + [anon_sym_operator] = ACTIONS(4549), + [anon_sym_infix] = ACTIONS(4549), + [anon_sym_inline] = ACTIONS(4549), + [anon_sym_external] = ACTIONS(4549), + [sym_property_modifier] = ACTIONS(4549), + [anon_sym_abstract] = ACTIONS(4549), + [anon_sym_final] = ACTIONS(4549), + [anon_sym_open] = ACTIONS(4549), + [anon_sym_vararg] = ACTIONS(4549), + [anon_sym_noinline] = ACTIONS(4549), + [anon_sym_crossinline] = ACTIONS(4549), + [anon_sym_expect] = ACTIONS(4549), + [anon_sym_actual] = ACTIONS(4549), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4551), + [sym__automatic_semicolon] = ACTIONS(4551), + [sym_safe_nav] = ACTIONS(4551), + [sym_multiline_comment] = ACTIONS(3), + }, + [4288] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4289] = { + [sym_function_body] = STATE(3919), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_as] = ACTIONS(4244), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4244), + [anon_sym_GT] = ACTIONS(4244), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4246), + [anon_sym_in] = ACTIONS(4244), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [anon_sym_QMARK_COLON] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_else] = ACTIONS(4244), + [anon_sym_COLON_COLON] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4246), + [anon_sym_EQ_EQ] = ACTIONS(4244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4246), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_BANGin] = ACTIONS(4246), + [anon_sym_is] = ACTIONS(4244), + [anon_sym_BANGis] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_SLASH] = ACTIONS(4244), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_as_QMARK] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_BANG_BANG] = ACTIONS(4246), + [anon_sym_suspend] = ACTIONS(4244), + [anon_sym_sealed] = ACTIONS(4244), + [anon_sym_annotation] = ACTIONS(4244), + [anon_sym_data] = ACTIONS(4244), + [anon_sym_inner] = ACTIONS(4244), + [anon_sym_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), + }, + [4290] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_where] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4291] = { + [sym_function_body] = STATE(3915), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [4292] = { + [sym_class_body] = STATE(3469), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7505), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5470), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [4293] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4294] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4275), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [4295] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4275), + [sym__alpha_identifier] = ACTIONS(4527), + [anon_sym_AT] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_as] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_where] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_get] = ACTIONS(4527), + [anon_sym_set] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4529), + [anon_sym_QMARK_COLON] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_BANGin] = ACTIONS(4529), + [anon_sym_is] = ACTIONS(4527), + [anon_sym_BANGis] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4529), + [anon_sym_suspend] = ACTIONS(4527), + [anon_sym_sealed] = ACTIONS(4527), + [anon_sym_annotation] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4527), + [anon_sym_inner] = ACTIONS(4527), + [anon_sym_value] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_lateinit] = ACTIONS(4527), + [anon_sym_public] = ACTIONS(4527), + [anon_sym_private] = ACTIONS(4527), + [anon_sym_internal] = ACTIONS(4527), + [anon_sym_protected] = ACTIONS(4527), + [anon_sym_tailrec] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_infix] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_external] = ACTIONS(4527), + [sym_property_modifier] = ACTIONS(4527), + [anon_sym_abstract] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_open] = ACTIONS(4527), + [anon_sym_vararg] = ACTIONS(4527), + [anon_sym_noinline] = ACTIONS(4527), + [anon_sym_crossinline] = ACTIONS(4527), + [anon_sym_expect] = ACTIONS(4527), + [anon_sym_actual] = ACTIONS(4527), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4529), + [sym__automatic_semicolon] = ACTIONS(4529), + [sym_safe_nav] = ACTIONS(4529), + [sym_multiline_comment] = ACTIONS(3), + }, + [4296] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4297] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2066), + [sym__in_operator] = STATE(2067), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2069), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(2071), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7476), + [anon_sym_where] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7472), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7496), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7486), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7488), + [anon_sym_EQ_EQ] = ACTIONS(7486), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7488), + [anon_sym_LT_EQ] = ACTIONS(7490), + [anon_sym_GT_EQ] = ACTIONS(7490), + [anon_sym_BANGin] = ACTIONS(7492), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_SLASH] = ACTIONS(7474), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4298] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(7456), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4299] = { + [sym_function_body] = STATE(3900), + [sym__block] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4409), + [anon_sym_AT] = ACTIONS(4411), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_as] = ACTIONS(4409), + [anon_sym_EQ] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4409), + [anon_sym_DOT_DOT] = ACTIONS(4411), + [anon_sym_QMARK_COLON] = ACTIONS(4411), + [anon_sym_AMP_AMP] = ACTIONS(4411), + [anon_sym_PIPE_PIPE] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_BANG_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_BANGin] = ACTIONS(4411), + [anon_sym_is] = ACTIONS(4409), + [anon_sym_BANGis] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4409), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4411), + [anon_sym_suspend] = ACTIONS(4409), + [anon_sym_sealed] = ACTIONS(4409), + [anon_sym_annotation] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4409), + [anon_sym_inner] = ACTIONS(4409), + [anon_sym_value] = ACTIONS(4409), + [anon_sym_override] = ACTIONS(4409), + [anon_sym_lateinit] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_internal] = ACTIONS(4409), + [anon_sym_protected] = ACTIONS(4409), + [anon_sym_tailrec] = ACTIONS(4409), + [anon_sym_operator] = ACTIONS(4409), + [anon_sym_infix] = ACTIONS(4409), + [anon_sym_inline] = ACTIONS(4409), + [anon_sym_external] = ACTIONS(4409), + [sym_property_modifier] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_open] = ACTIONS(4409), + [anon_sym_vararg] = ACTIONS(4409), + [anon_sym_noinline] = ACTIONS(4409), + [anon_sym_crossinline] = ACTIONS(4409), + [anon_sym_expect] = ACTIONS(4409), + [anon_sym_actual] = ACTIONS(4409), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4411), + [sym__automatic_semicolon] = ACTIONS(4411), + [sym_safe_nav] = ACTIONS(4411), + [sym_multiline_comment] = ACTIONS(3), + }, + [4300] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_where] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4301] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4302] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4303] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4304] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7535), + [anon_sym_COMMA] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4305] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4306] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4307] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7539), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4308] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4309] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4310] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4311] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4312] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4313] = { + [sym_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4413), + [anon_sym_AT] = ACTIONS(4415), + [anon_sym_COLON] = ACTIONS(7541), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_as] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4415), + [anon_sym_LPAREN] = ACTIONS(4415), + [anon_sym_LT] = ACTIONS(4413), + [anon_sym_GT] = ACTIONS(4413), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_get] = ACTIONS(4413), + [anon_sym_set] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4415), + [sym_label] = ACTIONS(4415), + [anon_sym_in] = ACTIONS(4413), + [anon_sym_DOT_DOT] = ACTIONS(4415), + [anon_sym_QMARK_COLON] = ACTIONS(4415), + [anon_sym_AMP_AMP] = ACTIONS(4415), + [anon_sym_PIPE_PIPE] = ACTIONS(4415), + [anon_sym_else] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_BANG_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_BANGin] = ACTIONS(4415), + [anon_sym_is] = ACTIONS(4413), + [anon_sym_BANGis] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_SLASH] = ACTIONS(4413), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_as_QMARK] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(4415), + [anon_sym_DASH_DASH] = ACTIONS(4415), + [anon_sym_BANG_BANG] = ACTIONS(4415), + [anon_sym_suspend] = ACTIONS(4413), + [anon_sym_sealed] = ACTIONS(4413), + [anon_sym_annotation] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4413), + [anon_sym_inner] = ACTIONS(4413), + [anon_sym_value] = ACTIONS(4413), + [anon_sym_override] = ACTIONS(4413), + [anon_sym_lateinit] = ACTIONS(4413), + [anon_sym_public] = ACTIONS(4413), + [anon_sym_private] = ACTIONS(4413), + [anon_sym_internal] = ACTIONS(4413), + [anon_sym_protected] = ACTIONS(4413), + [anon_sym_tailrec] = ACTIONS(4413), + [anon_sym_operator] = ACTIONS(4413), + [anon_sym_infix] = ACTIONS(4413), + [anon_sym_inline] = ACTIONS(4413), + [anon_sym_external] = ACTIONS(4413), + [sym_property_modifier] = ACTIONS(4413), + [anon_sym_abstract] = ACTIONS(4413), + [anon_sym_final] = ACTIONS(4413), + [anon_sym_open] = ACTIONS(4413), + [anon_sym_vararg] = ACTIONS(4413), + [anon_sym_noinline] = ACTIONS(4413), + [anon_sym_crossinline] = ACTIONS(4413), + [anon_sym_expect] = ACTIONS(4413), + [anon_sym_actual] = ACTIONS(4413), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4415), + [sym__automatic_semicolon] = ACTIONS(4415), + [sym_safe_nav] = ACTIONS(4415), + [sym_multiline_comment] = ACTIONS(3), + }, + [4314] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4315] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_while] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4316] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4317] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4318] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4319] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4320] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4321] = { + [sym_class_body] = STATE(4080), + [sym__alpha_identifier] = ACTIONS(4423), + [anon_sym_AT] = ACTIONS(4425), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_LBRACK] = ACTIONS(4425), + [anon_sym_DOT] = ACTIONS(4423), + [anon_sym_as] = ACTIONS(4423), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [anon_sym_SEMI] = ACTIONS(4425), + [anon_sym_get] = ACTIONS(4423), + [anon_sym_set] = ACTIONS(4423), + [anon_sym_STAR] = ACTIONS(4425), + [sym_label] = ACTIONS(4425), + [anon_sym_in] = ACTIONS(4423), + [anon_sym_DOT_DOT] = ACTIONS(4425), + [anon_sym_QMARK_COLON] = ACTIONS(4425), + [anon_sym_AMP_AMP] = ACTIONS(4425), + [anon_sym_PIPE_PIPE] = ACTIONS(4425), + [anon_sym_else] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4425), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), + [anon_sym_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), + [anon_sym_LT_EQ] = ACTIONS(4425), + [anon_sym_GT_EQ] = ACTIONS(4425), + [anon_sym_BANGin] = ACTIONS(4425), + [anon_sym_is] = ACTIONS(4423), + [anon_sym_BANGis] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4423), + [anon_sym_DASH] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4425), + [anon_sym_as_QMARK] = ACTIONS(4425), + [anon_sym_PLUS_PLUS] = ACTIONS(4425), + [anon_sym_DASH_DASH] = ACTIONS(4425), + [anon_sym_BANG_BANG] = ACTIONS(4425), + [anon_sym_suspend] = ACTIONS(4423), + [anon_sym_sealed] = ACTIONS(4423), + [anon_sym_annotation] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4423), + [anon_sym_inner] = ACTIONS(4423), + [anon_sym_value] = ACTIONS(4423), + [anon_sym_override] = ACTIONS(4423), + [anon_sym_lateinit] = ACTIONS(4423), + [anon_sym_public] = ACTIONS(4423), + [anon_sym_private] = ACTIONS(4423), + [anon_sym_internal] = ACTIONS(4423), + [anon_sym_protected] = ACTIONS(4423), + [anon_sym_tailrec] = ACTIONS(4423), + [anon_sym_operator] = ACTIONS(4423), + [anon_sym_infix] = ACTIONS(4423), + [anon_sym_inline] = ACTIONS(4423), + [anon_sym_external] = ACTIONS(4423), + [sym_property_modifier] = ACTIONS(4423), + [anon_sym_abstract] = ACTIONS(4423), + [anon_sym_final] = ACTIONS(4423), + [anon_sym_open] = ACTIONS(4423), + [anon_sym_vararg] = ACTIONS(4423), + [anon_sym_noinline] = ACTIONS(4423), + [anon_sym_crossinline] = ACTIONS(4423), + [anon_sym_expect] = ACTIONS(4423), + [anon_sym_actual] = ACTIONS(4423), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4425), + [sym__automatic_semicolon] = ACTIONS(4425), + [sym_safe_nav] = ACTIONS(4425), + [sym_multiline_comment] = ACTIONS(3), + }, + [4322] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_COMMA] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_where] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7545), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [4323] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_where] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7547), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7549), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [4324] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4325] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4326] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4327] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3116), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4328] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_RPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7577), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_while] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7579), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [4329] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3105), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4330] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3094), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4331] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4332] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_QMARK_COLON] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3109), + [anon_sym_BANGin] = ACTIONS(3109), + [anon_sym_is] = ACTIONS(3107), + [anon_sym_BANGis] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3107), + [anon_sym_inner] = ACTIONS(3107), + [anon_sym_value] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3107), + [anon_sym_actual] = ACTIONS(3107), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3109), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4333] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4334] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3050), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4335] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4336] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7581), + [anon_sym_RPAREN] = ACTIONS(4182), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4337] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4338] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4339] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7583), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4340] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_get] = ACTIONS(3118), + [anon_sym_set] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3120), + [anon_sym_QMARK_COLON] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3118), + [anon_sym_inner] = ACTIONS(3118), + [anon_sym_value] = ACTIONS(3118), + [anon_sym_expect] = ACTIONS(3118), + [anon_sym_actual] = ACTIONS(3118), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3120), + [sym__automatic_semicolon] = ACTIONS(3120), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4341] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4342] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7585), + [anon_sym_RPAREN] = ACTIONS(4738), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_while] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4343] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_get] = ACTIONS(3077), + [anon_sym_set] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(3077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_BANGin] = ACTIONS(3079), + [anon_sym_is] = ACTIONS(3077), + [anon_sym_BANGis] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3077), + [anon_sym_inner] = ACTIONS(3077), + [anon_sym_value] = ACTIONS(3077), + [anon_sym_expect] = ACTIONS(3077), + [anon_sym_actual] = ACTIONS(3077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3079), + [sym__automatic_semicolon] = ACTIONS(3079), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4344] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3075), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4345] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_while] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4346] = { + [sym_indexing_suffix] = STATE(5196), + [sym_navigation_suffix] = STATE(5202), + [sym_call_suffix] = STATE(5204), + [sym_annotated_lambda] = STATE(5207), + [sym_type_arguments] = STATE(8318), + [sym_value_arguments] = STATE(4610), + [sym_lambda_literal] = STATE(5209), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1790), + [sym__in_operator] = STATE(1794), + [sym__is_operator] = STATE(6422), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1800), + [sym__as_operator] = STATE(6423), + [sym__postfix_unary_operator] = STATE(5210), + [sym__member_access_operator] = STATE(7882), + [sym_annotation] = STATE(8395), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1802), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8395), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(7027), + [anon_sym_DOT] = ACTIONS(7029), + [anon_sym_as] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(7033), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7553), + [sym_label] = ACTIONS(7037), + [anon_sym_in] = ACTIONS(7555), + [anon_sym_DOT_DOT] = ACTIONS(7557), + [anon_sym_QMARK_COLON] = ACTIONS(7559), + [anon_sym_AMP_AMP] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(7045), + [anon_sym_BANG_EQ] = ACTIONS(7565), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7567), + [anon_sym_EQ_EQ] = ACTIONS(7565), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_BANGin] = ACTIONS(7571), + [anon_sym_is] = ACTIONS(7049), + [anon_sym_BANGis] = ACTIONS(7051), + [anon_sym_PLUS] = ACTIONS(7573), + [anon_sym_DASH] = ACTIONS(7573), + [anon_sym_SLASH] = ACTIONS(7575), + [anon_sym_PERCENT] = ACTIONS(7553), + [anon_sym_as_QMARK] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_BANG_BANG] = ACTIONS(7057), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym__automatic_semicolon] = ACTIONS(3071), + [sym_safe_nav] = ACTIONS(7045), + [sym_multiline_comment] = ACTIONS(3), + }, + [4347] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_RPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_while] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7589), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [4348] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9114), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7591), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4349] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4381), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7603), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4350] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7631), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4351] = { + [sym__alpha_identifier] = ACTIONS(4796), + [anon_sym_AT] = ACTIONS(4798), + [anon_sym_LBRACK] = ACTIONS(4798), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_as] = ACTIONS(4796), + [anon_sym_LBRACE] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_LT] = ACTIONS(4796), + [anon_sym_GT] = ACTIONS(4796), + [anon_sym_SEMI] = ACTIONS(7633), + [anon_sym_get] = ACTIONS(4796), + [anon_sym_set] = ACTIONS(4796), + [anon_sym_STAR] = ACTIONS(4798), + [sym_label] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4796), + [anon_sym_DOT_DOT] = ACTIONS(4798), + [anon_sym_QMARK_COLON] = ACTIONS(4798), + [anon_sym_AMP_AMP] = ACTIONS(4798), + [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(7635), + [anon_sym_COLON_COLON] = ACTIONS(4798), + [anon_sym_BANG_EQ] = ACTIONS(4796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4798), + [anon_sym_EQ_EQ] = ACTIONS(4796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4798), + [anon_sym_LT_EQ] = ACTIONS(4798), + [anon_sym_GT_EQ] = ACTIONS(4798), + [anon_sym_BANGin] = ACTIONS(4798), + [anon_sym_is] = ACTIONS(4796), + [anon_sym_BANGis] = ACTIONS(4798), + [anon_sym_PLUS] = ACTIONS(4796), + [anon_sym_DASH] = ACTIONS(4796), + [anon_sym_SLASH] = ACTIONS(4796), + [anon_sym_PERCENT] = ACTIONS(4798), + [anon_sym_as_QMARK] = ACTIONS(4798), + [anon_sym_PLUS_PLUS] = ACTIONS(4798), + [anon_sym_DASH_DASH] = ACTIONS(4798), + [anon_sym_BANG_BANG] = ACTIONS(4798), + [anon_sym_suspend] = ACTIONS(4796), + [anon_sym_sealed] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4796), + [anon_sym_data] = ACTIONS(4796), + [anon_sym_inner] = ACTIONS(4796), + [anon_sym_value] = ACTIONS(4796), + [anon_sym_override] = ACTIONS(4796), + [anon_sym_lateinit] = ACTIONS(4796), + [anon_sym_public] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4796), + [anon_sym_internal] = ACTIONS(4796), + [anon_sym_protected] = ACTIONS(4796), + [anon_sym_tailrec] = ACTIONS(4796), + [anon_sym_operator] = ACTIONS(4796), + [anon_sym_infix] = ACTIONS(4796), + [anon_sym_inline] = ACTIONS(4796), + [anon_sym_external] = ACTIONS(4796), + [sym_property_modifier] = ACTIONS(4796), + [anon_sym_abstract] = ACTIONS(4796), + [anon_sym_final] = ACTIONS(4796), + [anon_sym_open] = ACTIONS(4796), + [anon_sym_vararg] = ACTIONS(4796), + [anon_sym_noinline] = ACTIONS(4796), + [anon_sym_crossinline] = ACTIONS(4796), + [anon_sym_expect] = ACTIONS(4796), + [anon_sym_actual] = ACTIONS(4796), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4798), + [sym__automatic_semicolon] = ACTIONS(4798), + [sym_safe_nav] = ACTIONS(4798), + [sym_multiline_comment] = ACTIONS(3), + }, + [4352] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(8966), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4353] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4380), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7639), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4354] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9055), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4355] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4366), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7643), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4356] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7645), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4357] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7643), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4358] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7647), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4359] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4383), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7647), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4360] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7649), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4361] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(7651), + [anon_sym_typealias] = ACTIONS(7654), + [anon_sym_class] = ACTIONS(7657), + [anon_sym_interface] = ACTIONS(7657), + [anon_sym_enum] = ACTIONS(7660), + [anon_sym_constructor] = ACTIONS(7663), + [anon_sym_RBRACE] = ACTIONS(7666), + [anon_sym_val] = ACTIONS(7668), + [anon_sym_var] = ACTIONS(7668), + [anon_sym_init] = ACTIONS(7671), + [anon_sym_companion] = ACTIONS(7674), + [anon_sym_object] = ACTIONS(7677), + [anon_sym_fun] = ACTIONS(7680), + [anon_sym_get] = ACTIONS(7683), + [anon_sym_set] = ACTIONS(7686), + [anon_sym_suspend] = ACTIONS(7689), + [anon_sym_sealed] = ACTIONS(7692), + [anon_sym_annotation] = ACTIONS(7692), + [anon_sym_data] = ACTIONS(7692), + [anon_sym_inner] = ACTIONS(7692), + [anon_sym_value] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7695), + [anon_sym_lateinit] = ACTIONS(7695), + [anon_sym_public] = ACTIONS(7698), + [anon_sym_private] = ACTIONS(7698), + [anon_sym_internal] = ACTIONS(7698), + [anon_sym_protected] = ACTIONS(7698), + [anon_sym_tailrec] = ACTIONS(7689), + [anon_sym_operator] = ACTIONS(7689), + [anon_sym_infix] = ACTIONS(7689), + [anon_sym_inline] = ACTIONS(7689), + [anon_sym_external] = ACTIONS(7689), + [sym_property_modifier] = ACTIONS(7701), + [anon_sym_abstract] = ACTIONS(7704), + [anon_sym_final] = ACTIONS(7704), + [anon_sym_open] = ACTIONS(7704), + [anon_sym_vararg] = ACTIONS(7707), + [anon_sym_noinline] = ACTIONS(7707), + [anon_sym_crossinline] = ACTIONS(7707), + [anon_sym_expect] = ACTIONS(7710), + [anon_sym_actual] = ACTIONS(7710), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4362] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4356), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7713), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4363] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7713), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4364] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4414), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7715), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4365] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7717), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4366] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4367] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4373), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7721), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4368] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9119), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7723), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4369] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4365), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4370] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4358), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7727), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4371] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7729), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4372] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4363), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7731), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4373] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4374] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4375), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4375] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7735), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4376] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9122), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4377] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7739), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4378] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4377), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4379] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7743), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4380] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4381] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4382] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9017), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7747), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4383] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4384] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4393), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4385] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_as] = ACTIONS(4778), + [anon_sym_LBRACE] = ACTIONS(4780), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_LPAREN] = ACTIONS(4780), + [anon_sym_LT] = ACTIONS(4778), + [anon_sym_GT] = ACTIONS(4778), + [anon_sym_SEMI] = ACTIONS(4780), + [anon_sym_get] = ACTIONS(4778), + [anon_sym_set] = ACTIONS(4778), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4778), + [anon_sym_DOT_DOT] = ACTIONS(4780), + [anon_sym_QMARK_COLON] = ACTIONS(4780), + [anon_sym_AMP_AMP] = ACTIONS(4780), + [anon_sym_PIPE_PIPE] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_BANG_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4780), + [anon_sym_LT_EQ] = ACTIONS(4780), + [anon_sym_GT_EQ] = ACTIONS(4780), + [anon_sym_BANGin] = ACTIONS(4780), + [anon_sym_is] = ACTIONS(4778), + [anon_sym_BANGis] = ACTIONS(4780), + [anon_sym_PLUS] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_SLASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4780), + [anon_sym_PLUS_PLUS] = ACTIONS(4780), + [anon_sym_DASH_DASH] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4780), + [anon_sym_suspend] = ACTIONS(4778), + [anon_sym_sealed] = ACTIONS(4778), + [anon_sym_annotation] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4778), + [anon_sym_inner] = ACTIONS(4778), + [anon_sym_value] = ACTIONS(4778), + [anon_sym_override] = ACTIONS(4778), + [anon_sym_lateinit] = ACTIONS(4778), + [anon_sym_public] = ACTIONS(4778), + [anon_sym_private] = ACTIONS(4778), + [anon_sym_internal] = ACTIONS(4778), + [anon_sym_protected] = ACTIONS(4778), + [anon_sym_tailrec] = ACTIONS(4778), + [anon_sym_operator] = ACTIONS(4778), + [anon_sym_infix] = ACTIONS(4778), + [anon_sym_inline] = ACTIONS(4778), + [anon_sym_external] = ACTIONS(4778), + [sym_property_modifier] = ACTIONS(4778), + [anon_sym_abstract] = ACTIONS(4778), + [anon_sym_final] = ACTIONS(4778), + [anon_sym_open] = ACTIONS(4778), + [anon_sym_vararg] = ACTIONS(4778), + [anon_sym_noinline] = ACTIONS(4778), + [anon_sym_crossinline] = ACTIONS(4778), + [anon_sym_expect] = ACTIONS(4778), + [anon_sym_actual] = ACTIONS(4778), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), + [sym_multiline_comment] = ACTIONS(3), + }, + [4386] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4379), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4387] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4371), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7755), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4388] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4389] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4395), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7759), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4390] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7761), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4391] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(8912), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4392] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(8956), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4393] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7767), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4394] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4417), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7769), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4395] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7771), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4396] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(7773), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4728), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + }, + [4397] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4401), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7775), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4398] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4388), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7777), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4399] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4415), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7779), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4400] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_LPAREN] = ACTIONS(7781), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4182), + [anon_sym_QMARK_COLON] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_PIPE_PIPE] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4182), + [anon_sym_LT_EQ] = ACTIONS(4182), + [anon_sym_GT_EQ] = ACTIONS(4182), + [anon_sym_BANGin] = ACTIONS(4182), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4182), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4182), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4182), + [sym__automatic_semicolon] = ACTIONS(4182), + [sym_safe_nav] = ACTIONS(4182), + [sym_multiline_comment] = ACTIONS(3), + }, + [4401] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7783), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4402] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7785), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4403] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(8940), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7787), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4404] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4402), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7789), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4405] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4406] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4405), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7793), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4407] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_as] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4738), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_LPAREN] = ACTIONS(7795), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym_get] = ACTIONS(4736), + [anon_sym_set] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4738), + [sym_label] = ACTIONS(4738), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_DOT_DOT] = ACTIONS(4738), + [anon_sym_QMARK_COLON] = ACTIONS(4738), + [anon_sym_AMP_AMP] = ACTIONS(4738), + [anon_sym_PIPE_PIPE] = ACTIONS(4738), + [anon_sym_else] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4738), + [anon_sym_BANG_EQ] = ACTIONS(4736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4738), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4738), + [anon_sym_LT_EQ] = ACTIONS(4738), + [anon_sym_GT_EQ] = ACTIONS(4738), + [anon_sym_BANGin] = ACTIONS(4738), + [anon_sym_is] = ACTIONS(4736), + [anon_sym_BANGis] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_SLASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_as_QMARK] = ACTIONS(4738), + [anon_sym_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG_BANG] = ACTIONS(4738), + [anon_sym_suspend] = ACTIONS(4736), + [anon_sym_sealed] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4736), + [anon_sym_data] = ACTIONS(4736), + [anon_sym_inner] = ACTIONS(4736), + [anon_sym_value] = ACTIONS(4736), + [anon_sym_override] = ACTIONS(4736), + [anon_sym_lateinit] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4736), + [anon_sym_internal] = ACTIONS(4736), + [anon_sym_protected] = ACTIONS(4736), + [anon_sym_tailrec] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4736), + [anon_sym_infix] = ACTIONS(4736), + [anon_sym_inline] = ACTIONS(4736), + [anon_sym_external] = ACTIONS(4736), + [sym_property_modifier] = ACTIONS(4736), + [anon_sym_abstract] = ACTIONS(4736), + [anon_sym_final] = ACTIONS(4736), + [anon_sym_open] = ACTIONS(4736), + [anon_sym_vararg] = ACTIONS(4736), + [anon_sym_noinline] = ACTIONS(4736), + [anon_sym_crossinline] = ACTIONS(4736), + [anon_sym_expect] = ACTIONS(4736), + [anon_sym_actual] = ACTIONS(4736), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [4408] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7793), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4409] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9005), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7797), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4410] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4408), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7799), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4411] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(9026), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7801), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4412] = { + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4204), + [anon_sym_as] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(7803), + [anon_sym_LT] = ACTIONS(4204), + [anon_sym_GT] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4204), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4204), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_SLASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4204), + [anon_sym_sealed] = ACTIONS(4204), + [anon_sym_annotation] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4204), + [anon_sym_inner] = ACTIONS(4204), + [anon_sym_value] = ACTIONS(4204), + [anon_sym_override] = ACTIONS(4204), + [anon_sym_lateinit] = ACTIONS(4204), + [anon_sym_public] = ACTIONS(4204), + [anon_sym_private] = ACTIONS(4204), + [anon_sym_internal] = ACTIONS(4204), + [anon_sym_protected] = ACTIONS(4204), + [anon_sym_tailrec] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_infix] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym_external] = ACTIONS(4204), + [sym_property_modifier] = ACTIONS(4204), + [anon_sym_abstract] = ACTIONS(4204), + [anon_sym_final] = ACTIONS(4204), + [anon_sym_open] = ACTIONS(4204), + [anon_sym_vararg] = ACTIONS(4204), + [anon_sym_noinline] = ACTIONS(4204), + [anon_sym_crossinline] = ACTIONS(4204), + [anon_sym_expect] = ACTIONS(4204), + [anon_sym_actual] = ACTIONS(4204), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + }, + [4413] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [aux_sym_indexing_suffix_repeat1] = STATE(8910), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7805), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4414] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7807), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4415] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7777), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4416] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7809), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4417] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4361), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4418] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4416), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4419] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4350), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7813), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4420] = { + [sym_type_alias] = STATE(9305), + [sym__declaration] = STATE(9305), + [sym_class_declaration] = STATE(9305), + [sym_binding_pattern_kind] = STATE(5947), + [aux_sym__class_member_declarations] = STATE(4357), + [sym__class_member_declaration] = STATE(9305), + [sym_anonymous_initializer] = STATE(9305), + [sym_companion_object] = STATE(9305), + [sym_function_declaration] = STATE(9305), + [sym_property_declaration] = STATE(9305), + [sym_getter] = STATE(9305), + [sym_setter] = STATE(9305), + [sym_object_declaration] = STATE(9305), + [sym_secondary_constructor] = STATE(9305), + [sym_modifiers] = STATE(7916), + [sym__modifier] = STATE(5544), + [sym_class_modifier] = STATE(5544), + [sym_member_modifier] = STATE(5544), + [sym_visibility_modifier] = STATE(5544), + [sym_function_modifier] = STATE(5544), + [sym_inheritance_modifier] = STATE(5544), + [sym_parameter_modifier] = STATE(5544), + [sym_platform_modifier] = STATE(5544), + [sym_annotation] = STATE(5544), + [sym__single_annotation] = STATE(5783), + [sym__multi_annotation] = STATE(5783), + [aux_sym_modifiers_repeat1] = STATE(5544), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_typealias] = ACTIONS(7595), + [anon_sym_class] = ACTIONS(7597), + [anon_sym_interface] = ACTIONS(7597), + [anon_sym_enum] = ACTIONS(7599), + [anon_sym_constructor] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7815), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7605), + [anon_sym_companion] = ACTIONS(7607), + [anon_sym_object] = ACTIONS(7609), + [anon_sym_fun] = ACTIONS(7611), + [anon_sym_get] = ACTIONS(7613), + [anon_sym_set] = ACTIONS(7615), + [anon_sym_suspend] = ACTIONS(7617), + [anon_sym_sealed] = ACTIONS(7619), + [anon_sym_annotation] = ACTIONS(7619), + [anon_sym_data] = ACTIONS(7619), + [anon_sym_inner] = ACTIONS(7619), + [anon_sym_value] = ACTIONS(7619), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_lateinit] = ACTIONS(7621), + [anon_sym_public] = ACTIONS(7623), + [anon_sym_private] = ACTIONS(7623), + [anon_sym_internal] = ACTIONS(7623), + [anon_sym_protected] = ACTIONS(7623), + [anon_sym_tailrec] = ACTIONS(7617), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_infix] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym_external] = ACTIONS(7617), + [sym_property_modifier] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_open] = ACTIONS(7625), + [anon_sym_vararg] = ACTIONS(7627), + [anon_sym_noinline] = ACTIONS(7627), + [anon_sym_crossinline] = ACTIONS(7627), + [anon_sym_expect] = ACTIONS(7629), + [anon_sym_actual] = ACTIONS(7629), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4421] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7817), + [anon_sym_RPAREN] = ACTIONS(7817), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4422] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4423] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7819), + [anon_sym_RPAREN] = ACTIONS(7819), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4424] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3959), + [anon_sym_set] = ACTIONS(3959), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3947), + [sym_label] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3957), + [anon_sym_sealed] = ACTIONS(3957), + [anon_sym_annotation] = ACTIONS(3957), + [anon_sym_data] = ACTIONS(3959), + [anon_sym_inner] = ACTIONS(3959), + [anon_sym_value] = ACTIONS(3959), + [anon_sym_override] = ACTIONS(3957), + [anon_sym_lateinit] = ACTIONS(3957), + [anon_sym_public] = ACTIONS(3957), + [anon_sym_private] = ACTIONS(3957), + [anon_sym_internal] = ACTIONS(3957), + [anon_sym_protected] = ACTIONS(3957), + [anon_sym_tailrec] = ACTIONS(3957), + [anon_sym_operator] = ACTIONS(3957), + [anon_sym_infix] = ACTIONS(3957), + [anon_sym_inline] = ACTIONS(3957), + [anon_sym_external] = ACTIONS(3957), + [sym_property_modifier] = ACTIONS(3957), + [anon_sym_abstract] = ACTIONS(3957), + [anon_sym_final] = ACTIONS(3957), + [anon_sym_open] = ACTIONS(3957), + [anon_sym_vararg] = ACTIONS(3957), + [anon_sym_noinline] = ACTIONS(3957), + [anon_sym_crossinline] = ACTIONS(3957), + [anon_sym_expect] = ACTIONS(3959), + [anon_sym_actual] = ACTIONS(3959), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4425] = { + [sym__alpha_identifier] = ACTIONS(3942), + [anon_sym_AT] = ACTIONS(3944), + [anon_sym_LBRACK] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3947), + [anon_sym_object] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(3951), + [anon_sym_set] = ACTIONS(3951), + [anon_sym_this] = ACTIONS(3942), + [anon_sym_super] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3947), + [sym_label] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_when] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_suspend] = ACTIONS(3949), + [anon_sym_sealed] = ACTIONS(3949), + [anon_sym_annotation] = ACTIONS(3949), + [anon_sym_data] = ACTIONS(3951), + [anon_sym_inner] = ACTIONS(3951), + [anon_sym_value] = ACTIONS(3951), + [anon_sym_override] = ACTIONS(3949), + [anon_sym_lateinit] = ACTIONS(3949), + [anon_sym_public] = ACTIONS(3949), + [anon_sym_private] = ACTIONS(3949), + [anon_sym_internal] = ACTIONS(3949), + [anon_sym_protected] = ACTIONS(3949), + [anon_sym_tailrec] = ACTIONS(3949), + [anon_sym_operator] = ACTIONS(3949), + [anon_sym_infix] = ACTIONS(3949), + [anon_sym_inline] = ACTIONS(3949), + [anon_sym_external] = ACTIONS(3949), + [sym_property_modifier] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3949), + [anon_sym_final] = ACTIONS(3949), + [anon_sym_open] = ACTIONS(3949), + [anon_sym_vararg] = ACTIONS(3949), + [anon_sym_noinline] = ACTIONS(3949), + [anon_sym_crossinline] = ACTIONS(3949), + [anon_sym_expect] = ACTIONS(3951), + [anon_sym_actual] = ACTIONS(3951), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3947), + [anon_sym_continue_AT] = ACTIONS(3947), + [anon_sym_break_AT] = ACTIONS(3947), + [anon_sym_this_AT] = ACTIONS(3947), + [anon_sym_super_AT] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3947), + [sym_integer_literal] = ACTIONS(3942), + [sym_hex_literal] = ACTIONS(3947), + [sym_bin_literal] = ACTIONS(3947), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [anon_sym_SQUOTE] = ACTIONS(3947), + [sym_null_literal] = ACTIONS(3942), + [sym__backtick_identifier] = ACTIONS(3947), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3947), + }, + [4426] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4427] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7821), + [anon_sym_RPAREN] = ACTIONS(7821), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4428] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7823), + [anon_sym_RPAREN] = ACTIONS(7823), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4429] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4430] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7825), + [anon_sym_RPAREN] = ACTIONS(7825), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4431] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7827), + [anon_sym_RPAREN] = ACTIONS(7827), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4432] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4433] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(7830), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4434] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_RBRACK] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4435] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7834), + [anon_sym_RPAREN] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4436] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4437] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7838), + [anon_sym_RPAREN] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4438] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(1919), + [sym__in_operator] = STATE(2109), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2003), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1999), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7307), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7295), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7309), + [anon_sym_DOT_DOT] = ACTIONS(7297), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7315), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7319), + [anon_sym_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7319), + [anon_sym_LT_EQ] = ACTIONS(7321), + [anon_sym_GT_EQ] = ACTIONS(7321), + [anon_sym_BANGin] = ACTIONS(7323), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4439] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4440] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4441] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4442] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4443] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4444] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7852), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4445] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4446] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7856), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4447] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4448] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4449] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4450] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4451] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7866), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4452] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7868), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4453] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7870), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4454] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7872), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4455] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4456] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4457] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7878), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4458] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7880), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4459] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7882), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4460] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7884), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4461] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7886), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4462] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7888), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4463] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7890), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4464] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7892), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4465] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7894), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4466] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7896), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4467] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7898), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4468] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7900), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4469] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7902), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4470] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7904), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4471] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7906), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4472] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7908), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4473] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7910), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4474] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7912), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4475] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7914), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4476] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7916), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4477] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7918), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4478] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7920), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4479] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7922), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4480] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7924), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4481] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7926), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4482] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(7928), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4483] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7930), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4484] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7932), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4485] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7934), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4486] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7936), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4487] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7938), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4488] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7940), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4489] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7942), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4490] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7944), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4491] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7946), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4492] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7948), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4493] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7950), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4494] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7952), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4495] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7954), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4496] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7956), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4497] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7958), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4498] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7960), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4499] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4500] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7964), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4501] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4502] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4503] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4504] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4505] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7974), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4506] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7976), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4507] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7978), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4508] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7980), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4509] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7982), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4510] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7984), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4511] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7986), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4512] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7988), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4513] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7990), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4514] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7992), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4515] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7994), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4516] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7996), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4517] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(7998), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4518] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4519] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4520] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8004), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4521] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4522] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4523] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8010), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4524] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8012), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4525] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8014), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4526] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8016), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4527] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8018), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4528] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8020), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4529] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8022), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4530] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8024), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4531] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8026), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4532] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8028), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4533] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8030), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4534] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8032), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4535] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8034), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4536] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8036), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4537] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8038), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4538] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8040), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4539] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8042), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4540] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8044), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4541] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8046), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4542] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8048), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4543] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8050), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4544] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8052), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4545] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8054), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4546] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8056), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4547] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8058), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4548] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8060), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4549] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8062), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4550] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8064), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4551] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8066), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4552] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8068), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4553] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8070), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4554] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8072), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4555] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8074), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4556] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8076), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4557] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8078), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4558] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8080), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4559] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8082), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4560] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8084), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4561] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8086), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4562] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8088), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4563] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8090), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4564] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8092), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4565] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8094), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4566] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8096), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4567] = { + [sym_indexing_suffix] = STATE(4781), + [sym_navigation_suffix] = STATE(4775), + [sym_call_suffix] = STATE(4774), + [sym_annotated_lambda] = STATE(4770), + [sym_type_arguments] = STATE(8147), + [sym_value_arguments] = STATE(4569), + [sym_lambda_literal] = STATE(4766), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1654), + [sym__in_operator] = STATE(1675), + [sym__is_operator] = STATE(6284), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1680), + [sym__as_operator] = STATE(6262), + [sym__postfix_unary_operator] = STATE(4765), + [sym__member_access_operator] = STATE(7880), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [sym_simple_identifier] = STATE(1684), + [sym__lexical_identifier] = STATE(5481), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(6700), + [anon_sym_DOT] = ACTIONS(6702), + [anon_sym_as] = ACTIONS(6704), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_RPAREN] = ACTIONS(8098), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(7509), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(7517), + [anon_sym_DOT_DOT] = ACTIONS(7519), + [anon_sym_QMARK_COLON] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_COLON_COLON] = ACTIONS(6714), + [anon_sym_BANG_EQ] = ACTIONS(7527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(7527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_BANGin] = ACTIONS(7533), + [anon_sym_is] = ACTIONS(6740), + [anon_sym_BANGis] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7513), + [anon_sym_PERCENT] = ACTIONS(7509), + [anon_sym_as_QMARK] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6720), + [anon_sym_BANG_BANG] = ACTIONS(6720), + [anon_sym_data] = ACTIONS(3052), + [anon_sym_inner] = ACTIONS(3052), + [anon_sym_value] = ACTIONS(3052), + [anon_sym_expect] = ACTIONS(3052), + [anon_sym_actual] = ACTIONS(3052), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1748), + [sym_safe_nav] = ACTIONS(6714), + [sym_multiline_comment] = ACTIONS(3), + }, + [4568] = { + [sym_annotated_lambda] = STATE(4825), + [sym_lambda_literal] = STATE(4766), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_RBRACK] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_as] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_COMMA] = ACTIONS(3994), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_LT] = ACTIONS(3992), + [anon_sym_GT] = ACTIONS(3992), + [anon_sym_where] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3992), + [anon_sym_set] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_DASH_GT] = ACTIONS(3994), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_DOT_DOT] = ACTIONS(3994), + [anon_sym_QMARK_COLON] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_PIPE_PIPE] = ACTIONS(3994), + [anon_sym_else] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_PLUS_EQ] = ACTIONS(3994), + [anon_sym_DASH_EQ] = ACTIONS(3994), + [anon_sym_STAR_EQ] = ACTIONS(3994), + [anon_sym_SLASH_EQ] = ACTIONS(3994), + [anon_sym_PERCENT_EQ] = ACTIONS(3994), + [anon_sym_BANG_EQ] = ACTIONS(3992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3994), + [anon_sym_EQ_EQ] = ACTIONS(3992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3994), + [anon_sym_LT_EQ] = ACTIONS(3994), + [anon_sym_GT_EQ] = ACTIONS(3994), + [anon_sym_BANGin] = ACTIONS(3994), + [anon_sym_is] = ACTIONS(3992), + [anon_sym_BANGis] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_SLASH] = ACTIONS(3992), + [anon_sym_PERCENT] = ACTIONS(3992), + [anon_sym_as_QMARK] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_BANG_BANG] = ACTIONS(3994), + [anon_sym_data] = ACTIONS(3992), + [anon_sym_inner] = ACTIONS(3992), + [anon_sym_value] = ACTIONS(3992), + [anon_sym_expect] = ACTIONS(3992), + [anon_sym_actual] = ACTIONS(3992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3994), + [sym_safe_nav] = ACTIONS(3994), + [sym_multiline_comment] = ACTIONS(3), + }, + [4569] = { + [sym_annotated_lambda] = STATE(4892), + [sym_lambda_literal] = STATE(4766), + [sym_annotation] = STATE(8406), + [sym__single_annotation] = STATE(6151), + [sym__multi_annotation] = STATE(6151), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8406), + [sym__alpha_identifier] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_RBRACK] = ACTIONS(3966), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_as] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(3966), + [anon_sym_LPAREN] = ACTIONS(3966), + [anon_sym_COMMA] = ACTIONS(3966), + [anon_sym_RPAREN] = ACTIONS(3966), + [anon_sym_LT] = ACTIONS(3964), + [anon_sym_GT] = ACTIONS(3964), + [anon_sym_where] = ACTIONS(3964), + [anon_sym_SEMI] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3964), + [anon_sym_set] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_DASH_GT] = ACTIONS(3966), + [sym_label] = ACTIONS(6710), + [anon_sym_in] = ACTIONS(3964), + [anon_sym_while] = ACTIONS(3964), + [anon_sym_DOT_DOT] = ACTIONS(3966), + [anon_sym_QMARK_COLON] = ACTIONS(3966), + [anon_sym_AMP_AMP] = ACTIONS(3966), + [anon_sym_PIPE_PIPE] = ACTIONS(3966), + [anon_sym_else] = ACTIONS(3964), + [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_PLUS_EQ] = ACTIONS(3966), + [anon_sym_DASH_EQ] = ACTIONS(3966), + [anon_sym_STAR_EQ] = ACTIONS(3966), + [anon_sym_SLASH_EQ] = ACTIONS(3966), + [anon_sym_PERCENT_EQ] = ACTIONS(3966), + [anon_sym_BANG_EQ] = ACTIONS(3964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3966), + [anon_sym_EQ_EQ] = ACTIONS(3964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3966), + [anon_sym_LT_EQ] = ACTIONS(3966), + [anon_sym_GT_EQ] = ACTIONS(3966), + [anon_sym_BANGin] = ACTIONS(3966), + [anon_sym_is] = ACTIONS(3964), + [anon_sym_BANGis] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_SLASH] = ACTIONS(3964), + [anon_sym_PERCENT] = ACTIONS(3964), + [anon_sym_as_QMARK] = ACTIONS(3966), + [anon_sym_PLUS_PLUS] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3966), + [anon_sym_BANG_BANG] = ACTIONS(3966), + [anon_sym_data] = ACTIONS(3964), + [anon_sym_inner] = ACTIONS(3964), + [anon_sym_value] = ACTIONS(3964), + [anon_sym_expect] = ACTIONS(3964), + [anon_sym_actual] = ACTIONS(3964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3966), + [sym_safe_nav] = ACTIONS(3966), + [sym_multiline_comment] = ACTIONS(3), + }, + [4570] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(3980), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_STAR_EQ] = ACTIONS(3985), + [anon_sym_SLASH_EQ] = ACTIONS(3985), + [anon_sym_PERCENT_EQ] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + }, + [4571] = { + [sym_indexing_suffix] = STATE(7187), + [sym_navigation_suffix] = STATE(7187), + [sym__postfix_unary_operator] = STATE(7187), + [sym__member_access_operator] = STATE(7880), + [sym__postfix_unary_suffix] = STATE(7187), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7187), + [sym__alpha_identifier] = ACTIONS(3970), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_as] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym_COMMA] = ACTIONS(3972), + [anon_sym_RPAREN] = ACTIONS(3972), + [anon_sym_LT] = ACTIONS(3970), + [anon_sym_GT] = ACTIONS(3970), + [anon_sym_where] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_get] = ACTIONS(3970), + [anon_sym_set] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3970), + [anon_sym_DASH_GT] = ACTIONS(3972), + [sym_label] = ACTIONS(3972), + [anon_sym_in] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_DOT_DOT] = ACTIONS(3972), + [anon_sym_QMARK_COLON] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_PIPE_PIPE] = ACTIONS(3972), + [anon_sym_else] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3982), + [anon_sym_PLUS_EQ] = ACTIONS(4005), + [anon_sym_DASH_EQ] = ACTIONS(4005), + [anon_sym_STAR_EQ] = ACTIONS(4005), + [anon_sym_SLASH_EQ] = ACTIONS(4005), + [anon_sym_PERCENT_EQ] = ACTIONS(4005), + [anon_sym_BANG_EQ] = ACTIONS(3970), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3972), + [anon_sym_EQ_EQ] = ACTIONS(3970), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3972), + [anon_sym_LT_EQ] = ACTIONS(3972), + [anon_sym_GT_EQ] = ACTIONS(3972), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3970), + [anon_sym_BANGis] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_PERCENT] = ACTIONS(3970), + [anon_sym_as_QMARK] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_BANG_BANG] = ACTIONS(3987), + [anon_sym_data] = ACTIONS(3970), + [anon_sym_inner] = ACTIONS(3970), + [anon_sym_value] = ACTIONS(3970), + [anon_sym_expect] = ACTIONS(3970), + [anon_sym_actual] = ACTIONS(3970), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3972), + [sym_safe_nav] = ACTIONS(3982), + [sym_multiline_comment] = ACTIONS(3), + }, + [4572] = { + [sym_catch_block] = STATE(4579), + [sym_finally_block] = STATE(4813), + [aux_sym_try_expression_repeat1] = STATE(4579), + [sym__alpha_identifier] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_RBRACK] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_as] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_COMMA] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_where] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4068), + [anon_sym_set] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(4070), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_DOT_DOT] = ACTIONS(4070), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4068), + [anon_sym_catch] = ACTIONS(8100), + [anon_sym_finally] = ACTIONS(8102), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_STAR_EQ] = ACTIONS(4070), + [anon_sym_SLASH_EQ] = ACTIONS(4070), + [anon_sym_PERCENT_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_BANGin] = ACTIONS(4070), + [anon_sym_is] = ACTIONS(4068), + [anon_sym_BANGis] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_SLASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_as_QMARK] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4068), + [anon_sym_inner] = ACTIONS(4068), + [anon_sym_value] = ACTIONS(4068), + [anon_sym_expect] = ACTIONS(4068), + [anon_sym_actual] = ACTIONS(4068), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4070), + [sym_safe_nav] = ACTIONS(4070), + [sym_multiline_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 5, + ACTIONS(8104), 1, + anon_sym_LT, + STATE(4590), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4146), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75] = 5, + ACTIONS(8106), 1, + anon_sym_DOT, + STATE(4585), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4113), 27, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4115), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [150] = 5, + ACTIONS(8109), 1, + anon_sym_LT, + STATE(4623), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4104), 33, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [225] = 5, + ACTIONS(8111), 1, + anon_sym_DOT, + STATE(4574), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 27, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [300] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8114), 1, + anon_sym_COLON, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4650), 1, + sym_type_constraints, + STATE(4855), 1, + sym__block, + STATE(4864), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [385] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 28, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4156), 34, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [456] = 5, + ACTIONS(8120), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4579), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4106), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4108), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [531] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8123), 1, + anon_sym_COLON, + STATE(4633), 1, + sym_type_constraints, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [616] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 29, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [687] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 29, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4158), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [758] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8125), 1, + anon_sym_COLON, + STATE(4651), 1, + sym_type_constraints, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [843] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8127), 1, + anon_sym_COLON, + STATE(4627), 1, + sym_type_constraints, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [928] = 5, + ACTIONS(8129), 1, + anon_sym_DOT, + STATE(4585), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 27, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4129), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1003] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 28, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 34, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [1074] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8132), 1, + anon_sym_COLON, + STATE(4658), 1, + sym_type_constraints, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1159] = 5, + ACTIONS(8134), 1, + sym__quest, + STATE(4588), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4268), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4270), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1233] = 5, + ACTIONS(8137), 1, + sym__quest, + STATE(4601), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4295), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4297), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1307] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4220), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1377] = 8, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4905), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1457] = 8, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8141), 1, + anon_sym_COLON, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1537] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4214), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4216), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1607] = 4, + ACTIONS(8143), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4192), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1679] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5639), 1, + anon_sym_COLON, + STATE(4685), 1, + sym_type_constraints, + STATE(4877), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1759] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(7037), 1, + sym_label, + STATE(5209), 1, + sym_lambda_literal, + STATE(5274), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8395), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3992), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3994), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1843] = 8, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8145), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [1923] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8147), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4852), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2003] = 5, + ACTIONS(8137), 1, + sym__quest, + STATE(4601), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4262), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4264), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2077] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5637), 1, + anon_sym_COLON, + STATE(4696), 1, + sym_type_constraints, + STATE(4842), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2157] = 5, + ACTIONS(8149), 1, + sym__quest, + STATE(4588), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4254), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4256), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2231] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5643), 1, + anon_sym_COLON, + STATE(4702), 1, + sym_type_constraints, + STATE(4842), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2311] = 5, + ACTIONS(8151), 1, + anon_sym_DOT, + STATE(4603), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4127), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [2385] = 4, + ACTIONS(8154), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4192), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2457] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5645), 1, + anon_sym_COLON, + STATE(4716), 1, + sym_type_constraints, + STATE(4788), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2537] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8156), 1, + anon_sym_COLON, + STATE(4722), 1, + sym_type_constraints, + STATE(4768), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2617] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4658), 1, + sym_type_constraints, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2699] = 5, + ACTIONS(8158), 1, + anon_sym_DOT, + STATE(4609), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4120), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [2773] = 5, + ACTIONS(8160), 1, + anon_sym_DOT, + STATE(4603), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4113), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [2847] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(7037), 1, + sym_label, + STATE(5209), 1, + sym_lambda_literal, + STATE(5243), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8395), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3964), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3966), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [2931] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4129), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3001] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8162), 1, + anon_sym_COLON, + STATE(4710), 1, + sym_type_constraints, + STATE(4851), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3081] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4627), 1, + sym_type_constraints, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3163] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4633), 1, + sym_type_constraints, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3245] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4210), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4212), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3315] = 11, + ACTIONS(3974), 1, + anon_sym_LBRACK, + ACTIONS(3977), 1, + anon_sym_DOT, + ACTIONS(4002), 1, + anon_sym_EQ, + STATE(7880), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3982), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(3987), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4005), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7187), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(3972), 20, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + sym__backtick_identifier, + ACTIONS(3970), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [3401] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4624), 1, + sym_type_constraints, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3483] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8164), 1, + anon_sym_COLON, + STATE(4713), 1, + sym_type_constraints, + STATE(4851), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3563] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4625), 1, + sym_type_constraints, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3645] = 11, + ACTIONS(3974), 1, + anon_sym_LBRACK, + ACTIONS(3977), 1, + anon_sym_DOT, + ACTIONS(3980), 1, + anon_sym_EQ, + STATE(7880), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3982), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(3987), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(3985), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7187), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(3972), 20, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + sym__backtick_identifier, + ACTIONS(3970), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [3731] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4127), 33, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [3800] = 7, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4713), 1, + sym_type_constraints, + STATE(4851), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [3877] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4218), 33, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [3946] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4023] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4843), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4100] = 5, + ACTIONS(8166), 1, + anon_sym_DOT, + STATE(4574), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 25, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4173] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4250] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 28, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4158), 32, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4319] = 7, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_type_constraints, + STATE(4783), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4396] = 4, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4287), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4289), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4467] = 7, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + STATE(4710), 1, + sym_type_constraints, + STATE(4851), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4544] = 7, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + STATE(4731), 1, + sym_type_constraints, + STATE(4780), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4621] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4698] = 7, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4709), 1, + sym_type_constraints, + STATE(4821), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4311), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4313), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4775] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4299), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4301), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4844] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4303), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4305), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4913] = 7, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4726), 1, + sym_type_constraints, + STATE(4780), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4990] = 7, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + STATE(4722), 1, + sym_type_constraints, + STATE(4768), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5067] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4214), 33, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [5136] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4419), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4421), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5205] = 7, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + STATE(4729), 1, + sym_type_constraints, + STATE(4752), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5282] = 7, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4661), 1, + sym_type_constraints, + STATE(4752), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5359] = 7, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + STATE(4733), 1, + sym_type_constraints, + STATE(4747), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4386), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4388), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5436] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4210), 33, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [5505] = 7, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + STATE(4712), 1, + sym_type_constraints, + STATE(4795), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5582] = 7, + ACTIONS(8169), 1, + anon_sym_catch, + ACTIONS(8171), 1, + anon_sym_finally, + STATE(5271), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4694), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4068), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4070), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5659] = 5, + ACTIONS(8173), 1, + anon_sym_by, + STATE(4812), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5732] = 7, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4691), 1, + sym_type_constraints, + STATE(4852), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5809] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8175), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5884] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5961] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6038] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6115] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4435), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4437), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6184] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4855), 1, + sym__block, + STATE(4899), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6261] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4855), 1, + sym__block, + STATE(4867), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6338] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8177), 1, + anon_sym_COLON, + STATE(4889), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6413] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 28, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 32, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6482] = 7, + ACTIONS(8116), 1, + anon_sym_EQ, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6559] = 5, + ACTIONS(8179), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8181), 1, + anon_sym_L, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4457), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4459), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6632] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4660), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4662), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6700] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4742), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4632), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4634), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [6772] = 10, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8183), 1, + anon_sym_COLON, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5110), 1, + sym_type_constraints, + STATE(5385), 1, + sym__block, + STATE(5433), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4094), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4092), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [6854] = 10, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(8189), 1, + anon_sym_COLON, + STATE(5081), 1, + sym_type_constraints, + STATE(5376), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4150), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [6936] = 5, + ACTIONS(8191), 1, + anon_sym_COMMA, + STATE(4664), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4373), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4375), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7008] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8194), 1, + anon_sym_COLON, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4983), 1, + sym_type_constraints, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7090] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8200), 1, + anon_sym_COLON, + STATE(4984), 1, + sym_type_constraints, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7172] = 10, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(8202), 1, + anon_sym_COLON, + STATE(5047), 1, + sym_type_constraints, + STATE(5385), 1, + sym__block, + STATE(5456), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4140), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [7254] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8204), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_type_constraints, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7336] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8206), 1, + anon_sym_COLON, + STATE(4987), 1, + sym_type_constraints, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7418] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8208), 1, + anon_sym_COLON, + STATE(4989), 1, + sym_type_constraints, + STATE(5229), 1, + sym__block, + STATE(5260), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7500] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4543), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4545), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7568] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4262), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4264), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7636] = 10, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(8210), 1, + anon_sym_COLON, + STATE(5021), 1, + sym_type_constraints, + STATE(5372), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4082), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [7718] = 5, + ACTIONS(8160), 1, + anon_sym_DOT, + STATE(4609), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4120), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [7790] = 5, + ACTIONS(8212), 1, + sym__quest, + STATE(4723), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4297), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4295), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [7862] = 4, + ACTIONS(8214), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4190), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [7932] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4636), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4638), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8000] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4877), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8072] = 10, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + anon_sym_COLON, + STATE(5034), 1, + sym_type_constraints, + STATE(5380), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4136), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4134), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [8154] = 5, + ACTIONS(8218), 1, + anon_sym_DOT, + STATE(4680), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4129), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8226] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4690), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4692), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8294] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4698), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4700), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8362] = 4, + ACTIONS(8221), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4190), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [8432] = 4, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 26, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4287), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [8502] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4852), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8574] = 4, + ACTIONS(8173), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8644] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4842), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8716] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4840), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4535), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4537), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8788] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4842), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8860] = 4, + STATE(4697), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8930] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4821), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4311), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4313), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9002] = 5, + ACTIONS(8223), 1, + anon_sym_LT, + STATE(4871), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4146), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9074] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4539), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4541), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9142] = 5, + ACTIONS(8225), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4694), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4106), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4108), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9214] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4672), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4674), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9282] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4851), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9354] = 5, + ACTIONS(8228), 1, + anon_sym_COMMA, + STATE(4697), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4559), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9426] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4523), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4525), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9494] = 5, + ACTIONS(8231), 1, + anon_sym_COMMA, + STATE(4703), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4439), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4441), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9566] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4686), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4688), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9634] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4553), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4555), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9702] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4851), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9774] = 5, + ACTIONS(8231), 1, + anon_sym_COMMA, + STATE(4664), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4347), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4349), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9846] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4788), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9918] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4710), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4712), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [9986] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4785), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4515), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4517), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10058] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4519), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4521), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10126] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8233), 1, + anon_sym_COLON, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5050), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10208] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4783), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10280] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4780), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10352] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4704), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4707), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10420] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4824), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4694), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4696), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10492] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4780), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10564] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4648), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4650), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10632] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8237), 1, + anon_sym_COLON, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5051), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10714] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4768), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10786] = 4, + ACTIONS(8239), 1, + anon_sym_AT2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4652), 26, + anon_sym_AT, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4654), 32, + sym_safe_nav, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [10856] = 5, + ACTIONS(8241), 1, + sym__quest, + STATE(4718), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4270), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4268), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [10928] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8244), 1, + anon_sym_COLON, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5054), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11010] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4640), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4642), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11078] = 5, + ACTIONS(8246), 1, + anon_sym_DOT, + STATE(4680), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4113), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4115), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11150] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4747), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4386), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4388), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11222] = 5, + ACTIONS(8249), 1, + sym__quest, + STATE(4718), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4256), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4254), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [11294] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8251), 1, + anon_sym_COLON, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5055), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11376] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4578), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4580), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11444] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4752), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11516] = 5, + ACTIONS(8212), 1, + sym__quest, + STATE(4723), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4262), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [11588] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4531), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4533), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11656] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4742), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4632), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4634), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11728] = 5, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4754), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4582), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4584), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11800] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4752), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11872] = 5, + ACTIONS(8253), 1, + anon_sym_DOT, + STATE(4721), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 26, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [11944] = 5, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4795), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12016] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4568), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4570), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12084] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8256), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4864), 1, + sym_function_body, + STATE(5056), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12166] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4572), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4575), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12234] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1774), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1776), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12301] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4068), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4070), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12368] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4960), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4962), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12435] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5095), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5097), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12502] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12569] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5018), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5020), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12636] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5054), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5056), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12703] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4984), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4986), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12770] = 5, + ACTIONS(8258), 1, + sym__quest, + STATE(4859), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4262), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4264), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12841] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4792), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4794), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12908] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [12975] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1760), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1762), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13042] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5115), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5117), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13109] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13176] = 4, + ACTIONS(8260), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4192), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13245] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4632), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4634), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13312] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5119), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5121), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13379] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5123), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5125), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13446] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5135), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5137), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4788), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4790), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13580] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4784), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4786), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13647] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4840), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4842), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13714] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4944), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4946), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13781] = 4, + ACTIONS(8262), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13850] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8264), 1, + anon_sym_COLON, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5161), 1, + sym_type_constraints, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13931] = 4, + ACTIONS(8268), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14000] = 4, + ACTIONS(8270), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14069] = 4, + ACTIONS(8272), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14138] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4774), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4776), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14205] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4770), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4772), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14272] = 4, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14341] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4386), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4388), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14408] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4988), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4990), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14475] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3964), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3966), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14542] = 5, + ACTIONS(8274), 1, + sym__quest, + STATE(4771), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4268), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4270), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14613] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1780), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1782), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14680] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(207), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(205), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14747] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4762), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4764), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14814] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4758), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4760), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14881] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5143), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5145), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [14948] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15015] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4976), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4978), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15082] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5169), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5171), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15149] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15216] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4754), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4756), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15283] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4750), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4752), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15350] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4582), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4584), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15417] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5193), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5195), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15484] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5197), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5199), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15551] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4732), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4734), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15618] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4892), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4894), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15685] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15752] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4896), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4898), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15819] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15886] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1768), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1770), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [15953] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5153), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5155), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16020] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5046), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5048), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16087] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5054), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16166] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4694), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4696), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16233] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5051), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16312] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4924), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4926), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16379] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5050), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5052), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16446] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4210), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4212), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5036), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5038), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16580] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4928), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4930), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16647] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8277), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5260), 1, + sym_function_body, + STATE(5261), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16728] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5022), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5024), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16795] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4948), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4950), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16862] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16929] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [16996] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5062), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5064), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17063] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4972), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4974), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17130] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4979), 1, + sym_type_constraints, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17209] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5026), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5028), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17276] = 8, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8279), 1, + anon_sym_COLON, + STATE(5227), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17353] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4968), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4970), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17420] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5066), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5068), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17487] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5103), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5105), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17554] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4956), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4958), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17621] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8281), 1, + anon_sym_COLON, + STATE(5132), 1, + sym_type_constraints, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17702] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5050), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17781] = 6, + ACTIONS(5157), 1, + anon_sym_EQ, + ACTIONS(8283), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5159), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5074), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17854] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3380), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3382), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17921] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4435), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4437), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [17988] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18055] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4900), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4902), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18122] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5049), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18201] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4920), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4922), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18268] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5091), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5093), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18335] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5099), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5101), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18402] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18469] = 4, + ACTIONS(8286), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4192), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18538] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5059), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18617] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8288), 1, + anon_sym_COLON, + STATE(5197), 1, + sym_function_body, + STATE(5198), 1, + sym_type_constraints, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18698] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3970), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3972), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18765] = 5, + ACTIONS(8290), 1, + anon_sym_SEMI, + ACTIONS(8292), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18836] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4832), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4834), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18903] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1694), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1696), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [18970] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4746), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4748), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19037] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5161), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5163), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19104] = 4, + ACTIONS(8294), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19173] = 5, + ACTIONS(8258), 1, + sym__quest, + STATE(4859), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4295), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4297), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19244] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19311] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4996), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4998), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19378] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4559), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19445] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19512] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4908), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4910), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19579] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19646] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4816), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4818), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19713] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4824), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4826), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19780] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4804), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4806), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19847] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(6986), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4196), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19920] = 4, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4287), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4289), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [19989] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(6982), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4176), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20062] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20129] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4311), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4313), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20196] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5165), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5167), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20263] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5131), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5133), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20330] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5070), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5072), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20397] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5242), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20474] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4844), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4846), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20541] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5010), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5012), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20608] = 5, + ACTIONS(8296), 1, + sym__quest, + STATE(4771), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4254), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4256), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20679] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1750), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1752), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20746] = 5, + ACTIONS(4788), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4790), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4435), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4437), 28, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20817] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4828), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4830), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20884] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4848), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4850), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [20951] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21018] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4808), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4810), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21085] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21152] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4852), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4854), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21219] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5127), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5129), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21286] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5087), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5089), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21353] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4932), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4934), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21420] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4220), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21487] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8298), 1, + anon_sym_COLON, + STATE(4722), 1, + sym_type_constraints, + STATE(4768), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21564] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4812), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4814), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21631] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5886), 1, + anon_sym_COLON, + STATE(4716), 1, + sym_type_constraints, + STATE(4788), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21708] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8300), 1, + anon_sym_COLON, + STATE(4713), 1, + sym_type_constraints, + STATE(4851), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21785] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8302), 1, + anon_sym_COLON, + STATE(4710), 1, + sym_type_constraints, + STATE(4851), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21862] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [21929] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(4702), 1, + sym_type_constraints, + STATE(4842), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22006] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4820), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4822), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22073] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5890), 1, + anon_sym_COLON, + STATE(4696), 1, + sym_type_constraints, + STATE(4842), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22150] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8304), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4852), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22227] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4980), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4982), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22294] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4936), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4938), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22361] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5000), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5002), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22428] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5896), 1, + anon_sym_COLON, + STATE(4685), 1, + sym_type_constraints, + STATE(4877), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22505] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3272), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3276), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22572] = 5, + ACTIONS(4856), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4858), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4419), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4421), 28, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22643] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4129), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22710] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5083), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5085), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22777] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22844] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4940), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4942), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22911] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3992), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3994), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [22978] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4964), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4966), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23045] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3133), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3135), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23112] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23179] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3065), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3067), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23246] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4766), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4768), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23313] = 8, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8306), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23390] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23457] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5175), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5177), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23524] = 8, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8308), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23601] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4904), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4906), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23668] = 9, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5038), 1, + sym_type_constraints, + STATE(5385), 1, + sym__block, + STATE(5405), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4244), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [23747] = 4, + ACTIONS(8283), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5074), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23816] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23883] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5139), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5141), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [23950] = 9, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5029), 1, + sym_type_constraints, + STATE(5385), 1, + sym__block, + STATE(5393), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4242), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4240), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [24029] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4836), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4838), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24096] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5149), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5151), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24163] = 4, + ACTIONS(6457), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4176), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24232] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1588), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1586), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24299] = 9, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5021), 1, + sym_type_constraints, + STATE(5372), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4082), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [24378] = 4, + ACTIONS(8310), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5026), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5028), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24447] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5014), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5016), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24514] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8312), 1, + anon_sym_COLON, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5231), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24595] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4419), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4421), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24662] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4912), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4914), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24729] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4214), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4216), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24796] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4992), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4994), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [24863] = 9, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5047), 1, + sym_type_constraints, + STATE(5385), 1, + sym__block, + STATE(5456), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4140), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [24942] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4986), 1, + sym_type_constraints, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25021] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4718), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4720), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25088] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4564), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4566), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25155] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8314), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5251), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25232] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4984), 1, + sym_type_constraints, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25311] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4983), 1, + sym_type_constraints, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25390] = 9, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5081), 1, + sym_type_constraints, + STATE(5376), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4150), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [25469] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5918), 1, + anon_sym_COLON, + STATE(5025), 1, + sym_type_constraints, + STATE(5270), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25546] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4916), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4918), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25613] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_COLON, + STATE(5106), 1, + sym_type_constraints, + STATE(5147), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25690] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(5926), 1, + anon_sym_COLON, + STATE(5083), 1, + sym_type_constraints, + STATE(5187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25767] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8318), 1, + anon_sym_COLON, + STATE(5079), 1, + sym_type_constraints, + STATE(5201), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25844] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_type_constraints, + STATE(5201), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25921] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4952), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4954), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [25988] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5922), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_type_constraints, + STATE(5242), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26065] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4980), 1, + sym_type_constraints, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26144] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4373), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4375), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26211] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8322), 1, + anon_sym_COLON, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5182), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26291] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(5948), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5242), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26367] = 5, + ACTIONS(8326), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8328), 1, + anon_sym_L, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4457), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4459), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26437] = 8, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + ACTIONS(8330), 1, + anon_sym_COLON, + STATE(5353), 1, + sym_type_constraints, + STATE(5391), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [26513] = 7, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5088), 1, + sym_type_constraints, + STATE(5136), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26587] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5132), 1, + sym_type_constraints, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26665] = 5, + ACTIONS(8332), 1, + anon_sym_DOT, + STATE(4721), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 24, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4122), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26735] = 7, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + STATE(5101), 1, + sym_type_constraints, + STATE(5136), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26809] = 7, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5100), 1, + sym_type_constraints, + STATE(5126), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4386), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4388), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26883] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8335), 1, + anon_sym_COLON, + STATE(5254), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [26955] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4650), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4648), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27021] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4712), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4710), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27087] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8337), 1, + anon_sym_COLON, + STATE(5279), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27159] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4707), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4704), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27225] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5159), 1, + sym_function_body, + STATE(5174), 1, + sym_type_constraints, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27303] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8339), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4905), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27379] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4575), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4572), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27445] = 8, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8341), 1, + anon_sym_COLON, + STATE(5329), 1, + sym_type_constraints, + STATE(5391), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27521] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4570), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4568), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27587] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8343), 1, + anon_sym_COLON, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27663] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4555), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4553), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27729] = 7, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5091), 1, + sym_type_constraints, + STATE(5152), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27803] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4688), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4686), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [27869] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8345), 1, + anon_sym_COLON, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5154), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [27949] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4525), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4523), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [28015] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5127), 1, + sym_type_constraints, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28093] = 8, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(6036), 1, + anon_sym_COLON, + STATE(5344), 1, + sym_type_constraints, + STATE(5417), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3250), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [28169] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4262), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [28235] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8347), 1, + anon_sym_COLON, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5117), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28315] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8349), 1, + anon_sym_COLON, + STATE(5106), 1, + sym_type_constraints, + STATE(5147), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28391] = 7, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5106), 1, + sym_type_constraints, + STATE(5147), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28465] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8351), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28541] = 7, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + STATE(5108), 1, + sym_type_constraints, + STATE(5177), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28615] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5161), 1, + sym_type_constraints, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28693] = 5, + ACTIONS(7075), 1, + anon_sym_by, + STATE(5203), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4451), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [28763] = 7, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5112), 1, + sym_type_constraints, + STATE(5177), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28837] = 7, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + STATE(5113), 1, + sym_type_constraints, + STATE(5179), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28911] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8353), 1, + anon_sym_COLON, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5212), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [28991] = 5, + ACTIONS(8355), 1, + anon_sym_COMMA, + STATE(4697), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29061] = 5, + ACTIONS(8355), 1, + anon_sym_COMMA, + STATE(4976), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4549), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4551), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29131] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8357), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4864), 1, + sym_function_body, + STATE(5125), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29211] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym__block, + STATE(5266), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29285] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29359] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(5992), 1, + anon_sym_COLON, + STATE(5083), 1, + sym_type_constraints, + STATE(5187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29435] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8359), 1, + anon_sym_COLON, + STATE(5079), 1, + sym_type_constraints, + STATE(5201), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29511] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29585] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29659] = 8, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(5338), 1, + sym_type_constraints, + STATE(5440), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4226), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [29735] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29809] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29883] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4303), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4305), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [29949] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30023] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4299), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4301), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30089] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym__block, + STATE(5302), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30163] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30237] = 7, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + STATE(5079), 1, + sym_type_constraints, + STATE(5201), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30311] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4419), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4421), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30377] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5197), 1, + sym_function_body, + STATE(5198), 1, + sym_type_constraints, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30455] = 8, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(8363), 1, + anon_sym_COLON, + STATE(5323), 1, + sym_type_constraints, + STATE(5461), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4248), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [30531] = 8, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + ACTIONS(5978), 1, + anon_sym_COLON, + STATE(5339), 1, + sym_type_constraints, + STATE(5428), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3228), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [30607] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8365), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_type_constraints, + STATE(5201), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30683] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4435), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4437), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30749] = 8, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + ACTIONS(6004), 1, + anon_sym_COLON, + STATE(5328), 1, + sym_type_constraints, + STATE(5449), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3236), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [30825] = 7, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5072), 1, + sym_type_constraints, + STATE(5201), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [30899] = 8, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5958), 1, + anon_sym_COLON, + STATE(5349), 1, + sym_type_constraints, + STATE(5428), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3228), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [30975] = 7, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + STATE(5068), 1, + sym_type_constraints, + STATE(5211), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4311), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4313), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31049] = 7, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym__block, + STATE(5308), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31123] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(6002), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_type_constraints, + STATE(5242), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31199] = 5, + ACTIONS(8367), 1, + anon_sym_by, + STATE(5217), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31269] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(6050), 1, + anon_sym_COLON, + STATE(5025), 1, + sym_type_constraints, + STATE(5270), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31345] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8369), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5251), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31421] = 7, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + STATE(5033), 1, + sym_type_constraints, + STATE(5251), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31495] = 7, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + STATE(5335), 1, + sym_type_constraints, + STATE(5465), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4363), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [31568] = 7, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5338), 1, + sym_type_constraints, + STATE(5440), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4226), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [31641] = 7, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + STATE(5360), 1, + sym_type_constraints, + STATE(5400), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4382), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [31714] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4648), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4650), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31779] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4704), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4707), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31844] = 7, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5314), 1, + sym_type_constraints, + STATE(5382), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4386), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [31917] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4710), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4712), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31982] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4636), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4638), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32047] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5270), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32116] = 5, + ACTIONS(8371), 1, + anon_sym_COMMA, + STATE(5028), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4549), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4551), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32185] = 4, + ACTIONS(8367), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32252] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5393), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4242), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4240), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [32325] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4690), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4692), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32390] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4698), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4700), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32455] = 5, + ACTIONS(8373), 1, + anon_sym_COMMA, + STATE(5036), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4439), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4441), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32524] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5251), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32593] = 7, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5348), 1, + sym_type_constraints, + STATE(5401), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4392), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4390), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [32666] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5242), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32735] = 5, + ACTIONS(8371), 1, + anon_sym_COMMA, + STATE(5045), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32804] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5405), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4244), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [32877] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5238), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4535), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4537), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [32946] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8375), 1, + anon_sym_COLON, + STATE(5227), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33021] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5242), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33090] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5211), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4311), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4313), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33159] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5433), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4094), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4092), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [33232] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4539), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4541), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33297] = 5, + ACTIONS(8373), 1, + anon_sym_COMMA, + STATE(5067), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4347), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4349), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33366] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4568), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4570), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33431] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5409), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4411), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4409), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [33504] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4660), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4662), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33569] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4553), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4555), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33634] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4686), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4688), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33699] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5201), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33768] = 5, + ACTIONS(8377), 1, + anon_sym_COMMA, + STATE(5111), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4529), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4527), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [33837] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4523), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4525), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33902] = 5, + ACTIONS(8379), 1, + anon_sym_COMMA, + STATE(5045), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4559), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [33971] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8382), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4905), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34046] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5372), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4082), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [34119] = 7, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5351), 1, + sym_type_constraints, + STATE(5400), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4382), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [34192] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34265] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34338] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34411] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5236), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34488] = 7, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + STATE(5323), 1, + sym_type_constraints, + STATE(5461), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4248), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [34561] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34634] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34707] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34780] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8384), 1, + anon_sym_COLON, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34855] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4262), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4264), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34920] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4843), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [34993] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + ACTIONS(8386), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35068] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4572), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4575), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35133] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35202] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5185), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4515), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4517), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35271] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4578), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4580), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35336] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5222), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35413] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4519), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4521), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35478] = 5, + ACTIONS(8388), 1, + anon_sym_COMMA, + STATE(5067), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4373), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4375), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35547] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5179), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35616] = 7, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + STATE(5359), 1, + sym_type_constraints, + STATE(5395), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4311), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [35689] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4543), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4545), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35754] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8391), 1, + anon_sym_COLON, + STATE(4889), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35825] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5177), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35894] = 4, + STATE(5045), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [35961] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8393), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36032] = 5, + ACTIONS(8395), 1, + anon_sym_COMMA, + STATE(5089), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4441), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4439), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36101] = 4, + ACTIONS(7075), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4451), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36168] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8397), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36243] = 7, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5353), 1, + sym_type_constraints, + STATE(5391), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36316] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5177), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36385] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4672), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4674), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36450] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5456), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4140), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36523] = 5, + ACTIONS(8377), 1, + anon_sym_COMMA, + STATE(5043), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4551), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4549), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36592] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5147), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36661] = 7, + ACTIONS(5770), 1, + anon_sym_where, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_type_constraints, + STATE(5465), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4363), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36734] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5212), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36811] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4642), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4640), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [36876] = 4, + ACTIONS(8399), 1, + anon_sym_AT2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4652), 25, + anon_sym_AT, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4654), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [36943] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5178), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4632), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4634), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37012] = 5, + ACTIONS(8395), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4347), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [37081] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + ACTIONS(8401), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37156] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5128), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4694), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4696), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37225] = 7, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + STATE(5319), 1, + sym_type_constraints, + STATE(5462), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4307), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [37298] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37371] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5154), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37448] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4531), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4533), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4674), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4672), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [37578] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4545), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4543), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [37643] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4899), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37716] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8235), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4867), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37789] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5152), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37858] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5178), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4632), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4634), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37927] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5201), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [37996] = 7, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_where, + STATE(5329), 1, + sym_type_constraints, + STATE(5391), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [38069] = 5, + ACTIONS(8403), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4373), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [38138] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4533), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4531), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [38203] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5126), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4386), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4388), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38272] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4640), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4642), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38337] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5136), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38406] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5182), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38483] = 7, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5376), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4150), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [38556] = 5, + ACTIONS(8406), 1, + anon_sym_COMMA, + STATE(5111), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4559), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4557), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [38625] = 5, + ACTIONS(5812), 1, + anon_sym_LBRACE, + STATE(5136), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38694] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5142), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4582), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4584), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38763] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5308), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38835] = 4, + ACTIONS(8409), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38901] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5014), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5016), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [38965] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39037] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(6120), 1, + anon_sym_COLON, + STATE(4702), 1, + sym_type_constraints, + STATE(4842), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39111] = 4, + ACTIONS(8411), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5026), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5028), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39177] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1588), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1586), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39241] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4559), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4557), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [39305] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5175), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5177), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39369] = 6, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(8413), 1, + anon_sym_COLON, + STATE(5435), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4415), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4413), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [39439] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4816), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4818), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39503] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39575] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4392), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39639] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5266), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39711] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4920), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4922), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39775] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8415), 1, + anon_sym_COLON, + STATE(4713), 1, + sym_type_constraints, + STATE(4851), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39849] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(6140), 1, + anon_sym_COLON, + STATE(4716), 1, + sym_type_constraints, + STATE(4788), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39923] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5115), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5117), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [39987] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40059] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40123] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3970), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3972), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40187] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40251] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4632), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4634), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40315] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5119), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5121), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40379] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4373), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [40443] = 6, + ACTIONS(5157), 1, + anon_sym_EQ, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5159), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5074), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 25, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3380), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3382), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40577] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4566), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4564), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [40641] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5123), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5125), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40705] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5026), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5028), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40769] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5087), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5089), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40833] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5135), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5137), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40897] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [40961] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4386), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4388), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41025] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41089] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1760), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1762), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41153] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4988), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [41217] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4948), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4950), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41281] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4694), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4696), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41345] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1780), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1782), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41409] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41481] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4984), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [41545] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(207), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(205), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1768), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1770), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41673] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5143), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5145), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41737] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41801] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41865] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [41937] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4980), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [42001] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4944), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4946), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42065] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4928), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4930), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42129] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4924), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4926), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42193] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4976), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [42257] = 4, + ACTIONS(8420), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42323] = 4, + ACTIONS(8422), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42389] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8424), 1, + anon_sym_COLON, + STATE(4722), 1, + sym_type_constraints, + STATE(4768), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42463] = 4, + ACTIONS(8426), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42529] = 4, + ACTIONS(8428), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42595] = 4, + ACTIONS(6676), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4176), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42661] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4720), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4718), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [42725] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42797] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8430), 1, + anon_sym_COLON, + STATE(4710), 1, + sym_type_constraints, + STATE(4851), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42871] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5169), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5171), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42935] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4382), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4384), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [42999] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5018), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5020), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43063] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4582), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4584), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43127] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4718), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4720), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43191] = 4, + ACTIONS(6672), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43257] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43329] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5193), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5195), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43393] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4896), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4898), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43457] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5197), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5199), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43521] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4732), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4734), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43585] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43649] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4638), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4636), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [43713] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4750), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4752), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43777] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4451), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [43841] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(6164), 1, + anon_sym_COLON, + STATE(4696), 1, + sym_type_constraints, + STATE(4842), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43915] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5050), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5052), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [43979] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1774), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1776), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44043] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5036), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5038), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44107] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5022), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5024), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44171] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4754), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4756), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44235] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44299] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44371] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8432), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4852), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44445] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4972), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4974), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44509] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4363), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4365), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44573] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4758), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4760), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44637] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4968), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [44701] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4762), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4764), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44765] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(6138), 1, + anon_sym_COLON, + STATE(4685), 1, + sym_type_constraints, + STATE(4877), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44839] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4564), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4566), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44903] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3964), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3966), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44967] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4373), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4375), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45031] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4770), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4772), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45095] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4774), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4776), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45159] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4307), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4309), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45223] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45295] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4900), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4902), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45359] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4840), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4842), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45423] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4892), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4894), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45487] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4784), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4786), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45551] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4968), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4970), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45615] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4788), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4790), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45679] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4792), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4794), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45743] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4832), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4834), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45807] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1694), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1696), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45871] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [45943] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4746), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4748), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46007] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5161), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5163), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46071] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5095), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5097), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46135] = 6, + ACTIONS(5764), 1, + anon_sym_LBRACE, + ACTIONS(8434), 1, + anon_sym_COLON, + STATE(5448), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4425), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4423), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [46205] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4804), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4806), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46269] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46333] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5070), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5072), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46397] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4808), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4810), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46461] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46533] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4692), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4690), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [46597] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8436), 1, + anon_sym_COLON, + STATE(5254), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46667] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4700), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4698), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [46731] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4068), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4070), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46795] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4843), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46867] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4812), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4814), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46931] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4996), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4998), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [46995] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4976), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4978), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47059] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4559), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47123] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4820), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4822), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47187] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47251] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3992), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3994), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47315] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4824), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4826), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47379] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3133), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3135), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47443] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4836), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4838), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47507] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4912), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4914), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47571] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4916), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4918), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47635] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4904), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4906), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47699] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4952), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4954), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47763] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4311), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4313), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47827] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5165), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5167), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47891] = 5, + ACTIONS(4856), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4858), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4419), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4421), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [47959] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5010), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5012), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48023] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4956), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4958), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48087] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4960), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4962), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48151] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1750), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(1752), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48215] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4435), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4437), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48279] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4828), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4830), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48343] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48407] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48479] = 5, + ACTIONS(4788), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4790), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4435), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4437), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48547] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4521), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4519), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [48611] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48683] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48747] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4908), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4910), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48811] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5054), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5056), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48875] = 5, + ACTIONS(8438), 1, + anon_sym_SEMI, + ACTIONS(8440), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48943] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5046), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5048), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49007] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49071] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5066), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5068), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49135] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5103), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5105), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49199] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4980), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4982), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49263] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5091), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5093), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49327] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5000), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5002), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49391] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5099), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5101), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49455] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3272), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3276), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49519] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4419), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4421), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49583] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5083), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5085), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49647] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5131), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5133), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49711] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4662), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4660), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [49775] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49839] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5153), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5155), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49903] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [49967] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4992), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4994), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50031] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4984), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4986), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50095] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8266), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5302), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50167] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50231] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5149), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5151), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50295] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50359] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5139), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5141), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50423] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3065), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3067), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50487] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5127), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5129), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50551] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4766), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4768), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50615] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8442), 1, + anon_sym_COLON, + STATE(5279), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50685] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5062), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5064), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50749] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4988), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4990), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50813] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(7275), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4176), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 25, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50883] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4196), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 25, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50953] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4867), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51025] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4541), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4539), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [51089] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51153] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4899), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51225] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4964), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4966), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51289] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4940), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4942), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51353] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4936), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4938), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51417] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4932), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4934), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51481] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4852), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4854), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51545] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4848), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4850), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4844), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4846), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51673] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4580), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4578), 32, + anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [51737] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51809] = 4, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5074), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51875] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5401), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4392), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4390), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [51942] = 5, + ACTIONS(8444), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4179), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3942), 23, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 28, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52009] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5400), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4382), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [52076] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8447), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52145] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8449), 1, + anon_sym_COLON, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5260), 1, + sym_function_body, + STATE(5510), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52222] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5412), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4584), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4582), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [52289] = 5, + ACTIONS(8457), 1, + sym__automatic_semicolon, + STATE(5502), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8455), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8453), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [52356] = 8, + ACTIONS(5157), 1, + anon_sym_EQ, + ACTIONS(8417), 1, + anon_sym_COLON_COLON, + ACTIONS(8459), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5159), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(5074), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 23, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52429] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8461), 1, + anon_sym_COLON, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5509), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52506] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5395), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4311), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [52573] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8463), 1, + anon_sym_COLON, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5508), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52650] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8465), 1, + anon_sym_COLON, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5507), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52727] = 4, + ACTIONS(8467), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52792] = 5, + ACTIONS(8469), 1, + anon_sym_SEMI, + ACTIONS(8471), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [52859] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5440), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4226), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [52926] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5465), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4363), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [52993] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8473), 1, + anon_sym_COLON, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5506), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53070] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5428), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3228), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [53137] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8475), 1, + anon_sym_COLON, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5556), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53214] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5417), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3250), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [53281] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8479), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4864), 1, + sym_function_body, + STATE(5565), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53358] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5400), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4382), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [53425] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(7343), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4196), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 24, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53494] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(7350), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4176), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 24, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53563] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5382), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4386), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [53630] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5391), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [53697] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8481), 1, + anon_sym_COLON, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5558), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53774] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8483), 1, + anon_sym_COLON, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5551), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53851] = 10, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8485), 1, + anon_sym_COLON, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5549), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53928] = 5, + ACTIONS(8487), 1, + anon_sym_by, + STATE(4812), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [53995] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5461), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4248), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54062] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8489), 1, + anon_sym_COLON, + STATE(4889), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54131] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5428), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3228), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54198] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5457), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4537), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4535), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54265] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5408), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4696), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4694), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54332] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5391), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54399] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5449), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3236), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54466] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5388), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4634), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4632), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54533] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5453), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4517), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4515), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54600] = 5, + ACTIONS(5776), 1, + anon_sym_LBRACE, + STATE(5465), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4363), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54667] = 4, + ACTIONS(8491), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54732] = 4, + ACTIONS(8493), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54797] = 4, + ACTIONS(8495), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54862] = 5, + ACTIONS(8501), 1, + sym__automatic_semicolon, + STATE(5514), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8499), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8497), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [54929] = 4, + ACTIONS(8503), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [54994] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5462), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4307), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [55061] = 5, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(5388), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4634), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4632), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [55128] = 4, + ACTIONS(6696), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55193] = 4, + ACTIONS(6797), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4176), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55258] = 5, + ACTIONS(8505), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4199), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3942), 23, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 28, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55325] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1770), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1768), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [55387] = 4, + ACTIONS(6898), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55451] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(7374), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4176), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 24, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55519] = 6, + ACTIONS(3942), 1, + anon_sym_EQ, + ACTIONS(7398), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4196), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4199), 24, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55587] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4830), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4828), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [55649] = 5, + ACTIONS(8508), 1, + anon_sym_SEMI, + ACTIONS(8510), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55715] = 4, + ACTIONS(8512), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55779] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5024), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5022), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [55841] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4242), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4240), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [55903] = 4, + ACTIONS(8514), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [55967] = 4, + ACTIONS(8516), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [56031] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8518), 1, + anon_sym_COLON, + STATE(5227), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [56103] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4140), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56165] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8520), 1, + anon_sym_COLON, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8528), 1, + anon_sym_LT, + ACTIONS(8530), 1, + anon_sym_where, + STATE(5562), 1, + sym_type_parameters, + STATE(8443), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8710), 1, + sym_type_constraints, + STATE(9153), 1, + sym_enum_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3166), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [56271] = 4, + ACTIONS(8532), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [56335] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5117), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5115), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56397] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4094), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4092), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56459] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1762), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1760), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56521] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4392), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4390), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56583] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5097), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5095), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56645] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4826), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4824), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56707] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5072), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5070), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56769] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4421), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4419), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56831] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5056), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5054), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56893] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5020), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5018), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [56955] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4962), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4960), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57017] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4974), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4972), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57079] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4363), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57141] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4437), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4435), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57203] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4244), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57265] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5167), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5165), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57327] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4307), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57389] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4902), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4900), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57451] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5171), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5169), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3236), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57575] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1774), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57637] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4634), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4632), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57699] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4696), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4694), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57761] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4834), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4832), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57823] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1696), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1694), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57885] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5121), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5119), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [57947] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4411), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4409), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58009] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4748), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4746), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58071] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3382), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3380), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58133] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4922), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4920), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58195] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4910), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4908), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58257] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8528), 1, + anon_sym_LT, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8534), 1, + anon_sym_COLON, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5569), 1, + sym_type_parameters, + STATE(8415), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8759), 1, + sym_type_constraints, + STATE(9435), 1, + sym_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3198), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [58363] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4816), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58425] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5125), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5123), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58487] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3228), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58549] = 4, + ACTIONS(8538), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [58613] = 5, + ACTIONS(8540), 1, + anon_sym_LT, + STATE(5585), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4104), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58679] = 4, + ACTIONS(6894), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4176), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4179), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [58743] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4248), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58805] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5002), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5000), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58867] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5038), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5036), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [58929] = 4, + ACTIONS(8487), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [58993] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5163), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5161), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59055] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5545), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [59129] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5548), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [59203] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5137), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5135), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59265] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5549), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [59339] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8528), 1, + anon_sym_LT, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8542), 1, + anon_sym_COLON, + STATE(5550), 1, + sym_type_parameters, + STATE(8447), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8733), 1, + sym_type_constraints, + STATE(9435), 1, + sym_enum_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3198), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [59445] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5551), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [59519] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4232), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59581] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5052), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5050), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59643] = 6, + ACTIONS(7009), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4202), 4, + sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4199), 18, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4196), 27, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59711] = 7, + ACTIONS(8546), 1, + anon_sym_AT, + ACTIONS(8551), 1, + sym_label, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5431), 2, + sym_annotation, + aux_sym__statement_repeat1, + STATE(5648), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8549), 19, + sym__string_start, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8544), 28, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59781] = 6, + ACTIONS(7003), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4182), 4, + sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4179), 18, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4176), 27, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59849] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4150), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [59911] = 9, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + STATE(5556), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [59985] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5085), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5083), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60047] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3276), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3272), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60109] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1752), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1750), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60171] = 4, + ACTIONS(8554), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4182), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4184), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60235] = 4, + ACTIONS(8556), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4202), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4204), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60299] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4386), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60361] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1782), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(1780), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60423] = 4, + STATE(5444), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [60487] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(205), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(207), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60549] = 5, + ACTIONS(8558), 1, + anon_sym_COMMA, + STATE(5444), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4559), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [60615] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5503), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [60689] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5505), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [60763] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5145), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5143), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60825] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5012), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5010), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60887] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4226), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [60949] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5506), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61023] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8561), 1, + anon_sym_COLON, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5260), 1, + sym_function_body, + STATE(5634), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4134), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4136), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61099] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5507), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61173] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5199), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5197), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61235] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5508), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61309] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5195), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(5193), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61371] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4082), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61433] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4998), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4996), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61495] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8565), 1, + anon_sym_COLON, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5636), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61571] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8567), 1, + anon_sym_COLON, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5642), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61647] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3067), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3065), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61709] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4311), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61771] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4584), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4582), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [61833] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8528), 1, + anon_sym_LT, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(8569), 1, + anon_sym_COLON, + STATE(5581), 1, + sym_type_parameters, + STATE(8433), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8788), 1, + sym_type_constraints, + STATE(9295), 1, + sym_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3218), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [61939] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8571), 1, + anon_sym_COLON, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5644), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62015] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4382), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62077] = 10, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8573), 1, + anon_sym_COLON, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5649), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62153] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3250), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62215] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4768), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4766), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62277] = 4, + ACTIONS(8575), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4728), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4726), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62341] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8577), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62413] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + ACTIONS(8579), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62485] = 4, + ACTIONS(8581), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4738), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4736), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62549] = 4, + ACTIONS(6829), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62613] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8583), 1, + anon_sym_COLON, + STATE(4722), 1, + sym_type_constraints, + STATE(4768), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62684] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(6294), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5242), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62755] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8589), 1, + anon_sym_COMMA, + ACTIONS(8591), 1, + anon_sym_RPAREN, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9023), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [62858] = 5, + ACTIONS(8617), 1, + anon_sym_DOT, + STATE(5477), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4127), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [62923] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8620), 1, + anon_sym_COLON, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [62994] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3166), 1, + anon_sym_while, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8622), 1, + anon_sym_COLON, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, + anon_sym_LT, + ACTIONS(8632), 1, + anon_sym_where, + STATE(5621), 1, + sym_type_parameters, + STATE(8465), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(9076), 1, + sym_type_constraints, + STATE(9677), 1, + sym_enum_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63099] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(6310), 1, + anon_sym_COLON, + STATE(4696), 1, + sym_type_constraints, + STATE(4842), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63170] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [63231] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8634), 1, + anon_sym_COMMA, + ACTIONS(8636), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(8898), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63334] = 4, + ACTIONS(8638), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63397] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(6266), 1, + anon_sym_COLON, + STATE(4685), 1, + sym_type_constraints, + STATE(4877), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63468] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3198), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, + anon_sym_LT, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8640), 1, + anon_sym_COLON, + STATE(5619), 1, + sym_type_parameters, + STATE(8507), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(8972), 1, + sym_type_constraints, + STATE(9739), 1, + sym_enum_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63573] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(6318), 1, + anon_sym_COLON, + STATE(4702), 1, + sym_type_constraints, + STATE(4842), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63644] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8642), 1, + anon_sym_EQ, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8646), 1, + anon_sym_where, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(5630), 1, + sym_type_constraints, + STATE(5686), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9210), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63745] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(8664), 1, + anon_sym_COLON, + STATE(4710), 1, + sym_type_constraints, + STATE(4851), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63816] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8666), 1, + anon_sym_COMMA, + ACTIONS(8668), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(8934), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63919] = 5, + ACTIONS(8670), 1, + anon_sym_SEMI, + ACTIONS(8672), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63984] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5235), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8646), 1, + anon_sym_where, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8674), 1, + anon_sym_EQ, + STATE(5650), 1, + sym_type_constraints, + STATE(5682), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9183), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [64085] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8676), 1, + anon_sym_COLON, + STATE(4713), 1, + sym_type_constraints, + STATE(4851), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [64156] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8678), 1, + anon_sym_COMMA, + ACTIONS(8680), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(8924), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [64259] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8646), 1, + anon_sym_where, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8682), 1, + anon_sym_EQ, + ACTIONS(8684), 1, + anon_sym_SEMI, + STATE(5646), 1, + sym_type_constraints, + STATE(5695), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3312), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9385), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [64360] = 8, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(6326), 1, + anon_sym_COLON, + STATE(4716), 1, + sym_type_constraints, + STATE(4788), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [64431] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8686), 1, + anon_sym_COMMA, + ACTIONS(8688), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9001), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [64534] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4156), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [64595] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8690), 1, + anon_sym_COLON, + STATE(5106), 1, + sym_type_constraints, + STATE(5147), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [64666] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3198), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, + anon_sym_LT, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8692), 1, + anon_sym_COLON, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(5616), 1, + sym_type_parameters, + STATE(8503), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(9101), 1, + sym_type_constraints, + STATE(9739), 1, + sym_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [64771] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(6282), 1, + anon_sym_COLON, + STATE(5083), 1, + sym_type_constraints, + STATE(5187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [64842] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8696), 1, + anon_sym_COMMA, + ACTIONS(8698), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9053), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [64945] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8702), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8700), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [65006] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5266), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65075] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8704), 1, + anon_sym_COMMA, + ACTIONS(8706), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9120), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65178] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65247] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65316] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65385] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65454] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65523] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [65592] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8708), 1, + anon_sym_COMMA, + ACTIONS(8710), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(8935), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65695] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5227), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8646), 1, + anon_sym_where, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8712), 1, + anon_sym_EQ, + STATE(5609), 1, + sym_type_constraints, + STATE(5688), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1752), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9297), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65796] = 24, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8714), 1, + anon_sym_COMMA, + ACTIONS(8716), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(8873), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65899] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8455), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8453), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [65960] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5642), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66033] = 4, + ACTIONS(8718), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66096] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(6298), 1, + anon_sym_COLON, + STATE(5025), 1, + sym_type_constraints, + STATE(5270), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66167] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8646), 1, + anon_sym_where, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_EQ, + ACTIONS(8722), 1, + anon_sym_SEMI, + STATE(5602), 1, + sym_type_constraints, + STATE(5692), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9514), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66268] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8724), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66339] = 5, + ACTIONS(8726), 1, + anon_sym_DOT, + STATE(5524), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4120), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [66404] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5308), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66473] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5302), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66542] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66611] = 5, + ACTIONS(8726), 1, + anon_sym_DOT, + STATE(5477), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4113), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [66676] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8728), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_type_constraints, + STATE(5201), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66747] = 8, + ACTIONS(5502), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8730), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4852), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66818] = 4, + ACTIONS(8732), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [66881] = 25, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3218), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, + anon_sym_LT, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(8734), 1, + anon_sym_COLON, + STATE(5628), 1, + sym_type_parameters, + STATE(8464), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(8897), 1, + sym_type_constraints, + STATE(9759), 1, + sym_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66986] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5644), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67059] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5649), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67132] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5645), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67205] = 9, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + STATE(5639), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67278] = 4, + ACTIONS(8736), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67341] = 4, + ACTIONS(8738), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67404] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(6288), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_type_constraints, + STATE(5242), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67475] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8740), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5251), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67546] = 8, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + ACTIONS(8742), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4905), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67617] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8744), 1, + anon_sym_COLON, + STATE(5079), 1, + sym_type_constraints, + STATE(5201), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67688] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8746), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [67788] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8748), 1, + anon_sym_COLON, + STATE(5079), 1, + sym_type_constraints, + STATE(5201), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67858] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8750), 1, + anon_sym_COLON, + STATE(5254), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67924] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4421), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4856), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [67986] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8752), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68086] = 14, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(8758), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8756), 2, + anon_sym_val, + anon_sym_var, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8754), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5560), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68168] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4843), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68236] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8760), 1, + anon_sym_COLON, + STATE(5227), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4281), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4283), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68306] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8762), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68406] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4790), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68474] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4741), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68542] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8764), 1, + anon_sym_COLON, + STATE(8416), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8684), 1, + sym_type_constraints, + STATE(9430), 1, + sym_enum_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68642] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4750), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68710] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8766), 1, + anon_sym_COLON, + STATE(5106), 1, + sym_type_constraints, + STATE(5147), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4226), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4228), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [68780] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8768), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68880] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(3276), 1, + anon_sym_while, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8770), 1, + anon_sym_EQ, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8774), 1, + anon_sym_where, + ACTIONS(8776), 1, + anon_sym_SEMI, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(5662), 1, + sym_type_constraints, + STATE(5715), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9719), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68980] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8782), 1, + anon_sym_COLON, + STATE(5279), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69046] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4777), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69114] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8784), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69214] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69282] = 5, + ACTIONS(8786), 1, + anon_sym_by, + STATE(5217), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69346] = 14, + ACTIONS(8788), 1, + anon_sym_AT, + ACTIONS(8807), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8793), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8801), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8816), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8810), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8813), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8804), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8798), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8795), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8791), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5560), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69428] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8819), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69528] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8821), 1, + anon_sym_COLON, + STATE(8408), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8773), 1, + sym_type_constraints, + STATE(9187), 1, + sym_enum_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69628] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8823), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69728] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8825), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69828] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4839), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [69896] = 23, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5369), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8774), 1, + anon_sym_where, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8827), 1, + anon_sym_EQ, + STATE(5660), 1, + sym_type_constraints, + STATE(5706), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [69996] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8829), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70096] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4867), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70164] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(8831), 1, + anon_sym_COLON, + STATE(8442), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8706), 1, + sym_type_constraints, + STATE(9430), 1, + sym_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70264] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8833), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70364] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8835), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4170), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4172), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70434] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4214), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [70494] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8837), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70594] = 5, + ACTIONS(8839), 1, + anon_sym_COMMA, + STATE(5444), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70658] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(6394), 1, + anon_sym_COLON, + STATE(5025), 1, + sym_type_constraints, + STATE(5270), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3250), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3254), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70728] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(6392), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_type_constraints, + STATE(5242), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70798] = 23, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(3312), 1, + anon_sym_while, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8774), 1, + anon_sym_where, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8841), 1, + anon_sym_EQ, + ACTIONS(8843), 1, + anon_sym_SEMI, + STATE(5669), 1, + sym_type_constraints, + STATE(5719), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9753), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70898] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4899), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [70966] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8845), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71066] = 8, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(8847), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5251), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4248), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4250), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71136] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(8522), 1, + anon_sym_constructor, + ACTIONS(8526), 1, + anon_sym_LPAREN, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(8849), 1, + anon_sym_COLON, + STATE(8419), 1, + sym_primary_constructor, + STATE(8527), 1, + sym__class_parameters, + STATE(8755), 1, + sym_type_constraints, + STATE(9432), 1, + sym_class_body, + STATE(9872), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71236] = 23, + ACTIONS(1696), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5367), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8774), 1, + anon_sym_where, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8851), 1, + anon_sym_EQ, + STATE(5667), 1, + sym_type_constraints, + STATE(5703), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9644), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71336] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8853), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71436] = 5, + ACTIONS(8855), 1, + anon_sym_LPAREN, + STATE(5604), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7108), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [71500] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4218), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [71560] = 5, + ACTIONS(8839), 1, + anon_sym_COMMA, + STATE(5574), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4549), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4551), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [71624] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8858), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71724] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8860), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71824] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4210), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [71884] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8862), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71984] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(8864), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_type_constraints, + STATE(5201), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4232), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4234), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72054] = 8, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + ACTIONS(8866), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72124] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(6368), 1, + anon_sym_COLON, + STATE(5083), 1, + sym_type_constraints, + STATE(5187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72194] = 23, + ACTIONS(1752), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5361), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8774), 1, + anon_sym_where, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8868), 1, + anon_sym_EQ, + STATE(5661), 1, + sym_type_constraints, + STATE(5700), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9680), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72294] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8870), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72394] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4437), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4788), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4790), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72456] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8872), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72556] = 7, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(4844), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72624] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4127), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [72684] = 8, + ACTIONS(5742), 1, + anon_sym_where, + ACTIONS(5812), 1, + anon_sym_LBRACE, + ACTIONS(6390), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5242), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3228), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3232), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [72754] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8874), 1, + anon_sym_RBRACE, + ACTIONS(8876), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9436), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72853] = 21, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5227), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8712), 1, + anon_sym_EQ, + STATE(5688), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1752), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9297), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72948] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8878), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73013] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4968), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [73072] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5302), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73139] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8880), 1, + anon_sym_RBRACE, + ACTIONS(8882), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9459), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73238] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5308), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4401), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4403), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73305] = 5, + ACTIONS(8884), 1, + anon_sym_COMMA, + STATE(5620), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4549), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4551), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73368] = 21, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5235), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8674), 1, + anon_sym_EQ, + STATE(5682), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9183), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73463] = 4, + ACTIONS(4419), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73524] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8886), 1, + anon_sym_RBRACE, + ACTIONS(8888), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9206), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73623] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5282), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4164), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4166), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73690] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8890), 1, + anon_sym_RBRACE, + ACTIONS(8892), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9322), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73789] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7197), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [73848] = 6, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COLON, + STATE(4889), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [73913] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(8896), 1, + anon_sym_COLON, + STATE(8463), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(9071), 1, + sym_type_constraints, + STATE(9704), 1, + sym_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74012] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4980), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [74071] = 5, + ACTIONS(8898), 1, + anon_sym_COMMA, + STATE(5618), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4557), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4559), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74134] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8901), 1, + anon_sym_COLON, + STATE(8492), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(9004), 1, + sym_type_constraints, + STATE(9704), 1, + sym_enum_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74233] = 5, + ACTIONS(8884), 1, + anon_sym_COMMA, + STATE(5618), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74296] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8903), 1, + anon_sym_COLON, + STATE(8490), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(9110), 1, + sym_type_constraints, + STATE(9639), 1, + sym_enum_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74395] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7191), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [74454] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8905), 1, + anon_sym_RBRACE, + ACTIONS(8907), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9235), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74553] = 4, + ACTIONS(4435), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4788), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4790), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [74614] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8909), 1, + anon_sym_RBRACE, + ACTIONS(8911), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9262), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74713] = 22, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7885), 1, + sym_modifiers, + STATE(8354), 1, + sym_binding_pattern_kind, + STATE(9160), 1, + sym_class_parameter, + STATE(9627), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74810] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8913), 1, + anon_sym_RBRACE, + ACTIONS(8915), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9453), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [74909] = 23, + ACTIONS(3162), 1, + anon_sym_AT, + ACTIONS(3186), 1, + sym_property_modifier, + ACTIONS(3254), 1, + anon_sym_while, + ACTIONS(8624), 1, + anon_sym_constructor, + ACTIONS(8628), 1, + anon_sym_LPAREN, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(8917), 1, + anon_sym_COLON, + STATE(8508), 1, + sym_primary_constructor, + STATE(8821), 1, + sym__class_parameters, + STATE(8968), 1, + sym_type_constraints, + STATE(9742), 1, + sym_class_body, + STATE(10176), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7621), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7629), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5783), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7625), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7627), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7623), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7619), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7617), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5544), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75008] = 5, + ACTIONS(4196), 1, + anon_sym_while, + ACTIONS(8919), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75071] = 21, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5233), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8922), 1, + anon_sym_EQ, + STATE(5684), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1782), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9227), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75166] = 4, + ACTIONS(8786), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4453), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75227] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8924), 1, + anon_sym_RBRACE, + ACTIONS(8926), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9348), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75326] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4988), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [75385] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5228), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4092), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4094), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75452] = 5, + ACTIONS(4176), 1, + anon_sym_while, + ACTIONS(8928), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75515] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5197), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4152), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75582] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4976), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [75641] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4984), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [75700] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5266), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4411), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75767] = 23, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(8931), 1, + anon_sym_RBRACE, + ACTIONS(8933), 1, + anon_sym_SEMI, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8725), 1, + sym_enum_entry, + STATE(9367), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75866] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7181), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [75925] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5160), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4140), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4142), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [75992] = 4, + STATE(5618), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4529), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76053] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5133), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4082), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4084), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76120] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4244), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4246), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76187] = 21, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8720), 1, + anon_sym_EQ, + ACTIONS(8722), 1, + anon_sym_SEMI, + STATE(5692), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9514), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76282] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7165), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [76341] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7129), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [76400] = 7, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_EQ, + STATE(5159), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4240), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4242), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76467] = 21, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8642), 1, + anon_sym_EQ, + ACTIONS(8644), 1, + anon_sym_by, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(5686), 1, + sym_property_delegate, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9210), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76562] = 5, + ACTIONS(8935), 1, + anon_sym_LT, + STATE(5685), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4146), 45, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [76624] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8937), 1, + anon_sym_COLON, + STATE(5254), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4423), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4425), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76688] = 4, + ACTIONS(8939), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76748] = 4, + ACTIONS(8941), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76808] = 4, + ACTIONS(8943), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76868] = 4, + ACTIONS(8945), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76928] = 4, + ACTIONS(8947), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 28, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76988] = 5, + ACTIONS(8949), 1, + anon_sym_SEMI, + ACTIONS(8951), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77050] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(3947), 47, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [77108] = 21, + ACTIONS(1782), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5433), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8953), 1, + anon_sym_EQ, + STATE(5716), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9559), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77202] = 21, + ACTIONS(1696), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5367), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8851), 1, + anon_sym_EQ, + STATE(5703), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9644), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77296] = 21, + ACTIONS(1752), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5361), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8868), 1, + anon_sym_EQ, + STATE(5700), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9680), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77390] = 6, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(8955), 1, + anon_sym_COLON, + STATE(5279), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4415), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [77454] = 21, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8929), 1, + sym_enum_entry, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8957), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77548] = 21, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8929), 1, + sym_enum_entry, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8959), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77642] = 14, + ACTIONS(8961), 1, + anon_sym_AT, + ACTIONS(8976), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8793), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8970), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8985), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8979), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8982), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8973), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8967), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8964), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8791), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5666), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77722] = 21, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5369), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + ACTIONS(8827), 1, + anon_sym_EQ, + STATE(5706), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77816] = 14, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8988), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8756), 2, + anon_sym_val, + anon_sym_var, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8754), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5666), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77896] = 21, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(3276), 1, + anon_sym_while, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8770), 1, + anon_sym_EQ, + ACTIONS(8772), 1, + anon_sym_by, + ACTIONS(8776), 1, + anon_sym_SEMI, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(5715), 1, + sym_property_delegate, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9719), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [77990] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4158), 47, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [78048] = 5, + ACTIONS(8990), 1, + anon_sym_DOT, + STATE(5672), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4113), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4115), 44, + anon_sym_AT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [78109] = 5, + ACTIONS(8992), 1, + anon_sym_DOT, + STATE(5672), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4129), 44, + anon_sym_AT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [78170] = 5, + ACTIONS(8505), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4202), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3947), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [78231] = 4, + ACTIONS(8995), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78290] = 5, + ACTIONS(8997), 1, + anon_sym_SEMI, + ACTIONS(8999), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78351] = 4, + ACTIONS(9001), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78410] = 5, + ACTIONS(8444), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4182), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3947), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [78471] = 4, + ACTIONS(9003), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78530] = 4, + ACTIONS(9005), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78589] = 4, + ACTIONS(9007), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78648] = 20, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8607), 1, + sym_property_modifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8146), 1, + sym_modifiers, + STATE(8410), 1, + sym_simple_identifier, + STATE(8929), 1, + sym_enum_entry, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8613), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8601), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5721), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78738] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5261), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9210), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78824] = 4, + ACTIONS(9009), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4736), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4738), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [78882] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5249), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1762), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9238), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78968] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4220), 45, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [79024] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5233), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1782), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9227), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79110] = 4, + ACTIONS(9011), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4202), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [79168] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5235), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9183), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79254] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4129), 45, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [79310] = 5, + ACTIONS(4184), 1, + anon_sym_while, + ACTIONS(8928), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [79370] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4214), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4216), 45, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [79426] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5227), 1, + anon_sym_SEMI, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1752), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9297), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79512] = 5, + ACTIONS(4204), 1, + anon_sym_while, + ACTIONS(8919), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3942), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym_null_literal, + sym__alpha_identifier, + [79572] = 4, + ACTIONS(9013), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4184), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4182), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [79630] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8722), 1, + anon_sym_SEMI, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9514), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [79716] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4210), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4212), 45, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [79772] = 4, + ACTIONS(9015), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4778), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4780), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [79830] = 5, + ACTIONS(9017), 1, + anon_sym_SEMI, + ACTIONS(9019), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4798), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [79890] = 4, + ACTIONS(9021), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4726), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4728), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [79948] = 18, + ACTIONS(1696), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5367), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9644), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80033] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1752), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9297), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80116] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9183), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80199] = 18, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5369), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80284] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4158), 43, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_where, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [80339] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9210), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80422] = 18, + ACTIONS(1782), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5433), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9559), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80507] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1770), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9243), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80590] = 5, + ACTIONS(8283), 1, + anon_sym_COLON_COLON, + ACTIONS(9023), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5074), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 25, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80649] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(3947), 43, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_where, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [80704] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9514), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80787] = 6, + ACTIONS(8283), 1, + anon_sym_COLON_COLON, + ACTIONS(8459), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5074), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 23, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80848] = 5, + ACTIONS(8283), 1, + anon_sym_COLON_COLON, + ACTIONS(9025), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5074), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5076), 25, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80907] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1762), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9238), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [80990] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1782), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9227), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81073] = 18, + ACTIONS(1752), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5361), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9680), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81158] = 18, + ACTIONS(1762), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(5429), 1, + anon_sym_SEMI, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9519), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81243] = 5, + ACTIONS(8990), 1, + anon_sym_DOT, + STATE(5671), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4122), 42, + anon_sym_AT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [81302] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(7613), 1, + anon_sym_get, + ACTIONS(7615), 1, + anon_sym_set, + ACTIONS(8656), 1, + sym_property_modifier, + STATE(9386), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3382), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9247), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81385] = 18, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(3276), 1, + anon_sym_while, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8776), 1, + anon_sym_SEMI, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9719), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81470] = 17, + ACTIONS(1770), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9530), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81552] = 13, + ACTIONS(8587), 1, + anon_sym_AT, + ACTIONS(8754), 1, + sym__backtick_identifier, + ACTIONS(9027), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8599), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8603), 2, + anon_sym_override, + anon_sym_lateinit, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8609), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8611), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8605), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8597), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8756), 10, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + STATE(5726), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81626] = 17, + ACTIONS(1752), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9680), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81708] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(3382), 1, + anon_sym_while, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9557), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81790] = 17, + ACTIONS(1762), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9519), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81872] = 17, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9620), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [81954] = 14, + ACTIONS(8791), 1, + sym__backtick_identifier, + ACTIONS(9029), 1, + anon_sym_AT, + ACTIONS(9044), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9038), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(9053), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5930), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9047), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(9050), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(9041), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8793), 5, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(9035), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(9032), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5726), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [82030] = 17, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(3276), 1, + anon_sym_while, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9719), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [82112] = 17, + ACTIONS(1696), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9644), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [82194] = 17, + ACTIONS(1782), 1, + anon_sym_while, + ACTIONS(3274), 1, + anon_sym_AT, + ACTIONS(8656), 1, + sym_property_modifier, + ACTIONS(8778), 1, + anon_sym_get, + ACTIONS(8780), 1, + anon_sym_set, + STATE(9339), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8652), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8662), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5819), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9559), 2, + sym_getter, + sym_setter, + ACTIONS(8658), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8660), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8654), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8650), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8648), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5668), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [82276] = 5, + ACTIONS(9056), 1, + anon_sym_LT, + STATE(5759), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4104), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4146), 38, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82332] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4156), 34, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [82384] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(3947), 39, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82438] = 4, + ACTIONS(9060), 1, + anon_sym_LT, + STATE(5744), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82492] = 8, + ACTIONS(4104), 1, + sym__alpha_identifier, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9062), 1, + anon_sym_COLON, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 4, + anon_sym_DOT, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4100), 5, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4098), 30, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82554] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(3942), 34, + anon_sym_val, + anon_sym_var, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [82606] = 8, + ACTIONS(4104), 1, + sym__alpha_identifier, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9064), 1, + anon_sym_COLON, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 3, + anon_sym_AT, + anon_sym_EQ, + anon_sym_SEMI, + ACTIONS(4146), 4, + anon_sym_DOT, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4098), 31, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82667] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 11, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(3942), 31, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [82718] = 5, + ACTIONS(9066), 1, + anon_sym_DOT, + STATE(5742), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4113), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4115), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82773] = 3, + ACTIONS(4156), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82824] = 3, + ACTIONS(3942), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82875] = 5, + ACTIONS(9066), 1, + anon_sym_DOT, + STATE(5738), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4120), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4122), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82930] = 5, + ACTIONS(9068), 1, + anon_sym_DOT, + STATE(5742), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4129), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82985] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 11, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4156), 31, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [83036] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83084] = 27, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9071), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9075), 1, + anon_sym_COMMA, + ACTIONS(9077), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7375), 1, + sym_annotation, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8911), 1, + sym_parameter, + STATE(9057), 1, + sym__function_value_parameter, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7266), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7268), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7400), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83182] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4214), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4216), 38, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83232] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 12, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4210), 29, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83282] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83330] = 27, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9071), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9081), 1, + anon_sym_COMMA, + ACTIONS(9083), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7375), 1, + sym_annotation, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8911), 1, + sym_parameter, + STATE(8951), 1, + sym__function_value_parameter, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7266), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7268), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7400), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83428] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4210), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4212), 38, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83478] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83526] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83574] = 27, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9071), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9085), 1, + anon_sym_COMMA, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7375), 1, + sym_annotation, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8911), 1, + sym_parameter, + STATE(9009), 1, + sym__function_value_parameter, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7266), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7268), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7400), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83672] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83720] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 12, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4214), 29, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83770] = 27, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9071), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9089), 1, + anon_sym_COMMA, + ACTIONS(9091), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7375), 1, + sym_annotation, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8911), 1, + sym_parameter, + STATE(9085), 1, + sym__function_value_parameter, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7266), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7268), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7400), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83868] = 27, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9071), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9093), 1, + anon_sym_COMMA, + ACTIONS(9095), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7375), 1, + sym_annotation, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8869), 1, + sym__function_value_parameter, + STATE(8911), 1, + sym_parameter, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7266), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7268), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7400), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83966] = 5, + ACTIONS(9097), 1, + anon_sym_LPAREN, + STATE(5777), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7108), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7110), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84020] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4218), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4220), 38, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84070] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9099), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7666), 38, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_RBRACE, + anon_sym_init, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84120] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(3947), 38, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84172] = 27, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9071), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9101), 1, + anon_sym_COMMA, + ACTIONS(9103), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7375), 1, + sym_annotation, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8911), 1, + sym_parameter, + STATE(9013), 1, + sym__function_value_parameter, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7266), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7268), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7400), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [84270] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84318] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4127), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4129), 38, + anon_sym_AT, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84368] = 4, + ACTIONS(9105), 1, + anon_sym_DOT, + STATE(5766), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 38, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84419] = 4, + ACTIONS(9107), 1, + anon_sym_DOT, + STATE(5766), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 38, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84470] = 4, + ACTIONS(9110), 1, + anon_sym_DOT, + STATE(5765), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 38, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84521] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9116), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [84611] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9018), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [84701] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9118), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9116), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84749] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7183), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84797] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4980), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4982), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84845] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4976), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4978), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84893] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7165), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7167), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84941] = 4, + ACTIONS(9120), 1, + sym__quest, + STATE(5778), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4297), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84991] = 3, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 38, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85039] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4968), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4970), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85087] = 4, + ACTIONS(9122), 1, + sym__quest, + STATE(5781), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4256), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85137] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8993), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85227] = 4, + ACTIONS(9124), 1, + anon_sym_DOT, + STATE(5671), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 37, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85277] = 4, + ACTIONS(9126), 1, + sym__quest, + STATE(5781), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4270), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85327] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9131), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9129), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85375] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7129), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7131), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85423] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4984), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4986), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85471] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8856), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85561] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3949), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9133), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85609] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3957), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9135), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85657] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8852), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85747] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9133), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3947), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3949), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [85797] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7191), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7193), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [85845] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9069), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85935] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8944), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86025] = 4, + ACTIONS(9120), 1, + sym__quest, + STATE(5778), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86075] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7197), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7199), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86123] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8899), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86213] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8874), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86303] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9139), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9137), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86351] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9289), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86441] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9143), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9141), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86489] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4988), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4990), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [86537] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8989), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86627] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9141), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86717] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9129), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86807] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9073), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86897] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8854), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86987] = 5, + ACTIONS(9145), 1, + anon_sym_LPAREN, + STATE(5827), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7108), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7110), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87039] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8954), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [87129] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9099), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [87219] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9089), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [87309] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9077), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [87399] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9052), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [87489] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9135), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3947), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3957), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [87539] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9149), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9147), 36, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87587] = 24, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9114), 1, + anon_sym_STAR, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6385), 1, + sym_type_projection_modifiers, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9047), 1, + sym_type_projection, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7267), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(9390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [87677] = 4, + ACTIONS(9105), 1, + anon_sym_DOT, + STATE(5765), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87726] = 3, + ACTIONS(9151), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87773] = 3, + ACTIONS(9153), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87820] = 4, + ACTIONS(9155), 1, + sym__quest, + STATE(5846), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87868] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7129), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7131), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87914] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9131), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9129), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [87960] = 3, + ACTIONS(9157), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88006] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88050] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7181), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7183), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88096] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4555), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88140] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4688), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88184] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9118), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9116), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88230] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4968), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4970), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88276] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3957), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9135), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88322] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9139), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9137), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88368] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4976), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4978), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88414] = 3, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88460] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7165), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7167), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88506] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4980), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4982), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88552] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9149), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9147), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88598] = 3, + ACTIONS(9159), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 36, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88644] = 5, + ACTIONS(9161), 1, + anon_sym_LT, + STATE(5873), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4104), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [88694] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4984), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4986), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88740] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4712), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88784] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4707), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88828] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4650), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88872] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [88920] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4988), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4990), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [88966] = 4, + ACTIONS(9163), 1, + sym__quest, + STATE(5843), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4270), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89014] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9143), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9141), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89060] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7191), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7193), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89106] = 4, + ACTIONS(9166), 1, + sym__quest, + STATE(5843), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4256), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89154] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7197), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7199), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89200] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4575), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89244] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3949), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9133), 35, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89290] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4525), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89334] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4570), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89378] = 4, + ACTIONS(9155), 1, + sym__quest, + STATE(5846), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4297), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89426] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4720), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89469] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4566), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89512] = 5, + ACTIONS(9168), 1, + anon_sym_DOT, + STATE(5856), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4120), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [89561] = 5, + ACTIONS(9168), 1, + anon_sym_DOT, + STATE(5859), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4113), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [89610] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 36, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89653] = 4, + ACTIONS(9170), 1, + anon_sym_COMMA, + STATE(5861), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4441), 34, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89700] = 5, + ACTIONS(9172), 1, + anon_sym_DOT, + STATE(5859), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [89749] = 3, + ACTIONS(9062), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89794] = 4, + ACTIONS(9170), 1, + anon_sym_COMMA, + STATE(5862), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 34, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89841] = 4, + ACTIONS(9175), 1, + anon_sym_COMMA, + STATE(5862), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 34, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89888] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4712), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89930] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4707), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [89972] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4555), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90014] = 4, + ACTIONS(9178), 1, + anon_sym_COMMA, + STATE(5866), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 33, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90060] = 4, + ACTIONS(9181), 1, + anon_sym_COMMA, + STATE(5866), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 33, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90106] = 4, + ACTIONS(9181), 1, + anon_sym_COMMA, + STATE(5867), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4441), 33, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90152] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4210), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [90196] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4214), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [90240] = 5, + ACTIONS(9183), 1, + anon_sym_LT, + STATE(5899), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4104), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90288] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [90332] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4218), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [90376] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4684), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90418] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4680), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90460] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4588), 35, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90502] = 5, + ACTIONS(9185), 1, + anon_sym_LPAREN, + STATE(5927), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7108), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [90550] = 3, + ACTIONS(9064), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90594] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4650), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90636] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4720), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90678] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4575), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90720] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4566), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90762] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4570), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90804] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90846] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4688), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90888] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 6, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + sym_label, + ACTIONS(3942), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90934] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4525), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [90976] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 35, + anon_sym_AT, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91018] = 3, + ACTIONS(4405), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4407), 33, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91061] = 3, + ACTIONS(4465), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4467), 33, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91104] = 5, + ACTIONS(9187), 1, + anon_sym_DOT, + STATE(5891), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4127), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91151] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 6, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + sym_label, + ACTIONS(3942), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91194] = 5, + ACTIONS(9190), 1, + anon_sym_DOT, + STATE(5891), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4113), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91241] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4588), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91282] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 6, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + sym_label, + ACTIONS(4156), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91325] = 5, + ACTIONS(9190), 1, + anon_sym_DOT, + STATE(5893), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 4, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4120), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91372] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4684), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91413] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4680), 34, + anon_sym_AT, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91454] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4218), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91496] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9137), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9139), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [91538] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9030), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91616] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9116), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9118), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [91658] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8868), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91736] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4984), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [91778] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4988), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [91820] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4980), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [91862] = 3, + ACTIONS(4465), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4467), 32, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [91904] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9035), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91982] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9003), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92060] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8892), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92138] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9062), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92216] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8871), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92294] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7181), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92336] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9129), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9131), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92378] = 5, + ACTIONS(9194), 1, + anon_sym_LPAREN, + STATE(5946), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7108), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [92424] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9135), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3957), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92466] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9041), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92544] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7165), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92586] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7197), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92628] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9133), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(3949), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92670] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9141), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9143), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92712] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7191), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92754] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9147), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9149), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [92796] = 3, + ACTIONS(4405), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4407), 32, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [92838] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8921), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92916] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8941), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92994] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4968), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [93036] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9020), 5, + sym_parameter, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93112] = 21, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(8801), 1, + sym_user_type, + STATE(9020), 1, + sym_parameter, + STATE(9457), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9002), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93190] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7129), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [93232] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4976), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [93274] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4127), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [93316] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8392), 1, + sym_simple_identifier, + STATE(8975), 1, + sym_variable_declaration, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93391] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8392), 1, + sym_simple_identifier, + STATE(8959), 1, + sym_variable_declaration, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93466] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8392), 1, + sym_simple_identifier, + STATE(8978), 1, + sym_variable_declaration, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93541] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8392), 1, + sym_simple_identifier, + STATE(9022), 1, + sym_variable_declaration, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93616] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8392), 1, + sym_simple_identifier, + STATE(9036), 1, + sym_variable_declaration, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93691] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8394), 1, + sym_simple_identifier, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9166), 5, + sym_parameter, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93764] = 20, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(8392), 1, + sym_simple_identifier, + STATE(8952), 1, + sym_variable_declaration, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93839] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3705), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93911] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4984), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [93951] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3267), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94023] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3238), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94095] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9329), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94167] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10144), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94239] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4968), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [94279] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9216), 1, + sym__backtick_identifier, + STATE(5734), 1, + sym_simple_identifier, + STATE(5737), 1, + sym__lexical_identifier, + STATE(6545), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5494), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7428), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9210), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94351] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3161), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94423] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3746), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94495] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3115), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94567] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4995), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94639] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3114), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94711] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5529), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94783] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8370), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94855] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5052), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94927] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5252), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94999] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4281), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95071] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4189), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95143] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8790), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95215] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6572), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2486), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7607), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95287] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6578), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(603), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7645), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95359] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5220), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95431] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3674), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95503] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8783), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95575] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4205), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95647] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5515), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95719] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2840), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95791] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9574), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95863] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8805), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95935] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4920), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96007] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8701), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96079] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8687), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96151] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8396), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96223] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5206), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96295] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3669), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96367] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8763), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96439] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5767), 1, + sym__simple_user_type, + STATE(5816), 1, + sym_user_type, + STATE(6466), 1, + sym_type_modifiers, + STATE(9571), 1, + sym_function_type_parameters, + STATE(10116), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5854), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96511] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5394), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96583] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96655] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3668), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96727] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8795), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96799] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3327), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96871] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4201), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96943] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3247), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97015] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3326), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97087] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3520), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97159] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8752), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97231] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5532), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97303] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8885), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97375] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1196), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97447] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7529), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97519] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3767), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97591] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5530), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97663] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3521), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97735] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8723), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97807] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6562), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2727), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7526), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97879] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6556), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2473), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7565), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [97951] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6559), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7650), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98023] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8688), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98095] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8839), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98167] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6580), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2344), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7532), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98239] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5065), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98311] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9720), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98383] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3478), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98455] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5312), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98527] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9711), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98599] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5275), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98671] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10179), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98743] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4884), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98815] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4948), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98887] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3373), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [98959] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4607), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99031] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9642), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99103] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8689), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99175] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4614), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99247] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5434), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99319] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4061), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99391] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4238), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99463] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1371), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99535] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5568), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99607] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4223), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99679] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4222), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99751] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8707), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99823] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5578), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99895] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4613), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99967] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5418), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100039] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5192), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100111] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8724), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100183] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4617), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100255] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4199), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100327] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4619), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100399] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5767), 1, + sym__simple_user_type, + STATE(5816), 1, + sym_user_type, + STATE(6466), 1, + sym_type_modifiers, + STATE(9571), 1, + sym_function_type_parameters, + STATE(10116), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5850), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100471] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8387), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100543] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4971), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100615] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9799), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100687] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4794), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100759] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4796), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100831] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1069), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100903] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6560), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2362), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7505), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100975] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5180), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101047] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3468), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101119] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3156), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101191] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4817), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101263] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3188), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101335] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8827), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101407] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5598), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101479] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4927), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101551] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4823), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101623] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4829), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101695] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3207), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101767] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5427), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101839] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4714), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101911] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5531), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101983] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5767), 1, + sym__simple_user_type, + STATE(5816), 1, + sym_user_type, + STATE(6466), 1, + sym_type_modifiers, + STATE(9571), 1, + sym_function_type_parameters, + STATE(10116), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5875), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102055] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9795), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102127] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3772), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102199] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4809), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102271] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3766), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102343] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6561), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7580), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102415] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + ACTIONS(9274), 1, + sym__backtick_identifier, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5780), 1, + sym__simple_user_type, + STATE(5835), 1, + sym_user_type, + STATE(6487), 1, + sym_type_modifiers, + STATE(9744), 1, + sym_function_type_parameters, + STATE(10073), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5852), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5898), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102487] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4923), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102559] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8745), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102631] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4285), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102703] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4259), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102775] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4943), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102847] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3764), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102919] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5853), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [102991] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5094), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103063] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4256), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103135] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4936), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103207] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5607), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103279] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6558), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(635), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7429), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103351] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4263), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103423] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4926), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103495] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4178), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103567] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3519), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103639] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5605), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103711] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3942), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3947), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [103751] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8736), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103823] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8778), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103895] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4925), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103967] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2842), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104039] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6538), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7478), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104111] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3032), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104183] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4162), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104255] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8784), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104327] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3453), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104399] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4152), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104471] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4156), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4158), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [104511] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5880), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104583] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1357), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104655] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4921), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104727] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8791), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104799] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5141), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104871] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8704), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [104943] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8766), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105015] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4952), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105087] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8370), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105159] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3635), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105231] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4180), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105303] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8758), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105375] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8792), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105447] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4151), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105519] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1146), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105591] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3441), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105663] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8764), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105735] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5173), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105807] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2996), 1, + sym_simple_identifier, + STATE(6579), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2311), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7563), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105879] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4962), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105951] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4138), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106023] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8796), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106095] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4154), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106167] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8771), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106239] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5402), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106311] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5612), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106383] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4184), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106455] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1124), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106527] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8780), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106599] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4149), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106671] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5445), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106743] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8696), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106815] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4185), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106887] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3741), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [106959] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5004), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107031] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4991), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107103] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1088), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107175] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1089), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107247] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3743), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107319] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3744), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107391] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9284), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_dynamic, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2977), 1, + sym__simple_user_type, + STATE(3127), 1, + sym_user_type, + STATE(6489), 1, + sym_type_modifiers, + STATE(10019), 1, + sym_parenthesized_user_type, + STATE(10163), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3129), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3665), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107463] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5085), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107535] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2060), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107607] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2179), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107679] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9743), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107751] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4963), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107823] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2148), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107895] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8880), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107967] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4992), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108039] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4922), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108111] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4912), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108183] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5446), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108255] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3578), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108327] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8798), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108399] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8804), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108471] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6573), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2679), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7643), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108543] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5425), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108615] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3579), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108687] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8812), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108759] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8802), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108831] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6517), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2748), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7605), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [108903] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7129), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [108943] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8818), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109015] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7165), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [109055] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3580), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109127] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3813), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109199] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5450), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109271] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3079), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109343] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8830), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109415] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2844), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109487] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4291), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109559] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3581), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109631] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1350), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109703] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3590), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109775] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1406), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109847] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1367), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109919] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1383), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [109991] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8806), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110063] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9547), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110135] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6543), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2643), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7419), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110207] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5452), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110279] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5423), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110351] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8781), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110423] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6544), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(446), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7421), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110495] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3639), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110567] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2846), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110639] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6551), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(596), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7623), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110711] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6535), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2684), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7411), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110783] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + ACTIONS(9274), 1, + sym__backtick_identifier, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5780), 1, + sym__simple_user_type, + STATE(5835), 1, + sym_user_type, + STATE(6487), 1, + sym_type_modifiers, + STATE(9744), 1, + sym_function_type_parameters, + STATE(10073), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5852), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5880), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110855] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2856), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110927] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4072), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [110999] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6510), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1943), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7515), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111071] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8731), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111143] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1035), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111215] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8693), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111287] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6501), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(462), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7418), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111359] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5422), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111431] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3827), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111503] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1346), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111575] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5264), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111647] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5454), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111719] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3595), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111791] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9290), 1, + anon_sym_LPAREN, + ACTIONS(9294), 1, + sym__backtick_identifier, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5736), 1, + sym_simple_identifier, + STATE(6574), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5554), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7649), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9292), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111863] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5114), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [111935] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8765), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112007] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3930), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112079] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1339), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112151] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6542), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2648), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7619), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112223] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9833), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112295] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9155), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112367] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3606), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112439] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3365), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112511] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7197), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [112551] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6532), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7614), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112623] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8841), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112695] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1023), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112767] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4012), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112839] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8822), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112911] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8838), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112983] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3638), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113055] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6516), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(476), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7594), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113127] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3621), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113199] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6531), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7522), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113271] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10161), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113343] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10159), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113415] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4853), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113487] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8837), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113559] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2923), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113631] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4988), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [113671] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9716), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113743] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3623), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113815] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5013), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113887] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3626), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [113959] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(864), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114031] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(975), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114103] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3634), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114175] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8439), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114247] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2926), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114319] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6506), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2412), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7579), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114391] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1012), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114463] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8774), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114535] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4011), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114607] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6553), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(621), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7630), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114679] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6529), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2634), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7584), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114751] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2954), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114823] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4798), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114895] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1280), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [114967] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8816), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115039] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8747), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115111] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2961), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115183] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1278), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115255] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8743), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115327] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2969), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115399] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5099), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115471] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8741), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115543] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1276), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115615] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5767), 1, + sym__simple_user_type, + STATE(5816), 1, + sym_user_type, + STATE(6466), 1, + sym_type_modifiers, + STATE(9571), 1, + sym_function_type_parameters, + STATE(10116), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5840), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115687] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5303), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115759] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5098), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115831] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + ACTIONS(9274), 1, + sym__backtick_identifier, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5780), 1, + sym__simple_user_type, + STATE(5835), 1, + sym_user_type, + STATE(6487), 1, + sym_type_modifiers, + STATE(9744), 1, + sym_function_type_parameters, + STATE(10073), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5852), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5879), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115903] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8739), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [115975] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1273), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116047] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1269), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116119] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8367), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116191] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6521), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(455), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7550), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116263] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9610), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116335] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(866), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116407] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2931), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116479] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5093), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116551] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8708), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116623] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5521), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116695] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8817), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116767] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4902), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116839] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8420), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116911] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8702), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116983] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8700), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117055] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5522), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117127] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8699), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117199] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5300), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117271] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4980), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [117311] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9468), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117383] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5523), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117455] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + ACTIONS(9274), 1, + sym__backtick_identifier, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5780), 1, + sym__simple_user_type, + STATE(5835), 1, + sym_user_type, + STATE(6487), 1, + sym_type_modifiers, + STATE(9744), 1, + sym_function_type_parameters, + STATE(10073), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5852), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5887), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117527] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6571), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2763), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7512), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117599] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8819), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117671] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(867), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117743] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5429), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117815] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9284), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_dynamic, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2977), 1, + sym__simple_user_type, + STATE(3127), 1, + sym_user_type, + STATE(6489), 1, + sym_type_modifiers, + STATE(10019), 1, + sym_parenthesized_user_type, + STATE(10163), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3129), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3680), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117887] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6520), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2633), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7634), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [117959] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8762), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118031] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5109), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118103] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8750), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118175] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8756), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118247] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4976), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [118287] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4894), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118359] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8751), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118431] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4197), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118503] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8753), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118575] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6509), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2439), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7458), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118647] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8754), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118719] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8760), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118791] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8761), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118863] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8694), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [118935] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8820), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119007] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3791), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119079] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8767), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119151] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8402), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119223] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(869), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119295] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8431), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119367] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6524), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(475), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7575), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119439] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8797), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119511] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(870), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119583] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3253), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119655] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8734), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119727] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6515), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1905), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7541), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119799] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8712), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119871] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3186), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119943] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8703), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120015] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8789), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120087] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(959), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120159] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10119), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120231] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8738), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120303] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3066), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120375] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8808), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120447] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9043), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120519] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8946), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120591] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8777), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120663] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2936), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120735] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8709), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120807] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(942), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120879] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8654), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120951] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6525), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7588), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121023] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4059), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121095] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(944), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121167] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8690), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121239] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6511), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2411), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7488), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121311] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5854), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121383] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(943), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121455] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8695), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121527] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6502), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(472), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7448), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121599] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3209), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121671] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3284), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121743] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8697), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121815] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(887), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121887] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9174), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121959] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3072), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122031] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8412), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122103] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8698), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122175] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(948), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122247] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8714), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122319] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5767), 1, + sym__simple_user_type, + STATE(5816), 1, + sym_user_type, + STATE(6466), 1, + sym_type_modifiers, + STATE(9571), 1, + sym_function_type_parameters, + STATE(10116), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5853), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122391] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4652), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122463] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6554), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2482), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7535), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122535] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4654), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122607] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6508), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2081), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7468), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122679] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7181), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [122719] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7191), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [122759] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3697), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122831] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3716), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122903] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8718), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [122975] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3074), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123047] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3725), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123119] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8722), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123191] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8728), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123263] = 4, + ACTIONS(9296), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9299), 2, + anon_sym_LBRACE, + sym_label, + ACTIONS(2042), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [123305] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3732), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123377] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8407), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123449] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4655), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123521] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(6505), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2082), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7610), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123593] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8720), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123665] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8726), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123737] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8749), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123809] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8834), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123881] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8727), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123953] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3700), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124025] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8746), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124097] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5840), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124169] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8807), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124241] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8742), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124313] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3737), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124385] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4604), 1, + sym_user_type, + STATE(6465), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10154), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4589), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4698), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124457] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9513), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124529] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8782), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124601] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3076), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124673] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5044), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124745] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9284), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_dynamic, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2977), 1, + sym__simple_user_type, + STATE(3127), 1, + sym_user_type, + STATE(6489), 1, + sym_type_modifiers, + STATE(10019), 1, + sym_parenthesized_user_type, + STATE(10163), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3129), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3711), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124817] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9422), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124889] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8440), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124961] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9305), 1, + anon_sym_dynamic, + ACTIONS(9307), 1, + sym__backtick_identifier, + STATE(6470), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8582), 1, + sym__simple_user_type, + STATE(9011), 1, + sym_user_type, + STATE(9696), 1, + sym_function_type_parameters, + STATE(10096), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9095), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8367), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125033] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8729), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125105] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8686), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125177] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3738), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125249] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9284), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_dynamic, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2977), 1, + sym__simple_user_type, + STATE(3127), 1, + sym_user_type, + STATE(6489), 1, + sym_type_modifiers, + STATE(10019), 1, + sym_parenthesized_user_type, + STATE(10163), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3129), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3563), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125321] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3707), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125393] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3710), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125465] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9501), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125537] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6534), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7585), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125609] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9678), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125681] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8715), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125753] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8831), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125825] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4018), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125897] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6500), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(647), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7420), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125969] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8824), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126041] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8716), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126113] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + ACTIONS(9274), 1, + sym__backtick_identifier, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5780), 1, + sym__simple_user_type, + STATE(5835), 1, + sym_user_type, + STATE(6487), 1, + sym_type_modifiers, + STATE(9744), 1, + sym_function_type_parameters, + STATE(10073), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5852), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5882), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126185] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9305), 1, + anon_sym_dynamic, + ACTIONS(9307), 1, + sym__backtick_identifier, + STATE(6470), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8582), 1, + sym__simple_user_type, + STATE(9011), 1, + sym_user_type, + STATE(9696), 1, + sym_function_type_parameters, + STATE(10096), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9095), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8370), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126257] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4002), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126329] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6540), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7427), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126401] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3975), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126473] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8682), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126545] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3085), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126617] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3280), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126689] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6564), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2431), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7416), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126761] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(917), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126833] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8390), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126905] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(919), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126977] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(921), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127049] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1086), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127121] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9305), 1, + anon_sym_dynamic, + ACTIONS(9307), 1, + sym__backtick_identifier, + STATE(6470), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8582), 1, + sym__simple_user_type, + STATE(9011), 1, + sym_user_type, + STATE(9696), 1, + sym_function_type_parameters, + STATE(10096), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9095), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8654), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127193] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1143), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127265] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3974), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127337] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5850), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127409] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8737), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127481] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6566), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2395), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7561), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127553] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3956), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127625] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9262), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(884), 1, + sym_user_type, + STATE(6498), 1, + sym_type_modifiers, + STATE(9992), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(885), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(1185), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127697] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4017), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127769] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5882), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127841] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10126), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127913] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10125), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127985] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9246), 1, + anon_sym_dynamic, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(6490), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8384), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10138), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5775), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9186), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128057] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3957), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128129] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5245), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128201] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5249), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128273] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6575), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2651), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7539), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128345] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4903), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128417] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4016), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128489] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3758), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128561] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3625), 1, + sym_user_type, + STATE(6484), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10057), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3624), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4081), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128633] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6469), 1, + sym_type_modifiers, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8404), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10042), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8367), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128705] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10107), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128777] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10106), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128849] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3750), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128921] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8814), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128993] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9290), 1, + anon_sym_LPAREN, + ACTIONS(9294), 1, + sym__backtick_identifier, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5736), 1, + sym_simple_identifier, + STATE(6581), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5577), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7627), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9292), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129065] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9284), 1, + anon_sym_LPAREN, + ACTIONS(9286), 1, + anon_sym_dynamic, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2977), 1, + sym__simple_user_type, + STATE(3127), 1, + sym_user_type, + STATE(6489), 1, + sym_type_modifiers, + STATE(10019), 1, + sym_parenthesized_user_type, + STATE(10163), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3129), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3490), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129137] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6536), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2355), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7545), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129209] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6503), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2409), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7484), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129281] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8719), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129353] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3749), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129425] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8815), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129497] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8813), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129569] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10086), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129641] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10085), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129713] = 19, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4676), 1, + sym_user_type, + STATE(6491), 1, + sym_type_modifiers, + STATE(10029), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4675), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4907), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129785] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2847), 1, + sym_user_type, + STATE(6467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10036), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2858), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2946), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129857] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9216), 1, + sym__backtick_identifier, + STATE(5734), 1, + sym_simple_identifier, + STATE(5737), 1, + sym__lexical_identifier, + STATE(6512), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5518), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7451), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9210), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [129929] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3770), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130001] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(6539), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(483), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7426), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130073] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2996), 1, + sym_simple_identifier, + STATE(6567), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2281), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7647), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130145] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(6557), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7441), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130217] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8836), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130289] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3784), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130361] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10065), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130433] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(10064), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130505] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4828), 1, + sym_user_type, + STATE(6471), 1, + sym_type_modifiers, + STATE(9590), 1, + sym_parenthesized_user_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4838), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5287), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130577] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9258), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3053), 1, + sym_user_type, + STATE(6468), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10045), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3052), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3307), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130649] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8840), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130721] = 19, + ACTIONS(7436), 1, + anon_sym_dynamic, + ACTIONS(7443), 1, + anon_sym_suspend, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6488), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8379), 1, + sym_user_type, + STATE(9830), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8089), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7266), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8721), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130793] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9309), 1, + anon_sym_LPAREN, + STATE(882), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6609), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7462), 1, + sym_simple_identifier, + STATE(8060), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7917), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130864] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9311), 1, + anon_sym_LPAREN, + STATE(3021), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6583), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7413), 1, + sym_simple_identifier, + STATE(8057), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8068), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [130935] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9313), 1, + anon_sym_LPAREN, + STATE(4811), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6607), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7460), 1, + sym_simple_identifier, + STATE(8074), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8044), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131006] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4597), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6622), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7592), 1, + sym_simple_identifier, + STATE(8048), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7927), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131077] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9317), 1, + anon_sym_LPAREN, + STATE(2866), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6615), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7486), 1, + sym_simple_identifier, + STATE(7935), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7920), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131148] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9311), 1, + anon_sym_LPAREN, + STATE(3688), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6602), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7613), 1, + sym_simple_identifier, + STATE(8003), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7980), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131219] = 19, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9319), 1, + anon_sym_dynamic, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4594), 1, + sym_user_type, + STATE(7519), 1, + sym_type_modifiers, + STATE(9541), 1, + sym_function_type_parameters, + STATE(10170), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4599), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4672), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131290] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9321), 1, + anon_sym_dynamic, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5767), 1, + sym__simple_user_type, + STATE(5817), 1, + sym_user_type, + STATE(7439), 1, + sym_type_modifiers, + STATE(9571), 1, + sym_function_type_parameters, + STATE(10111), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5793), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(5822), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131361] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9323), 1, + anon_sym_dynamic, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2862), 1, + sym_user_type, + STATE(7467), 1, + sym_type_modifiers, + STATE(9969), 1, + sym_function_type_parameters, + STATE(10034), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2853), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(3077), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131432] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9256), 1, + anon_sym_LPAREN, + ACTIONS(9325), 1, + anon_sym_dynamic, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3068), 1, + sym_user_type, + STATE(7461), 1, + sym_type_modifiers, + STATE(9944), 1, + sym_function_type_parameters, + STATE(10043), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3044), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(3372), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131503] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9327), 1, + anon_sym_dynamic, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(7452), 1, + sym_type_modifiers, + STATE(8079), 1, + sym__simple_user_type, + STATE(8388), 1, + sym_user_type, + STATE(9853), 1, + sym_function_type_parameters, + STATE(10072), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8371), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131574] = 19, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9329), 1, + anon_sym_dynamic, + STATE(7440), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8582), 1, + sym__simple_user_type, + STATE(8992), 1, + sym_user_type, + STATE(9696), 1, + sym_function_type_parameters, + STATE(10092), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8906), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8371), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131645] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9218), 1, + anon_sym_LPAREN, + ACTIONS(9331), 1, + anon_sym_dynamic, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4751), 1, + sym_user_type, + STATE(7617), 1, + sym_type_modifiers, + STATE(9733), 1, + sym_function_type_parameters, + STATE(10141), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4745), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(5058), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131716] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9317), 1, + anon_sym_LPAREN, + STATE(3019), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6619), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7597), 1, + sym_simple_identifier, + STATE(8024), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7977), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131787] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9317), 1, + anon_sym_LPAREN, + STATE(3019), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6596), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7637), 1, + sym_simple_identifier, + STATE(8024), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8015), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131858] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9313), 1, + anon_sym_LPAREN, + STATE(5031), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6634), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7528), 1, + sym_simple_identifier, + STATE(7981), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8026), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131929] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4597), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6586), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7615), 1, + sym_simple_identifier, + STATE(8048), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8004), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132000] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9309), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6623), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7435), 1, + sym_simple_identifier, + STATE(7990), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7968), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132071] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4969), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7568), 1, + sym_simple_identifier, + STATE(8055), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8056), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132142] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9311), 1, + anon_sym_LPAREN, + STATE(3688), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6631), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7577), 1, + sym_simple_identifier, + STATE(8003), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8009), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132213] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9309), 1, + anon_sym_LPAREN, + STATE(882), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6592), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7600), 1, + sym_simple_identifier, + STATE(8060), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8031), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132284] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9313), 1, + anon_sym_LPAREN, + STATE(5031), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6599), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7554), 1, + sym_simple_identifier, + STATE(7981), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7984), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132355] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9333), 1, + anon_sym_LPAREN, + STATE(3821), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6591), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7644), 1, + sym_simple_identifier, + STATE(8014), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7991), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132426] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9309), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6633), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7525), 1, + sym_simple_identifier, + STATE(7990), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7944), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132497] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9333), 1, + anon_sym_LPAREN, + STATE(3543), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6603), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7424), 1, + sym_simple_identifier, + STATE(8047), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7918), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132568] = 19, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9196), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9335), 1, + anon_sym_dynamic, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3630), 1, + sym_user_type, + STATE(7454), 1, + sym_type_modifiers, + STATE(9774), 1, + sym_function_type_parameters, + STATE(10055), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3475), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(3820), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132639] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9333), 1, + anon_sym_LPAREN, + STATE(3543), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6627), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7567), 1, + sym_simple_identifier, + STATE(8047), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7996), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132710] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9311), 1, + anon_sym_LPAREN, + STATE(3021), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6636), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7510), 1, + sym_simple_identifier, + STATE(8057), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8036), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132781] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + anon_sym_LPAREN, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9337), 1, + anon_sym_dynamic, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5780), 1, + sym__simple_user_type, + STATE(5821), 1, + sym_user_type, + STATE(7445), 1, + sym_type_modifiers, + STATE(9744), 1, + sym_function_type_parameters, + STATE(10070), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5818), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(5888), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132852] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9073), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9327), 1, + anon_sym_dynamic, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7591), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8093), 1, + sym__simple_user_type, + STATE(8383), 1, + sym_user_type, + STATE(9567), 1, + sym_parenthesized_user_type, + STATE(9981), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8371), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132923] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9284), 1, + anon_sym_LPAREN, + ACTIONS(9339), 1, + anon_sym_dynamic, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2977), 1, + sym__simple_user_type, + STATE(3249), 1, + sym_user_type, + STATE(7475), 1, + sym_type_modifiers, + STATE(10018), 1, + sym_parenthesized_user_type, + STATE(10163), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3137), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(3455), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132994] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9242), 1, + anon_sym_LPAREN, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9321), 1, + anon_sym_dynamic, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7438), 1, + sym_type_modifiers, + STATE(7947), 1, + sym__simple_user_type, + STATE(8380), 1, + sym_user_type, + STATE(9732), 1, + sym_function_type_parameters, + STATE(10131), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5793), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(5822), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133065] = 19, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9341), 1, + anon_sym_dynamic, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4683), 1, + sym_user_type, + STATE(7473), 1, + sym_type_modifiers, + STATE(10026), 1, + sym_parenthesized_user_type, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4727), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4965), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133136] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9313), 1, + anon_sym_LPAREN, + STATE(4811), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7566), 1, + sym_simple_identifier, + STATE(8074), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7966), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133207] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9317), 1, + anon_sym_LPAREN, + STATE(3019), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6621), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7498), 1, + sym_simple_identifier, + STATE(8024), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7924), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133278] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4969), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6595), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7457), 1, + sym_simple_identifier, + STATE(8055), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7983), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133349] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9317), 1, + anon_sym_LPAREN, + STATE(2866), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6630), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7618), 1, + sym_simple_identifier, + STATE(7935), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8020), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133420] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9315), 1, + anon_sym_LPAREN, + STATE(4969), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6614), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7453), 1, + sym_simple_identifier, + STATE(8055), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7985), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133491] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9313), 1, + anon_sym_LPAREN, + STATE(5031), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6585), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7530), 1, + sym_simple_identifier, + STATE(7981), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7936), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133562] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + ACTIONS(9343), 1, + anon_sym_dynamic, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(855), 1, + sym_user_type, + STATE(7477), 1, + sym_type_modifiers, + STATE(9990), 1, + sym_parenthesized_user_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(877), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(969), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133633] = 19, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9333), 1, + anon_sym_LPAREN, + STATE(3821), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6600), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7434), 1, + sym_simple_identifier, + STATE(8014), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8038), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133704] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(626), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7474), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133770] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(446), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7421), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133836] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(483), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7426), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133902] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2411), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7488), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133968] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6605), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7456), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7946), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134036] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2081), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7468), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134102] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7588), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134168] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6594), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7450), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7988), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134236] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2062), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7447), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134302] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7478), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134368] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1905), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7541), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134434] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2407), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7501), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134500] = 17, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9216), 1, + sym__backtick_identifier, + STATE(5734), 1, + sym_simple_identifier, + STATE(5737), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5512), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7612), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9210), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134566] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6593), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7564), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7969), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134634] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6599), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7554), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7984), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134702] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1870), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7616), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134768] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(475), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7575), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134834] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2763), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7512), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134900] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6618), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7443), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8045), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [134968] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6587), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7408), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7934), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135036] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2634), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7584), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135102] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7522), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135168] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6589), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7431), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7939), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135236] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6613), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7593), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8033), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135304] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(480), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7560), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135370] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2387), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7604), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135436] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6597), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7455), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7995), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135504] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6601), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7430), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8039), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135572] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6582), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7479), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7938), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135640] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2678), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7409), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135706] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6612), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7412), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7992), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135774] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(454), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7492), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135840] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(596), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7623), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135906] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6629), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7503), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7926), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135974] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(621), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7630), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136040] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2667), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7500), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136106] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2359), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7514), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136172] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6637), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7536), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7948), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136240] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7537), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136306] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(481), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7556), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136372] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2418), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7423), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136438] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6611), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7414), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8000), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136506] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2679), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7643), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136572] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2684), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7411), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136638] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(449), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7433), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136704] = 17, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9216), 1, + sym__backtick_identifier, + STATE(5734), 1, + sym_simple_identifier, + STATE(5737), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5518), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7451), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9210), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136770] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6628), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7504), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8049), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136838] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6626), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7437), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8021), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136906] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6610), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7599), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8046), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [136974] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6635), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7595), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8012), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137042] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6625), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7422), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7967), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137110] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(609), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7639), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137176] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6617), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7576), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7974), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137244] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(628), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7640), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137310] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7580), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137376] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6604), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7633), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7979), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137444] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2489), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7506), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137510] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2653), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7466), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137576] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(647), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7420), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137642] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7632), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137708] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2344), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7532), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137774] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7494), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137840] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2718), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7516), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137906] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6598), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7490), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7989), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137974] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7427), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138040] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6632), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7558), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8008), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138108] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2355), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7545), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138174] = 17, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2996), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2311), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7563), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138240] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6624), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7590), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7923), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138308] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2727), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7526), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138374] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6608), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7523), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8013), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138442] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2721), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7573), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138508] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2473), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7565), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138574] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2632), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7638), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138640] = 17, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9290), 1, + anon_sym_LPAREN, + ACTIONS(9294), 1, + sym__backtick_identifier, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5736), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5594), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7511), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9292), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138706] = 17, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9264), 1, + anon_sym_LPAREN, + STATE(3316), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7441), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138772] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6588), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7578), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8002), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138840] = 18, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6616), 1, + sym_type_parameters, + STATE(7260), 1, + sym_type_modifiers, + STATE(7517), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8023), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138908] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9228), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_simple_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7650), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [138974] = 17, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9278), 1, + anon_sym_LPAREN, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(2996), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2342), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7464), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139040] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9226), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2937), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2389), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7557), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139106] = 17, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9290), 1, + anon_sym_LPAREN, + ACTIONS(9294), 1, + sym__backtick_identifier, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5736), 1, + sym_simple_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5554), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7649), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9292), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139172] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7476), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7940), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139234] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7412), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7992), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139296] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7599), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8046), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139358] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7408), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7934), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139420] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7578), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8002), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139482] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7520), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7925), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139544] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7508), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7997), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139606] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7626), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7932), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139668] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7564), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7969), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139730] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7490), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7989), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139792] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7593), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8033), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139854] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7559), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7975), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139916] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7444), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7993), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [139978] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7455), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7995), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140040] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7523), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8013), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140102] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7446), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8035), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140164] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7572), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7986), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140226] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7431), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7939), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140288] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7430), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8039), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140350] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7425), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7982), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140412] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7633), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7979), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140474] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7414), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8000), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140536] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7574), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7978), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140598] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7449), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7949), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140660] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4218), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [140696] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7443), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8045), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140758] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7469), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8010), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140820] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7456), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7946), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140882] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7487), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8042), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [140944] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7482), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8006), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141006] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7471), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7922), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141068] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7570), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8037), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141130] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7450), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7988), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141192] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7479), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7938), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141254] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7489), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8028), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141316] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7562), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7970), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141378] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7410), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8052), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141440] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7576), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7974), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141502] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4127), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [141538] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7503), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7926), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141600] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7590), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7923), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141662] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7422), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7967), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141724] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7581), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7919), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141786] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7470), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7965), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141848] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7480), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8016), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141910] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7558), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8008), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [141972] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7499), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7943), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142034] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7513), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7941), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142096] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7517), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8023), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142158] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7595), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8012), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142220] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7527), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8022), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142282] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7536), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7948), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142344] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7437), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8021), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142406] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7622), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8017), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142468] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7504), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8049), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142530] = 16, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9212), 1, + anon_sym_dynamic, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9345), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7260), 1, + sym_type_modifiers, + STATE(7552), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7950), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7905), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142592] = 5, + ACTIONS(6551), 1, + anon_sym_LT, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [142631] = 5, + ACTIONS(9347), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 9, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4127), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [142669] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9101), 1, + anon_sym_COMMA, + ACTIONS(9103), 1, + anon_sym_RPAREN, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9013), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142727] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9075), 1, + anon_sym_COMMA, + ACTIONS(9077), 1, + anon_sym_RPAREN, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9057), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142785] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9352), 1, + anon_sym_COMMA, + ACTIONS(9354), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8881), 1, + sym__function_value_parameter, + STATE(8911), 1, + sym_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142843] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9356), 1, + anon_sym_COMMA, + ACTIONS(9358), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9134), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142901] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9085), 1, + anon_sym_COMMA, + ACTIONS(9087), 1, + anon_sym_RPAREN, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9009), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142959] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9081), 1, + anon_sym_COMMA, + ACTIONS(9083), 1, + anon_sym_RPAREN, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(8951), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143017] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9360), 1, + anon_sym_COMMA, + ACTIONS(9362), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(8981), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143075] = 5, + ACTIONS(9364), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 9, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [143113] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9093), 1, + anon_sym_COMMA, + ACTIONS(9095), 1, + anon_sym_RPAREN, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8869), 1, + sym__function_value_parameter, + STATE(8911), 1, + sym_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143171] = 15, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9089), 1, + anon_sym_COMMA, + ACTIONS(9091), 1, + anon_sym_RPAREN, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9085), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143229] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9366), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143284] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9368), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143339] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9370), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143394] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9372), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143449] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9374), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143504] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9376), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143559] = 14, + ACTIONS(9378), 1, + sym__alpha_identifier, + ACTIONS(9380), 1, + anon_sym_file, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, + sym__backtick_identifier, + STATE(3497), 1, + sym_simple_identifier, + STATE(3640), 1, + sym__lexical_identifier, + STATE(3648), 1, + sym__simple_user_type, + STATE(3853), 1, + sym_user_type, + STATE(7336), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9384), 2, + anon_sym_get, + anon_sym_set, + STATE(3899), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9386), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143614] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9392), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143669] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9394), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143724] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4210), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [143757] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9396), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143812] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9398), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143867] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9400), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143922] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9402), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [143977] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9404), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144032] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9406), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144087] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9408), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144142] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9410), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144197] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9412), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144252] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9414), 1, + anon_sym_RPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144307] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4214), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [144340] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9416), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3672), 1, + sym__simple_user_type, + STATE(7621), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3846), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144394] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7598), 1, + sym_type_modifiers, + STATE(8361), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5851), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144448] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(9007), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144500] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(8977), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144552] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + STATE(7596), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5881), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144606] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7542), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8365), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144660] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2993), 1, + sym__simple_user_type, + STATE(7538), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3071), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144714] = 13, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9434), 1, + anon_sym_LBRACK, + ACTIONS(9440), 1, + sym__backtick_identifier, + STATE(5709), 1, + sym__lexical_identifier, + STATE(5730), 1, + sym_simple_identifier, + STATE(5741), 1, + sym__simple_user_type, + STATE(5758), 1, + sym_user_type, + STATE(7403), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9436), 2, + anon_sym_get, + anon_sym_set, + STATE(5774), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9438), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144766] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9442), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(920), 1, + sym__simple_user_type, + STATE(7586), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(976), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144820] = 13, + ACTIONS(1684), 1, + sym__alpha_identifier, + ACTIONS(1748), 1, + sym__backtick_identifier, + ACTIONS(9444), 1, + anon_sym_LBRACK, + STATE(5415), 1, + sym_simple_identifier, + STATE(5481), 1, + sym__lexical_identifier, + STATE(5520), 1, + sym__simple_user_type, + STATE(5584), 1, + sym_user_type, + STATE(7339), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9446), 2, + anon_sym_get, + anon_sym_set, + STATE(5647), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3052), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144872] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(9333), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144924] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9448), 1, + anon_sym_LBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7353), 1, + sym_use_site_target, + STATE(8034), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9450), 2, + anon_sym_get, + anon_sym_set, + STATE(7828), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8595), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144976] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7442), 1, + sym_type_modifiers, + STATE(8361), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5848), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145030] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5815), 1, + sym__simple_user_type, + STATE(7625), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5851), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145084] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2993), 1, + sym__simple_user_type, + STATE(7415), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3070), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145138] = 13, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9294), 1, + sym__backtick_identifier, + ACTIONS(9452), 1, + anon_sym_LBRACK, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5836), 1, + sym_simple_identifier, + STATE(5855), 1, + sym__simple_user_type, + STATE(5877), 1, + sym_user_type, + STATE(7392), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9454), 2, + anon_sym_get, + anon_sym_set, + STATE(5918), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9292), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145190] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + STATE(7602), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5883), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145244] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9456), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym__simple_user_type, + STATE(7524), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4958), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145298] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(9144), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145350] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4626), 1, + sym__simple_user_type, + STATE(7465), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4734), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145404] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9460), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3241), 1, + sym__simple_user_type, + STATE(7521), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3364), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145458] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9462), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3133), 1, + sym__simple_user_type, + STATE(7606), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3495), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145512] = 13, + ACTIONS(9464), 1, + sym__alpha_identifier, + ACTIONS(9466), 1, + anon_sym_LBRACK, + ACTIONS(9472), 1, + sym__backtick_identifier, + STATE(7329), 1, + sym_simple_identifier, + STATE(7388), 1, + sym_use_site_target, + STATE(7548), 1, + sym__lexical_identifier, + STATE(7631), 1, + sym__simple_user_type, + STATE(7847), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9468), 2, + anon_sym_get, + anon_sym_set, + STATE(7899), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9470), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145564] = 13, + ACTIONS(9474), 1, + sym__alpha_identifier, + ACTIONS(9476), 1, + anon_sym_LBRACK, + ACTIONS(9482), 1, + sym__backtick_identifier, + STATE(7287), 1, + sym_simple_identifier, + STATE(7354), 1, + sym__lexical_identifier, + STATE(7372), 1, + sym_use_site_target, + STATE(7381), 1, + sym__simple_user_type, + STATE(7624), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9478), 2, + anon_sym_get, + anon_sym_set, + STATE(7909), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9480), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145616] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7546), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8364), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145670] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7436), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8363), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145724] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5815), 1, + sym__simple_user_type, + STATE(7531), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5824), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145778] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2993), 1, + sym__simple_user_type, + STATE(7497), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2998), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145832] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4626), 1, + sym__simple_user_type, + STATE(7609), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4701), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145886] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9416), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3672), 1, + sym__simple_user_type, + STATE(7628), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3835), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145940] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9456), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym__simple_user_type, + STATE(7534), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4954), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [145994] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9462), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3133), 1, + sym__simple_user_type, + STATE(7636), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3532), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146048] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(8983), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146100] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7547), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8363), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146154] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(8903), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146206] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7587), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8365), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146260] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__simple_user_type, + STATE(7483), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5037), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146314] = 13, + ACTIONS(9486), 1, + sym__alpha_identifier, + ACTIONS(9488), 1, + anon_sym_LBRACK, + ACTIONS(9494), 1, + sym__backtick_identifier, + STATE(5871), 1, + sym_simple_identifier, + STATE(5892), 1, + sym__lexical_identifier, + STATE(5896), 1, + sym__simple_user_type, + STATE(5915), 1, + sym_user_type, + STATE(7377), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9490), 2, + anon_sym_get, + anon_sym_set, + STATE(6153), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9492), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146366] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__simple_user_type, + STATE(7502), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5061), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146420] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__simple_user_type, + STATE(7551), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5040), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146474] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9462), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3133), 1, + sym__simple_user_type, + STATE(7646), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3531), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146528] = 5, + ACTIONS(9364), 1, + anon_sym_DOT, + STATE(6647), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 7, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4120), 14, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [146564] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(8949), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146616] = 13, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9496), 1, + anon_sym_LBRACK, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + STATE(5806), 1, + sym_user_type, + STATE(7333), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9498), 2, + anon_sym_get, + anon_sym_set, + STATE(5832), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9270), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146668] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5815), 1, + sym__simple_user_type, + STATE(7601), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5848), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146722] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9448), 1, + anon_sym_LBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_use_site_target, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9450), 2, + anon_sym_get, + anon_sym_set, + STATE(7828), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8595), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146774] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7937), 1, + sym_parameter_modifiers, + STATE(8911), 1, + sym_parameter, + STATE(9343), 1, + sym__function_value_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146826] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9424), 1, + sym_reification_modifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8098), 1, + sym_type_parameter_modifiers, + STATE(8895), 1, + sym_simple_identifier, + STATE(9063), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7218), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146878] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7589), 1, + sym_type_modifiers, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8364), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146932] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9460), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3241), 1, + sym__simple_user_type, + STATE(7533), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3366), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146986] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + STATE(7583), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5865), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147040] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(7407), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8365), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147094] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9442), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(920), 1, + sym__simple_user_type, + STATE(7635), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(979), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147148] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7507), 1, + sym_type_modifiers, + STATE(8361), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5824), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147202] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9456), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym__simple_user_type, + STATE(7432), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4956), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147256] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9416), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3672), 1, + sym__simple_user_type, + STATE(7611), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3845), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147310] = 13, + ACTIONS(9500), 1, + sym__alpha_identifier, + ACTIONS(9502), 1, + anon_sym_LBRACK, + ACTIONS(9508), 1, + sym__backtick_identifier, + STATE(7203), 1, + sym_simple_identifier, + STATE(7265), 1, + sym__lexical_identifier, + STATE(7269), 1, + sym__simple_user_type, + STATE(7313), 1, + sym_user_type, + STATE(7337), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9504), 2, + anon_sym_get, + anon_sym_set, + STATE(7370), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9506), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147362] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4626), 1, + sym__simple_user_type, + STATE(7509), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4736), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147416] = 13, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9510), 1, + anon_sym_LBRACK, + STATE(7330), 1, + sym_use_site_target, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + STATE(8787), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9512), 2, + anon_sym_get, + anon_sym_set, + STATE(9203), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9303), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147468] = 13, + ACTIONS(9378), 1, + sym__alpha_identifier, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, + sym__backtick_identifier, + STATE(3497), 1, + sym_simple_identifier, + STATE(3640), 1, + sym__lexical_identifier, + STATE(3648), 1, + sym__simple_user_type, + STATE(3853), 1, + sym_user_type, + STATE(7336), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9384), 2, + anon_sym_get, + anon_sym_set, + STATE(3899), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9386), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [147520] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9460), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3241), 1, + sym__simple_user_type, + STATE(7553), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3331), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147574] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9442), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(920), 1, + sym__simple_user_type, + STATE(7543), 1, + sym_type_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(972), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147628] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(7472), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8364), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147682] = 14, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9214), 1, + anon_sym_suspend, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(7463), 1, + sym_type_modifiers, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8363), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7262), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147736] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9517), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147785] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9697), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147834] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9781), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147883] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9769), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147932] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9568), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [147981] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9766), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148030] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9786), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148079] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9796), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148128] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9621), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148177] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9556), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148226] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9763), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148275] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9546), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148324] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9575), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148373] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9777), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148422] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9580), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148471] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9589), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148520] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9640), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148569] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9645), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148618] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9840), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148667] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9735), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148716] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9553), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148765] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9802), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148814] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9659), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148863] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9747), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148912] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9545), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148961] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9662), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149010] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(10174), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149059] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9858), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149108] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(10158), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149157] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9876), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149206] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9789), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149255] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9750), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149304] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9886), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149353] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9588), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149402] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9542), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149451] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9523), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149500] = 5, + ACTIONS(9514), 1, + sym__quest, + STATE(6771), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4270), 9, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4268), 11, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [149535] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9683), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149584] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9688), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149633] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(10168), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149682] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9721), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149731] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9728), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149780] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9703), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149829] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9706), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149878] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9708), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149927] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9909), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149976] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9947), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150025] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9572), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150074] = 5, + ACTIONS(9517), 1, + sym__quest, + STATE(6771), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4256), 9, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4254), 11, + anon_sym_by, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [150109] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9591), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150158] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9837), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150207] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9536), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150256] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9532), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150305] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9573), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150354] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9671), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150403] = 12, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9350), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8116), 1, + sym_parameter_modifiers, + STATE(9315), 1, + sym_simple_identifier, + STATE(9525), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7268), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150452] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(4976), 13, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [150482] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(4988), 13, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [150512] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(4980), 13, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [150542] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 8, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(4984), 13, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [150572] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8486), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150623] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3724), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150672] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(8711), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150723] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3109), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150772] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3300), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150823] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3337), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150874] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150923] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3221), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150974] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8493), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151025] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3295), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151074] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3117), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151123] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3026), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151174] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9015), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151225] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3119), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151274] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4959), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151323] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3178), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151374] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2935), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151425] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2942), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151476] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3300), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151525] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(5030), 1, + sym__delegation_specifiers, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151576] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(5084), 1, + sym__delegation_specifiers, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151627] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3383), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151676] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2924), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151725] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2938), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151776] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3135), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151825] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8491), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151876] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5026), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151927] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3693), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151976] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2951), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152027] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2939), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152078] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3793), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152127] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2952), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152178] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2960), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152227] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3046), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152276] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2952), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152325] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8604), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152376] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3736), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152425] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152474] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8644), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152525] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4645), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152574] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3192), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152623] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9476), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152674] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152723] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2942), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152772] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152821] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3151), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152872] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3046), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152923] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5053), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [152974] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3724), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153023] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(900), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153074] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3383), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153125] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3726), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153174] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5009), 1, + sym__delegation_specifiers, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153225] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3026), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153274] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5010), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153325] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2960), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153376] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2939), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153425] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3192), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153476] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3097), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153527] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3098), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153578] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5011), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153629] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8661), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153680] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3109), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153731] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4643), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153780] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4642), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153829] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8579), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153880] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8566), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153931] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2934), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [153982] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(891), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154033] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2938), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154082] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2935), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154131] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(904), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154182] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3117), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154233] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3119), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154284] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2934), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154333] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5069), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154384] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2932), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154433] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3135), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154484] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4648), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154533] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154582] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4973), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154631] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2932), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154680] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3221), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154729] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2934), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154778] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2935), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154827] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3337), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154876] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2935), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154927] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5001), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [154976] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3653), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155027] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4637), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155076] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3300), 1, + sym__delegation_specifiers, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155127] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4641), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155176] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(918), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155227] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5003), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155278] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3662), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155329] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(8918), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155380] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3664), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155429] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3664), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155480] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2932), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155531] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5001), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155582] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2938), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155631] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2939), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155680] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9382), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155731] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3736), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155782] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4959), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155833] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4946), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155884] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4648), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155935] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3662), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155984] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(913), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156035] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3681), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156086] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3682), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156137] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4629), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156186] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4638), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156235] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4945), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156286] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4970), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156335] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2960), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156386] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(916), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156437] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4688), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156488] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(955), 1, + sym__delegation_specifiers, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156539] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3046), 1, + sym__delegation_specifiers, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156590] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3653), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156639] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3098), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156688] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4632), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156737] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9336), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156788] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4968), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156837] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4942), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156888] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8474), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156939] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(915), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156990] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4968), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157041] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3698), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157092] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3178), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157141] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3706), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157192] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8470), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157243] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2952), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157294] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3026), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157343] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2930), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157394] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3151), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157443] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4688), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157492] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(5103), 1, + sym__delegation_specifiers, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157543] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2942), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157592] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2929), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157643] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4970), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157694] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(8842), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157745] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4973), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157796] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3135), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157847] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3119), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157898] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(906), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157949] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2951), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158000] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3773), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158051] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4993), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158102] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3383), 1, + sym__delegation_specifiers, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158153] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9366), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158204] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3742), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158255] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5009), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158304] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5030), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158353] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(5352), 1, + sym__delegation_specifiers, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158404] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4974), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158455] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5003), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158504] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5001), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158553] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3046), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158602] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3662), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158651] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4993), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158700] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5063), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158749] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(5063), 1, + sym__delegation_specifiers, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158800] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4974), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158849] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4973), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158898] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2929), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158947] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3295), 1, + sym__delegation_specifiers, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158998] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3117), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159049] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4970), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159098] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4968), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159147] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5063), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159198] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4942), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159247] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4993), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159298] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4974), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159349] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4973), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159400] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4945), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159449] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159498] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2942), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159549] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2929), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159598] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4959), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159647] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3026), 1, + sym__delegation_specifiers, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159698] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8979), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159749] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(903), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159798] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3742), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159847] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3192), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159898] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(913), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159949] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3653), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [159998] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5001), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160049] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2938), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160100] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5003), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160151] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4634), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160200] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4631), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160249] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(906), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160300] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3109), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160351] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(904), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160402] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(903), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160451] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(915), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160502] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5030), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160553] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(962), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160602] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(962), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160651] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(890), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160702] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4634), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160753] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(900), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160804] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2924), 1, + sym__delegation_specifiers, + STATE(3801), 1, + sym_user_type, + STATE(3866), 1, + sym_delegation_specifier, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160855] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(892), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160904] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3726), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [160955] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4942), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161004] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3097), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161053] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5009), 1, + sym__delegation_specifiers, + STATE(5559), 1, + sym_user_type, + STATE(5608), 1, + sym_delegation_specifier, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161104] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3724), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161155] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(8498), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161206] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(891), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161257] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5015), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161308] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2934), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161359] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4631), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161410] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3151), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161459] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9370), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161510] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3098), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161561] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2960), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161610] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2932), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161661] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(922), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161710] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(922), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161761] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2930), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161812] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3097), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161863] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3098), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161912] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(892), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [161961] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2929), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162012] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(922), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162061] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(955), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162112] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8647), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162163] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(916), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162214] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3653), 1, + sym__delegation_specifiers, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162265] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3662), 1, + sym__delegation_specifiers, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162316] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3664), 1, + sym__delegation_specifiers, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162367] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4970), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162418] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(918), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162469] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(890), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162518] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3682), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162567] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4968), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162618] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2924), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162667] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3151), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162718] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2924), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162769] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8663), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162820] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(891), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162869] = 14, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2939), 1, + sym__delegation_specifiers, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3067), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162920] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(890), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [162971] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3693), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163020] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5012), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163071] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3097), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163120] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9515), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163171] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8665), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163222] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(890), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163271] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(955), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163320] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4622), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163371] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4706), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163422] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4942), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163473] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(900), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163522] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3736), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163573] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2952), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163622] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(955), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163671] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3109), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163720] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3681), 1, + sym__delegation_specifiers, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163771] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(891), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163820] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3793), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163869] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8469), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163920] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3178), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [163971] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(922), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164022] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4629), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164073] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(892), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164124] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(904), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164173] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(8775), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164224] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8643), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164275] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4632), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164326] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5078), 1, + sym__delegation_specifiers, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164377] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(906), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164426] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3726), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164475] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3337), 1, + sym__delegation_specifiers, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164526] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4945), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164577] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4946), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164628] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(913), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164677] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3221), 1, + sym__delegation_specifiers, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3647), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164728] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3693), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164779] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3773), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164828] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3698), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164877] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(892), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164928] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3178), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [164977] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4648), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165026] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4688), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165075] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8638), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165126] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3337), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165175] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(9079), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165226] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4993), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165275] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4634), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165324] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4631), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165373] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3192), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165422] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8636), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165473] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3664), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165522] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4637), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165573] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4638), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165624] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8482), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165675] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4622), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165724] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4706), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165773] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3693), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165824] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4629), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165873] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4632), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165922] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(5347), 1, + sym__delegation_specifiers, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [165973] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(915), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166022] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8461), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166073] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4637), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166122] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4638), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166171] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5030), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166220] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4641), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166269] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3742), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166318] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4622), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166367] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4642), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166416] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4643), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166465] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4641), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166516] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8479), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166567] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4706), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166616] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4645), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166665] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3706), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166714] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5063), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166763] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4642), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166814] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4643), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166865] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166914] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3773), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [166963] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8483), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167014] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3706), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167063] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3698), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167112] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4645), 1, + sym__delegation_specifiers, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(5586), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167163] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3221), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167212] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(4959), 1, + sym__delegation_specifiers, + STATE(5006), 1, + sym_user_type, + STATE(5019), 1, + sym_delegation_specifier, + STATE(5020), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167263] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(962), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167314] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(5092), 1, + sym__delegation_specifiers, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167365] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3295), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167414] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3682), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167463] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8475), 1, + sym__delegation_specifiers, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167514] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4648), 1, + sym__delegation_specifiers, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167565] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4688), 1, + sym__delegation_specifiers, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167616] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4945), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167665] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(903), 1, + sym__delegation_specifiers, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(2144), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167716] = 14, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8496), 1, + sym_delegation_specifier, + STATE(8497), 1, + sym_function_type, + STATE(8862), 1, + sym__delegation_specifiers, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167767] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4974), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167816] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5003), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167865] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(916), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167914] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4634), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [167965] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4631), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168016] = 14, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8519), 1, + sym_delegation_specifier, + STATE(8577), 1, + sym__delegation_specifiers, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168067] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(918), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168116] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3682), 1, + sym__delegation_specifiers, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168167] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3300), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168216] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(918), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168265] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3793), 1, + sym__delegation_specifiers, + STATE(4243), 1, + sym_user_type, + STATE(4287), 1, + sym_delegation_specifier, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168316] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4622), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168367] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4706), 1, + sym__delegation_specifiers, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168418] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3383), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168467] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3295), 1, + sym__delegation_specifiers, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(4249), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168518] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4629), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168569] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4632), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168620] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3117), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168669] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3698), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168720] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(962), 1, + sym__delegation_specifiers, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168771] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3706), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168822] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4637), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168873] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4638), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168924] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(916), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [168973] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4641), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169024] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3773), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169075] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3742), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169126] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4642), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169177] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4643), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169228] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(915), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169277] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(913), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169326] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3119), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169375] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(906), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169424] = 14, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4645), 1, + sym__delegation_specifiers, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4977), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169475] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3135), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169524] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3736), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169573] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3726), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169624] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169673] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5009), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169722] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(904), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169771] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3724), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169822] = 14, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5048), 1, + sym__delegation_specifiers, + STATE(5076), 1, + sym_function_type, + STATE(5082), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169873] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(900), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169922] = 14, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3793), 1, + sym__delegation_specifiers, + STATE(3802), 1, + sym_function_type, + STATE(3848), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169973] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(903), 1, + sym__delegation_specifiers, + STATE(945), 1, + sym_user_type, + STATE(968), 1, + sym_delegation_specifier, + STATE(977), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170024] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7245), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9818), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170068] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9807), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170112] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3265), 1, + sym_user_type, + STATE(3328), 1, + sym_function_type, + STATE(3464), 1, + sym_delegation_specifier, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170160] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9930), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170204] = 7, + ACTIONS(6700), 1, + anon_sym_LBRACK, + STATE(7880), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(6714), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9527), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7239), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9525), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [170240] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7220), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9828), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170284] = 8, + ACTIONS(9531), 1, + anon_sym_AT, + ACTIONS(9537), 1, + sym_reification_modifier, + ACTIONS(9540), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9534), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7189), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9529), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [170322] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9832), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170366] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7190), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9834), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170410] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9839), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170454] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7192), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9841), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170498] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9846), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170542] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7213), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9864), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170586] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7198), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9925), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170630] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(2970), 1, + sym_user_type, + STATE(3061), 1, + sym_function_type, + STATE(3259), 1, + sym_delegation_specifier, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170678] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9923), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170722] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7186), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9932), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170766] = 13, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(8079), 1, + sym__simple_user_type, + STATE(8411), 1, + sym_user_type, + STATE(8515), 1, + sym_function_type, + STATE(8776), 1, + sym_delegation_specifier, + STATE(9853), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8810), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170814] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9854), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170858] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7201), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9855), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170902] = 5, + ACTIONS(9542), 1, + anon_sym_LT, + STATE(7312), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4104), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [170934] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(945), 1, + sym_user_type, + STATE(977), 1, + sym_function_type, + STATE(1109), 1, + sym_delegation_specifier, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170982] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4647), 1, + sym_user_type, + STATE(4686), 1, + sym_function_type, + STATE(4841), 1, + sym_delegation_specifier, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171030] = 13, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(7947), 1, + sym__simple_user_type, + STATE(8398), 1, + sym_user_type, + STATE(8497), 1, + sym_function_type, + STATE(8608), 1, + sym_delegation_specifier, + STATE(9732), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8522), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171078] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9825), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171122] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [171152] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7207), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9860), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171196] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2803), 1, + sym__simple_user_type, + STATE(3259), 1, + sym_delegation_specifier, + STATE(3801), 1, + sym_user_type, + STATE(4060), 1, + sym_function_type, + STATE(9969), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3180), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171244] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9823), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171288] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7211), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9824), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171332] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9863), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171376] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7216), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9919), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171420] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7217), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9821), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171464] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9916), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171508] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9820), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171552] = 8, + ACTIONS(9420), 1, + anon_sym_AT, + ACTIONS(9546), 1, + sym_reification_modifier, + ACTIONS(9548), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9422), 2, + anon_sym_in, + anon_sym_out, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7189), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9544), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [171590] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7194), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9847), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171634] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9827), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171678] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7233), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9881), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171722] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7234), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9912), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171766] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7227), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9977), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171810] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7230), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9870), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171854] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9803), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171898] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9874), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171942] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9975), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171986] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7226), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9875), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172030] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7225), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9804), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172074] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9869), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172118] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7238), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9793), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172162] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(4075), 1, + sym_delegation_specifier, + STATE(4243), 1, + sym_user_type, + STATE(4298), 1, + sym_function_type, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172210] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9879), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172254] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9910), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172298] = 13, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(843), 1, + sym__simple_user_type, + STATE(847), 1, + sym_simple_identifier, + STATE(1109), 1, + sym_delegation_specifier, + STATE(1425), 1, + sym_user_type, + STATE(1746), 1, + sym_function_type, + STATE(10208), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1070), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172346] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 6, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4968), 13, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [172374] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9888), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172418] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9520), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172462] = 7, + ACTIONS(9550), 1, + anon_sym_LBRACK, + STATE(7880), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9553), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9558), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7239), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9556), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [172498] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5006), 1, + sym_user_type, + STATE(5020), 1, + sym_function_type, + STATE(5240), 1, + sym_delegation_specifier, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172546] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2956), 1, + sym__simple_user_type, + STATE(2981), 1, + sym_simple_identifier, + STATE(3464), 1, + sym_delegation_specifier, + STATE(4095), 1, + sym_user_type, + STATE(4169), 1, + sym_function_type, + STATE(9944), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3485), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172594] = 13, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4608), 1, + sym__simple_user_type, + STATE(4972), 1, + sym_user_type, + STATE(5076), 1, + sym_function_type, + STATE(5121), 1, + sym_delegation_specifier, + STATE(10069), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5190), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172642] = 13, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4576), 1, + sym__simple_user_type, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4841), 1, + sym_delegation_specifier, + STATE(5343), 1, + sym_user_type, + STATE(5420), 1, + sym_function_type, + STATE(9541), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4890), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172690] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7250), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9905), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172734] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9817), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172778] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9810), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172822] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7184), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9808), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172866] = 13, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3389), 1, + sym__simple_user_type, + STATE(3690), 1, + sym_user_type, + STATE(3802), 1, + sym_function_type, + STATE(4075), 1, + sym_delegation_specifier, + STATE(9774), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4057), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172914] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7246), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9811), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172958] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9903), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173002] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7254), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9815), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173046] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7237), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9889), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173090] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7256), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9900), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173134] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9814), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173178] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9892), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173222] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9898), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173266] = 11, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9521), 1, + anon_sym_AT, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(8382), 1, + sym__lexical_identifier, + STATE(9318), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7255), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9895), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173310] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4732), 1, + sym__simple_user_type, + STATE(5240), 1, + sym_delegation_specifier, + STATE(5559), 1, + sym_user_type, + STATE(5631), 1, + sym_function_type, + STATE(9733), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5284), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173358] = 7, + ACTIONS(9563), 1, + anon_sym_AT, + ACTIONS(9568), 1, + anon_sym_suspend, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9566), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7259), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9561), 9, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173393] = 11, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9345), 1, + anon_sym_LPAREN, + ACTIONS(9571), 1, + anon_sym_dynamic, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(7912), 1, + sym__simple_user_type, + STATE(8113), 1, + sym_nullable_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7914), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173436] = 5, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9577), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9575), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7261), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9573), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173467] = 7, + ACTIONS(9112), 1, + anon_sym_AT, + ACTIONS(9584), 1, + anon_sym_suspend, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9582), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7259), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9580), 9, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173502] = 5, + ACTIONS(9586), 1, + anon_sym_DOT, + STATE(7270), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4113), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173533] = 7, + ACTIONS(9590), 1, + anon_sym_AT, + ACTIONS(9596), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9593), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7264), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9588), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173568] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173595] = 7, + ACTIONS(9598), 1, + anon_sym_AT, + ACTIONS(9601), 1, + anon_sym_suspend, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9582), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7902), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7259), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9580), 9, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173630] = 5, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7441), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9606), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7261), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9604), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173661] = 7, + ACTIONS(9350), 1, + anon_sym_AT, + ACTIONS(9610), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7911), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9079), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7264), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9608), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173696] = 5, + ACTIONS(9586), 1, + anon_sym_DOT, + STATE(7263), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4120), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173727] = 5, + ACTIONS(9612), 1, + anon_sym_DOT, + STATE(7270), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173758] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4156), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [173785] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9615), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173825] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5857), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9625), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173865] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9617), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173905] = 10, + ACTIONS(9619), 1, + sym__alpha_identifier, + ACTIONS(9622), 1, + anon_sym_RBRACK, + ACTIONS(9627), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(9624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173945] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9630), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173985] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5868), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10133), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7402), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174025] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5024), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9885), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7383), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174065] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3299), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10035), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7386), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174105] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(4699), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7399), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174145] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(974), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10028), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7384), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174185] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9632), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174225] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3687), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10113), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7391), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174265] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9634), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174305] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3308), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10044), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7387), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174345] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9636), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174385] = 5, + ACTIONS(9638), 1, + anon_sym_LT, + STATE(7540), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4104), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [174415] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8580), 1, + sym_type_constraint, + STATE(9736), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7338), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174455] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9640), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174495] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4210), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [174521] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4214), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [174547] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9642), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174587] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9644), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174627] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9646), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174667] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9648), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174707] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3608), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10071), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7398), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174747] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9650), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174787] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9652), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174827] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5138), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10093), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7394), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174867] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5884), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10133), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7402), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174907] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9654), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174947] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9656), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174987] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175015] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5858), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10171), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7369), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175055] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3794), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10113), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7391), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175095] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5857), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10171), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7369), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175135] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3078), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10035), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7386), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175175] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(937), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10028), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7384), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175215] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175241] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9658), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175281] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9660), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175321] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4218), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175347] = 5, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(7367), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7108), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175377] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175405] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8466), 1, + sym_type_constraint, + STATE(9625), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175445] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3213), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10044), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7387), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175485] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9665), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175525] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9667), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175565] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9669), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175605] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(3714), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10071), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7398), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175645] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9671), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175685] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9673), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175725] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(4937), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7399), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175765] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5075), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10093), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7394), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175805] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9675), 1, + anon_sym_RBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7275), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175845] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5884), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9736), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7338), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175885] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(5208), 1, + sym_type_constraint, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9885), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7383), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175925] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7295), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175962] = 5, + ACTIONS(9677), 1, + anon_sym_LT, + STATE(7884), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4104), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175991] = 10, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9679), 1, + anon_sym_LBRACK, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + STATE(8787), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9201), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176030] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7284), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176067] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9611), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176104] = 10, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9681), 1, + anon_sym_LBRACK, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + STATE(5806), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5823), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176143] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7318), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176180] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7322), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176217] = 10, + ACTIONS(9378), 1, + sym__alpha_identifier, + ACTIONS(9390), 1, + sym__backtick_identifier, + ACTIONS(9683), 1, + anon_sym_LBRACK, + STATE(3497), 1, + sym_simple_identifier, + STATE(3640), 1, + sym__lexical_identifier, + STATE(3648), 1, + sym__simple_user_type, + STATE(3853), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4027), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9386), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176256] = 10, + ACTIONS(9500), 1, + sym__alpha_identifier, + ACTIONS(9508), 1, + sym__backtick_identifier, + ACTIONS(9685), 1, + anon_sym_LBRACK, + STATE(7203), 1, + sym_simple_identifier, + STATE(7265), 1, + sym__lexical_identifier, + STATE(7269), 1, + sym__simple_user_type, + STATE(7313), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7357), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9506), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176295] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10094), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176332] = 10, + ACTIONS(1684), 1, + sym__alpha_identifier, + ACTIONS(1748), 1, + sym__backtick_identifier, + ACTIONS(9687), 1, + anon_sym_LBRACK, + STATE(5415), 1, + sym_simple_identifier, + STATE(5481), 1, + sym__lexical_identifier, + STATE(5520), 1, + sym__simple_user_type, + STATE(5584), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5641), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3052), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176371] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7197), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176396] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7297), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176433] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9689), 1, + anon_sym_LBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7827), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176472] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7292), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176509] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9681), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7345), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176546] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9608), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176583] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7286), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176620] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9613), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7332), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176657] = 5, + ACTIONS(9691), 1, + anon_sym_DOT, + STATE(7350), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4113), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176686] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7289), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176723] = 5, + ACTIONS(9693), 1, + anon_sym_DOT, + STATE(7350), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176752] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9604), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176789] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7294), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176826] = 10, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9689), 1, + anon_sym_LBRACK, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(8034), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7827), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176865] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176890] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7191), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176915] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4156), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176940] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7181), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [176965] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7272), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177002] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7310), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177039] = 4, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177066] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7321), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177103] = 10, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9696), 1, + anon_sym_LBRACK, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8361), 1, + sym__simple_user_type, + STATE(9146), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9413), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177142] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7293), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177179] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4988), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177204] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9794), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177241] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4984), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177266] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4968), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177291] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7274), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177328] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10167), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177365] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7165), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177390] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4980), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177415] = 10, + ACTIONS(9474), 1, + sym__alpha_identifier, + ACTIONS(9482), 1, + sym__backtick_identifier, + ACTIONS(9698), 1, + anon_sym_LBRACK, + STATE(7287), 1, + sym_simple_identifier, + STATE(7354), 1, + sym__lexical_identifier, + STATE(7381), 1, + sym__simple_user_type, + STATE(7624), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7890), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9480), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177454] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9797), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7365), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177491] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10172), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177528] = 6, + ACTIONS(9706), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9703), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9708), 2, + anon_sym_dynamic, + anon_sym_suspend, + ACTIONS(9710), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(9700), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177559] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4976), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177584] = 10, + ACTIONS(9486), 1, + sym__alpha_identifier, + ACTIONS(9494), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LBRACK, + STATE(5871), 1, + sym_simple_identifier, + STATE(5892), 1, + sym__lexical_identifier, + STATE(5896), 1, + sym__simple_user_type, + STATE(5915), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6345), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9492), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177623] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9852), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7374), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177660] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7276), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177697] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7325), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177734] = 5, + ACTIONS(9691), 1, + anon_sym_DOT, + STATE(7348), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4120), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [177763] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7311), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177800] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10150), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177837] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10025), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177874] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7298), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177911] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9972), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177948] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10041), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177985] = 10, + ACTIONS(9464), 1, + sym__alpha_identifier, + ACTIONS(9472), 1, + sym__backtick_identifier, + ACTIONS(9714), 1, + anon_sym_LBRACK, + STATE(7329), 1, + sym_simple_identifier, + STATE(7548), 1, + sym__lexical_identifier, + STATE(7631), 1, + sym__simple_user_type, + STATE(7847), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7893), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9470), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178024] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9893), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7395), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178061] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7302), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178098] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10109), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178135] = 10, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9294), 1, + sym__backtick_identifier, + ACTIONS(9716), 1, + anon_sym_LBRACK, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5836), 1, + sym_simple_identifier, + STATE(5855), 1, + sym__simple_user_type, + STATE(5877), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5913), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9292), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178174] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7282), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178211] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10090), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178248] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9951), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178285] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7317), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178322] = 5, + ACTIONS(9718), 1, + anon_sym_LPAREN, + STATE(7236), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 3, + anon_sym_AT, + anon_sym_RBRACK, + sym__backtick_identifier, + ACTIONS(7108), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178351] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10067), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178388] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10053), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178425] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7129), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178450] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7319), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178487] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10129), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178524] = 10, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, + anon_sym_LBRACK, + STATE(5709), 1, + sym__lexical_identifier, + STATE(5730), 1, + sym_simple_identifier, + STATE(5741), 1, + sym__simple_user_type, + STATE(5758), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5771), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9438), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178563] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + STATE(7397), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7301), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178600] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9934), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7406), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178637] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9420), 1, + anon_sym_AT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9937), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178674] = 9, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8363), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178710] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5458), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178742] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9724), 1, + anon_sym_DOT, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2698), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178778] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4668), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178810] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9728), 1, + anon_sym_DOT, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2667), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178846] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3713), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178878] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3712), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178910] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4125), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [178942] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2993), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2999), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178978] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9736), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179014] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9585), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179050] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9738), 1, + anon_sym_DOT, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(446), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179086] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9742), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2684), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179122] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9744), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(626), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179158] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9746), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(449), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179194] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1289), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179226] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9750), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2427), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179262] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4124), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179294] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3609), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179326] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9752), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(481), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179362] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9754), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2418), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179398] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9756), 1, + anon_sym_DOT, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5860), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5518), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179434] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9760), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(647), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179470] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3610), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179502] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(6606), 1, + sym_type_arguments, + STATE(8375), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179534] = 9, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9456), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4949), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179570] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9764), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(461), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179606] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3627), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179638] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1288), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179670] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8369), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179706] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4915), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179738] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10128), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179774] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10108), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179810] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10089), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179846] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9766), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2653), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179882] = 9, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8361), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5839), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179918] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4669), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179950] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4719), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [179982] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10066), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180018] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5332), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180050] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9770), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2044), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180086] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9772), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(483), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180122] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(848), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180154] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4724), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180186] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9758), 1, + anon_sym_LPAREN, + ACTIONS(9774), 1, + anon_sym_DOT, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5860), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5512), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180222] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10083), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180258] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4735), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180290] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10052), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180326] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5340), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180358] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(837), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180390] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5334), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180422] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9776), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180458] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9650), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180494] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4670), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180526] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10040), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180562] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(845), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180594] = 9, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8369), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180630] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9778), 1, + anon_sym_DOT, + ACTIONS(9780), 1, + anon_sym_LPAREN, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3618), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2328), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180666] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4626), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4705), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180702] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9782), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2638), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180738] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10032), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180774] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9784), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2062), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180810] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4663), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180842] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1277), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180874] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3715), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [180906] = 9, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8487), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8362), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180942] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10022), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180978] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9788), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(627), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181014] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9996), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181050] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2822), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181082] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9989), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181118] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9792), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181154] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2795), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181186] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4830), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181218] = 8, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9523), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9442), 3, + sym_variable_declaration, + sym_multi_variable_declaration, + sym__lambda_parameter, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181252] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4126), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181284] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5016), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181320] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9794), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2411), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181356] = 5, + ACTIONS(9796), 1, + anon_sym_DOT, + STATE(7485), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181384] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2806), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181416] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(6606), 1, + sym_type_arguments, + STATE(8399), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181448] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9801), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2407), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181484] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3335), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181516] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4183), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181548] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9770), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181584] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9803), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(458), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181620] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9560), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181656] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9805), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2455), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181692] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4156), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181716] = 10, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9807), 1, + anon_sym_COLON, + ACTIONS(9809), 1, + sym__automatic_semicolon, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8809), 1, + sym_simple_identifier, + STATE(9757), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181754] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2993), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3070), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181790] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3572), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181822] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2974), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181854] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9811), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2642), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181890] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9813), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2391), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181926] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5014), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [181962] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3570), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181994] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2973), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182026] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9815), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2344), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182062] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9817), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2462), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182098] = 9, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8361), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5851), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182134] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4961), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182166] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4626), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4711), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182202] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2972), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182234] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9819), 1, + anon_sym_DOT, + ACTIONS(9821), 1, + anon_sym_LPAREN, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5582), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182270] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2721), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182306] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3569), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182338] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9825), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2369), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182374] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1905), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182410] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9829), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2725), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182446] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3353), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182478] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9730), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182514] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10166), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182550] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5459), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182582] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9460), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3241), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3322), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182618] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9831), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(454), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182654] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4662), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182686] = 9, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9456), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4956), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182722] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(879), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182754] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9833), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2718), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182790] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3306), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182822] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4802), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182854] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9835), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2727), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182890] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5451), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [182922] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5815), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5851), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182958] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9837), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2389), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [182994] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9460), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3241), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3317), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183030] = 9, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9456), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4674), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4951), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183066] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2460), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183102] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183134] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9841), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183170] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9430), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2993), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3080), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183206] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9843), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183242] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4218), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183266] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9845), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1870), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183302] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8363), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183338] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9442), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(920), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(976), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183374] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9609), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183410] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9847), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2359), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183446] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8362), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183482] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6638), 1, + sym_simple_identifier, + STATE(6712), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8369), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183518] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3942), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183542] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183566] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9849), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183602] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4944), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5037), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183638] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(876), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183670] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9460), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3241), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3364), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183706] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(6606), 1, + sym_type_arguments, + STATE(8377), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183738] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10104), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183774] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9851), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(478), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183810] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2408), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183846] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183878] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5324), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [183910] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9855), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(470), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183946] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9857), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2355), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183982] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2902), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184014] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9859), 1, + anon_sym_DOT, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3618), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2342), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184050] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5322), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184082] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9861), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2489), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184118] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5318), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184150] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3354), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184182] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(6606), 1, + sym_type_arguments, + STATE(8397), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184214] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4214), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184238] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1245), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184270] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4210), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184294] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4177), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184326] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9863), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2744), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184362] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4089), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184394] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(480), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184430] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2901), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184462] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3324), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184494] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4966), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184526] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9867), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2346), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184562] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184598] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4587), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184630] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9859), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184666] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5883), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184702] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9871), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2678), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184738] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9873), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(621), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184774] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9442), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(920), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1032), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184810] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8363), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184846] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9875), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2387), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184882] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8362), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184918] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4583), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184950] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9773), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184986] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4577), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185018] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185050] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9877), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(475), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185086] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3323), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185118] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5864), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185154] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2893), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185186] = 9, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8361), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5838), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185222] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(6606), 1, + sym_type_arguments, + STATE(8403), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185254] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1242), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185286] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5815), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5839), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185322] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9426), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5717), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5863), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185358] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9740), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185394] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9879), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2396), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185430] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + ACTIONS(9881), 1, + anon_sym_DOT, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2763), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185466] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9462), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3133), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3531), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185502] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9883), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2473), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185538] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10180), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185574] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9458), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4626), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4734), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185610] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9885), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2081), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185646] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9416), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3672), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3756), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185682] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9758), 1, + anon_sym_LPAREN, + ACTIONS(9887), 1, + anon_sym_DOT, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5860), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5491), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185718] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4094), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185750] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9889), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(596), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185786] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4978), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185818] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9891), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1854), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185854] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10076), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185890] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3352), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185922] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9893), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2679), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185958] = 6, + ACTIONS(9897), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9900), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7620), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9895), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185988] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9416), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3672), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3855), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186024] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3321), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186056] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9902), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(609), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186092] = 5, + ACTIONS(9904), 1, + anon_sym_LPAREN, + STATE(7900), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7108), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186120] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9418), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5815), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5838), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186156] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(6606), 1, + sym_type_arguments, + STATE(8381), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186188] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9821), 1, + anon_sym_LPAREN, + ACTIONS(9906), 1, + anon_sym_DOT, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5554), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186224] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9416), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3672), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3845), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186260] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9428), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(8368), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(10023), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186296] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(628), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186332] = 5, + ACTIONS(9910), 1, + anon_sym_DOT, + STATE(7641), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4120), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186360] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9912), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(572), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186396] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4091), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186428] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9914), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2634), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186464] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9442), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(920), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1030), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186500] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9462), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3133), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3564), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186536] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4679), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186568] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9916), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2645), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186604] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9918), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(619), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186640] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9920), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(648), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186676] = 5, + ACTIONS(9910), 1, + anon_sym_DOT, + STATE(7485), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4113), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186704] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9924), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9922), 12, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_in, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186728] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + ACTIONS(9926), 1, + anon_sym_DOT, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2632), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186764] = 7, + ACTIONS(6551), 1, + anon_sym_LT, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4171), 1, + sym_function_value_parameters, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4104), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [186796] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9928), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186832] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9462), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3133), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3586), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186868] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9930), 1, + anon_sym_DOT, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3618), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2311), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186904] = 10, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9932), 1, + anon_sym_COLON, + ACTIONS(9934), 1, + sym__automatic_semicolon, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8740), 1, + sym_simple_identifier, + STATE(10184), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186942] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9821), 1, + anon_sym_LPAREN, + ACTIONS(9936), 1, + anon_sym_DOT, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5594), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [186978] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + ACTIONS(9938), 1, + anon_sym_DOT, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187014] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(9940), 1, + anon_sym_COLON, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2962), 1, + sym_simple_identifier, + STATE(3243), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187049] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5470), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187084] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187117] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3007), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187152] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2391), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187185] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4597), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9340), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187220] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2866), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9162), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187255] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3573), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187290] = 9, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5754), 1, + sym__simple_user_type, + STATE(9594), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187325] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4969), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9464), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187360] = 9, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9942), 1, + anon_sym_COLON, + STATE(4804), 1, + sym_class_body, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8717), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187395] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9431), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187430] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3823), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187465] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(852), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187500] = 8, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(557), 1, + anon_sym_LPAREN, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9944), 1, + anon_sym_class, + STATE(2801), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3131), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187533] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2706), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187566] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4811), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9346), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187601] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2698), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187634] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(9942), 1, + anon_sym_COLON, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4804), 1, + sym_class_body, + STATE(5345), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187669] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4192), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187704] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2678), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187737] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3019), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9401), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187772] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(853), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187807] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2407), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187840] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(9942), 1, + anon_sym_COLON, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4656), 1, + sym_simple_identifier, + STATE(4804), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187875] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3819), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9426), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187910] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2702), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187943] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4592), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187978] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2638), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188011] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2653), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188044] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4591), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188079] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3009), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188114] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3821), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9424), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188149] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5151), 1, + sym_class_body, + STATE(5663), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188184] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5077), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188219] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3571), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188254] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3632), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188289] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3808), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9232), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188324] = 8, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5860), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5487), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188357] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2455), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188390] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5031), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9279), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188425] = 8, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, + anon_sym_LPAREN, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3618), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2328), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188458] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3825), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188493] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4407), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4405), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [188516] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4247), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188551] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1450), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188586] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2399), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188619] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3688), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9447), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188654] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2721), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188687] = 8, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, + anon_sym_LPAREN, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3618), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2296), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188720] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2720), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188753] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2725), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188786] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2492), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188819] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3839), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188854] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2718), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188887] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3842), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188922] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5471), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188957] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2389), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [188990] = 9, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(5754), 1, + sym__simple_user_type, + STATE(9529), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189025] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2408), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189058] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(3202), 1, + anon_sym_LBRACE, + ACTIONS(9948), 1, + anon_sym_COLON, + STATE(840), 1, + sym__lexical_identifier, + STATE(1105), 1, + sym_class_body, + STATE(1215), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189093] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4957), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189128] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(859), 1, + sym__simple_user_type, + STATE(10203), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189163] = 9, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5689), 1, + sym__simple_user_type, + STATE(9760), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189198] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4953), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189233] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(628), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189266] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4260), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189301] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(9940), 1, + anon_sym_COLON, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3243), 1, + sym_class_body, + STATE(4086), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189336] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(9950), 1, + anon_sym_COLON, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3445), 1, + sym_class_body, + STATE(3847), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189371] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4161), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9452), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189406] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189439] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(648), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189472] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3065), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189507] = 6, + ACTIONS(9900), 1, + sym__backtick_identifier, + ACTIONS(9952), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7724), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7831), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9895), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [189536] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(9955), 1, + anon_sym_COLON, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3995), 1, + sym_class_body, + STATE(4021), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189571] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(631), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189604] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2900), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189639] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1445), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189674] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2404), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189707] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(3202), 1, + anon_sym_LBRACE, + ACTIONS(9948), 1, + anon_sym_COLON, + STATE(840), 1, + sym__lexical_identifier, + STATE(932), 1, + sym_simple_identifier, + STATE(1105), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189742] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2744), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189775] = 8, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, + anon_sym_LPAREN, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3618), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2342), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189808] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3550), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9170), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189843] = 8, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5860), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5512), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189876] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4203), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189911] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(9950), 1, + anon_sym_COLON, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3246), 1, + sym_simple_identifier, + STATE(3445), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189946] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(9942), 1, + anon_sym_COLON, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4804), 1, + sym_class_body, + STATE(5615), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189981] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(481), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190014] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(9955), 1, + anon_sym_COLON, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3995), 1, + sym_class_body, + STATE(4241), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190049] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(478), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190082] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3073), 1, + sym__simple_user_type, + STATE(10175), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190117] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(9950), 1, + anon_sym_COLON, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3445), 1, + sym_class_body, + STATE(4117), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190152] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(9940), 1, + anon_sym_COLON, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3243), 1, + sym_class_body, + STATE(3778), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190187] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(3202), 1, + anon_sym_LBRACE, + ACTIONS(9948), 1, + anon_sym_COLON, + STATE(840), 1, + sym__lexical_identifier, + STATE(1105), 1, + sym_class_body, + STATE(1437), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190222] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(465), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190255] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190288] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9959), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(9957), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [190311] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2387), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190344] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5537), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190379] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5478), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190414] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4172), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190449] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2489), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190482] = 9, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(5151), 1, + sym_class_body, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8603), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190517] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4148), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190552] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5375), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9177), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190587] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4888), 1, + sym__simple_user_type, + STATE(10112), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190622] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1266), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9445), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190657] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(9955), 1, + anon_sym_COLON, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3702), 1, + sym_simple_identifier, + STATE(3995), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190692] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2749), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190725] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4214), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [190748] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2396), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190781] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1009), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190816] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2363), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190849] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(9950), 1, + anon_sym_COLON, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3445), 1, + sym_class_body, + STATE(4283), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190884] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2418), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190917] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1011), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190952] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2427), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [190985] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(609), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191018] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4248), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9209), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191053] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(619), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191086] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2437), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191119] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5060), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9281), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191154] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2899), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191189] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4127), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [191212] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4592), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191247] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4591), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191282] = 9, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8446), 1, + sym__simple_user_type, + STATE(9731), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191317] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3065), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191352] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(576), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191385] = 8, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9821), 1, + anon_sym_LPAREN, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5566), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191418] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2632), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191451] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(569), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191484] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3628), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191519] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3632), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191554] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3545), 1, + sym__simple_user_type, + STATE(9790), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191589] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4212), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9223), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191624] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5046), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191659] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2645), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191692] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191727] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(572), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191760] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2462), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191793] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(133), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9961), 1, + anon_sym_class, + STATE(2922), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3613), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191826] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3000), 1, + sym__simple_user_type, + STATE(9958), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191861] = 8, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9821), 1, + anon_sym_LPAREN, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5594), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191894] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191927] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3007), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191962] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3739), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [191997] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3009), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192032] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4611), 1, + sym__simple_user_type, + STATE(10149), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192067] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(585), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192100] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3740), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192135] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3628), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192170] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2900), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192205] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2693), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192238] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4210), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [192261] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4950), 1, + sym_simple_identifier, + STATE(5151), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192296] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2899), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192331] = 8, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + ACTIONS(9821), 1, + anon_sym_LPAREN, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5582), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192364] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4901), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192399] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + STATE(9754), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192434] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(9940), 1, + anon_sym_COLON, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3166), 1, + sym_simple_identifier, + STATE(3243), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192469] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2470), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192502] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4898), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192537] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5546), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9172), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192572] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5519), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9257), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192607] = 9, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9940), 1, + anon_sym_COLON, + STATE(3243), 1, + sym_class_body, + STATE(4586), 1, + sym__lexical_identifier, + STATE(5123), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192642] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(457), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192675] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(461), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192708] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(449), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192741] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7197), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [192764] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4898), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192799] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(463), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192832] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(458), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192865] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(454), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192898] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4467), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4465), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [192921] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7191), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [192944] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7181), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [192967] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7165), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [192990] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4901), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193025] = 8, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5860), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5491), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193058] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7129), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [193081] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(480), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193114] = 9, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4621), 1, + sym__simple_user_type, + STATE(10155), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193149] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(470), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193182] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(852), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193217] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4957), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193252] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4953), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193287] = 9, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(9955), 1, + anon_sym_COLON, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3995), 1, + sym_class_body, + STATE(4313), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193322] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1833), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193355] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2359), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193388] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(853), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193423] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1854), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193456] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(3202), 1, + anon_sym_LBRACE, + ACTIONS(9948), 1, + anon_sym_COLON, + STATE(840), 1, + sym__lexical_identifier, + STATE(1105), 1, + sym_class_body, + STATE(2246), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193491] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1870), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193524] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3839), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193559] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3739), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193594] = 5, + ACTIONS(9963), 1, + anon_sym_LPAREN, + STATE(7908), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7108), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [193621] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3740), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193656] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3817), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193691] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(646), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193724] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3809), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193759] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1009), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193794] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5571), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193829] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5077), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193864] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1011), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193899] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9250), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193934] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5090), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193969] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(882), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9272), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194004] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1991), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194037] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2044), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194070] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + STATE(10081), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194105] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9726), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3252), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2062), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194138] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3059), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194173] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(627), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194206] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9519), 1, + anon_sym_LPAREN, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2905), 1, + sym__simple_user_type, + STATE(9973), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194241] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2369), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194274] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1316), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194309] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(466), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194342] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5151), 1, + sym_class_body, + STATE(5295), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194377] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2667), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194410] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5592), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194445] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5151), 1, + sym_class_body, + STATE(5555), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194480] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2384), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194513] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5057), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194548] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1311), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194583] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5090), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194618] = 9, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(9942), 1, + anon_sym_COLON, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4804), 1, + sym_class_body, + STATE(5071), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194653] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2642), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194686] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym__lexical_identifier, + STATE(914), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(626), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194719] = 8, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(9966), 1, + anon_sym_class, + STATE(4581), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4908), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194752] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9968), 1, + anon_sym_class, + STATE(840), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1072), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194785] = 8, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(27), 1, + anon_sym_LPAREN, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9970), 1, + anon_sym_class, + STATE(4657), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5246), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194818] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3021), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9258), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194853] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4218), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194876] = 8, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8279), 1, + sym_binding_pattern_kind, + STATE(9587), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194909] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3543), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(7963), 1, + sym_simple_identifier, + STATE(9276), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194944] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(435), 1, + anon_sym_LPAREN, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9972), 1, + anon_sym_class, + STATE(3360), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3955), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [194977] = 8, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(9730), 1, + anon_sym_LPAREN, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3683), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2635), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195010] = 9, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3842), 1, + sym_function_value_parameters, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195045] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7181), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195067] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7191), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195089] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7197), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195111] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7181), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195133] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4988), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195155] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4984), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195177] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4980), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195199] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4980), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195221] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4976), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195243] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7165), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195265] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4968), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195287] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4976), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195309] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7129), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195331] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7197), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195353] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9116), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9118), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195375] = 5, + ACTIONS(9978), 1, + sym__quest, + STATE(6783), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9976), 3, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9974), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195401] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7191), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195423] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9924), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9922), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195445] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4968), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195467] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7165), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195489] = 5, + ACTIONS(9980), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 3, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195515] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7129), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195537] = 5, + ACTIONS(9983), 1, + anon_sym_DOT, + STATE(7910), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 3, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195563] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4984), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195585] = 5, + ACTIONS(9978), 1, + sym__quest, + STATE(6783), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9988), 3, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9986), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195611] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4988), 10, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [195633] = 12, + ACTIONS(9990), 1, + anon_sym_typealias, + ACTIONS(9994), 1, + anon_sym_enum, + ACTIONS(9996), 1, + anon_sym_constructor, + ACTIONS(10000), 1, + anon_sym_companion, + ACTIONS(10002), 1, + anon_sym_object, + ACTIONS(10004), 1, + anon_sym_fun, + ACTIONS(10006), 1, + anon_sym_get, + ACTIONS(10008), 1, + anon_sym_set, + STATE(6446), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9992), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + [195673] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10010), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9286), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195702] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10012), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9506), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195731] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10014), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9330), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195760] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10016), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9298), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195789] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(9036), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195818] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10018), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9399), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195847] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10020), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9332), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195876] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10022), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9405), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195905] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10024), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9375), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195934] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10026), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9406), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195963] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10028), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9338), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [195992] = 7, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(10030), 1, + anon_sym_class, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3447), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196021] = 7, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(10032), 1, + anon_sym_class, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5247), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196050] = 7, + ACTIONS(9378), 1, + sym__alpha_identifier, + ACTIONS(9390), 1, + sym__backtick_identifier, + STATE(3497), 1, + sym_simple_identifier, + STATE(3640), 1, + sym__lexical_identifier, + STATE(3747), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9386), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196079] = 5, + ACTIONS(10034), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [196104] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10037), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9328), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196133] = 7, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + ACTIONS(10039), 1, + sym_wildcard_import, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8864), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196162] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10041), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9374), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196191] = 5, + ACTIONS(10043), 1, + anon_sym_DOT, + STATE(7931), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [196216] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10046), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9371), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196245] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8859), 1, + sym_parameter, + STATE(9647), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196274] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10048), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9292), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196303] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10050), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9484), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196332] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9288), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196361] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10054), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9407), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196390] = 5, + ACTIONS(10056), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [196415] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10059), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9301), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196444] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10061), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9409), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196473] = 7, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(10063), 1, + anon_sym_class, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4917), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196502] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10065), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9285), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196531] = 4, + ACTIONS(10067), 1, + anon_sym_DOT, + STATE(7976), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [196554] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10069), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9410), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196583] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10071), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9283), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196612] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10073), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9412), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196641] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(9428), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196670] = 7, + ACTIONS(9266), 1, + sym__alpha_identifier, + ACTIONS(9274), 1, + sym__backtick_identifier, + STATE(5651), 1, + sym_simple_identifier, + STATE(5659), 1, + sym__lexical_identifier, + STATE(5689), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9270), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196699] = 7, + ACTIONS(9474), 1, + sym__alpha_identifier, + ACTIONS(9482), 1, + sym__backtick_identifier, + STATE(7287), 1, + sym_simple_identifier, + STATE(7354), 1, + sym__lexical_identifier, + STATE(7549), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9480), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196728] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(8932), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196757] = 7, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(10075), 1, + anon_sym_class, + STATE(840), 1, + sym__lexical_identifier, + STATE(1104), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196786] = 7, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(10077), 1, + anon_sym_class, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3937), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196815] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(7963), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196844] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(8959), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196873] = 7, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(10079), 1, + anon_sym_class, + STATE(840), 1, + sym__lexical_identifier, + STATE(1091), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196902] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(9534), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196931] = 7, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4692), 1, + sym_simple_identifier, + STATE(4888), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196960] = 7, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + sym__backtick_identifier, + STATE(5709), 1, + sym__lexical_identifier, + STATE(5730), 1, + sym_simple_identifier, + STATE(5764), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9438), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [196989] = 4, + ACTIONS(9183), 1, + anon_sym_LT, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 10, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [197012] = 4, + ACTIONS(10081), 1, + anon_sym_DOT, + STATE(7964), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [197035] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10084), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9260), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197064] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10086), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9495), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197093] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10088), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9263), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197122] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10090), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9265), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197151] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10092), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9503), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197180] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10094), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9319), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197209] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(6620), 1, + sym__simple_user_type, + STATE(6638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197238] = 7, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + STATE(4573), 1, + sym_simple_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4611), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197267] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(9850), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197296] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10096), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9323), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197325] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10098), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9516), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197354] = 4, + ACTIONS(10100), 1, + anon_sym_DOT, + STATE(7964), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [197377] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10102), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9331), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197406] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10104), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9344), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197435] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10106), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9353), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197464] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10108), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9358), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197493] = 5, + ACTIONS(10110), 1, + anon_sym_DOT, + STATE(7942), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [197518] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10113), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9392), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197547] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10115), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9380), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197576] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10117), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9310), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197605] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10119), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9512), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197634] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10121), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9365), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197663] = 5, + ACTIONS(10123), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [197688] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10126), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9150), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197717] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10128), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9368), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197746] = 5, + ACTIONS(10130), 1, + anon_sym_DOT, + STATE(7987), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [197771] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10133), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9379), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197800] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10135), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9397), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197829] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10137), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9149), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197858] = 7, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(10139), 1, + anon_sym_class, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3522), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197887] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10141), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9381), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197916] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10143), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9325), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197945] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10145), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9450), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197974] = 5, + ACTIONS(10147), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [197999] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(8952), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198028] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10150), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9502), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198057] = 7, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + ACTIONS(10152), 1, + anon_sym_class, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3952), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198086] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10154), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9454), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198115] = 5, + ACTIONS(10156), 1, + anon_sym_DOT, + STATE(7998), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198140] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10159), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9474), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198169] = 7, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(5754), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198198] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10161), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9499), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198227] = 7, + ACTIONS(9464), 1, + sym__alpha_identifier, + ACTIONS(9472), 1, + sym__backtick_identifier, + STATE(7329), 1, + sym_simple_identifier, + STATE(7548), 1, + sym__lexical_identifier, + STATE(7774), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9470), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198256] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10163), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9320), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198285] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10165), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9490), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198314] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10167), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9497), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198343] = 5, + ACTIONS(10169), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198368] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10172), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9487), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198397] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10174), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9415), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198426] = 5, + ACTIONS(10176), 1, + anon_sym_DOT, + STATE(8011), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198451] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10179), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9372), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198480] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10181), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9211), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198509] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10183), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9485), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198538] = 7, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(10185), 1, + anon_sym_class, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5163), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198567] = 5, + ACTIONS(10187), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198592] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10190), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9479), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198621] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10192), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9179), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198650] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10194), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9316), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198679] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10196), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9475), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198708] = 5, + ACTIONS(10198), 1, + anon_sym_DOT, + STATE(8019), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198733] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 4, + anon_sym_DOT, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4287), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [198754] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10201), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9509), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198783] = 7, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8552), 1, + sym__import_identifier, + STATE(8958), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198812] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10203), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9471), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198841] = 7, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8957), 1, + sym_simple_identifier, + STATE(9241), 1, + sym_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198870] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(8978), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198899] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10205), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9469), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198928] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(9022), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198957] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10207), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9467), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198986] = 5, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(7236), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7108), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199011] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10212), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9416), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199040] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10214), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9309), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199069] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10216), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9465), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199098] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10218), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9389), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199127] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10220), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9391), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199156] = 7, + ACTIONS(1684), 1, + sym__alpha_identifier, + ACTIONS(1748), 1, + sym__backtick_identifier, + STATE(5415), 1, + sym_simple_identifier, + STATE(5481), 1, + sym__lexical_identifier, + STATE(5599), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3052), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199185] = 7, + ACTIONS(9288), 1, + sym__alpha_identifier, + ACTIONS(9294), 1, + sym__backtick_identifier, + STATE(5735), 1, + sym__lexical_identifier, + STATE(5836), 1, + sym_simple_identifier, + STATE(5872), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9292), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199214] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10222), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9184), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199243] = 5, + ACTIONS(10224), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199268] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10227), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9154), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199297] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10229), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9151), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199326] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10231), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9354), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199355] = 5, + ACTIONS(10233), 1, + anon_sym_DOT, + STATE(8054), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199380] = 5, + ACTIONS(10236), 1, + anon_sym_DOT, + STATE(8050), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199405] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10239), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9304), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199434] = 5, + ACTIONS(10241), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199459] = 5, + ACTIONS(10244), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199484] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10247), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9396), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199513] = 7, + ACTIONS(9486), 1, + sym__alpha_identifier, + ACTIONS(9494), 1, + sym__backtick_identifier, + STATE(5871), 1, + sym_simple_identifier, + STATE(5892), 1, + sym__lexical_identifier, + STATE(5932), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9492), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199542] = 5, + ACTIONS(10249), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199567] = 5, + ACTIONS(10252), 1, + anon_sym_DOT, + STATE(8043), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199592] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10255), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9423), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199621] = 5, + ACTIONS(10257), 1, + anon_sym_DOT, + STATE(8058), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199646] = 5, + ACTIONS(10260), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199671] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8646), 1, + sym_simple_identifier, + STATE(8975), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199700] = 5, + ACTIONS(10263), 1, + anon_sym_DOT, + STATE(8066), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199725] = 7, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(847), 1, + sym_simple_identifier, + STATE(859), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199754] = 7, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(2861), 1, + sym_simple_identifier, + STATE(2908), 1, + sym__lexical_identifier, + STATE(3073), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9280), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199783] = 7, + ACTIONS(9500), 1, + sym__alpha_identifier, + ACTIONS(9508), 1, + sym__backtick_identifier, + STATE(7203), 1, + sym_simple_identifier, + STATE(7265), 1, + sym__lexical_identifier, + STATE(7309), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9506), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199812] = 7, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4575), 1, + sym_simple_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(4621), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199841] = 7, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + STATE(2799), 1, + sym_simple_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2905), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199870] = 5, + ACTIONS(10266), 1, + anon_sym_DOT, + STATE(6639), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4113), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [199895] = 7, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + STATE(2922), 1, + sym__lexical_identifier, + STATE(2981), 1, + sym_simple_identifier, + STATE(3000), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199924] = 7, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + ACTIONS(10269), 1, + anon_sym_DOT, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9395), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199953] = 7, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(10271), 1, + anon_sym_class, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3294), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199982] = 7, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(10273), 1, + anon_sym_class, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3120), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200011] = 7, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + STATE(3325), 1, + sym_simple_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3545), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200040] = 7, + ACTIONS(9250), 1, + sym__alpha_identifier, + ACTIONS(9254), 1, + sym__backtick_identifier, + STATE(5733), 1, + sym_simple_identifier, + STATE(5748), 1, + sym__lexical_identifier, + STATE(5754), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9252), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200069] = 7, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + ACTIONS(10275), 1, + anon_sym_class, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4759), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200098] = 5, + ACTIONS(10277), 1, + anon_sym_DOT, + STATE(8051), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4120), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [200123] = 7, + ACTIONS(9301), 1, + sym__alpha_identifier, + ACTIONS(9307), 1, + sym__backtick_identifier, + STATE(8378), 1, + sym_simple_identifier, + STATE(8382), 1, + sym__lexical_identifier, + STATE(8446), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9303), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200152] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9471), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200178] = 10, + ACTIONS(10280), 1, + anon_sym_typealias, + ACTIONS(10284), 1, + anon_sym_enum, + ACTIONS(10286), 1, + anon_sym_object, + ACTIONS(10288), 1, + anon_sym_fun, + ACTIONS(10290), 1, + anon_sym_get, + ACTIONS(10292), 1, + anon_sym_set, + STATE(6192), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10282), 2, + anon_sym_class, + anon_sym_interface, + [200212] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2235), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200238] = 4, + ACTIONS(10300), 1, + anon_sym_DOT, + STATE(6647), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + anon_sym_while, + [200260] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9319), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200286] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8603), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200312] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9313), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200338] = 6, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4586), 1, + sym__lexical_identifier, + STATE(5226), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200364] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9491), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200390] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9263), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200416] = 6, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5652), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200442] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9497), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200468] = 10, + ACTIONS(10302), 1, + anon_sym_typealias, + ACTIONS(10306), 1, + anon_sym_enum, + ACTIONS(10308), 1, + anon_sym_object, + ACTIONS(10310), 1, + anon_sym_fun, + ACTIONS(10312), 1, + anon_sym_get, + ACTIONS(10314), 1, + anon_sym_set, + STATE(6321), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10304), 2, + anon_sym_class, + anon_sym_interface, + [200502] = 4, + ACTIONS(9978), 1, + sym__quest, + STATE(6783), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4297), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_while, + [200524] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9260), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200550] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2237), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200576] = 6, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + sym__backtick_identifier, + STATE(5528), 1, + sym_simple_identifier, + STATE(5709), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9438), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200602] = 4, + ACTIONS(10316), 1, + anon_sym_DOT, + STATE(8177), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [200624] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9415), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200650] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2239), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200676] = 10, + ACTIONS(10318), 1, + anon_sym_typealias, + ACTIONS(10322), 1, + anon_sym_enum, + ACTIONS(10324), 1, + anon_sym_object, + ACTIONS(10326), 1, + anon_sym_fun, + ACTIONS(10328), 1, + anon_sym_get, + ACTIONS(10330), 1, + anon_sym_set, + STATE(6397), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10320), 2, + anon_sym_class, + anon_sym_interface, + [200710] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2441), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200736] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9056), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200762] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9328), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200788] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1344), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200814] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9259), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200840] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1348), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200866] = 10, + ACTIONS(10332), 1, + anon_sym_typealias, + ACTIONS(10336), 1, + anon_sym_enum, + ACTIONS(10338), 1, + anon_sym_object, + ACTIONS(10340), 1, + anon_sym_fun, + ACTIONS(10342), 1, + anon_sym_get, + ACTIONS(10344), 1, + anon_sym_set, + STATE(6001), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10334), 2, + anon_sym_class, + anon_sym_interface, + [200900] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2249), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200926] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1351), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [200952] = 10, + ACTIONS(10332), 1, + anon_sym_typealias, + ACTIONS(10348), 1, + anon_sym_enum, + ACTIONS(10350), 1, + anon_sym_object, + ACTIONS(10352), 1, + anon_sym_fun, + ACTIONS(10354), 1, + anon_sym_get, + ACTIONS(10356), 1, + anon_sym_set, + STATE(6344), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10346), 2, + anon_sym_class, + anon_sym_interface, + [200986] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2282), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201012] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9484), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201038] = 6, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5074), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201064] = 10, + ACTIONS(10364), 1, + anon_sym_typealias, + ACTIONS(10368), 1, + anon_sym_enum, + ACTIONS(10370), 1, + anon_sym_object, + ACTIONS(10372), 1, + anon_sym_fun, + ACTIONS(10374), 1, + anon_sym_get, + ACTIONS(10376), 1, + anon_sym_set, + STATE(6325), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10366), 2, + anon_sym_class, + anon_sym_interface, + [201098] = 6, + ACTIONS(10378), 1, + sym__alpha_identifier, + ACTIONS(10382), 1, + sym__backtick_identifier, + STATE(2227), 1, + sym_simple_identifier, + STATE(3728), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10380), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201124] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1354), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201150] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9988), 3, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9986), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [201170] = 6, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5233), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201196] = 6, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(4649), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201222] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9500), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201248] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9033), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201274] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2338), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201300] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8998), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201326] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2618), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201352] = 10, + ACTIONS(10384), 1, + anon_sym_typealias, + ACTIONS(10388), 1, + anon_sym_enum, + ACTIONS(10390), 1, + anon_sym_object, + ACTIONS(10392), 1, + anon_sym_fun, + ACTIONS(10394), 1, + anon_sym_get, + ACTIONS(10396), 1, + anon_sym_set, + STATE(6391), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10386), 2, + anon_sym_class, + anon_sym_interface, + [201386] = 10, + ACTIONS(10332), 1, + anon_sym_typealias, + ACTIONS(10400), 1, + anon_sym_enum, + ACTIONS(10402), 1, + anon_sym_object, + ACTIONS(10404), 1, + anon_sym_fun, + ACTIONS(10406), 1, + anon_sym_get, + ACTIONS(10408), 1, + anon_sym_set, + STATE(5997), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10398), 2, + anon_sym_class, + anon_sym_interface, + [201420] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9463), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201446] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2661), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201472] = 10, + ACTIONS(1618), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(1698), 1, + anon_sym_LPAREN, + ACTIONS(10410), 1, + sym_label, + STATE(801), 1, + sym_value_arguments, + STATE(1051), 1, + sym_lambda_literal, + STATE(1064), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8385), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [201506] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9230), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201532] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2277), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201558] = 6, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + sym__backtick_identifier, + STATE(5485), 1, + sym_simple_identifier, + STATE(5709), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9438), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201584] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2640), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201610] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2672), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201636] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9211), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201662] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2681), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201688] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2436), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201714] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2639), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201740] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(610), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201766] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(604), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201792] = 10, + ACTIONS(10364), 1, + anon_sym_typealias, + ACTIONS(10420), 1, + anon_sym_enum, + ACTIONS(10422), 1, + anon_sym_object, + ACTIONS(10424), 1, + anon_sym_fun, + ACTIONS(10426), 1, + anon_sym_get, + ACTIONS(10428), 1, + anon_sym_set, + STATE(5996), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10418), 2, + anon_sym_class, + anon_sym_interface, + [201826] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9152), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201852] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(588), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201878] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2692), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201904] = 6, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + STATE(2922), 1, + sym__lexical_identifier, + STATE(4292), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201930] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9396), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201956] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2576), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201982] = 6, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + STATE(4657), 1, + sym__lexical_identifier, + STATE(4947), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202008] = 6, + ACTIONS(10378), 1, + sym__alpha_identifier, + ACTIONS(10382), 1, + sym__backtick_identifier, + STATE(2234), 1, + sym_simple_identifier, + STATE(3728), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10380), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202034] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8432), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202060] = 10, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym_LPAREN, + ACTIONS(6710), 1, + sym_label, + STATE(4568), 1, + sym_value_arguments, + STATE(4766), 1, + sym_lambda_literal, + STATE(4892), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8406), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [202094] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9179), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202120] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(599), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202146] = 10, + ACTIONS(10318), 1, + anon_sym_typealias, + ACTIONS(10432), 1, + anon_sym_enum, + ACTIONS(10434), 1, + anon_sym_object, + ACTIONS(10436), 1, + anon_sym_fun, + ACTIONS(10438), 1, + anon_sym_get, + ACTIONS(10440), 1, + anon_sym_set, + STATE(6273), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10430), 2, + anon_sym_class, + anon_sym_interface, + [202180] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8847), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202206] = 10, + ACTIONS(1606), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(3632), 1, + anon_sym_LPAREN, + ACTIONS(3644), 1, + sym_label, + STATE(3060), 1, + sym_value_arguments, + STATE(3958), 1, + sym_annotated_lambda, + STATE(3983), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8401), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [202240] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2628), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202266] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9189), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202292] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9342), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202318] = 6, + ACTIONS(10442), 1, + sym__alpha_identifier, + ACTIONS(10446), 1, + sym__backtick_identifier, + STATE(8681), 1, + sym__lexical_identifier, + STATE(8785), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10444), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202344] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2629), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202370] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5463), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202396] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2443), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202422] = 4, + ACTIONS(10448), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [202444] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9151), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202470] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8969), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202496] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8878), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202522] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(443), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202548] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9410), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202574] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(565), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202600] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9344), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202626] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(562), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202652] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(566), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202678] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9103), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202704] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9414), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202730] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(542), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202756] = 10, + ACTIONS(10384), 1, + anon_sym_typealias, + ACTIONS(10453), 1, + anon_sym_enum, + ACTIONS(10455), 1, + anon_sym_object, + ACTIONS(10457), 1, + anon_sym_fun, + ACTIONS(10459), 1, + anon_sym_get, + ACTIONS(10461), 1, + anon_sym_set, + STATE(5998), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10451), 2, + anon_sym_class, + anon_sym_interface, + [202790] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9353), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202816] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9412), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202842] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(551), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202868] = 4, + ACTIONS(10463), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [202890] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9364), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202916] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9277), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202942] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9283), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202968] = 6, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(1438), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202994] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2258), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203020] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2423), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203046] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9285), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203072] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9408), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203098] = 6, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(4321), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203124] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(548), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203150] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2627), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203176] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(413), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203202] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9407), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203228] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(406), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203254] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2259), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203280] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9136), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203306] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(409), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203332] = 6, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + sym__backtick_identifier, + STATE(5479), 1, + sym_simple_identifier, + STATE(5709), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9438), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203358] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(547), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203384] = 6, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(2230), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203410] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(431), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203436] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9470), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203462] = 6, + ACTIONS(10378), 1, + sym__alpha_identifier, + ACTIONS(10382), 1, + sym__backtick_identifier, + STATE(2255), 1, + sym_simple_identifier, + STATE(3728), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10380), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203488] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9365), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203514] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(415), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203540] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(442), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203566] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(436), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203592] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9465), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203618] = 10, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(1864), 1, + anon_sym_LBRACE, + ACTIONS(4477), 1, + anon_sym_LPAREN, + ACTIONS(10465), 1, + sym_label, + STATE(2765), 1, + sym_value_arguments, + STATE(3107), 1, + sym_annotated_lambda, + STATE(3228), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8400), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [203652] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9354), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203678] = 10, + ACTIONS(10384), 1, + anon_sym_typealias, + ACTIONS(10469), 1, + anon_sym_enum, + ACTIONS(10471), 1, + anon_sym_object, + ACTIONS(10473), 1, + anon_sym_fun, + ACTIONS(10475), 1, + anon_sym_get, + ACTIONS(10477), 1, + anon_sym_set, + STATE(6173), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10467), 2, + anon_sym_class, + anon_sym_interface, + [203712] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(404), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203738] = 10, + ACTIONS(10479), 1, + anon_sym_typealias, + ACTIONS(10483), 1, + anon_sym_enum, + ACTIONS(10485), 1, + anon_sym_object, + ACTIONS(10487), 1, + anon_sym_fun, + ACTIONS(10489), 1, + anon_sym_get, + ACTIONS(10491), 1, + anon_sym_set, + STATE(6232), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10481), 2, + anon_sym_class, + anon_sym_interface, + [203772] = 10, + ACTIONS(10479), 1, + anon_sym_typealias, + ACTIONS(10495), 1, + anon_sym_enum, + ACTIONS(10497), 1, + anon_sym_object, + ACTIONS(10499), 1, + anon_sym_fun, + ACTIONS(10501), 1, + anon_sym_get, + ACTIONS(10503), 1, + anon_sym_set, + STATE(6176), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10493), 2, + anon_sym_class, + anon_sym_interface, + [203806] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(550), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203832] = 6, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(934), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203858] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(9638), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203884] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2430), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203910] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(425), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203936] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9287), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203962] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9288), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203988] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(435), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204014] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9406), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204040] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(611), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204066] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9292), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204092] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(9419), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204118] = 6, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(840), 1, + sym__lexical_identifier, + STATE(1188), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204144] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(416), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204170] = 10, + ACTIONS(10479), 1, + anon_sym_typealias, + ACTIONS(10507), 1, + anon_sym_enum, + ACTIONS(10509), 1, + anon_sym_object, + ACTIONS(10511), 1, + anon_sym_fun, + ACTIONS(10513), 1, + anon_sym_get, + ACTIONS(10515), 1, + anon_sym_set, + STATE(6212), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10505), 2, + anon_sym_class, + anon_sym_interface, + [204204] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9323), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204230] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9404), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204256] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9454), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204282] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(587), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204308] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9399), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204334] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9368), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204360] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9397), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204386] = 6, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3780), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204412] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9394), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204438] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9184), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204464] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9300), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204490] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(414), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204516] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9467), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204542] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1337), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204568] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(605), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204594] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9392), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204620] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9301), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204646] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(433), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204672] = 6, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(2968), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204698] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1334), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204724] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9391), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204750] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1333), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204776] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9304), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204802] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9388), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204828] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2620), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204854] = 10, + ACTIONS(10302), 1, + anon_sym_typealias, + ACTIONS(10519), 1, + anon_sym_enum, + ACTIONS(10521), 1, + anon_sym_object, + ACTIONS(10523), 1, + anon_sym_fun, + ACTIONS(10525), 1, + anon_sym_get, + ACTIONS(10527), 1, + anon_sym_set, + STATE(6304), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10517), 2, + anon_sym_class, + anon_sym_interface, + [204888] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5377), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204914] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(1331), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204940] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9416), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204966] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9274), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204992] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(593), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205018] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2245), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205044] = 10, + ACTIONS(10364), 1, + anon_sym_typealias, + ACTIONS(10531), 1, + anon_sym_enum, + ACTIONS(10533), 1, + anon_sym_object, + ACTIONS(10535), 1, + anon_sym_fun, + ACTIONS(10537), 1, + anon_sym_get, + ACTIONS(10539), 1, + anon_sym_set, + STATE(6083), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10529), 2, + anon_sym_class, + anon_sym_interface, + [205078] = 10, + ACTIONS(10479), 1, + anon_sym_typealias, + ACTIONS(10543), 1, + anon_sym_enum, + ACTIONS(10545), 1, + anon_sym_object, + ACTIONS(10547), 1, + anon_sym_fun, + ACTIONS(10549), 1, + anon_sym_get, + ACTIONS(10551), 1, + anon_sym_set, + STATE(6299), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10541), 2, + anon_sym_class, + anon_sym_interface, + [205112] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2267), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205138] = 6, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3233), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205164] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2221), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205190] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2223), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205216] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9381), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205242] = 10, + ACTIONS(10318), 1, + anon_sym_typealias, + ACTIONS(10555), 1, + anon_sym_enum, + ACTIONS(10557), 1, + anon_sym_object, + ACTIONS(10559), 1, + anon_sym_fun, + ACTIONS(10561), 1, + anon_sym_get, + ACTIONS(10563), 1, + anon_sym_set, + STATE(6436), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10553), 2, + anon_sym_class, + anon_sym_interface, + [205276] = 6, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(4090), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205302] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2241), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205328] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9296), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205354] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9475), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205380] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2266), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205406] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(438), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205432] = 6, + ACTIONS(9432), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + sym__backtick_identifier, + STATE(5499), 1, + sym_simple_identifier, + STATE(5709), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9438), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205458] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9316), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205484] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2247), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205510] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8772), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205536] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2257), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205562] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2321), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205588] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(10202), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205614] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9503), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205640] = 6, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + STATE(2922), 1, + sym__lexical_identifier, + STATE(3850), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205666] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9374), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205692] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2625), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205718] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2243), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205744] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9482), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205770] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8863), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205796] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2343), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205822] = 6, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + STATE(4657), 1, + sym__lexical_identifier, + STATE(5541), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1880), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205848] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9320), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205874] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9485), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205900] = 6, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(3704), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205926] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8849), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205952] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2217), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205978] = 10, + ACTIONS(9990), 1, + anon_sym_typealias, + ACTIONS(9994), 1, + anon_sym_enum, + ACTIONS(10002), 1, + anon_sym_object, + ACTIONS(10004), 1, + anon_sym_fun, + ACTIONS(10006), 1, + anon_sym_get, + ACTIONS(10008), 1, + anon_sym_set, + STATE(6446), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9992), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + [206012] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9516), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206038] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2623), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206064] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2341), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206090] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9487), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206116] = 10, + ACTIONS(10302), 1, + anon_sym_typealias, + ACTIONS(10567), 1, + anon_sym_enum, + ACTIONS(10569), 1, + anon_sym_object, + ACTIONS(10571), 1, + anon_sym_fun, + ACTIONS(10573), 1, + anon_sym_get, + ACTIONS(10575), 1, + anon_sym_set, + STATE(6145), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10565), 2, + anon_sym_class, + anon_sym_interface, + [206150] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2613), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206176] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2422), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206202] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2611), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206228] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2446), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206254] = 6, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + STATE(2801), 1, + sym__lexical_identifier, + STATE(3205), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1870), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206280] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9493), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206306] = 6, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5317), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206332] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9510), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206358] = 10, + ACTIONS(10302), 1, + anon_sym_typealias, + ACTIONS(10579), 1, + anon_sym_enum, + ACTIONS(10581), 1, + anon_sym_object, + ACTIONS(10583), 1, + anon_sym_fun, + ACTIONS(10585), 1, + anon_sym_get, + ACTIONS(10587), 1, + anon_sym_set, + STATE(6059), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10577), 2, + anon_sym_class, + anon_sym_interface, + [206392] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2434), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206418] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9499), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206444] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9024), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206470] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9008), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206496] = 6, + ACTIONS(10378), 1, + sym__alpha_identifier, + ACTIONS(10382), 1, + sym__backtick_identifier, + STATE(2253), 1, + sym_simple_identifier, + STATE(3728), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10380), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206522] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4688), 11, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [206540] = 10, + ACTIONS(1590), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3550), 1, + sym_label, + STATE(2798), 1, + sym_value_arguments, + STATE(3401), 1, + sym_annotated_lambda, + STATE(3507), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8389), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [206574] = 6, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(4019), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206600] = 6, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + STATE(2922), 1, + sym__lexical_identifier, + STATE(4118), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1596), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206626] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(7033), 1, + anon_sym_LPAREN, + ACTIONS(7037), 1, + sym_label, + STATE(4596), 1, + sym_value_arguments, + STATE(5209), 1, + sym_lambda_literal, + STATE(5243), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8395), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [206660] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9502), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206686] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9327), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206712] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2595), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206738] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2609), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206764] = 10, + ACTIONS(10589), 1, + anon_sym_typealias, + ACTIONS(10593), 1, + anon_sym_enum, + ACTIONS(10595), 1, + anon_sym_object, + ACTIONS(10597), 1, + anon_sym_fun, + ACTIONS(10599), 1, + anon_sym_get, + ACTIONS(10601), 1, + anon_sym_set, + STATE(6108), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10591), 2, + anon_sym_class, + anon_sym_interface, + [206798] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9511), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206824] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9149), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206850] = 10, + ACTIONS(10318), 1, + anon_sym_typealias, + ACTIONS(10605), 1, + anon_sym_enum, + ACTIONS(10607), 1, + anon_sym_object, + ACTIONS(10609), 1, + anon_sym_fun, + ACTIONS(10611), 1, + anon_sym_get, + ACTIONS(10613), 1, + anon_sym_set, + STATE(6177), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10603), 2, + anon_sym_class, + anon_sym_interface, + [206884] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9330), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206910] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8893), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206936] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2303), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206962] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9450), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206988] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8923), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207014] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9332), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207040] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8991), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207066] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2340), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207092] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8974), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207118] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2614), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207144] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9376), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207170] = 6, + ACTIONS(10358), 1, + sym__alpha_identifier, + ACTIONS(10362), 1, + sym__backtick_identifier, + STATE(2603), 1, + sym_simple_identifier, + STATE(3678), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10360), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207196] = 6, + ACTIONS(10412), 1, + sym__alpha_identifier, + ACTIONS(10416), 1, + sym__backtick_identifier, + STATE(445), 1, + sym_simple_identifier, + STATE(931), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10414), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207222] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9375), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207248] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9444), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207274] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8933), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207300] = 3, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + sym__quest, + anon_sym_in, + anon_sym_while, + [207320] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8904), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207346] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5410), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207372] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2599), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207398] = 6, + ACTIONS(423), 1, + sym__alpha_identifier, + ACTIONS(501), 1, + sym__backtick_identifier, + STATE(3360), 1, + sym__lexical_identifier, + STATE(4264), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207424] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9150), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207450] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2582), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207476] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(8942), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207502] = 4, + ACTIONS(9978), 1, + sym__quest, + STATE(6783), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_while, + [207524] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5740), 1, + sym__lexical_identifier, + STATE(8541), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207550] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2580), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207576] = 6, + ACTIONS(8585), 1, + sym__alpha_identifier, + ACTIONS(8615), 1, + sym__backtick_identifier, + STATE(6078), 1, + sym__lexical_identifier, + STATE(9587), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8595), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207602] = 10, + ACTIONS(10384), 1, + anon_sym_typealias, + ACTIONS(10617), 1, + anon_sym_enum, + ACTIONS(10619), 1, + anon_sym_object, + ACTIONS(10621), 1, + anon_sym_fun, + ACTIONS(10623), 1, + anon_sym_get, + ACTIONS(10625), 1, + anon_sym_set, + STATE(6448), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10615), 2, + anon_sym_class, + anon_sym_interface, + [207636] = 10, + ACTIONS(10364), 1, + anon_sym_typealias, + ACTIONS(10629), 1, + anon_sym_enum, + ACTIONS(10631), 1, + anon_sym_object, + ACTIONS(10633), 1, + anon_sym_fun, + ACTIONS(10635), 1, + anon_sym_get, + ACTIONS(10637), 1, + anon_sym_set, + STATE(6450), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10627), 2, + anon_sym_class, + anon_sym_interface, + [207670] = 6, + ACTIONS(209), 1, + sym__alpha_identifier, + ACTIONS(289), 1, + sym__backtick_identifier, + STATE(4581), 1, + sym__lexical_identifier, + STATE(5603), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1802), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207696] = 10, + ACTIONS(10332), 1, + anon_sym_typealias, + ACTIONS(10641), 1, + anon_sym_enum, + ACTIONS(10643), 1, + anon_sym_object, + ACTIONS(10645), 1, + anon_sym_fun, + ACTIONS(10647), 1, + anon_sym_get, + ACTIONS(10649), 1, + anon_sym_set, + STATE(6233), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9998), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10639), 2, + anon_sym_class, + anon_sym_interface, + [207730] = 6, + ACTIONS(9240), 1, + sym__alpha_identifier, + ACTIONS(9248), 1, + sym__backtick_identifier, + STATE(5426), 1, + sym_simple_identifier, + STATE(5740), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9244), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207756] = 6, + ACTIONS(10294), 1, + sym__alpha_identifier, + ACTIONS(10298), 1, + sym__backtick_identifier, + STATE(2569), 1, + sym_simple_identifier, + STATE(3194), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10296), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [207782] = 4, + ACTIONS(10100), 1, + anon_sym_DOT, + STATE(7976), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + [207803] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4707), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207820] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4570), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207837] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4575), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207854] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4555), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207871] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10653), 2, + anon_sym_LBRACK, + sym__backtick_identifier, + ACTIONS(10651), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [207890] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4650), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207907] = 4, + ACTIONS(10463), 1, + anon_sym_DOT, + STATE(8177), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_while, + [207928] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4712), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207945] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4525), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207962] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 10, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [207979] = 3, + ACTIONS(9959), 1, + sym__backtick_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9957), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [207997] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208013] = 9, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10655), 1, + anon_sym_COLON, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(8453), 1, + sym_type_constraints, + STATE(9202), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208043] = 9, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10661), 1, + anon_sym_COLON, + STATE(8457), 1, + sym_type_constraints, + STATE(9324), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4094), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208073] = 9, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10663), 1, + anon_sym_COLON, + STATE(8459), 1, + sym_type_constraints, + STATE(9221), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208103] = 9, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10665), 1, + anon_sym_COLON, + STATE(8467), 1, + sym_type_constraints, + STATE(9489), 1, + sym__block, + STATE(9494), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4136), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208133] = 4, + ACTIONS(10667), 1, + anon_sym_LT, + STATE(8435), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208153] = 3, + ACTIONS(10669), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [208171] = 3, + ACTIONS(10671), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [208189] = 9, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10673), 1, + anon_sym_COLON, + STATE(8501), 1, + sym_type_constraints, + STATE(9175), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208219] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208235] = 3, + ACTIONS(10675), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [208253] = 3, + ACTIONS(10677), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [208271] = 7, + ACTIONS(1618), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(10679), 1, + sym_label, + STATE(1063), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208296] = 4, + ACTIONS(10681), 1, + anon_sym_DOT, + STATE(8391), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4115), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208315] = 8, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(8485), 1, + sym_type_constraints, + STATE(9242), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208342] = 3, + ACTIONS(10683), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 7, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + anon_sym_while, + [208359] = 7, + ACTIONS(1590), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(10685), 1, + sym_label, + STATE(3518), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208384] = 8, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(8500), 1, + sym_type_constraints, + STATE(9234), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4242), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208411] = 4, + ACTIONS(10687), 1, + anon_sym_DOT, + STATE(8391), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208430] = 6, + ACTIONS(9183), 1, + anon_sym_LT, + ACTIONS(10690), 1, + anon_sym_COLON, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4146), 3, + anon_sym_DOT, + anon_sym_AMP, + sym__quest, + [208453] = 9, + ACTIONS(4084), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10692), 1, + anon_sym_COLON, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8529), 1, + sym_type_constraints, + STATE(9595), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208482] = 5, + ACTIONS(9183), 1, + anon_sym_LT, + ACTIONS(10698), 1, + anon_sym_COLON, + STATE(6606), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4146), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP, + sym__quest, + [208503] = 7, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(10700), 1, + sym_label, + STATE(5241), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208528] = 8, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(8501), 1, + sym_type_constraints, + STATE(9175), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208555] = 9, + ACTIONS(4136), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(10702), 1, + anon_sym_COLON, + STATE(8587), 1, + sym_type_constraints, + STATE(9641), 1, + sym__block, + STATE(9726), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208584] = 5, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_by, + STATE(8637), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [208605] = 9, + ACTIONS(4152), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(10708), 1, + anon_sym_COLON, + STATE(8650), 1, + sym_type_constraints, + STATE(9641), 1, + sym__block, + STATE(9649), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208634] = 7, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(1864), 1, + anon_sym_LBRACE, + ACTIONS(10710), 1, + sym_label, + STATE(3104), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208659] = 7, + ACTIONS(1606), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(10712), 1, + sym_label, + STATE(3959), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208684] = 8, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(8459), 1, + sym_type_constraints, + STATE(9221), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208711] = 9, + ACTIONS(4094), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(10714), 1, + anon_sym_COLON, + STATE(8617), 1, + sym_type_constraints, + STATE(9641), 1, + sym__block, + STATE(9685), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208740] = 3, + ACTIONS(10716), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 7, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + anon_sym_while, + [208757] = 9, + ACTIONS(4142), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(10718), 1, + anon_sym_COLON, + STATE(8667), 1, + sym_type_constraints, + STATE(9628), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208786] = 7, + ACTIONS(1686), 1, + anon_sym_AT, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(10720), 1, + sym_label, + STATE(4879), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208811] = 8, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(8453), 1, + sym_type_constraints, + STATE(9202), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208838] = 7, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10722), 1, + anon_sym_COLON, + STATE(8823), 1, + sym_type_constraints, + STATE(9212), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208862] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208876] = 6, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(9718), 1, + anon_sym_LPAREN, + STATE(8610), 1, + sym_value_arguments, + STATE(9025), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10724), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [208898] = 5, + ACTIONS(9718), 1, + anon_sym_LPAREN, + ACTIONS(10726), 1, + anon_sym_by, + STATE(7236), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [208918] = 8, + ACTIONS(4242), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8605), 1, + sym_type_constraints, + STATE(9543), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208944] = 5, + ACTIONS(10728), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9900), 2, + anon_sym_LBRACE, + sym_label, + STATE(6151), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8413), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208964] = 3, + STATE(1973), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10731), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208980] = 7, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(8831), 1, + anon_sym_COLON, + STATE(8706), 1, + sym_type_constraints, + STATE(9430), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209004] = 7, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(10733), 1, + anon_sym_COLON, + STATE(8732), 1, + sym_type_constraints, + STATE(9163), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209028] = 3, + STATE(1693), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10735), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209044] = 3, + STATE(1804), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10737), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209060] = 7, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(10739), 1, + anon_sym_COLON, + STATE(8833), 1, + sym_type_constraints, + STATE(9462), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209084] = 8, + ACTIONS(4084), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8529), 1, + sym_type_constraints, + STATE(9595), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209110] = 3, + STATE(1596), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10741), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209126] = 3, + STATE(1916), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10743), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209142] = 3, + STATE(1998), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10745), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209158] = 3, + STATE(2072), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10747), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209174] = 3, + STATE(1539), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10749), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209190] = 3, + STATE(1917), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10751), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209206] = 3, + STATE(1791), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10753), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209222] = 3, + STATE(1464), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10755), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209238] = 3, + STATE(2031), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10757), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209254] = 3, + STATE(1588), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10759), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209270] = 8, + ACTIONS(4142), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8667), 1, + sym_type_constraints, + STATE(9628), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209296] = 6, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(9718), 1, + anon_sym_LPAREN, + STATE(8560), 1, + sym_value_arguments, + STATE(8926), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10761), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [209318] = 7, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(8849), 1, + anon_sym_COLON, + STATE(8755), 1, + sym_type_constraints, + STATE(9432), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209342] = 3, + STATE(1555), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10763), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209358] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [209372] = 3, + STATE(1763), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10765), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209388] = 3, + STATE(2118), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10767), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209404] = 3, + STATE(1865), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10769), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209420] = 8, + ACTIONS(4246), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8678), 1, + sym_type_constraints, + STATE(9527), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209446] = 8, + ACTIONS(4152), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8650), 1, + sym_type_constraints, + STATE(9641), 1, + sym__block, + STATE(9649), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209472] = 3, + STATE(2023), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10771), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209488] = 7, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(10773), 1, + anon_sym_COLON, + STATE(8770), 1, + sym_type_constraints, + STATE(9163), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209512] = 7, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8821), 1, + anon_sym_COLON, + STATE(8773), 1, + sym_type_constraints, + STATE(9187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209536] = 3, + STATE(1922), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10775), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209552] = 3, + STATE(1708), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10777), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209568] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [209582] = 7, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8764), 1, + anon_sym_COLON, + STATE(8684), 1, + sym_type_constraints, + STATE(9430), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209606] = 3, + STATE(1569), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10779), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209622] = 3, + STATE(1966), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10781), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209638] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4212), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [209652] = 3, + STATE(1751), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10783), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209668] = 3, + STATE(1622), 1, + sym__assignment_and_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10785), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209684] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9221), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209705] = 5, + ACTIONS(10787), 1, + anon_sym_AT, + ACTIONS(10789), 1, + anon_sym_val, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8488), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9208), 2, + sym__single_annotation, + sym__multi_annotation, + [209724] = 3, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + [209739] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10795), 1, + sym__string_end, + ACTIONS(10797), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209760] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9175), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209781] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4642), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [209794] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9234), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4242), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209815] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10797), 1, + sym_string_content, + ACTIONS(10799), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209836] = 6, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(8829), 1, + sym_type_constraints, + STATE(9193), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209857] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10797), 1, + sym_string_content, + ACTIONS(10801), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209878] = 7, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(10803), 1, + anon_sym_COLON, + STATE(9106), 1, + sym_type_constraints, + STATE(9566), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209901] = 7, + ACTIONS(3254), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(8917), 1, + anon_sym_COLON, + STATE(8968), 1, + sym_type_constraints, + STATE(9742), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209924] = 7, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8903), 1, + anon_sym_COLON, + STATE(9110), 1, + sym_type_constraints, + STATE(9639), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209947] = 4, + ACTIONS(10805), 1, + anon_sym_COMMA, + STATE(8477), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4441), 4, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + [209964] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9324), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4094), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209985] = 6, + ACTIONS(10807), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10810), 1, + anon_sym_DOLLAR, + ACTIONS(10813), 1, + sym__string_end, + ACTIONS(10815), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210006] = 6, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + STATE(8732), 1, + sym_type_constraints, + STATE(9163), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210027] = 6, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(8770), 1, + sym_type_constraints, + STATE(9163), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210048] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10818), 1, + sym__string_end, + ACTIONS(10820), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8460), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210069] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10797), 1, + sym_string_content, + ACTIONS(10822), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210090] = 4, + ACTIONS(10824), 1, + anon_sym_COMMA, + STATE(8473), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 4, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + [210107] = 6, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(8730), 1, + sym_type_constraints, + STATE(9159), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210128] = 6, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(8786), 1, + sym_type_constraints, + STATE(9192), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210149] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4674), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210162] = 4, + ACTIONS(10805), 1, + anon_sym_COMMA, + STATE(8473), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 4, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + [210179] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10827), 1, + sym__string_end, + ACTIONS(10829), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8505), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210200] = 6, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(8833), 1, + sym_type_constraints, + STATE(9462), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210221] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10831), 1, + sym__string_end, + ACTIONS(10833), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8456), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210242] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10797), 1, + sym_string_content, + ACTIONS(10835), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210263] = 6, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + STATE(8823), 1, + sym_type_constraints, + STATE(9212), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210284] = 6, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + STATE(8803), 1, + sym_type_constraints, + STATE(9193), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210305] = 4, + ACTIONS(10837), 1, + anon_sym_COMMA, + STATE(8484), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4559), 4, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210322] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9246), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4411), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210343] = 6, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + STATE(8825), 1, + sym_type_constraints, + STATE(9229), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210364] = 4, + ACTIONS(10681), 1, + anon_sym_DOT, + STATE(8386), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_in, + [210381] = 5, + ACTIONS(9900), 1, + anon_sym_val, + ACTIONS(10840), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8488), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9208), 2, + sym__single_annotation, + sym__multi_annotation, + [210400] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10843), 1, + sym__string_end, + ACTIONS(10845), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8462), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210421] = 7, + ACTIONS(4228), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10847), 1, + anon_sym_COLON, + STATE(9082), 1, + sym_type_constraints, + STATE(9618), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210444] = 6, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + STATE(8793), 1, + sym_type_constraints, + STATE(9239), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4392), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210465] = 7, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(10849), 1, + anon_sym_COLON, + STATE(9091), 1, + sym_type_constraints, + STATE(9566), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210488] = 6, + ACTIONS(8530), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(8828), 1, + sym_type_constraints, + STATE(9217), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210509] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10851), 1, + sym__string_end, + ACTIONS(10853), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8472), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210530] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10855), 1, + sym__string_end, + ACTIONS(10857), 1, + sym_string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8481), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210551] = 4, + ACTIONS(10859), 1, + anon_sym_COMMA, + STATE(8504), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4551), 4, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210568] = 3, + ACTIONS(10706), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [210583] = 6, + ACTIONS(8524), 1, + anon_sym_LBRACE, + ACTIONS(8530), 1, + anon_sym_where, + STATE(8826), 1, + sym_type_constraints, + STATE(9217), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210604] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4545), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210617] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9242), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210638] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9202), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210659] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5159), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [210672] = 7, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(8896), 1, + anon_sym_COLON, + STATE(9071), 1, + sym_type_constraints, + STATE(9704), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210695] = 4, + ACTIONS(10859), 1, + anon_sym_COMMA, + STATE(8484), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4529), 4, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210712] = 6, + ACTIONS(10791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10793), 1, + anon_sym_DOLLAR, + ACTIONS(10797), 1, + sym_string_content, + ACTIONS(10861), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8468), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [210733] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4533), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210746] = 7, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8901), 1, + anon_sym_COLON, + STATE(9004), 1, + sym_type_constraints, + STATE(9704), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210769] = 7, + ACTIONS(4250), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(10863), 1, + anon_sym_COLON, + STATE(8843), 1, + sym_type_constraints, + STATE(9712), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210792] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10865), 1, + anon_sym_COLON, + STATE(4784), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210812] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10867), 1, + anon_sym_COLON, + ACTIONS(10869), 1, + anon_sym_EQ, + STATE(3438), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210832] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10871), 1, + anon_sym_COLON, + STATE(9489), 1, + sym__block, + STATE(9496), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210852] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4642), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [210864] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(10875), 1, + aux_sym_character_literal_token1, + ACTIONS(10877), 1, + anon_sym_BSLASHu, + ACTIONS(10879), 1, + sym__escaped_identifier, + STATE(9755), 1, + sym_character_escape_seq, + STATE(9941), 1, + sym__uni_character_literal, + [210886] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4541), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210898] = 3, + ACTIONS(10726), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [210912] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4692), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [210924] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(10877), 1, + anon_sym_BSLASHu, + ACTIONS(10879), 1, + sym__escaped_identifier, + ACTIONS(10881), 1, + aux_sym_character_literal_token1, + STATE(9941), 1, + sym__uni_character_literal, + STATE(9943), 1, + sym_character_escape_seq, + [210946] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10883), 1, + anon_sym_COLON, + ACTIONS(10885), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4032), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210966] = 4, + ACTIONS(10887), 1, + anon_sym_COMMA, + STATE(8662), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4551), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [210982] = 5, + ACTIONS(10889), 1, + anon_sym_catch, + ACTIONS(10891), 1, + anon_sym_finally, + STATE(1060), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(832), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [211000] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(10877), 1, + anon_sym_BSLASHu, + ACTIONS(10879), 1, + sym__escaped_identifier, + ACTIONS(10893), 1, + aux_sym_character_literal_token1, + STATE(9564), 1, + sym_character_escape_seq, + STATE(9941), 1, + sym__uni_character_literal, + [211022] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [211034] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + ACTIONS(10895), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4055), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211054] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + ACTIONS(10897), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4067), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211074] = 6, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(10899), 1, + anon_sym_COLON, + STATE(5385), 1, + sym__block, + STATE(5455), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211094] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10901), 1, + anon_sym_COLON, + STATE(9317), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211114] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4638), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [211126] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(10877), 1, + anon_sym_BSLASHu, + ACTIONS(10879), 1, + sym__escaped_identifier, + ACTIONS(10903), 1, + aux_sym_character_literal_token1, + STATE(9664), 1, + sym_character_escape_seq, + STATE(9941), 1, + sym__uni_character_literal, + [211148] = 6, + ACTIONS(4242), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211168] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4700), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [211180] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10905), 1, + anon_sym_COLON, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1211), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211200] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + ACTIONS(10909), 1, + anon_sym_COLON, + STATE(1084), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211220] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + ACTIONS(10911), 1, + anon_sym_COLON, + STATE(1156), 1, + sym__block, + STATE(1194), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211240] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10913), 1, + anon_sym_COLON, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__block, + STATE(4862), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211260] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + ACTIONS(10917), 1, + anon_sym_COLON, + STATE(1067), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211280] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10919), 1, + anon_sym_COLON, + ACTIONS(10921), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4077), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211300] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + ACTIONS(10923), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4067), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211320] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [211332] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + ACTIONS(10925), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4055), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211352] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10927), 1, + anon_sym_COLON, + ACTIONS(10929), 1, + anon_sym_EQ, + STATE(3438), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211372] = 5, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(10931), 1, + anon_sym_COLON, + STATE(9483), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4425), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [211390] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + ACTIONS(10933), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4032), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211410] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10935), 1, + anon_sym_COLON, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3227), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211430] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(10939), 1, + anon_sym_COLON, + STATE(9157), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211450] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + ACTIONS(10941), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211470] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10943), 1, + anon_sym_COLON, + ACTIONS(10945), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5259), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211490] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + ACTIONS(10947), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211510] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [211522] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3271), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211542] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + ACTIONS(10951), 1, + anon_sym_COLON, + STATE(3232), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211562] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + ACTIONS(10953), 1, + anon_sym_COLON, + STATE(3457), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211582] = 6, + ACTIONS(10955), 1, + anon_sym_DOT, + ACTIONS(10957), 1, + anon_sym_as, + ACTIONS(10959), 1, + sym__automatic_semicolon, + STATE(9290), 1, + sym_import_alias, + STATE(9291), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211602] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [211614] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10961), 1, + anon_sym_COLON, + ACTIONS(10963), 1, + anon_sym_EQ, + STATE(4784), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211634] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(10877), 1, + anon_sym_BSLASHu, + ACTIONS(10879), 1, + sym__escaped_identifier, + ACTIONS(10965), 1, + aux_sym_character_literal_token1, + STATE(9635), 1, + sym_character_escape_seq, + STATE(9941), 1, + sym__uni_character_literal, + [211656] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + ACTIONS(10967), 1, + anon_sym_COLON, + STATE(3471), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211676] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10969), 1, + anon_sym_COLON, + ACTIONS(10971), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4077), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211696] = 5, + ACTIONS(10973), 1, + anon_sym_catch, + ACTIONS(10975), 1, + anon_sym_finally, + STATE(3963), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3254), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [211714] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + ACTIONS(10977), 1, + anon_sym_COLON, + STATE(5183), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211734] = 4, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(8872), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10979), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [211750] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_COLON, + ACTIONS(10983), 1, + anon_sym_EQ, + STATE(3438), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211770] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + ACTIONS(10985), 1, + anon_sym_COLON, + STATE(4836), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211790] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + ACTIONS(10987), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211810] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + ACTIONS(10989), 1, + anon_sym_COLON, + STATE(3457), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211830] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + ACTIONS(10991), 1, + anon_sym_COLON, + STATE(3471), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211850] = 6, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + STATE(9091), 1, + sym_type_constraints, + STATE(9566), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211870] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + ACTIONS(10993), 1, + anon_sym_COLON, + STATE(4822), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211890] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10995), 1, + anon_sym_COLON, + ACTIONS(10997), 1, + anon_sym_EQ, + STATE(4784), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211910] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + ACTIONS(10999), 1, + anon_sym_COLON, + STATE(4822), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211930] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + ACTIONS(11001), 1, + anon_sym_COLON, + STATE(4836), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211950] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + ACTIONS(11003), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4862), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211970] = 6, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(11005), 1, + anon_sym_COLON, + STATE(9641), 1, + sym__block, + STATE(9724), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211990] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + ACTIONS(11007), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4077), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212010] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4580), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [212022] = 4, + ACTIONS(11009), 1, + anon_sym_COMMA, + STATE(8575), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4559), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [212038] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + ACTIONS(11012), 1, + anon_sym_COLON, + STATE(4784), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212058] = 6, + ACTIONS(4392), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + STATE(9102), 1, + sym_type_constraints, + STATE(9522), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212078] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + ACTIONS(11014), 1, + anon_sym_COLON, + STATE(4836), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212098] = 6, + ACTIONS(4250), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(8843), 1, + sym_type_constraints, + STATE(9712), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212118] = 4, + ACTIONS(11016), 1, + anon_sym_COMMA, + STATE(8602), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4441), 3, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_while, + [212134] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + ACTIONS(11018), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4862), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212154] = 4, + ACTIONS(11020), 1, + anon_sym_DOT, + STATE(8386), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4122), 3, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [212170] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4545), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [212182] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(11022), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5259), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212202] = 5, + ACTIONS(11024), 1, + anon_sym_catch, + ACTIONS(11026), 1, + anon_sym_finally, + STATE(4738), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4572), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212220] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11028), 1, + anon_sym_COLON, + ACTIONS(11030), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1211), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212240] = 6, + ACTIONS(4094), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9641), 1, + sym__block, + STATE(9685), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212260] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11032), 1, + anon_sym_COLON, + ACTIONS(11034), 1, + anon_sym_EQ, + STATE(5183), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212280] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11036), 1, + anon_sym_COLON, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(3261), 1, + sym__block, + STATE(3271), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212300] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(11040), 1, + anon_sym_COLON, + STATE(5213), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212320] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + ACTIONS(11042), 1, + anon_sym_COLON, + STATE(5213), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212340] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + ACTIONS(11044), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4055), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212360] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(11046), 1, + anon_sym_COLON, + STATE(5183), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212380] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + ACTIONS(11048), 1, + anon_sym_COLON, + STATE(5224), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212400] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + ACTIONS(11050), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4032), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212420] = 5, + ACTIONS(11052), 1, + anon_sym_catch, + ACTIONS(11054), 1, + anon_sym_finally, + STATE(3515), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2886), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212438] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(11056), 1, + anon_sym_COLON, + STATE(4855), 1, + sym__block, + STATE(4862), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212458] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(11058), 1, + anon_sym_COLON, + STATE(4836), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212478] = 6, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(11060), 1, + anon_sym_COLON, + STATE(9641), 1, + sym__block, + STATE(9682), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212498] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(11062), 1, + anon_sym_COLON, + STATE(4822), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212518] = 6, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(11064), 1, + anon_sym_COLON, + STATE(9641), 1, + sym__block, + STATE(9674), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212538] = 4, + ACTIONS(11016), 1, + anon_sym_COMMA, + STATE(8642), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 3, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_while, + [212554] = 5, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11066), 1, + anon_sym_COLON, + STATE(9306), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4415), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [212572] = 6, + ACTIONS(4313), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9088), 1, + sym_type_constraints, + STATE(9653), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212592] = 6, + ACTIONS(4246), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9527), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212612] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + ACTIONS(11068), 1, + anon_sym_COLON, + STATE(5229), 1, + sym__block, + STATE(5259), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212632] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11070), 1, + anon_sym_COLON, + ACTIONS(11072), 1, + anon_sym_EQ, + STATE(1084), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212652] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4559), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [212664] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11074), 1, + anon_sym_COLON, + ACTIONS(11076), 1, + anon_sym_EQ, + STATE(3471), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212684] = 4, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(8926), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10761), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [212700] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4662), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [212712] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + ACTIONS(11078), 1, + anon_sym_COLON, + STATE(1156), 1, + sym__block, + STATE(1211), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212732] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + ACTIONS(11080), 1, + anon_sym_COLON, + STATE(3457), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212752] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + ACTIONS(11082), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212772] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + ACTIONS(11084), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212792] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + ACTIONS(11086), 1, + anon_sym_COLON, + STATE(3227), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212812] = 6, + ACTIONS(4152), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9641), 1, + sym__block, + STATE(9649), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212832] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(10877), 1, + anon_sym_BSLASHu, + ACTIONS(10879), 1, + sym__escaped_identifier, + ACTIONS(11088), 1, + aux_sym_character_literal_token1, + STATE(9938), 1, + sym_character_escape_seq, + STATE(9941), 1, + sym__uni_character_literal, + [212854] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [212866] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4674), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [212878] = 5, + ACTIONS(11090), 1, + anon_sym_catch, + ACTIONS(11092), 1, + anon_sym_finally, + STATE(3101), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2787), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212896] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + ACTIONS(11094), 1, + anon_sym_COLON, + STATE(3471), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212916] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + ACTIONS(11096), 1, + anon_sym_COLON, + STATE(3438), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212936] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4521), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [212948] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11098), 1, + anon_sym_COLON, + ACTIONS(11100), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5259), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212968] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + ACTIONS(11102), 1, + anon_sym_COLON, + STATE(5224), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212988] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(11104), 1, + anon_sym_COLON, + STATE(5224), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213008] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + ACTIONS(11106), 1, + anon_sym_COLON, + STATE(5213), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213028] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + ACTIONS(11108), 1, + anon_sym_COLON, + STATE(5183), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213048] = 6, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(11110), 1, + anon_sym_COLON, + STATE(9190), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213068] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11112), 1, + anon_sym_COLON, + ACTIONS(11114), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4032), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213088] = 5, + ACTIONS(11116), 1, + anon_sym_catch, + ACTIONS(11118), 1, + anon_sym_finally, + STATE(5235), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4646), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [213106] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + ACTIONS(11120), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4055), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213126] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + ACTIONS(11122), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4067), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213146] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + ACTIONS(11124), 1, + anon_sym_COLON, + STATE(3232), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213166] = 6, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9106), 1, + sym_type_constraints, + STATE(9566), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213186] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [213198] = 6, + ACTIONS(4388), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + STATE(8976), 1, + sym_type_constraints, + STATE(9606), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213218] = 6, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + ACTIONS(11126), 1, + anon_sym_COLON, + STATE(9636), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213238] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + ACTIONS(11128), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4077), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213258] = 6, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(11130), 1, + anon_sym_COLON, + STATE(5385), 1, + sym__block, + STATE(5396), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213278] = 4, + ACTIONS(11132), 1, + anon_sym_COMMA, + STATE(8642), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4375), 3, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_while, + [213294] = 6, + ACTIONS(4384), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(8986), 1, + sym_type_constraints, + STATE(9521), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213314] = 6, + ACTIONS(4309), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9121), 1, + sym_type_constraints, + STATE(9634), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213334] = 6, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(11135), 1, + anon_sym_COLON, + STATE(5368), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213354] = 3, + ACTIONS(10690), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4100), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [213368] = 6, + ACTIONS(4365), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + STATE(9125), 1, + sym_type_constraints, + STATE(9633), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213388] = 6, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + ACTIONS(11137), 1, + anon_sym_COLON, + STATE(3976), 1, + sym__block, + STATE(4067), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213408] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11139), 1, + anon_sym_COLON, + ACTIONS(11141), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1211), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213428] = 6, + ACTIONS(4142), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9628), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213448] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + ACTIONS(11143), 1, + anon_sym_COLON, + STATE(1084), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213468] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + ACTIONS(11145), 1, + anon_sym_COLON, + STATE(1156), 1, + sym__block, + STATE(1194), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213488] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + ACTIONS(11147), 1, + anon_sym_COLON, + STATE(1067), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213508] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4680), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_in, + [213520] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + ACTIONS(11149), 1, + anon_sym_COLON, + STATE(5224), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213540] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(11151), 1, + anon_sym_COLON, + STATE(3232), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213560] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + ACTIONS(11153), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213580] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(11155), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3271), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213600] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(11157), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213620] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(11159), 1, + anon_sym_COLON, + STATE(3227), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213640] = 6, + ACTIONS(4365), 1, + anon_sym_while, + ACTIONS(8632), 1, + anon_sym_where, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9092), 1, + sym_type_constraints, + STATE(9633), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213660] = 4, + ACTIONS(10887), 1, + anon_sym_COMMA, + STATE(8575), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4529), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213676] = 6, + ACTIONS(4228), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + STATE(9082), 1, + sym_type_constraints, + STATE(9618), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213696] = 6, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(11161), 1, + anon_sym_COLON, + STATE(5385), 1, + sym__block, + STATE(5421), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213716] = 6, + ACTIONS(4384), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + ACTIONS(8632), 1, + anon_sym_where, + STATE(8889), 1, + sym_type_constraints, + STATE(9521), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213736] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4533), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213748] = 6, + ACTIONS(4084), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9595), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213768] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + ACTIONS(11163), 1, + anon_sym_COLON, + STATE(1067), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213788] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11165), 1, + anon_sym_COLON, + ACTIONS(11167), 1, + anon_sym_EQ, + STATE(3227), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213808] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + ACTIONS(11169), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3288), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213828] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + ACTIONS(11171), 1, + anon_sym_COLON, + STATE(1156), 1, + sym__block, + STATE(1194), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213848] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + ACTIONS(11173), 1, + anon_sym_COLON, + STATE(3261), 1, + sym__block, + STATE(3271), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213868] = 6, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + ACTIONS(11175), 1, + anon_sym_COLON, + STATE(3232), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213888] = 6, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + ACTIONS(11177), 1, + anon_sym_COLON, + STATE(4822), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213908] = 6, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + ACTIONS(11179), 1, + anon_sym_COLON, + STATE(3457), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213928] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + ACTIONS(11181), 1, + anon_sym_COLON, + STATE(1084), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213948] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + ACTIONS(11183), 1, + anon_sym_COLON, + STATE(1067), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213968] = 6, + ACTIONS(4411), 1, + anon_sym_while, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9539), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213988] = 6, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + ACTIONS(11185), 1, + anon_sym_COLON, + STATE(5213), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214008] = 6, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + ACTIONS(11187), 1, + anon_sym_COLON, + STATE(1156), 1, + sym__block, + STATE(1194), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214028] = 3, + ACTIONS(3942), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3947), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [214041] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(1147), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214058] = 3, + ACTIONS(4156), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4158), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [214071] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9163), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214086] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4962), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [214097] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1186), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214114] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1183), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214131] = 5, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5387), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214148] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + STATE(1147), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214165] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + STATE(3147), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214182] = 5, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(11189), 1, + anon_sym_COLON, + ACTIONS(11191), 1, + sym__automatic_semicolon, + STATE(9756), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214199] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4580), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [214210] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + STATE(3147), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214227] = 5, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9612), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214244] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + STATE(3177), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214261] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + STATE(3177), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214278] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + STATE(3198), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214295] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(8185), 1, + anon_sym_EQ, + STATE(3261), 1, + sym__block, + STATE(3291), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214312] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + STATE(1147), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214329] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1183), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214346] = 5, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9624), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214363] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1186), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214380] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1186), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214397] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + STATE(3198), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214414] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4521), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [214425] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9163), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214440] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_EQ, + STATE(3261), 1, + sym__block, + STATE(3291), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214457] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + anon_sym_EQ, + STATE(1135), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214474] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + STATE(3864), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214491] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9187), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214506] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9188), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4517), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214521] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1183), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214538] = 5, + ACTIONS(11193), 1, + anon_sym_RBRACE, + ACTIONS(11195), 1, + sym__automatic_semicolon, + STATE(283), 1, + sym__semi, + STATE(8713), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214555] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4026), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214572] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5267), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214589] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + STATE(5145), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214606] = 5, + ACTIONS(4415), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(11198), 1, + anon_sym_COLON, + STATE(9722), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214623] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4020), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214640] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + STATE(5158), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214657] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(11114), 1, + anon_sym_EQ, + STATE(3933), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214674] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_EQ, + STATE(5195), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214691] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + STATE(3417), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214708] = 5, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5424), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214725] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(4776), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214742] = 4, + ACTIONS(11202), 1, + anon_sym_COMMA, + STATE(8735), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11200), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [214757] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + STATE(3427), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214774] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + STATE(3432), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214791] = 5, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9641), 1, + sym__block, + STATE(9648), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214808] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, + anon_sym_EQ, + STATE(3444), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214825] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9192), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214840] = 5, + ACTIONS(10694), 1, + anon_sym_EQ, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(9551), 1, + sym_function_body, + STATE(9641), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214857] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9193), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214872] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9430), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214887] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + STATE(1147), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214904] = 4, + ACTIONS(11204), 1, + anon_sym_COMMA, + STATE(8800), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8957), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [214919] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + STATE(3864), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214936] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11030), 1, + anon_sym_EQ, + STATE(1135), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214953] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(11072), 1, + anon_sym_EQ, + STATE(1135), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214970] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(3147), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214987] = 5, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11206), 1, + anon_sym_COLON, + ACTIONS(11208), 1, + sym__automatic_semicolon, + STATE(10152), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215004] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(3177), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215021] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + STATE(4755), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215038] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(3198), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215055] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4662), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [215066] = 5, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5371), 1, + sym_function_body, + STATE(5385), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215083] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + STATE(4776), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215100] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(3261), 1, + sym__block, + STATE(3291), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215117] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4541), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [215128] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + STATE(4803), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215145] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5267), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215162] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + STATE(5145), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215179] = 5, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9204), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215196] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + STATE(5158), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215213] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + anon_sym_EQ, + STATE(5195), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215230] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9462), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215245] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + STATE(5195), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215262] = 5, + ACTIONS(11210), 1, + anon_sym_RBRACE, + ACTIONS(11212), 1, + sym__automatic_semicolon, + STATE(281), 1, + sym__semi, + STATE(8799), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215279] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4026), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215296] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9430), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215311] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + STATE(5158), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215328] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + STATE(5145), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215345] = 5, + ACTIONS(8185), 1, + anon_sym_EQ, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(5385), 1, + sym__block, + STATE(5447), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215362] = 5, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9176), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215379] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4020), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215396] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + STATE(3444), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215413] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + STATE(5195), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215430] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(11034), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5267), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215447] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4700), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [215458] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4692), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [215469] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9193), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215484] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_EQ, + STATE(3933), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215501] = 5, + ACTIONS(4425), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + ACTIONS(11214), 1, + anon_sym_COLON, + STATE(9717), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215518] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9212), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215533] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + STATE(3417), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215550] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9347), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4537), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215565] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4559), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [215576] = 5, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9220), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215593] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + STATE(4803), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215610] = 4, + ACTIONS(11216), 1, + anon_sym_import, + ACTIONS(11219), 1, + sym__import_list_delimiter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8779), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [215625] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + STATE(4776), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215642] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + STATE(4755), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215659] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10694), 1, + anon_sym_EQ, + STATE(4743), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215676] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__block, + STATE(5267), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215693] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + STATE(4803), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215710] = 3, + ACTIONS(11223), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11221), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [215723] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9214), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4584), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215738] = 4, + ACTIONS(11225), 1, + anon_sym_LPAREN, + STATE(9213), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7110), 2, + anon_sym_AT, + anon_sym_val, + [215753] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9432), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215768] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(4803), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215785] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + STATE(5145), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215802] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + STATE(4776), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215819] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + STATE(4755), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215836] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9245), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215851] = 4, + ACTIONS(11227), 1, + anon_sym_import, + ACTIONS(11229), 1, + sym__import_list_delimiter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8779), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [215866] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + STATE(3444), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215883] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10963), 1, + anon_sym_EQ, + STATE(4743), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215900] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + STATE(3427), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215917] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + STATE(3432), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215934] = 5, + ACTIONS(1602), 1, + anon_sym_RBRACE, + ACTIONS(11231), 1, + sym__automatic_semicolon, + STATE(282), 1, + sym__semi, + STATE(8713), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215951] = 4, + ACTIONS(11235), 1, + anon_sym_COMMA, + STATE(8800), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11233), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [215966] = 3, + ACTIONS(10669), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym__quest, + [215979] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + STATE(3427), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215996] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9217), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216011] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + STATE(3864), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216028] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(4743), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216045] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10983), 1, + anon_sym_EQ, + STATE(3417), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216062] = 5, + ACTIONS(8198), 1, + anon_sym_LBRACE, + ACTIONS(10945), 1, + anon_sym_EQ, + STATE(5158), 1, + sym_function_body, + STATE(5229), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216079] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + STATE(3432), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216096] = 5, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11238), 1, + anon_sym_COLON, + ACTIONS(11240), 1, + sym__automatic_semicolon, + STATE(10187), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216113] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4453), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [216124] = 5, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(11242), 1, + anon_sym_COLON, + ACTIONS(11244), 1, + sym__automatic_semicolon, + STATE(10186), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216141] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4026), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216158] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4026), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216175] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + STATE(3933), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216192] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4020), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216209] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3261), 1, + sym__block, + STATE(3291), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216226] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3198), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216243] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + STATE(3976), 1, + sym__block, + STATE(4020), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216260] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3177), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216277] = 5, + ACTIONS(6416), 1, + anon_sym_LBRACE, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3147), 1, + sym_function_body, + STATE(3261), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216294] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4638), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [216305] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10997), 1, + anon_sym_EQ, + STATE(4743), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216322] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9229), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216337] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1183), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216354] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9239), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4392), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216369] = 4, + ACTIONS(8524), 1, + anon_sym_LBRACE, + STATE(9194), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4634), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216384] = 5, + ACTIONS(10657), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9231), 1, + sym_function_body, + STATE(9489), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216401] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9194), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4634), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216416] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9217), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216431] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10885), 1, + anon_sym_EQ, + STATE(3933), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216448] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(1156), 1, + sym__block, + STATE(1186), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216465] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5097), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [216476] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(9159), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216491] = 5, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(10907), 1, + anon_sym_EQ, + STATE(1135), 1, + sym_function_body, + STATE(1156), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216508] = 3, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11246), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [216521] = 5, + ACTIONS(6694), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, + anon_sym_EQ, + STATE(3864), 1, + sym_function_body, + STATE(3976), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216538] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + STATE(3417), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216555] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + STATE(3427), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216572] = 5, + ACTIONS(8118), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_EQ, + STATE(4755), 1, + sym_function_body, + STATE(4855), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216589] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_EQ, + STATE(3444), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216606] = 5, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(10929), 1, + anon_sym_EQ, + STATE(3432), 1, + sym_function_body, + STATE(3620), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216623] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11250), 1, + sym__automatic_semicolon, + STATE(10087), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216637] = 4, + ACTIONS(4313), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9653), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216651] = 3, + STATE(5164), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216663] = 4, + ACTIONS(11252), 1, + anon_sym_LBRACE, + ACTIONS(11254), 1, + anon_sym_LPAREN, + STATE(10121), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216677] = 3, + STATE(3128), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216689] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11256), 1, + anon_sym_EQ, + STATE(10160), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216703] = 3, + STATE(5289), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216715] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11258), 1, + anon_sym_EQ, + STATE(10130), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216729] = 4, + ACTIONS(9394), 1, + anon_sym_RPAREN, + ACTIONS(11260), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216743] = 4, + ACTIONS(8784), 1, + anon_sym_RPAREN, + ACTIONS(11262), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216757] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11266), 1, + anon_sym_GT, + STATE(9067), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216771] = 4, + ACTIONS(8833), 1, + anon_sym_RPAREN, + ACTIONS(11268), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216785] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11270), 1, + anon_sym_GT, + STATE(8963), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216799] = 4, + ACTIONS(11272), 1, + anon_sym_COMMA, + ACTIONS(11274), 1, + anon_sym_RPAREN, + STATE(9061), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216813] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11276), 1, + anon_sym_GT, + STATE(9083), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216827] = 4, + ACTIONS(8872), 1, + anon_sym_RPAREN, + ACTIONS(11278), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216841] = 3, + STATE(1129), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216853] = 3, + ACTIONS(11280), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11282), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [216865] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11284), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216879] = 4, + ACTIONS(5534), 1, + anon_sym_RPAREN, + ACTIONS(11286), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216893] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11288), 1, + sym__automatic_semicolon, + STATE(10100), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216907] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11290), 1, + anon_sym_EQ, + STATE(10140), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216921] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11292), 3, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_as, + [216931] = 3, + STATE(3993), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(501), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216943] = 4, + ACTIONS(9398), 1, + anon_sym_RPAREN, + ACTIONS(11294), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216957] = 4, + ACTIONS(11254), 1, + anon_sym_LPAREN, + ACTIONS(11296), 1, + anon_sym_LBRACE, + STATE(10143), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216971] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11300), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216985] = 4, + ACTIONS(11302), 1, + anon_sym_COMMA, + ACTIONS(11304), 1, + anon_sym_RPAREN, + STATE(8850), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216999] = 4, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11308), 1, + anon_sym_DASH_GT, + STATE(9040), 1, + aux_sym_when_entry_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217013] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11310), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217027] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11312), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [217037] = 4, + ACTIONS(11314), 1, + anon_sym_COMMA, + ACTIONS(11316), 1, + anon_sym_RPAREN, + STATE(8857), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217051] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11318), 1, + anon_sym_GT, + STATE(8860), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217065] = 4, + ACTIONS(11320), 1, + anon_sym_COMMA, + ACTIONS(11322), 1, + anon_sym_RPAREN, + STATE(8861), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217079] = 4, + ACTIONS(9372), 1, + anon_sym_RPAREN, + ACTIONS(11324), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217093] = 4, + ACTIONS(11326), 1, + anon_sym_DOT, + ACTIONS(11329), 1, + sym__automatic_semicolon, + STATE(8877), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217107] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11331), 1, + anon_sym_EQ, + STATE(9554), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217121] = 3, + STATE(3992), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(501), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217133] = 3, + ACTIONS(11333), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7840), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [217145] = 4, + ACTIONS(11335), 1, + anon_sym_COMMA, + ACTIONS(11337), 1, + anon_sym_RPAREN, + STATE(8866), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217159] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4421), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [217169] = 3, + STATE(3991), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(501), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217181] = 4, + ACTIONS(11339), 1, + anon_sym_COMMA, + ACTIONS(11342), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217195] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11344), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + [217205] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11346), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217219] = 3, + STATE(3990), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(501), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217231] = 4, + ACTIONS(11348), 1, + anon_sym_COMMA, + ACTIONS(11350), 1, + anon_sym_RPAREN, + STATE(8964), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217245] = 4, + ACTIONS(4634), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9548), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217259] = 4, + ACTIONS(11352), 1, + anon_sym_COMMA, + ACTIONS(11355), 1, + anon_sym_RPAREN, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217273] = 4, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(9950), 1, + anon_sym_COLON, + STATE(3445), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217287] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11357), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217301] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11359), 1, + anon_sym_EQ, + STATE(10118), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217315] = 4, + ACTIONS(11361), 1, + anon_sym_COMMA, + ACTIONS(11363), 1, + anon_sym_RPAREN, + STATE(8913), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217329] = 3, + ACTIONS(11365), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11367), 2, + anon_sym_COMMA, + anon_sym_GT, + [217341] = 3, + STATE(5165), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217353] = 4, + ACTIONS(3254), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9742), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217367] = 4, + ACTIONS(11369), 1, + anon_sym_COMMA, + ACTIONS(11371), 1, + anon_sym_RPAREN, + STATE(9111), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217381] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11373), 1, + anon_sym_GT, + STATE(8915), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217395] = 3, + STATE(5184), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217407] = 3, + STATE(5215), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217419] = 4, + ACTIONS(8853), 1, + anon_sym_RPAREN, + ACTIONS(11375), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217433] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11379), 1, + anon_sym_GT, + STATE(9048), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217447] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11381), 1, + anon_sym_EQ, + STATE(9549), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217461] = 4, + ACTIONS(4270), 1, + anon_sym_in, + ACTIONS(11383), 1, + sym__quest, + STATE(8905), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217475] = 4, + ACTIONS(4264), 1, + anon_sym_in, + ACTIONS(11386), 1, + sym__quest, + STATE(8938), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217489] = 4, + ACTIONS(11388), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_RPAREN, + STATE(8909), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217503] = 4, + ACTIONS(9392), 1, + anon_sym_RPAREN, + ACTIONS(11392), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217517] = 4, + ACTIONS(5512), 1, + anon_sym_RPAREN, + ACTIONS(11394), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217531] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11396), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217545] = 3, + ACTIONS(11398), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11400), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [217557] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11402), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217571] = 4, + ACTIONS(5550), 1, + anon_sym_RPAREN, + ACTIONS(11404), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217585] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11406), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217599] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11408), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217613] = 4, + ACTIONS(8858), 1, + anon_sym_RPAREN, + ACTIONS(11410), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217627] = 4, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(11412), 1, + sym__automatic_semicolon, + STATE(10132), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217641] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11414), 1, + sym__automatic_semicolon, + STATE(10135), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217655] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11416), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217669] = 4, + ACTIONS(9396), 1, + anon_sym_RPAREN, + ACTIONS(11418), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217683] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11420), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217697] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11424), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217711] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11426), 1, + anon_sym_EQ, + STATE(10110), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217725] = 4, + ACTIONS(11428), 1, + anon_sym_COMMA, + ACTIONS(11430), 1, + anon_sym_RPAREN, + STATE(8853), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217739] = 3, + ACTIONS(11432), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4182), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [217751] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10979), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [217761] = 3, + ACTIONS(11434), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4202), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [217773] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11436), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217787] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11233), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [217797] = 4, + ACTIONS(11438), 1, + anon_sym_COMMA, + ACTIONS(11440), 1, + anon_sym_DASH_GT, + STATE(9066), 1, + aux_sym_lambda_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217811] = 4, + ACTIONS(11254), 1, + anon_sym_LPAREN, + ACTIONS(11442), 1, + anon_sym_LBRACE, + STATE(10102), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217825] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11444), 1, + anon_sym_RPAREN, + STATE(9093), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217839] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11446), 1, + anon_sym_EQ, + STATE(10099), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217853] = 4, + ACTIONS(11448), 1, + anon_sym_COMMA, + ACTIONS(11450), 1, + anon_sym_RPAREN, + STATE(8916), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217867] = 4, + ACTIONS(11452), 1, + anon_sym_COMMA, + ACTIONS(11454), 1, + anon_sym_RPAREN, + STATE(8902), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217881] = 3, + STATE(9016), 1, + sym_constructor_delegation_call, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11456), 2, + anon_sym_this, + anon_sym_super, + [217893] = 4, + ACTIONS(11458), 1, + anon_sym_COMMA, + ACTIONS(11461), 1, + anon_sym_RPAREN, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217907] = 4, + ACTIONS(4256), 1, + anon_sym_in, + ACTIONS(11463), 1, + sym__quest, + STATE(8905), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217921] = 4, + ACTIONS(11465), 1, + anon_sym_DOT, + ACTIONS(11467), 1, + sym__automatic_semicolon, + STATE(8877), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217935] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11469), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217949] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11471), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217963] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11473), 1, + anon_sym_EQ, + STATE(10091), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217977] = 4, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(9942), 1, + anon_sym_COLON, + STATE(4804), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217991] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11475), 1, + anon_sym_GT, + STATE(8886), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218005] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11477), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218019] = 3, + ACTIONS(11479), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11481), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [218031] = 4, + ACTIONS(5748), 1, + anon_sym_LBRACE, + ACTIONS(9955), 1, + anon_sym_COLON, + STATE(3995), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218045] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11483), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218059] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11485), 1, + anon_sym_GT, + STATE(8919), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218073] = 3, + ACTIONS(11487), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4738), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [218085] = 4, + ACTIONS(11489), 1, + anon_sym_COMMA, + ACTIONS(11491), 1, + anon_sym_RPAREN, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218099] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11493), 1, + anon_sym_RPAREN, + STATE(8922), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218113] = 3, + STATE(3491), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218125] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11495), 1, + anon_sym_GT, + STATE(8996), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218139] = 3, + STATE(3903), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(501), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218151] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11497), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218165] = 4, + ACTIONS(11465), 1, + anon_sym_DOT, + ACTIONS(11499), 1, + sym__automatic_semicolon, + STATE(8939), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218179] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11501), 3, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_as, + [218189] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11503), 1, + anon_sym_RPAREN, + STATE(8928), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218203] = 3, + ACTIONS(11505), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4728), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [218215] = 4, + ACTIONS(11507), 1, + anon_sym_COMMA, + ACTIONS(11509), 1, + anon_sym_RPAREN, + STATE(9050), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218229] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11511), 1, + anon_sym_RPAREN, + STATE(9019), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218243] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11513), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218257] = 4, + ACTIONS(5454), 1, + anon_sym_RPAREN, + ACTIONS(11515), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218271] = 3, + STATE(3462), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218283] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11517), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218297] = 3, + STATE(3460), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218309] = 4, + ACTIONS(4250), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9712), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218323] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11519), 1, + anon_sym_EQ, + STATE(9882), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218337] = 3, + STATE(3458), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218349] = 4, + ACTIONS(11254), 1, + anon_sym_LPAREN, + ACTIONS(11521), 1, + anon_sym_LBRACE, + STATE(10047), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218363] = 4, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9704), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218377] = 3, + STATE(861), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11523), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218389] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11525), 1, + anon_sym_EQ, + STATE(10075), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218403] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11527), 1, + anon_sym_RPAREN, + STATE(9034), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218417] = 4, + ACTIONS(4392), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9522), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218431] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11529), 1, + anon_sym_GT, + STATE(8948), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218445] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11531), 1, + anon_sym_RPAREN, + STATE(9029), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218459] = 4, + ACTIONS(4537), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9652), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218473] = 4, + ACTIONS(8870), 1, + anon_sym_RPAREN, + ACTIONS(11533), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218487] = 4, + ACTIONS(11535), 1, + anon_sym_COMMA, + ACTIONS(11537), 1, + anon_sym_RPAREN, + STATE(9060), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218501] = 4, + ACTIONS(11539), 1, + anon_sym_COMMA, + ACTIONS(11541), 1, + anon_sym_RPAREN, + STATE(9108), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218515] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11543), 1, + anon_sym_GT, + STATE(9097), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218529] = 4, + ACTIONS(11438), 1, + anon_sym_COMMA, + ACTIONS(11545), 1, + anon_sym_DASH_GT, + STATE(8930), 1, + aux_sym_lambda_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218543] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11547), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218557] = 4, + ACTIONS(4634), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9548), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218571] = 4, + ACTIONS(11549), 1, + anon_sym_COMMA, + ACTIONS(11551), 1, + anon_sym_RPAREN, + STATE(9109), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218585] = 4, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(11555), 1, + anon_sym_RPAREN, + STATE(9021), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218599] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11557), 1, + anon_sym_GT, + STATE(9132), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218613] = 4, + ACTIONS(9370), 1, + anon_sym_RPAREN, + ACTIONS(11559), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218627] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11561), 1, + anon_sym_EQ, + STATE(10068), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218641] = 3, + ACTIONS(11563), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 2, + sym__quest, + anon_sym_in, + [218653] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11565), 1, + anon_sym_GT, + STATE(9028), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218667] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11567), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218681] = 4, + ACTIONS(11569), 1, + anon_sym_COMMA, + ACTIONS(11572), 1, + anon_sym_DASH_GT, + STATE(8995), 1, + aux_sym_when_entry_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218695] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11574), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218709] = 4, + ACTIONS(7832), 1, + anon_sym_RBRACK, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218723] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11579), 1, + anon_sym_EQ, + STATE(10169), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218737] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11581), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218751] = 4, + ACTIONS(5486), 1, + anon_sym_RPAREN, + ACTIONS(11583), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218765] = 4, + ACTIONS(11585), 1, + anon_sym_COMMA, + ACTIONS(11587), 1, + anon_sym_RPAREN, + STATE(9031), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218779] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11589), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218793] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11591), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218807] = 4, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9566), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218821] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11593), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218835] = 4, + ACTIONS(9412), 1, + anon_sym_RPAREN, + ACTIONS(11595), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218849] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11597), 1, + anon_sym_GT, + STATE(8999), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218863] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11599), 1, + anon_sym_EQ, + STATE(10060), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218877] = 4, + ACTIONS(11601), 1, + anon_sym_COMMA, + ACTIONS(11603), 1, + anon_sym_RPAREN, + STATE(8990), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218891] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11605), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218905] = 3, + ACTIONS(11607), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4192), 2, + sym__quest, + anon_sym_in, + [218917] = 3, + STATE(8917), 1, + sym_constructor_delegation_call, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11456), 2, + anon_sym_this, + anon_sym_super, + [218929] = 4, + ACTIONS(11609), 1, + anon_sym_COMMA, + ACTIONS(11611), 1, + anon_sym_RPAREN, + STATE(9027), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218943] = 4, + ACTIONS(11613), 1, + anon_sym_COMMA, + ACTIONS(11615), 1, + anon_sym_RPAREN, + STATE(9124), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218957] = 4, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(11617), 1, + sym__automatic_semicolon, + STATE(10153), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218971] = 4, + ACTIONS(10659), 1, + anon_sym_LBRACE, + ACTIONS(11619), 1, + sym__automatic_semicolon, + STATE(10157), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218985] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11621), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218999] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11623), 1, + anon_sym_GT, + STATE(9139), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219013] = 4, + ACTIONS(11625), 1, + anon_sym_COMMA, + ACTIONS(11628), 1, + anon_sym_RPAREN, + STATE(9019), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219027] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11630), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219041] = 4, + ACTIONS(5538), 1, + anon_sym_RPAREN, + ACTIONS(11632), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219055] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11634), 1, + anon_sym_RPAREN, + STATE(8945), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219069] = 4, + ACTIONS(11636), 1, + anon_sym_COMMA, + ACTIONS(11638), 1, + anon_sym_RPAREN, + STATE(8851), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219083] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11640), 1, + anon_sym_EQ, + STATE(10054), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219097] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10761), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [219107] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11642), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219121] = 4, + ACTIONS(9376), 1, + anon_sym_RPAREN, + ACTIONS(11644), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219135] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11646), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219149] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11648), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219163] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11650), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219177] = 4, + ACTIONS(8829), 1, + anon_sym_RPAREN, + ACTIONS(11652), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219191] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11654), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219205] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11656), 1, + anon_sym_EQ, + STATE(10177), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219219] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11658), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219233] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11660), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219247] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11662), 1, + anon_sym_RPAREN, + STATE(9032), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219261] = 4, + ACTIONS(3202), 1, + anon_sym_LBRACE, + ACTIONS(9948), 1, + anon_sym_COLON, + STATE(1105), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219275] = 3, + STATE(3557), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219287] = 4, + ACTIONS(11254), 1, + anon_sym_LPAREN, + ACTIONS(11664), 1, + anon_sym_LBRACE, + STATE(10182), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219301] = 4, + ACTIONS(11306), 1, + anon_sym_COMMA, + ACTIONS(11666), 1, + anon_sym_DASH_GT, + STATE(8995), 1, + aux_sym_when_entry_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219315] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11668), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219329] = 4, + ACTIONS(8762), 1, + anon_sym_RPAREN, + ACTIONS(11670), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219343] = 3, + ACTIONS(11672), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11674), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219355] = 3, + STATE(4909), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(289), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219367] = 4, + ACTIONS(11676), 1, + anon_sym_COMMA, + ACTIONS(11679), 1, + anon_sym_RPAREN, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219381] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11681), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219395] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11683), 1, + anon_sym_GT, + STATE(9046), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219409] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11685), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219423] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11687), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219437] = 4, + ACTIONS(5506), 1, + anon_sym_RPAREN, + ACTIONS(11689), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219451] = 4, + ACTIONS(5570), 1, + anon_sym_RPAREN, + ACTIONS(11691), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219465] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11693), 1, + anon_sym_GT, + STATE(9049), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219479] = 4, + ACTIONS(11695), 1, + anon_sym_COMMA, + ACTIONS(11697), 1, + anon_sym_RPAREN, + STATE(8980), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219493] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4684), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_in, + [219503] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11699), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219517] = 3, + ACTIONS(11701), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11703), 2, + anon_sym_COMMA, + anon_sym_GT, + [219529] = 4, + ACTIONS(11705), 1, + anon_sym_COMMA, + ACTIONS(11707), 1, + anon_sym_RPAREN, + STATE(8908), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219543] = 4, + ACTIONS(5544), 1, + anon_sym_RPAREN, + ACTIONS(11709), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219557] = 3, + STATE(1094), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219569] = 4, + ACTIONS(9402), 1, + anon_sym_RPAREN, + ACTIONS(11711), 1, + anon_sym_COMMA, + STATE(8890), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219583] = 4, + ACTIONS(5578), 1, + anon_sym_RPAREN, + ACTIONS(11713), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219597] = 4, + ACTIONS(11298), 1, + anon_sym_COMMA, + ACTIONS(11715), 1, + anon_sym_RPAREN, + STATE(8962), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219611] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11717), 1, + anon_sym_GT, + STATE(8985), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219625] = 4, + ACTIONS(11719), 1, + anon_sym_COMMA, + ACTIONS(11721), 1, + anon_sym_RPAREN, + STATE(9051), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219639] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4437), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [219649] = 4, + ACTIONS(11723), 1, + anon_sym_COMMA, + ACTIONS(11726), 1, + anon_sym_DASH_GT, + STATE(9066), 1, + aux_sym_lambda_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219663] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11728), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219677] = 3, + STATE(1083), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219689] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11730), 1, + anon_sym_GT, + STATE(8914), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219703] = 4, + ACTIONS(11732), 1, + anon_sym_COMMA, + ACTIONS(11734), 1, + anon_sym_RPAREN, + STATE(9058), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219717] = 4, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9566), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219731] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11736), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219745] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11738), 1, + anon_sym_GT, + STATE(8994), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219759] = 3, + STATE(1082), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219771] = 4, + ACTIONS(5576), 1, + anon_sym_RPAREN, + ACTIONS(11740), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219785] = 4, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9639), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219799] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11742), 1, + anon_sym_GT, + STATE(9072), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219813] = 4, + ACTIONS(11744), 1, + anon_sym_COMMA, + ACTIONS(11747), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219827] = 4, + ACTIONS(4517), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9637), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219841] = 4, + ACTIONS(3220), 1, + anon_sym_LBRACE, + ACTIONS(9940), 1, + anon_sym_COLON, + STATE(3243), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219855] = 4, + ACTIONS(11749), 1, + anon_sym_COMMA, + ACTIONS(11751), 1, + anon_sym_RPAREN, + STATE(9075), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219869] = 4, + ACTIONS(4388), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9606), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219883] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11753), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219897] = 4, + ACTIONS(11755), 1, + anon_sym_COMMA, + ACTIONS(11757), 1, + anon_sym_RPAREN, + STATE(9000), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219911] = 4, + ACTIONS(11759), 1, + anon_sym_COMMA, + ACTIONS(11761), 1, + anon_sym_RPAREN, + STATE(9006), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219925] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11763), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219939] = 4, + ACTIONS(5582), 1, + anon_sym_RPAREN, + ACTIONS(11765), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219953] = 4, + ACTIONS(4309), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9634), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219967] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11767), 1, + anon_sym_GT, + STATE(9086), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219981] = 4, + ACTIONS(11769), 1, + anon_sym_COMMA, + ACTIONS(11771), 1, + anon_sym_RPAREN, + STATE(9087), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219995] = 4, + ACTIONS(4365), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9633), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220009] = 4, + ACTIONS(4384), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9521), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220023] = 4, + ACTIONS(11422), 1, + anon_sym_COMMA, + ACTIONS(11773), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220037] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11775), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220051] = 4, + ACTIONS(4297), 1, + anon_sym_in, + ACTIONS(11386), 1, + sym__quest, + STATE(8938), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220065] = 4, + ACTIONS(5588), 1, + anon_sym_RPAREN, + ACTIONS(11777), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220079] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym_GT, + STATE(8884), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220093] = 3, + STATE(3281), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220105] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11781), 1, + anon_sym_GT, + STATE(9094), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220119] = 3, + STATE(3282), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220131] = 4, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9704), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220145] = 4, + ACTIONS(4696), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9531), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220159] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11783), 1, + anon_sym_EQ, + STATE(9714), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220173] = 4, + ACTIONS(11785), 1, + anon_sym_COMMA, + ACTIONS(11787), 1, + anon_sym_RPAREN, + STATE(9096), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220187] = 4, + ACTIONS(11254), 1, + anon_sym_LPAREN, + ACTIONS(11789), 1, + anon_sym_LBRACE, + STATE(10079), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220201] = 4, + ACTIONS(4365), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9633), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220215] = 3, + STATE(3285), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220227] = 4, + ACTIONS(5552), 1, + anon_sym_RPAREN, + ACTIONS(11791), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220241] = 4, + ACTIONS(5564), 1, + anon_sym_RPAREN, + ACTIONS(11793), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220255] = 4, + ACTIONS(4228), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9618), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220269] = 4, + ACTIONS(8823), 1, + anon_sym_RPAREN, + ACTIONS(11795), 1, + anon_sym_COMMA, + STATE(9045), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220283] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11797), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220297] = 4, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(11799), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220311] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11801), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220325] = 3, + STATE(1099), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220337] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11803), 1, + anon_sym_GT, + STATE(9112), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220351] = 4, + ACTIONS(11805), 1, + anon_sym_COMMA, + ACTIONS(11807), 1, + anon_sym_RPAREN, + STATE(9113), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220365] = 3, + STATE(3287), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220377] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11809), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220391] = 4, + ACTIONS(11811), 1, + anon_sym_COMMA, + ACTIONS(11813), 1, + anon_sym_RPAREN, + STATE(9042), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220405] = 4, + ACTIONS(4584), 1, + anon_sym_while, + ACTIONS(8694), 1, + anon_sym_LBRACE, + STATE(9600), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220419] = 4, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(11815), 1, + anon_sym_RBRACK, + STATE(8997), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220433] = 4, + ACTIONS(11817), 1, + anon_sym_COMMA, + ACTIONS(11820), 1, + anon_sym_RPAREN, + STATE(9123), 1, + aux_sym_multi_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220447] = 4, + ACTIONS(5566), 1, + anon_sym_RPAREN, + ACTIONS(11822), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220461] = 4, + ACTIONS(4384), 1, + anon_sym_while, + ACTIONS(8626), 1, + anon_sym_LBRACE, + STATE(9521), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220475] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11824), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220489] = 4, + ACTIONS(5602), 1, + anon_sym_RPAREN, + ACTIONS(11826), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220503] = 3, + STATE(1189), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220515] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11828), 1, + anon_sym_GT, + STATE(9126), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220529] = 4, + ACTIONS(11830), 1, + anon_sym_COMMA, + ACTIONS(11832), 1, + anon_sym_RPAREN, + STATE(9127), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220543] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACE, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(5151), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220557] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11834), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220571] = 3, + STATE(3159), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220583] = 4, + ACTIONS(11836), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_RPAREN, + STATE(8876), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220597] = 3, + STATE(2849), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11840), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220609] = 4, + ACTIONS(9208), 1, + anon_sym_LT, + ACTIONS(11842), 1, + anon_sym_EQ, + STATE(10062), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220623] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11844), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220637] = 4, + ACTIONS(5610), 1, + anon_sym_RPAREN, + ACTIONS(11846), 1, + anon_sym_COMMA, + STATE(8937), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220651] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11848), 1, + anon_sym_GT, + STATE(9078), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220665] = 3, + STATE(4801), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(289), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220677] = 4, + ACTIONS(11264), 1, + anon_sym_COMMA, + ACTIONS(11850), 1, + anon_sym_GT, + STATE(9137), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220691] = 4, + ACTIONS(11852), 1, + anon_sym_COMMA, + ACTIONS(11854), 1, + anon_sym_RPAREN, + STATE(9138), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220705] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4588), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_in, + [220715] = 4, + ACTIONS(11377), 1, + anon_sym_COMMA, + ACTIONS(11856), 1, + anon_sym_GT, + STATE(9010), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220729] = 3, + STATE(4787), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(289), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220741] = 4, + ACTIONS(7110), 1, + sym__automatic_semicolon, + ACTIONS(10704), 1, + anon_sym_LPAREN, + STATE(8637), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220755] = 3, + STATE(4797), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(289), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220767] = 3, + STATE(4789), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(289), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [220779] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4715), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220790] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4719), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220801] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4668), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220812] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4665), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220823] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220832] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4669), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220843] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4834), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220852] = 3, + ACTIONS(11858), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220863] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4902), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220872] = 3, + ACTIONS(11860), 1, + sym__automatic_semicolon, + STATE(3629), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220883] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220892] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11679), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220901] = 3, + ACTIONS(5738), 1, + anon_sym_LPAREN, + STATE(5039), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220912] = 3, + ACTIONS(11862), 1, + anon_sym_DOT, + STATE(9156), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220923] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4365), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220932] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4974), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220941] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4978), 2, + anon_sym_AT, + anon_sym_val, + [220950] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11628), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220959] = 3, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8585), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220970] = 3, + ACTIONS(10704), 1, + anon_sym_LPAREN, + STATE(9197), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220981] = 3, + ACTIONS(11864), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220992] = 3, + ACTIONS(11866), 1, + anon_sym_DOT, + STATE(9169), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221003] = 3, + ACTIONS(11868), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221014] = 3, + ACTIONS(11870), 1, + anon_sym_DOT, + STATE(9180), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221025] = 3, + ACTIONS(10623), 1, + anon_sym_get, + ACTIONS(10625), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221036] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11872), 2, + anon_sym_COMMA, + anon_sym_GT, + [221045] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221054] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5024), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221063] = 3, + ACTIONS(11874), 1, + anon_sym_DOT, + STATE(9171), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221074] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5038), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221083] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4830), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221094] = 3, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221105] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4990), 2, + anon_sym_AT, + anon_sym_val, + [221114] = 3, + ACTIONS(10489), 1, + anon_sym_get, + ACTIONS(10491), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221125] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1776), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221134] = 3, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(8405), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221145] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4986), 2, + anon_sym_AT, + anon_sym_val, + [221154] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5052), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221163] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4228), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221172] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5199), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221181] = 3, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(8376), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221192] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5195), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221201] = 3, + ACTIONS(10585), 1, + anon_sym_get, + ACTIONS(10587), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221212] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4584), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221221] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221230] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5020), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221239] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5171), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221248] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4982), 2, + anon_sym_AT, + anon_sym_val, + [221257] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11878), 2, + sym__automatic_semicolon, + anon_sym_LBRACE, + [221266] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7199), 2, + anon_sym_AT, + anon_sym_val, + [221275] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7193), 2, + anon_sym_AT, + anon_sym_val, + [221284] = 3, + ACTIONS(10328), 1, + anon_sym_get, + ACTIONS(10330), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221295] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 2, + anon_sym_AT, + anon_sym_val, + [221304] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4084), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221313] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 2, + anon_sym_AT, + anon_sym_val, + [221322] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5145), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221331] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(205), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221340] = 3, + ACTIONS(7769), 1, + anon_sym_RBRACE, + ACTIONS(11880), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221351] = 3, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8558), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221362] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7131), 2, + anon_sym_AT, + anon_sym_val, + [221371] = 3, + ACTIONS(11882), 1, + anon_sym_DOT, + STATE(9248), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221382] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1782), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221391] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4761), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221402] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221411] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 2, + anon_sym_AT, + anon_sym_val, + [221420] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5125), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221429] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5121), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221438] = 3, + ACTIONS(10647), 1, + anon_sym_get, + ACTIONS(10649), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221449] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4634), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221458] = 3, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8632), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221469] = 3, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8596), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221480] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5137), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221489] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4242), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221498] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5117), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221507] = 3, + ACTIONS(11884), 1, + anon_sym_DOT, + STATE(9225), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221518] = 3, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4988), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221529] = 3, + ACTIONS(11886), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221540] = 3, + ACTIONS(11888), 1, + sym__automatic_semicolon, + STATE(3811), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221551] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1762), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221560] = 3, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8621), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221571] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4392), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221580] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4816), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221591] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5056), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221600] = 3, + ACTIONS(11890), 1, + anon_sym_DOT, + STATE(9233), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221611] = 3, + ACTIONS(11892), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221622] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221631] = 3, + ACTIONS(7815), 1, + anon_sym_RBRACE, + ACTIONS(11894), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221642] = 3, + ACTIONS(11896), 1, + anon_sym_LBRACE, + STATE(3735), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221653] = 3, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(4990), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221664] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1770), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221673] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221682] = 3, + ACTIONS(11896), 1, + anon_sym_LBRACE, + STATE(3734), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221693] = 3, + ACTIONS(11898), 1, + sym__automatic_semicolon, + STATE(3677), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221704] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4411), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221713] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3382), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221722] = 3, + ACTIONS(10426), 1, + anon_sym_get, + ACTIONS(10428), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221733] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4922), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221742] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4910), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221751] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4818), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221760] = 3, + ACTIONS(11900), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221771] = 3, + ACTIONS(10696), 1, + anon_sym_LBRACE, + STATE(8520), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221782] = 3, + ACTIONS(11902), 1, + anon_sym_DOT, + STATE(9251), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221793] = 3, + ACTIONS(11904), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221804] = 3, + ACTIONS(10394), 1, + anon_sym_get, + ACTIONS(10396), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221815] = 3, + ACTIONS(11906), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221826] = 3, + ACTIONS(10374), 1, + anon_sym_get, + ACTIONS(10376), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221837] = 3, + ACTIONS(10549), 1, + anon_sym_get, + ACTIONS(10551), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221848] = 3, + ACTIONS(10573), 1, + anon_sym_get, + ACTIONS(10575), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221859] = 3, + ACTIONS(11908), 1, + anon_sym_DOT, + STATE(9253), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221870] = 3, + ACTIONS(11910), 1, + anon_sym_DOT, + STATE(9273), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221881] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1306), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221892] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1275), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221903] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4768), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221912] = 3, + ACTIONS(7779), 1, + anon_sym_RBRACE, + ACTIONS(11912), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221923] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1277), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221934] = 3, + ACTIONS(3204), 1, + anon_sym_LPAREN, + STATE(1016), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221945] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1289), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221956] = 3, + ACTIONS(3204), 1, + anon_sym_LPAREN, + STATE(1026), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221967] = 3, + ACTIONS(10438), 1, + anon_sym_get, + ACTIONS(10440), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221978] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5241), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221989] = 3, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4635), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222000] = 3, + ACTIONS(10475), 1, + anon_sym_get, + ACTIONS(10477), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222011] = 3, + ACTIONS(11914), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222022] = 3, + ACTIONS(11916), 1, + anon_sym_DOT, + STATE(9271), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222033] = 3, + ACTIONS(11918), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222044] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3359), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222055] = 3, + ACTIONS(11920), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222066] = 3, + ACTIONS(11922), 1, + anon_sym_DOT, + STATE(9275), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222077] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(836), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222088] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3067), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222097] = 3, + ACTIONS(11924), 1, + anon_sym_DOT, + STATE(9282), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222108] = 3, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4636), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222119] = 3, + ACTIONS(11926), 1, + anon_sym_DOT, + STATE(9417), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222130] = 3, + ACTIONS(11928), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222141] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(846), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222152] = 3, + ACTIONS(10513), 1, + anon_sym_get, + ACTIONS(10515), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222163] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(848), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222174] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(837), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222185] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2827), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222196] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2831), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222207] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11747), 2, + anon_sym_COMMA, + anon_sym_GT, + [222216] = 3, + ACTIONS(11930), 1, + sym__automatic_semicolon, + STATE(9421), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222227] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11932), 2, + sym__import_list_delimiter, + anon_sym_import, + [222236] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2822), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222247] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11461), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222256] = 3, + ACTIONS(8526), 1, + anon_sym_LPAREN, + STATE(8516), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222267] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3254), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222276] = 3, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(8393), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222287] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1696), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222296] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2795), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222307] = 3, + ACTIONS(10525), 1, + anon_sym_get, + ACTIONS(10527), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222318] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2980), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222329] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2975), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222340] = 3, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(8691), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222351] = 3, + ACTIONS(10659), 1, + anon_sym_LBRACE, + STATE(9592), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222362] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2974), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222373] = 3, + ACTIONS(11934), 1, + sym__automatic_semicolon, + STATE(5760), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222384] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5085), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222393] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11572), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [222402] = 3, + ACTIONS(10561), 1, + anon_sym_get, + ACTIONS(10563), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222413] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(2973), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222424] = 3, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(8375), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222435] = 3, + ACTIONS(10354), 1, + anon_sym_get, + ACTIONS(10356), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222446] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4748), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222455] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2904), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222466] = 3, + ACTIONS(4738), 1, + anon_sym_while, + ACTIONS(11936), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222477] = 3, + ACTIONS(11938), 1, + anon_sym_COLON, + ACTIONS(11940), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222488] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3356), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222499] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5163), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222508] = 3, + ACTIONS(4100), 1, + anon_sym_in, + ACTIONS(11942), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222519] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2903), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222530] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3306), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222541] = 3, + ACTIONS(1606), 1, + anon_sym_LBRACE, + STATE(3923), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222552] = 3, + ACTIONS(7639), 1, + anon_sym_RBRACE, + ACTIONS(11944), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222563] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2902), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222574] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4152), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222583] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3355), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222594] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7836), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [222603] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4584), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222614] = 3, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(8374), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222625] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11946), 2, + anon_sym_COMMA, + anon_sym_GT, + [222634] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222645] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(2901), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222656] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4587), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222667] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11342), 2, + anon_sym_COMMA, + anon_sym_GT, + [222676] = 3, + ACTIONS(3172), 1, + anon_sym_LPAREN, + STATE(3051), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222687] = 3, + ACTIONS(1796), 1, + anon_sym_LBRACE, + STATE(4879), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222698] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACE, + STATE(5255), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222709] = 3, + ACTIONS(11948), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222720] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4583), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222731] = 3, + ACTIONS(10290), 1, + anon_sym_get, + ACTIONS(10292), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222742] = 3, + ACTIONS(11950), 1, + anon_sym_DOT, + STATE(9337), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222753] = 3, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(5296), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222764] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4087), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222775] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11355), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222784] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4088), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222795] = 3, + ACTIONS(11952), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222806] = 3, + ACTIONS(11954), 1, + anon_sym_DOT, + STATE(9345), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222817] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4998), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222826] = 3, + ACTIONS(7603), 1, + anon_sym_RBRACE, + ACTIONS(11956), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222837] = 3, + ACTIONS(4202), 1, + anon_sym_while, + ACTIONS(11958), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222848] = 3, + ACTIONS(4182), 1, + anon_sym_while, + ACTIONS(11960), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222859] = 3, + ACTIONS(3172), 1, + anon_sym_LPAREN, + STATE(3037), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222870] = 3, + ACTIONS(4728), 1, + anon_sym_while, + ACTIONS(11962), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222881] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4089), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222892] = 3, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(8399), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222903] = 3, + ACTIONS(10406), 1, + anon_sym_get, + ACTIONS(10408), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222914] = 3, + ACTIONS(5472), 1, + anon_sym_LPAREN, + STATE(3351), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222925] = 3, + ACTIONS(1590), 1, + anon_sym_LBRACE, + STATE(3518), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222936] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(4091), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222947] = 3, + ACTIONS(5472), 1, + anon_sym_LPAREN, + STATE(3345), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222958] = 3, + ACTIONS(5766), 1, + anon_sym_LPAREN, + STATE(5232), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222969] = 3, + ACTIONS(8628), 1, + anon_sym_LPAREN, + STATE(8769), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222980] = 3, + ACTIONS(11964), 1, + anon_sym_LBRACE, + STATE(888), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222991] = 3, + ACTIONS(11964), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223002] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4141), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223013] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4164), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223024] = 3, + ACTIONS(5470), 1, + anon_sym_LBRACE, + STATE(3525), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223035] = 3, + ACTIONS(7799), 1, + anon_sym_RBRACE, + ACTIONS(11966), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223046] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4177), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223057] = 3, + ACTIONS(5750), 1, + anon_sym_LPAREN, + STATE(3782), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223068] = 3, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(4815), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223079] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5458), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223090] = 3, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4662), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223101] = 3, + ACTIONS(1618), 1, + anon_sym_LBRACE, + STATE(1164), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223112] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5459), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223123] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5464), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223134] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5466), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223145] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(1152), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223156] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4437), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223165] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4183), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223176] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5340), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223187] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5332), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223198] = 3, + ACTIONS(3202), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223209] = 3, + ACTIONS(6517), 1, + anon_sym_LBRACE, + STATE(3527), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223220] = 3, + ACTIONS(1590), 1, + anon_sym_LBRACE, + STATE(3544), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223231] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223240] = 3, + ACTIONS(10006), 1, + anon_sym_get, + ACTIONS(10008), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223251] = 3, + ACTIONS(5766), 1, + anon_sym_LPAREN, + STATE(5281), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223262] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5342), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223273] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3610), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223284] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11968), 2, + anon_sym_COMMA, + anon_sym_GT, + [223293] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3609), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223304] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3605), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223315] = 3, + ACTIONS(5750), 1, + anon_sym_LPAREN, + STATE(3800), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223326] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(3591), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223337] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3713), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223348] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4666), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223359] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3715), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223370] = 3, + ACTIONS(10599), 1, + anon_sym_get, + ACTIONS(10601), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223381] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3718), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223392] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4421), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223401] = 3, + ACTIONS(11970), 1, + anon_sym_DOT, + STATE(9402), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223412] = 3, + ACTIONS(11972), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223423] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5276), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223434] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3641), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223445] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3570), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223456] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3569), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223467] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3568), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223478] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3565), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223489] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223500] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(876), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223511] = 3, + ACTIONS(10459), 1, + anon_sym_get, + ACTIONS(10461), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223522] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223533] = 3, + ACTIONS(11974), 1, + sym__automatic_semicolon, + STATE(3553), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223544] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(851), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223555] = 3, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4663), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223566] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(5341), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223577] = 3, + ACTIONS(11976), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223588] = 3, + ACTIONS(1606), 1, + anon_sym_LBRACE, + STATE(3959), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223599] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11329), 2, + sym__automatic_semicolon, + anon_sym_DOT, + [223608] = 3, + ACTIONS(1618), 1, + anon_sym_LBRACE, + STATE(1063), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223619] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11978), 2, + sym__import_list_delimiter, + anon_sym_import, + [223628] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5002), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223637] = 3, + ACTIONS(9799), 1, + anon_sym_LPAREN, + STATE(8403), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223648] = 3, + ACTIONS(11980), 1, + anon_sym_DOT, + STATE(9425), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223659] = 3, + ACTIONS(11982), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223670] = 3, + ACTIONS(11984), 1, + anon_sym_DOT, + STATE(9427), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223681] = 3, + ACTIONS(11986), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223692] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11820), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [223701] = 3, + ACTIONS(10501), 1, + anon_sym_get, + ACTIONS(10503), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223712] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4234), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223721] = 3, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(9433), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223732] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4250), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223741] = 3, + ACTIONS(11990), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223752] = 3, + ACTIONS(8526), 1, + anon_sym_LPAREN, + STATE(8611), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223763] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3232), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223772] = 3, + ACTIONS(7727), 1, + anon_sym_RBRACE, + ACTIONS(11992), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223783] = 3, + ACTIONS(6416), 1, + anon_sym_LBRACE, + STATE(2948), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223794] = 3, + ACTIONS(6694), 1, + anon_sym_LBRACE, + STATE(3928), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223805] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4826), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223814] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11193), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223823] = 3, + ACTIONS(6416), 1, + anon_sym_LBRACE, + STATE(2927), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223834] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11726), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223843] = 3, + ACTIONS(11994), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223854] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4975), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223865] = 3, + ACTIONS(11996), 1, + anon_sym_DOT, + STATE(9443), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223876] = 3, + ACTIONS(11998), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223887] = 3, + ACTIONS(12000), 1, + anon_sym_DOT, + STATE(9446), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223898] = 3, + ACTIONS(8118), 1, + anon_sym_LBRACE, + STATE(4807), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223909] = 3, + ACTIONS(10312), 1, + anon_sym_get, + ACTIONS(10314), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223920] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4938), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223931] = 3, + ACTIONS(12002), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223942] = 3, + ACTIONS(12004), 1, + anon_sym_DOT, + STATE(9451), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223953] = 3, + ACTIONS(7721), 1, + anon_sym_RBRACE, + ACTIONS(12006), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223964] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4961), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223975] = 3, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(8811), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223986] = 3, + ACTIONS(5500), 1, + anon_sym_LPAREN, + STATE(4660), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223997] = 3, + ACTIONS(10669), 1, + anon_sym_AMP, + ACTIONS(12008), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224008] = 3, + ACTIONS(1864), 1, + anon_sym_LBRACE, + STATE(3184), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224019] = 3, + ACTIONS(7731), 1, + anon_sym_RBRACE, + ACTIONS(12010), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224030] = 3, + ACTIONS(6416), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224041] = 3, + ACTIONS(1796), 1, + anon_sym_LBRACE, + STATE(4826), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224052] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4313), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224061] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1260), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224072] = 3, + ACTIONS(12012), 1, + anon_sym_DOT, + STATE(9466), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224083] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1257), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224094] = 3, + ACTIONS(12014), 1, + anon_sym_DOT, + STATE(8160), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224105] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1245), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224116] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5167), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224125] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224136] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3343), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224147] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3341), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224158] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(12016), 2, + sym__import_list_delimiter, + anon_sym_import, + [224167] = 3, + ACTIONS(10611), 1, + anon_sym_get, + ACTIONS(10613), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224178] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4966), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224189] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3335), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224200] = 3, + ACTIONS(3220), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224211] = 3, + ACTIONS(5500), 1, + anon_sym_LPAREN, + STATE(4681), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224222] = 3, + ACTIONS(1864), 1, + anon_sym_LBRACE, + STATE(3104), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224233] = 3, + ACTIONS(9790), 1, + anon_sym_LPAREN, + STATE(3353), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224244] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4962), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224253] = 3, + ACTIONS(12018), 1, + anon_sym_LBRACE, + STATE(3222), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224264] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224275] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5012), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224284] = 3, + ACTIONS(9762), 1, + anon_sym_LPAREN, + STATE(8381), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224295] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3320), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224306] = 3, + ACTIONS(10537), 1, + anon_sym_get, + ACTIONS(10539), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224317] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3321), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224328] = 3, + ACTIONS(8628), 1, + anon_sym_LPAREN, + STATE(8744), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224339] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5072), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224348] = 3, + ACTIONS(9732), 1, + anon_sym_LPAREN, + STATE(3323), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224359] = 3, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4673), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224370] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5097), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224379] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224390] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4094), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224399] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5322), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224410] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4830), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224419] = 3, + ACTIONS(9786), 1, + anon_sym_LPAREN, + STATE(4667), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224430] = 3, + ACTIONS(10635), 1, + anon_sym_get, + ACTIONS(10637), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224441] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4127), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224452] = 3, + ACTIONS(12020), 1, + anon_sym_COLON, + ACTIONS(12022), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224463] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(12024), 2, + anon_sym_COMMA, + anon_sym_GT, + [224472] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4126), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224483] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5324), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224494] = 3, + ACTIONS(10342), 1, + anon_sym_get, + ACTIONS(10344), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224505] = 3, + ACTIONS(5738), 1, + anon_sym_LPAREN, + STATE(5022), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224516] = 3, + ACTIONS(9734), 1, + anon_sym_LPAREN, + STATE(4125), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224527] = 3, + ACTIONS(12026), 1, + sym__automatic_semicolon, + STATE(9472), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224538] = 3, + ACTIONS(12018), 1, + anon_sym_LBRACE, + STATE(3210), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224549] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4915), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224560] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5330), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224571] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4708), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224582] = 3, + ACTIONS(9768), 1, + anon_sym_LPAREN, + STATE(4724), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224593] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(12028), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [224602] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1752), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [224611] = 3, + ACTIONS(5748), 1, + anon_sym_LBRACE, + STATE(3938), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224622] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5325), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224633] = 2, + ACTIONS(12030), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224641] = 2, + ACTIONS(12032), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224649] = 2, + ACTIONS(1770), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224657] = 2, + ACTIONS(12034), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224665] = 2, + ACTIONS(4634), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224673] = 2, + ACTIONS(4696), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224681] = 2, + ACTIONS(12036), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224689] = 2, + ACTIONS(12038), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224697] = 2, + ACTIONS(12040), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224705] = 2, + ACTIONS(12042), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224713] = 2, + ACTIONS(4411), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224721] = 2, + ACTIONS(11838), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224729] = 2, + ACTIONS(12044), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224737] = 2, + ACTIONS(3382), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224745] = 2, + ACTIONS(4922), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224753] = 2, + ACTIONS(12046), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224761] = 2, + ACTIONS(12048), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224769] = 2, + ACTIONS(12050), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224777] = 2, + ACTIONS(12052), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224785] = 2, + ACTIONS(12054), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224793] = 2, + ACTIONS(12056), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224801] = 2, + ACTIONS(1407), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224809] = 2, + ACTIONS(4910), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224817] = 2, + ACTIONS(12058), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224825] = 2, + ACTIONS(12060), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224833] = 2, + ACTIONS(12062), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224841] = 2, + ACTIONS(4246), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224849] = 2, + ACTIONS(12064), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224857] = 2, + ACTIONS(12066), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224865] = 2, + ACTIONS(12068), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224873] = 2, + ACTIONS(12070), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224881] = 2, + ACTIONS(5020), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224889] = 2, + ACTIONS(12072), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224897] = 2, + ACTIONS(12074), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224905] = 2, + ACTIONS(5056), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224913] = 2, + ACTIONS(12076), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224921] = 2, + ACTIONS(12078), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224929] = 2, + ACTIONS(12080), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224937] = 2, + ACTIONS(12082), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224945] = 2, + ACTIONS(12084), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224953] = 2, + ACTIONS(4818), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224961] = 2, + ACTIONS(1375), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224969] = 2, + ACTIONS(1762), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224977] = 2, + ACTIONS(12086), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224985] = 2, + ACTIONS(11813), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224993] = 2, + ACTIONS(1405), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225001] = 2, + ACTIONS(12088), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225009] = 2, + ACTIONS(12090), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225017] = 2, + ACTIONS(12092), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225025] = 2, + ACTIONS(4365), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225033] = 2, + ACTIONS(10675), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225041] = 2, + ACTIONS(12094), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225049] = 2, + ACTIONS(12096), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225057] = 2, + ACTIONS(12098), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225065] = 2, + ACTIONS(12100), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225073] = 2, + ACTIONS(12102), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225081] = 2, + ACTIONS(12104), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225089] = 2, + ACTIONS(12106), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225097] = 2, + ACTIONS(12108), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225105] = 2, + ACTIONS(12110), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225113] = 2, + ACTIONS(12112), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225121] = 2, + ACTIONS(12114), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225129] = 2, + ACTIONS(12116), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225137] = 2, + ACTIONS(12118), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225145] = 2, + ACTIONS(12120), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225153] = 2, + ACTIONS(12122), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225161] = 2, + ACTIONS(11371), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225169] = 2, + ACTIONS(12124), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225177] = 2, + ACTIONS(12126), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225185] = 2, + ACTIONS(12128), 1, + anon_sym_object, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225193] = 2, + ACTIONS(12130), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225201] = 2, + ACTIONS(12132), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225209] = 2, + ACTIONS(12134), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225217] = 2, + ACTIONS(12136), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225225] = 2, + ACTIONS(12138), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225233] = 2, + ACTIONS(12140), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225241] = 2, + ACTIONS(5117), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225249] = 2, + ACTIONS(12142), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225257] = 2, + ACTIONS(4242), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225265] = 2, + ACTIONS(5121), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225273] = 2, + ACTIONS(12144), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225281] = 2, + ACTIONS(12146), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225289] = 2, + ACTIONS(12148), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225297] = 2, + ACTIONS(5125), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225305] = 2, + ACTIONS(12150), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225313] = 2, + ACTIONS(12152), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225321] = 2, + ACTIONS(11603), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225329] = 2, + ACTIONS(12154), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225337] = 2, + ACTIONS(12156), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225345] = 2, + ACTIONS(4392), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225353] = 2, + ACTIONS(12158), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225361] = 2, + ACTIONS(12160), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225369] = 2, + ACTIONS(12162), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225377] = 2, + ACTIONS(12164), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225385] = 2, + ACTIONS(12166), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225393] = 2, + ACTIONS(5137), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225401] = 2, + ACTIONS(12168), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225409] = 2, + ACTIONS(12170), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225417] = 2, + ACTIONS(12172), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225425] = 2, + ACTIONS(12174), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225433] = 2, + ACTIONS(12176), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225441] = 2, + ACTIONS(4388), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225449] = 2, + ACTIONS(12178), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225457] = 2, + ACTIONS(1782), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225465] = 2, + ACTIONS(12180), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225473] = 2, + ACTIONS(205), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225481] = 2, + ACTIONS(12182), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225489] = 2, + ACTIONS(5145), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225497] = 2, + ACTIONS(12184), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225505] = 2, + ACTIONS(12186), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225513] = 2, + ACTIONS(12188), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225521] = 2, + ACTIONS(4084), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225529] = 2, + ACTIONS(5171), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225537] = 2, + ACTIONS(1401), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225545] = 2, + ACTIONS(12190), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225553] = 2, + ACTIONS(11430), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225561] = 2, + ACTIONS(4384), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225569] = 2, + ACTIONS(4584), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225577] = 2, + ACTIONS(12192), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225585] = 2, + ACTIONS(5195), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225593] = 2, + ACTIONS(5199), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225601] = 2, + ACTIONS(12194), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225609] = 2, + ACTIONS(4228), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225617] = 2, + ACTIONS(12196), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225625] = 2, + ACTIONS(5072), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225633] = 2, + ACTIONS(5052), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225641] = 2, + ACTIONS(12198), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225649] = 2, + ACTIONS(1776), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225657] = 2, + ACTIONS(12200), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225665] = 2, + ACTIONS(5038), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225673] = 2, + ACTIONS(10698), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225681] = 2, + ACTIONS(5024), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225689] = 2, + ACTIONS(4142), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225697] = 2, + ACTIONS(12202), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225705] = 2, + ACTIONS(4974), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225713] = 2, + ACTIONS(4998), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225721] = 2, + ACTIONS(4309), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225729] = 2, + ACTIONS(12204), 1, + anon_sym_file, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225737] = 2, + ACTIONS(12206), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225745] = 2, + ACTIONS(12208), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225753] = 2, + ACTIONS(12210), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225761] = 2, + ACTIONS(12212), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225769] = 2, + ACTIONS(12214), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225777] = 2, + ACTIONS(12216), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225785] = 2, + ACTIONS(12218), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225793] = 2, + ACTIONS(12220), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225801] = 2, + ACTIONS(12222), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225809] = 2, + ACTIONS(12224), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225817] = 2, + ACTIONS(12226), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225825] = 2, + ACTIONS(12228), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225833] = 2, + ACTIONS(12230), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225841] = 2, + ACTIONS(12232), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225849] = 2, + ACTIONS(12234), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225857] = 2, + ACTIONS(12236), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225865] = 2, + ACTIONS(12238), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225873] = 2, + ACTIONS(12240), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225881] = 2, + ACTIONS(12242), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225889] = 2, + ACTIONS(4902), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225897] = 2, + ACTIONS(12244), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225905] = 2, + ACTIONS(1409), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225913] = 2, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225921] = 2, + ACTIONS(4834), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225929] = 2, + ACTIONS(12246), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225937] = 2, + ACTIONS(1696), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225945] = 2, + ACTIONS(12248), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225953] = 2, + ACTIONS(5163), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225961] = 2, + ACTIONS(12250), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225969] = 2, + ACTIONS(12252), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225977] = 2, + ACTIONS(4152), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225985] = 2, + ACTIONS(12254), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225993] = 2, + ACTIONS(12256), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226001] = 2, + ACTIONS(12258), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226009] = 2, + ACTIONS(12260), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226017] = 2, + ACTIONS(12262), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226025] = 2, + ACTIONS(1419), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226033] = 2, + ACTIONS(12264), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226041] = 2, + ACTIONS(12266), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226049] = 2, + ACTIONS(11638), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226057] = 2, + ACTIONS(12268), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226065] = 2, + ACTIONS(12270), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226073] = 2, + ACTIONS(12272), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226081] = 2, + ACTIONS(12274), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226089] = 2, + ACTIONS(12276), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226097] = 2, + ACTIONS(11611), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226105] = 2, + ACTIONS(12278), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226113] = 2, + ACTIONS(12280), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226121] = 2, + ACTIONS(12282), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226129] = 2, + ACTIONS(4234), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226137] = 2, + ACTIONS(12284), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226145] = 2, + ACTIONS(12286), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226153] = 2, + ACTIONS(12288), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226161] = 2, + ACTIONS(12290), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226169] = 2, + ACTIONS(12292), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226177] = 2, + ACTIONS(4826), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226185] = 2, + ACTIONS(12294), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226193] = 2, + ACTIONS(4313), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226201] = 2, + ACTIONS(12296), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226209] = 2, + ACTIONS(12298), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226217] = 2, + ACTIONS(12300), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226225] = 2, + ACTIONS(5167), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226233] = 2, + ACTIONS(5012), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226241] = 2, + ACTIONS(12302), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226249] = 2, + ACTIONS(1752), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226257] = 2, + ACTIONS(12304), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226265] = 2, + ACTIONS(12306), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226273] = 2, + ACTIONS(5085), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226281] = 2, + ACTIONS(11697), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226289] = 2, + ACTIONS(4830), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226297] = 2, + ACTIONS(12308), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226305] = 2, + ACTIONS(4094), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226313] = 2, + ACTIONS(11761), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226321] = 2, + ACTIONS(12310), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226329] = 2, + ACTIONS(11537), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226337] = 2, + ACTIONS(12312), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226345] = 2, + ACTIONS(12314), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226353] = 2, + ACTIONS(12316), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226361] = 2, + ACTIONS(12318), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226369] = 2, + ACTIONS(12320), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226377] = 2, + ACTIONS(12322), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226385] = 2, + ACTIONS(12324), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226393] = 2, + ACTIONS(1411), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226401] = 2, + ACTIONS(1397), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226409] = 2, + ACTIONS(3232), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226417] = 2, + ACTIONS(12326), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226425] = 2, + ACTIONS(12328), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226433] = 2, + ACTIONS(4250), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226441] = 2, + ACTIONS(5002), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226449] = 2, + ACTIONS(12330), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226457] = 2, + ACTIONS(11491), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226465] = 2, + ACTIONS(4748), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226473] = 2, + ACTIONS(12332), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226481] = 2, + ACTIONS(12334), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226489] = 2, + ACTIONS(12336), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226497] = 2, + ACTIONS(12338), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226505] = 2, + ACTIONS(12340), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226513] = 2, + ACTIONS(11454), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226521] = 2, + ACTIONS(3276), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226529] = 2, + ACTIONS(12342), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226537] = 2, + ACTIONS(12344), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226545] = 2, + ACTIONS(11244), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226553] = 2, + ACTIONS(9934), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226561] = 2, + ACTIONS(12346), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226569] = 2, + ACTIONS(3254), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226577] = 2, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226585] = 2, + ACTIONS(12350), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226593] = 2, + ACTIONS(12352), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226601] = 2, + ACTIONS(12354), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226609] = 2, + ACTIONS(12356), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226617] = 2, + ACTIONS(12358), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226625] = 2, + ACTIONS(12360), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226633] = 2, + ACTIONS(1393), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226641] = 2, + ACTIONS(12362), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226649] = 2, + ACTIONS(12364), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226657] = 2, + ACTIONS(12366), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226665] = 2, + ACTIONS(12368), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226673] = 2, + ACTIONS(4291), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226681] = 2, + ACTIONS(12370), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226689] = 2, + ACTIONS(12372), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226697] = 2, + ACTIONS(11337), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226705] = 2, + ACTIONS(12374), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226713] = 2, + ACTIONS(12376), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226721] = 2, + ACTIONS(12378), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226729] = 2, + ACTIONS(12380), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226737] = 2, + ACTIONS(12382), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226745] = 2, + ACTIONS(12384), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226753] = 2, + ACTIONS(11316), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226761] = 2, + ACTIONS(12386), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226769] = 2, + ACTIONS(11308), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226777] = 2, + ACTIONS(12388), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226785] = 2, + ACTIONS(12390), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226793] = 2, + ACTIONS(12392), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226801] = 2, + ACTIONS(12394), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226809] = 2, + ACTIONS(12396), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226817] = 2, + ACTIONS(12398), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226825] = 2, + ACTIONS(12400), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226833] = 2, + ACTIONS(3067), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226841] = 2, + ACTIONS(12402), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226849] = 2, + ACTIONS(12404), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226857] = 2, + ACTIONS(12406), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226865] = 2, + ACTIONS(12408), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226873] = 2, + ACTIONS(12410), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226881] = 2, + ACTIONS(12412), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226889] = 2, + ACTIONS(12414), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226897] = 2, + ACTIONS(12416), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226905] = 2, + ACTIONS(12418), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226913] = 2, + ACTIONS(12420), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226921] = 2, + ACTIONS(12422), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226929] = 2, + ACTIONS(12424), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226937] = 2, + ACTIONS(12426), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226945] = 2, + ACTIONS(12428), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226953] = 2, + ACTIONS(12430), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226961] = 2, + ACTIONS(12432), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226969] = 2, + ACTIONS(12434), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226977] = 2, + ACTIONS(12436), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226985] = 2, + ACTIONS(12438), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226993] = 2, + ACTIONS(12440), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227001] = 2, + ACTIONS(12442), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227009] = 2, + ACTIONS(12444), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227017] = 2, + ACTIONS(12446), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227025] = 2, + ACTIONS(12448), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227033] = 2, + ACTIONS(12450), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227041] = 2, + ACTIONS(12452), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227049] = 2, + ACTIONS(12454), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227057] = 2, + ACTIONS(12456), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227065] = 2, + ACTIONS(12458), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227073] = 2, + ACTIONS(12460), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227081] = 2, + ACTIONS(12462), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227089] = 2, + ACTIONS(12464), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227097] = 2, + ACTIONS(12466), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227105] = 2, + ACTIONS(12468), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227113] = 2, + ACTIONS(12470), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227121] = 2, + ACTIONS(12472), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227129] = 2, + ACTIONS(12474), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227137] = 2, + ACTIONS(10669), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227145] = 2, + ACTIONS(12476), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227153] = 2, + ACTIONS(12478), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227161] = 2, + ACTIONS(12480), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227169] = 2, + ACTIONS(12482), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227177] = 2, + ACTIONS(12484), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227185] = 2, + ACTIONS(12486), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227193] = 2, + ACTIONS(12488), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227201] = 2, + ACTIONS(11304), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227209] = 2, + ACTIONS(12490), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227217] = 2, + ACTIONS(12492), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227225] = 2, + ACTIONS(12494), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227233] = 2, + ACTIONS(12496), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227241] = 2, + ACTIONS(12498), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227249] = 2, + ACTIONS(12500), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227257] = 2, + ACTIONS(12502), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227265] = 2, + ACTIONS(12504), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227273] = 2, + ACTIONS(12506), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227281] = 2, + ACTIONS(12508), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227289] = 2, + ACTIONS(12510), 1, + anon_sym_object, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227297] = 2, + ACTIONS(12512), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227305] = 2, + ACTIONS(12514), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227313] = 2, + ACTIONS(12516), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227321] = 2, + ACTIONS(12518), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227329] = 2, + ACTIONS(12520), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227337] = 2, + ACTIONS(12522), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227345] = 2, + ACTIONS(12524), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227353] = 2, + ACTIONS(12526), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227361] = 2, + ACTIONS(12528), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227369] = 2, + ACTIONS(12530), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227377] = 2, + ACTIONS(12532), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227385] = 2, + ACTIONS(12534), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227393] = 2, + ACTIONS(12536), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227401] = 2, + ACTIONS(12538), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227409] = 2, + ACTIONS(12540), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227417] = 2, + ACTIONS(12542), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227425] = 2, + ACTIONS(12544), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227433] = 2, + ACTIONS(1387), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227441] = 2, + ACTIONS(12546), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227449] = 2, + ACTIONS(12548), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227457] = 2, + ACTIONS(12550), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227465] = 2, + ACTIONS(12552), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227473] = 2, + ACTIONS(12554), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227481] = 2, + ACTIONS(12556), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227489] = 2, + ACTIONS(12558), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227497] = 2, + ACTIONS(12560), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227505] = 2, + ACTIONS(12562), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227513] = 2, + ACTIONS(12564), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227521] = 2, + ACTIONS(12566), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227529] = 2, + ACTIONS(12568), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227537] = 2, + ACTIONS(11450), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227545] = 2, + ACTIONS(12570), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227553] = 2, + ACTIONS(12572), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227561] = 2, + ACTIONS(12574), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227569] = 2, + ACTIONS(12576), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227577] = 2, + ACTIONS(12578), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227585] = 2, + ACTIONS(12580), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227593] = 2, + ACTIONS(12582), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227601] = 2, + ACTIONS(12584), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227609] = 2, + ACTIONS(12586), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227617] = 2, + ACTIONS(12588), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227625] = 2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227633] = 2, + ACTIONS(12592), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227641] = 2, + ACTIONS(12594), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227649] = 2, + ACTIONS(12596), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227657] = 2, + ACTIONS(12598), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227665] = 2, + ACTIONS(12600), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227673] = 2, + ACTIONS(12602), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227681] = 2, + ACTIONS(12604), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227689] = 2, + ACTIONS(12606), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227697] = 2, + ACTIONS(12608), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227705] = 2, + ACTIONS(12610), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227713] = 2, + ACTIONS(12612), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227721] = 2, + ACTIONS(12614), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227729] = 2, + ACTIONS(12616), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227737] = 2, + ACTIONS(12618), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227745] = 2, + ACTIONS(12620), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227753] = 2, + ACTIONS(12622), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227761] = 2, + ACTIONS(12624), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227769] = 2, + ACTIONS(12626), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227777] = 2, + ACTIONS(12628), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227785] = 2, + ACTIONS(12630), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227793] = 2, + ACTIONS(12632), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227801] = 2, + ACTIONS(12634), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227809] = 2, + ACTIONS(12636), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227817] = 2, + ACTIONS(12638), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227825] = 2, + ACTIONS(12640), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227833] = 2, + ACTIONS(12642), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227841] = 2, + ACTIONS(12644), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227849] = 2, + ACTIONS(12646), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227857] = 2, + ACTIONS(12648), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227865] = 2, + ACTIONS(12650), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227873] = 2, + ACTIONS(12652), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227881] = 2, + ACTIONS(12654), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227889] = 2, + ACTIONS(12656), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227897] = 2, + ACTIONS(12658), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227905] = 2, + ACTIONS(12660), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227913] = 2, + ACTIONS(12662), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227921] = 2, + ACTIONS(12664), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227929] = 2, + ACTIONS(12666), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227937] = 2, + ACTIONS(12668), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227945] = 2, + ACTIONS(12670), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227953] = 2, + ACTIONS(12672), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227961] = 2, + ACTIONS(12674), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227969] = 2, + ACTIONS(12676), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227977] = 2, + ACTIONS(12678), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227985] = 2, + ACTIONS(12680), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227993] = 2, + ACTIONS(12682), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228001] = 2, + ACTIONS(12684), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228009] = 2, + ACTIONS(12686), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228017] = 2, + ACTIONS(12688), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228025] = 2, + ACTIONS(12690), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228033] = 2, + ACTIONS(12692), 1, + aux_sym__uni_character_literal_token1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228041] = 2, + ACTIONS(12694), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228049] = 2, + ACTIONS(12696), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228057] = 2, + ACTIONS(12698), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228065] = 2, + ACTIONS(11707), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228073] = 2, + ACTIONS(12700), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228081] = 2, + ACTIONS(12702), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228089] = 2, + ACTIONS(12704), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228097] = 2, + ACTIONS(11587), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228105] = 2, + ACTIONS(12706), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228113] = 2, + ACTIONS(12708), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228121] = 2, + ACTIONS(12710), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228129] = 2, + ACTIONS(12712), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228137] = 2, + ACTIONS(12714), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228145] = 2, + ACTIONS(12716), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228153] = 2, + ACTIONS(12718), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228161] = 2, + ACTIONS(12720), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228169] = 2, + ACTIONS(12722), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228177] = 2, + ACTIONS(12724), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228185] = 2, + ACTIONS(12726), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228193] = 2, + ACTIONS(12728), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228201] = 2, + ACTIONS(12730), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228209] = 2, + ACTIONS(12732), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228217] = 2, + ACTIONS(12734), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228225] = 2, + ACTIONS(12736), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228233] = 2, + ACTIONS(12738), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228241] = 2, + ACTIONS(1413), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228249] = 2, + ACTIONS(12740), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228257] = 2, + ACTIONS(12742), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228265] = 2, + ACTIONS(12744), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228273] = 2, + ACTIONS(12746), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228281] = 2, + ACTIONS(12748), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228289] = 2, + ACTIONS(12750), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228297] = 2, + ACTIONS(12752), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228305] = 2, + ACTIONS(12754), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228313] = 2, + ACTIONS(12756), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228321] = 2, + ACTIONS(12758), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228329] = 2, + ACTIONS(12760), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228337] = 2, + ACTIONS(12762), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228345] = 2, + ACTIONS(12764), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228353] = 2, + ACTIONS(12766), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228361] = 2, + ACTIONS(12768), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228369] = 2, + ACTIONS(12770), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228377] = 2, + ACTIONS(12772), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228385] = 2, + ACTIONS(12774), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228393] = 2, + ACTIONS(12776), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228401] = 2, + ACTIONS(12778), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228409] = 2, + ACTIONS(12780), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228417] = 2, + ACTIONS(12782), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228425] = 2, + ACTIONS(12784), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228433] = 2, + ACTIONS(12786), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228441] = 2, + ACTIONS(12788), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228449] = 2, + ACTIONS(12790), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228457] = 2, + ACTIONS(12792), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228465] = 2, + ACTIONS(12794), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228473] = 2, + ACTIONS(12796), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228481] = 2, + ACTIONS(12798), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228489] = 2, + ACTIONS(12800), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228497] = 2, + ACTIONS(12802), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228505] = 2, + ACTIONS(12804), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228513] = 2, + ACTIONS(12806), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228521] = 2, + ACTIONS(12808), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228529] = 2, + ACTIONS(12810), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228537] = 2, + ACTIONS(12812), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228545] = 2, + ACTIONS(12814), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228553] = 2, + ACTIONS(12816), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228561] = 2, + ACTIONS(12818), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228569] = 2, + ACTIONS(12820), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228577] = 2, + ACTIONS(12822), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228585] = 2, + ACTIONS(12824), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228593] = 2, + ACTIONS(12826), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228601] = 2, + ACTIONS(12828), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228609] = 2, + ACTIONS(12830), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228617] = 2, + ACTIONS(12832), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228625] = 2, + ACTIONS(12834), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228633] = 2, + ACTIONS(12836), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228641] = 2, + ACTIONS(6664), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228649] = 2, + ACTIONS(6627), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228657] = 2, + ACTIONS(12838), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228665] = 2, + ACTIONS(12840), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228673] = 2, + ACTIONS(12842), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228681] = 2, + ACTIONS(12844), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228689] = 2, + ACTIONS(4768), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228697] = 2, + ACTIONS(12846), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228705] = 2, + ACTIONS(8221), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228713] = 2, + ACTIONS(12848), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228721] = 2, + ACTIONS(12850), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228729] = 2, + ACTIONS(8214), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228737] = 2, + ACTIONS(12852), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228745] = 2, + ACTIONS(12854), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228753] = 2, + ACTIONS(12856), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228761] = 2, + ACTIONS(12858), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228769] = 2, + ACTIONS(12860), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228777] = 2, + ACTIONS(12862), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228785] = 2, + ACTIONS(12864), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228793] = 2, + ACTIONS(12866), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228801] = 2, + ACTIONS(12868), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228809] = 2, + ACTIONS(12870), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228817] = 2, + ACTIONS(12872), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228825] = 2, + ACTIONS(12874), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228833] = 2, + ACTIONS(10716), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228841] = 2, + ACTIONS(12876), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228849] = 2, + ACTIONS(12878), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228857] = 2, + ACTIONS(12880), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228865] = 2, + ACTIONS(12882), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228873] = 2, + ACTIONS(12884), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228881] = 2, + ACTIONS(12886), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228889] = 2, + ACTIONS(12888), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228897] = 2, + ACTIONS(12890), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228905] = 2, + ACTIONS(12892), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228913] = 2, + ACTIONS(12894), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228921] = 2, + ACTIONS(12896), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228929] = 2, + ACTIONS(12898), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228937] = 2, + ACTIONS(12900), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228945] = 2, + ACTIONS(12902), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228953] = 2, + ACTIONS(12904), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228961] = 2, + ACTIONS(12906), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228969] = 2, + ACTIONS(12908), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228977] = 2, + ACTIONS(12910), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228985] = 2, + ACTIONS(12912), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228993] = 2, + ACTIONS(12914), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229001] = 2, + ACTIONS(12916), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229009] = 2, + ACTIONS(12918), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229017] = 2, + ACTIONS(12920), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229025] = 2, + ACTIONS(12922), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229033] = 2, + ACTIONS(12924), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229041] = 2, + ACTIONS(12926), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229049] = 2, + ACTIONS(12928), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229057] = 2, + ACTIONS(9157), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229065] = 2, + ACTIONS(12930), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229073] = 2, + ACTIONS(10683), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229081] = 2, + ACTIONS(9159), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229089] = 2, + ACTIONS(12932), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229097] = 2, + ACTIONS(12934), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229105] = 2, + ACTIONS(12936), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229113] = 2, + ACTIONS(12938), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229121] = 2, + ACTIONS(12940), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229129] = 2, + ACTIONS(12942), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229137] = 2, + ACTIONS(1379), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229145] = 2, + ACTIONS(12944), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229153] = 2, + ACTIONS(12946), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229161] = 2, + ACTIONS(12948), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229169] = 2, + ACTIONS(12950), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229177] = 2, + ACTIONS(12952), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229185] = 2, + ACTIONS(12954), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229193] = 2, + ACTIONS(12956), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229201] = 2, + ACTIONS(12958), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229209] = 2, + ACTIONS(12960), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229217] = 2, + ACTIONS(12962), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229225] = 2, + ACTIONS(12964), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229233] = 2, + ACTIONS(11563), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229241] = 2, + ACTIONS(12966), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229249] = 2, + ACTIONS(12968), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229257] = 2, + ACTIONS(9058), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229265] = 2, + ACTIONS(11607), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229273] = 2, + ACTIONS(12970), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229281] = 2, + ACTIONS(12972), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229289] = 2, + ACTIONS(12974), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229297] = 2, + ACTIONS(12976), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229305] = 2, + ACTIONS(12978), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229313] = 2, + ACTIONS(12980), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229321] = 2, + ACTIONS(12982), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229329] = 2, + ACTIONS(12984), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229337] = 2, + ACTIONS(12986), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229345] = 2, + ACTIONS(12988), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229353] = 2, + ACTIONS(12990), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229361] = 2, + ACTIONS(12992), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229369] = 2, + ACTIONS(12994), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229377] = 2, + ACTIONS(12996), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229385] = 2, + ACTIONS(9153), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229393] = 2, + ACTIONS(12998), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229401] = 2, + ACTIONS(13000), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229409] = 2, + ACTIONS(13002), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229417] = 2, + ACTIONS(13004), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229425] = 2, + ACTIONS(9151), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229433] = 2, + ACTIONS(13006), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229441] = 2, + ACTIONS(13008), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229449] = 2, + ACTIONS(13010), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229457] = 2, + ACTIONS(13012), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229465] = 2, + ACTIONS(13014), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229473] = 2, + ACTIONS(13016), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229481] = 2, + ACTIONS(13018), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229489] = 2, + ACTIONS(13020), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229497] = 2, + ACTIONS(13022), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229505] = 2, + ACTIONS(13024), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229513] = 2, + ACTIONS(13026), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229521] = 2, + ACTIONS(13028), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229529] = 2, + ACTIONS(13030), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229537] = 2, + ACTIONS(13032), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229545] = 2, + ACTIONS(10671), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229553] = 2, + ACTIONS(13034), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229561] = 2, + ACTIONS(13036), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229569] = 2, + ACTIONS(13038), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229577] = 2, + ACTIONS(13040), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229585] = 2, + ACTIONS(13042), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229593] = 2, + ACTIONS(13044), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229601] = 2, + ACTIONS(10677), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229609] = 2, + ACTIONS(13046), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229617] = 2, + ACTIONS(13048), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229625] = 2, + ACTIONS(13050), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229633] = 2, + ACTIONS(13052), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229641] = 2, + ACTIONS(13054), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229649] = 2, + ACTIONS(13056), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229657] = 2, + ACTIONS(13058), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229665] = 2, + ACTIONS(13060), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229673] = 2, + ACTIONS(13062), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229681] = 2, + ACTIONS(13064), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229689] = 2, + ACTIONS(13066), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229697] = 2, + ACTIONS(13068), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229705] = 3, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10873), 1, + sym_line_comment, + ACTIONS(13070), 1, + aux_sym_shebang_line_token1, + [229715] = 2, + ACTIONS(13072), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229723] = 2, + ACTIONS(11250), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229731] = 2, + ACTIONS(13074), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229739] = 2, + ACTIONS(13076), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229747] = 2, + ACTIONS(13078), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229755] = 2, + ACTIONS(11412), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229763] = 2, + ACTIONS(13080), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229771] = 2, + ACTIONS(13082), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229779] = 2, + ACTIONS(13084), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229787] = 2, + ACTIONS(13086), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229795] = 2, + ACTIONS(13088), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229803] = 2, + ACTIONS(13090), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229811] = 2, + ACTIONS(13092), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229819] = 2, + ACTIONS(13094), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229827] = 2, + ACTIONS(13096), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229835] = 2, + ACTIONS(13098), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229843] = 2, + ACTIONS(13100), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229851] = 2, + ACTIONS(13102), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229859] = 2, + ACTIONS(13104), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229867] = 2, + ACTIONS(13106), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229875] = 2, + ACTIONS(13108), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229883] = 2, + ACTIONS(13110), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229891] = 2, + ACTIONS(13112), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229899] = 2, + ACTIONS(13114), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229907] = 2, + ACTIONS(13116), 1, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229915] = 2, + ACTIONS(13118), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229923] = 2, + ACTIONS(13120), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229931] = 2, + ACTIONS(13122), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229939] = 2, + ACTIONS(12008), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229947] = 2, + ACTIONS(13124), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229955] = 2, + ACTIONS(13126), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229963] = 2, + ACTIONS(13128), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229971] = 2, + ACTIONS(11617), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229979] = 2, + ACTIONS(13130), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229987] = 2, + ACTIONS(11619), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229995] = 2, + ACTIONS(13132), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230003] = 2, + ACTIONS(13134), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230011] = 2, + ACTIONS(13136), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230019] = 2, + ACTIONS(13138), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230027] = 2, + ACTIONS(13140), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230035] = 2, + ACTIONS(13142), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230043] = 2, + ACTIONS(13144), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230051] = 2, + ACTIONS(13146), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230059] = 2, + ACTIONS(13148), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230067] = 2, + ACTIONS(13150), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230075] = 2, + ACTIONS(13152), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230083] = 2, + ACTIONS(13154), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230091] = 2, + ACTIONS(13156), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230099] = 2, + ACTIONS(13158), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230107] = 2, + ACTIONS(13160), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230115] = 2, + ACTIONS(13162), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230123] = 2, + ACTIONS(13164), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230131] = 2, + ACTIONS(13166), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230139] = 2, + ACTIONS(13168), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230147] = 2, + ACTIONS(13170), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230155] = 2, + ACTIONS(13172), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [230163] = 2, + ACTIONS(13174), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(4573)] = 0, + [SMALL_STATE(4574)] = 75, + [SMALL_STATE(4575)] = 150, + [SMALL_STATE(4576)] = 225, + [SMALL_STATE(4577)] = 300, + [SMALL_STATE(4578)] = 385, + [SMALL_STATE(4579)] = 456, + [SMALL_STATE(4580)] = 531, + [SMALL_STATE(4581)] = 616, + [SMALL_STATE(4582)] = 687, + [SMALL_STATE(4583)] = 758, + [SMALL_STATE(4584)] = 843, + [SMALL_STATE(4585)] = 928, + [SMALL_STATE(4586)] = 1003, + [SMALL_STATE(4587)] = 1074, + [SMALL_STATE(4588)] = 1159, + [SMALL_STATE(4589)] = 1233, + [SMALL_STATE(4590)] = 1307, + [SMALL_STATE(4591)] = 1377, + [SMALL_STATE(4592)] = 1457, + [SMALL_STATE(4593)] = 1537, + [SMALL_STATE(4594)] = 1607, + [SMALL_STATE(4595)] = 1679, + [SMALL_STATE(4596)] = 1759, + [SMALL_STATE(4597)] = 1843, + [SMALL_STATE(4598)] = 1923, + [SMALL_STATE(4599)] = 2003, + [SMALL_STATE(4600)] = 2077, + [SMALL_STATE(4601)] = 2157, + [SMALL_STATE(4602)] = 2231, + [SMALL_STATE(4603)] = 2311, + [SMALL_STATE(4604)] = 2385, + [SMALL_STATE(4605)] = 2457, + [SMALL_STATE(4606)] = 2537, + [SMALL_STATE(4607)] = 2617, + [SMALL_STATE(4608)] = 2699, + [SMALL_STATE(4609)] = 2773, + [SMALL_STATE(4610)] = 2847, + [SMALL_STATE(4611)] = 2931, + [SMALL_STATE(4612)] = 3001, + [SMALL_STATE(4613)] = 3081, + [SMALL_STATE(4614)] = 3163, + [SMALL_STATE(4615)] = 3245, + [SMALL_STATE(4616)] = 3315, + [SMALL_STATE(4617)] = 3401, + [SMALL_STATE(4618)] = 3483, + [SMALL_STATE(4619)] = 3563, + [SMALL_STATE(4620)] = 3645, + [SMALL_STATE(4621)] = 3731, + [SMALL_STATE(4622)] = 3800, + [SMALL_STATE(4623)] = 3877, + [SMALL_STATE(4624)] = 3946, + [SMALL_STATE(4625)] = 4023, + [SMALL_STATE(4626)] = 4100, + [SMALL_STATE(4627)] = 4173, + [SMALL_STATE(4628)] = 4250, + [SMALL_STATE(4629)] = 4319, + [SMALL_STATE(4630)] = 4396, + [SMALL_STATE(4631)] = 4467, + [SMALL_STATE(4632)] = 4544, + [SMALL_STATE(4633)] = 4621, + [SMALL_STATE(4634)] = 4698, + [SMALL_STATE(4635)] = 4775, + [SMALL_STATE(4636)] = 4844, + [SMALL_STATE(4637)] = 4913, + [SMALL_STATE(4638)] = 4990, + [SMALL_STATE(4639)] = 5067, + [SMALL_STATE(4640)] = 5136, + [SMALL_STATE(4641)] = 5205, + [SMALL_STATE(4642)] = 5282, + [SMALL_STATE(4643)] = 5359, + [SMALL_STATE(4644)] = 5436, + [SMALL_STATE(4645)] = 5505, + [SMALL_STATE(4646)] = 5582, + [SMALL_STATE(4647)] = 5659, + [SMALL_STATE(4648)] = 5732, + [SMALL_STATE(4649)] = 5809, + [SMALL_STATE(4650)] = 5884, + [SMALL_STATE(4651)] = 5961, + [SMALL_STATE(4652)] = 6038, + [SMALL_STATE(4653)] = 6115, + [SMALL_STATE(4654)] = 6184, + [SMALL_STATE(4655)] = 6261, + [SMALL_STATE(4656)] = 6338, + [SMALL_STATE(4657)] = 6413, + [SMALL_STATE(4658)] = 6482, + [SMALL_STATE(4659)] = 6559, + [SMALL_STATE(4660)] = 6632, + [SMALL_STATE(4661)] = 6700, + [SMALL_STATE(4662)] = 6772, + [SMALL_STATE(4663)] = 6854, + [SMALL_STATE(4664)] = 6936, + [SMALL_STATE(4665)] = 7008, + [SMALL_STATE(4666)] = 7090, + [SMALL_STATE(4667)] = 7172, + [SMALL_STATE(4668)] = 7254, + [SMALL_STATE(4669)] = 7336, + [SMALL_STATE(4670)] = 7418, + [SMALL_STATE(4671)] = 7500, + [SMALL_STATE(4672)] = 7568, + [SMALL_STATE(4673)] = 7636, + [SMALL_STATE(4674)] = 7718, + [SMALL_STATE(4675)] = 7790, + [SMALL_STATE(4676)] = 7862, + [SMALL_STATE(4677)] = 7932, + [SMALL_STATE(4678)] = 8000, + [SMALL_STATE(4679)] = 8072, + [SMALL_STATE(4680)] = 8154, + [SMALL_STATE(4681)] = 8226, + [SMALL_STATE(4682)] = 8294, + [SMALL_STATE(4683)] = 8362, + [SMALL_STATE(4684)] = 8432, + [SMALL_STATE(4685)] = 8502, + [SMALL_STATE(4686)] = 8574, + [SMALL_STATE(4687)] = 8644, + [SMALL_STATE(4688)] = 8716, + [SMALL_STATE(4689)] = 8788, + [SMALL_STATE(4690)] = 8860, + [SMALL_STATE(4691)] = 8930, + [SMALL_STATE(4692)] = 9002, + [SMALL_STATE(4693)] = 9074, + [SMALL_STATE(4694)] = 9142, + [SMALL_STATE(4695)] = 9214, + [SMALL_STATE(4696)] = 9282, + [SMALL_STATE(4697)] = 9354, + [SMALL_STATE(4698)] = 9426, + [SMALL_STATE(4699)] = 9494, + [SMALL_STATE(4700)] = 9566, + [SMALL_STATE(4701)] = 9634, + [SMALL_STATE(4702)] = 9702, + [SMALL_STATE(4703)] = 9774, + [SMALL_STATE(4704)] = 9846, + [SMALL_STATE(4705)] = 9918, + [SMALL_STATE(4706)] = 9986, + [SMALL_STATE(4707)] = 10058, + [SMALL_STATE(4708)] = 10126, + [SMALL_STATE(4709)] = 10208, + [SMALL_STATE(4710)] = 10280, + [SMALL_STATE(4711)] = 10352, + [SMALL_STATE(4712)] = 10420, + [SMALL_STATE(4713)] = 10492, + [SMALL_STATE(4714)] = 10564, + [SMALL_STATE(4715)] = 10632, + [SMALL_STATE(4716)] = 10714, + [SMALL_STATE(4717)] = 10786, + [SMALL_STATE(4718)] = 10856, + [SMALL_STATE(4719)] = 10928, + [SMALL_STATE(4720)] = 11010, + [SMALL_STATE(4721)] = 11078, + [SMALL_STATE(4722)] = 11150, + [SMALL_STATE(4723)] = 11222, + [SMALL_STATE(4724)] = 11294, + [SMALL_STATE(4725)] = 11376, + [SMALL_STATE(4726)] = 11444, + [SMALL_STATE(4727)] = 11516, + [SMALL_STATE(4728)] = 11588, + [SMALL_STATE(4729)] = 11656, + [SMALL_STATE(4730)] = 11728, + [SMALL_STATE(4731)] = 11800, + [SMALL_STATE(4732)] = 11872, + [SMALL_STATE(4733)] = 11944, + [SMALL_STATE(4734)] = 12016, + [SMALL_STATE(4735)] = 12084, + [SMALL_STATE(4736)] = 12166, + [SMALL_STATE(4737)] = 12234, + [SMALL_STATE(4738)] = 12301, + [SMALL_STATE(4739)] = 12368, + [SMALL_STATE(4740)] = 12435, + [SMALL_STATE(4741)] = 12502, + [SMALL_STATE(4742)] = 12569, + [SMALL_STATE(4743)] = 12636, + [SMALL_STATE(4744)] = 12703, + [SMALL_STATE(4745)] = 12770, + [SMALL_STATE(4746)] = 12841, + [SMALL_STATE(4747)] = 12908, + [SMALL_STATE(4748)] = 12975, + [SMALL_STATE(4749)] = 13042, + [SMALL_STATE(4750)] = 13109, + [SMALL_STATE(4751)] = 13176, + [SMALL_STATE(4752)] = 13245, + [SMALL_STATE(4753)] = 13312, + [SMALL_STATE(4754)] = 13379, + [SMALL_STATE(4755)] = 13446, + [SMALL_STATE(4756)] = 13513, + [SMALL_STATE(4757)] = 13580, + [SMALL_STATE(4758)] = 13647, + [SMALL_STATE(4759)] = 13714, + [SMALL_STATE(4760)] = 13781, + [SMALL_STATE(4761)] = 13850, + [SMALL_STATE(4762)] = 13931, + [SMALL_STATE(4763)] = 14000, + [SMALL_STATE(4764)] = 14069, + [SMALL_STATE(4765)] = 14138, + [SMALL_STATE(4766)] = 14205, + [SMALL_STATE(4767)] = 14272, + [SMALL_STATE(4768)] = 14341, + [SMALL_STATE(4769)] = 14408, + [SMALL_STATE(4770)] = 14475, + [SMALL_STATE(4771)] = 14542, + [SMALL_STATE(4772)] = 14613, + [SMALL_STATE(4773)] = 14680, + [SMALL_STATE(4774)] = 14747, + [SMALL_STATE(4775)] = 14814, + [SMALL_STATE(4776)] = 14881, + [SMALL_STATE(4777)] = 14948, + [SMALL_STATE(4778)] = 15015, + [SMALL_STATE(4779)] = 15082, + [SMALL_STATE(4780)] = 15149, + [SMALL_STATE(4781)] = 15216, + [SMALL_STATE(4782)] = 15283, + [SMALL_STATE(4783)] = 15350, + [SMALL_STATE(4784)] = 15417, + [SMALL_STATE(4785)] = 15484, + [SMALL_STATE(4786)] = 15551, + [SMALL_STATE(4787)] = 15618, + [SMALL_STATE(4788)] = 15685, + [SMALL_STATE(4789)] = 15752, + [SMALL_STATE(4790)] = 15819, + [SMALL_STATE(4791)] = 15886, + [SMALL_STATE(4792)] = 15953, + [SMALL_STATE(4793)] = 16020, + [SMALL_STATE(4794)] = 16087, + [SMALL_STATE(4795)] = 16166, + [SMALL_STATE(4796)] = 16233, + [SMALL_STATE(4797)] = 16312, + [SMALL_STATE(4798)] = 16379, + [SMALL_STATE(4799)] = 16446, + [SMALL_STATE(4800)] = 16513, + [SMALL_STATE(4801)] = 16580, + [SMALL_STATE(4802)] = 16647, + [SMALL_STATE(4803)] = 16728, + [SMALL_STATE(4804)] = 16795, + [SMALL_STATE(4805)] = 16862, + [SMALL_STATE(4806)] = 16929, + [SMALL_STATE(4807)] = 16996, + [SMALL_STATE(4808)] = 17063, + [SMALL_STATE(4809)] = 17130, + [SMALL_STATE(4810)] = 17209, + [SMALL_STATE(4811)] = 17276, + [SMALL_STATE(4812)] = 17353, + [SMALL_STATE(4813)] = 17420, + [SMALL_STATE(4814)] = 17487, + [SMALL_STATE(4815)] = 17554, + [SMALL_STATE(4816)] = 17621, + [SMALL_STATE(4817)] = 17702, + [SMALL_STATE(4818)] = 17781, + [SMALL_STATE(4819)] = 17854, + [SMALL_STATE(4820)] = 17921, + [SMALL_STATE(4821)] = 17988, + [SMALL_STATE(4822)] = 18055, + [SMALL_STATE(4823)] = 18122, + [SMALL_STATE(4824)] = 18201, + [SMALL_STATE(4825)] = 18268, + [SMALL_STATE(4826)] = 18335, + [SMALL_STATE(4827)] = 18402, + [SMALL_STATE(4828)] = 18469, + [SMALL_STATE(4829)] = 18538, + [SMALL_STATE(4830)] = 18617, + [SMALL_STATE(4831)] = 18698, + [SMALL_STATE(4832)] = 18765, + [SMALL_STATE(4833)] = 18836, + [SMALL_STATE(4834)] = 18903, + [SMALL_STATE(4835)] = 18970, + [SMALL_STATE(4836)] = 19037, + [SMALL_STATE(4837)] = 19104, + [SMALL_STATE(4838)] = 19173, + [SMALL_STATE(4839)] = 19244, + [SMALL_STATE(4840)] = 19311, + [SMALL_STATE(4841)] = 19378, + [SMALL_STATE(4842)] = 19445, + [SMALL_STATE(4843)] = 19512, + [SMALL_STATE(4844)] = 19579, + [SMALL_STATE(4845)] = 19646, + [SMALL_STATE(4846)] = 19713, + [SMALL_STATE(4847)] = 19780, + [SMALL_STATE(4848)] = 19847, + [SMALL_STATE(4849)] = 19920, + [SMALL_STATE(4850)] = 19989, + [SMALL_STATE(4851)] = 20062, + [SMALL_STATE(4852)] = 20129, + [SMALL_STATE(4853)] = 20196, + [SMALL_STATE(4854)] = 20263, + [SMALL_STATE(4855)] = 20330, + [SMALL_STATE(4856)] = 20397, + [SMALL_STATE(4857)] = 20474, + [SMALL_STATE(4858)] = 20541, + [SMALL_STATE(4859)] = 20608, + [SMALL_STATE(4860)] = 20679, + [SMALL_STATE(4861)] = 20746, + [SMALL_STATE(4862)] = 20817, + [SMALL_STATE(4863)] = 20884, + [SMALL_STATE(4864)] = 20951, + [SMALL_STATE(4865)] = 21018, + [SMALL_STATE(4866)] = 21085, + [SMALL_STATE(4867)] = 21152, + [SMALL_STATE(4868)] = 21219, + [SMALL_STATE(4869)] = 21286, + [SMALL_STATE(4870)] = 21353, + [SMALL_STATE(4871)] = 21420, + [SMALL_STATE(4872)] = 21487, + [SMALL_STATE(4873)] = 21564, + [SMALL_STATE(4874)] = 21631, + [SMALL_STATE(4875)] = 21708, + [SMALL_STATE(4876)] = 21785, + [SMALL_STATE(4877)] = 21862, + [SMALL_STATE(4878)] = 21929, + [SMALL_STATE(4879)] = 22006, + [SMALL_STATE(4880)] = 22073, + [SMALL_STATE(4881)] = 22150, + [SMALL_STATE(4882)] = 22227, + [SMALL_STATE(4883)] = 22294, + [SMALL_STATE(4884)] = 22361, + [SMALL_STATE(4885)] = 22428, + [SMALL_STATE(4886)] = 22505, + [SMALL_STATE(4887)] = 22572, + [SMALL_STATE(4888)] = 22643, + [SMALL_STATE(4889)] = 22710, + [SMALL_STATE(4890)] = 22777, + [SMALL_STATE(4891)] = 22844, + [SMALL_STATE(4892)] = 22911, + [SMALL_STATE(4893)] = 22978, + [SMALL_STATE(4894)] = 23045, + [SMALL_STATE(4895)] = 23112, + [SMALL_STATE(4896)] = 23179, + [SMALL_STATE(4897)] = 23246, + [SMALL_STATE(4898)] = 23313, + [SMALL_STATE(4899)] = 23390, + [SMALL_STATE(4900)] = 23457, + [SMALL_STATE(4901)] = 23524, + [SMALL_STATE(4902)] = 23601, + [SMALL_STATE(4903)] = 23668, + [SMALL_STATE(4904)] = 23747, + [SMALL_STATE(4905)] = 23816, + [SMALL_STATE(4906)] = 23883, + [SMALL_STATE(4907)] = 23950, + [SMALL_STATE(4908)] = 24029, + [SMALL_STATE(4909)] = 24096, + [SMALL_STATE(4910)] = 24163, + [SMALL_STATE(4911)] = 24232, + [SMALL_STATE(4912)] = 24299, + [SMALL_STATE(4913)] = 24378, + [SMALL_STATE(4914)] = 24447, + [SMALL_STATE(4915)] = 24514, + [SMALL_STATE(4916)] = 24595, + [SMALL_STATE(4917)] = 24662, + [SMALL_STATE(4918)] = 24729, + [SMALL_STATE(4919)] = 24796, + [SMALL_STATE(4920)] = 24863, + [SMALL_STATE(4921)] = 24942, + [SMALL_STATE(4922)] = 25021, + [SMALL_STATE(4923)] = 25088, + [SMALL_STATE(4924)] = 25155, + [SMALL_STATE(4925)] = 25232, + [SMALL_STATE(4926)] = 25311, + [SMALL_STATE(4927)] = 25390, + [SMALL_STATE(4928)] = 25469, + [SMALL_STATE(4929)] = 25546, + [SMALL_STATE(4930)] = 25613, + [SMALL_STATE(4931)] = 25690, + [SMALL_STATE(4932)] = 25767, + [SMALL_STATE(4933)] = 25844, + [SMALL_STATE(4934)] = 25921, + [SMALL_STATE(4935)] = 25988, + [SMALL_STATE(4936)] = 26065, + [SMALL_STATE(4937)] = 26144, + [SMALL_STATE(4938)] = 26211, + [SMALL_STATE(4939)] = 26291, + [SMALL_STATE(4940)] = 26367, + [SMALL_STATE(4941)] = 26437, + [SMALL_STATE(4942)] = 26513, + [SMALL_STATE(4943)] = 26587, + [SMALL_STATE(4944)] = 26665, + [SMALL_STATE(4945)] = 26735, + [SMALL_STATE(4946)] = 26809, + [SMALL_STATE(4947)] = 26883, + [SMALL_STATE(4948)] = 26955, + [SMALL_STATE(4949)] = 27021, + [SMALL_STATE(4950)] = 27087, + [SMALL_STATE(4951)] = 27159, + [SMALL_STATE(4952)] = 27225, + [SMALL_STATE(4953)] = 27303, + [SMALL_STATE(4954)] = 27379, + [SMALL_STATE(4955)] = 27445, + [SMALL_STATE(4956)] = 27521, + [SMALL_STATE(4957)] = 27587, + [SMALL_STATE(4958)] = 27663, + [SMALL_STATE(4959)] = 27729, + [SMALL_STATE(4960)] = 27803, + [SMALL_STATE(4961)] = 27869, + [SMALL_STATE(4962)] = 27949, + [SMALL_STATE(4963)] = 28015, + [SMALL_STATE(4964)] = 28093, + [SMALL_STATE(4965)] = 28169, + [SMALL_STATE(4966)] = 28235, + [SMALL_STATE(4967)] = 28315, + [SMALL_STATE(4968)] = 28391, + [SMALL_STATE(4969)] = 28465, + [SMALL_STATE(4970)] = 28541, + [SMALL_STATE(4971)] = 28615, + [SMALL_STATE(4972)] = 28693, + [SMALL_STATE(4973)] = 28763, + [SMALL_STATE(4974)] = 28837, + [SMALL_STATE(4975)] = 28911, + [SMALL_STATE(4976)] = 28991, + [SMALL_STATE(4977)] = 29061, + [SMALL_STATE(4978)] = 29131, + [SMALL_STATE(4979)] = 29211, + [SMALL_STATE(4980)] = 29285, + [SMALL_STATE(4981)] = 29359, + [SMALL_STATE(4982)] = 29435, + [SMALL_STATE(4983)] = 29511, + [SMALL_STATE(4984)] = 29585, + [SMALL_STATE(4985)] = 29659, + [SMALL_STATE(4986)] = 29735, + [SMALL_STATE(4987)] = 29809, + [SMALL_STATE(4988)] = 29883, + [SMALL_STATE(4989)] = 29949, + [SMALL_STATE(4990)] = 30023, + [SMALL_STATE(4991)] = 30089, + [SMALL_STATE(4992)] = 30163, + [SMALL_STATE(4993)] = 30237, + [SMALL_STATE(4994)] = 30311, + [SMALL_STATE(4995)] = 30377, + [SMALL_STATE(4996)] = 30455, + [SMALL_STATE(4997)] = 30531, + [SMALL_STATE(4998)] = 30607, + [SMALL_STATE(4999)] = 30683, + [SMALL_STATE(5000)] = 30749, + [SMALL_STATE(5001)] = 30825, + [SMALL_STATE(5002)] = 30899, + [SMALL_STATE(5003)] = 30975, + [SMALL_STATE(5004)] = 31049, + [SMALL_STATE(5005)] = 31123, + [SMALL_STATE(5006)] = 31199, + [SMALL_STATE(5007)] = 31269, + [SMALL_STATE(5008)] = 31345, + [SMALL_STATE(5009)] = 31421, + [SMALL_STATE(5010)] = 31495, + [SMALL_STATE(5011)] = 31568, + [SMALL_STATE(5012)] = 31641, + [SMALL_STATE(5013)] = 31714, + [SMALL_STATE(5014)] = 31779, + [SMALL_STATE(5015)] = 31844, + [SMALL_STATE(5016)] = 31917, + [SMALL_STATE(5017)] = 31982, + [SMALL_STATE(5018)] = 32047, + [SMALL_STATE(5019)] = 32116, + [SMALL_STATE(5020)] = 32185, + [SMALL_STATE(5021)] = 32252, + [SMALL_STATE(5022)] = 32325, + [SMALL_STATE(5023)] = 32390, + [SMALL_STATE(5024)] = 32455, + [SMALL_STATE(5025)] = 32524, + [SMALL_STATE(5026)] = 32593, + [SMALL_STATE(5027)] = 32666, + [SMALL_STATE(5028)] = 32735, + [SMALL_STATE(5029)] = 32804, + [SMALL_STATE(5030)] = 32877, + [SMALL_STATE(5031)] = 32946, + [SMALL_STATE(5032)] = 33021, + [SMALL_STATE(5033)] = 33090, + [SMALL_STATE(5034)] = 33159, + [SMALL_STATE(5035)] = 33232, + [SMALL_STATE(5036)] = 33297, + [SMALL_STATE(5037)] = 33366, + [SMALL_STATE(5038)] = 33431, + [SMALL_STATE(5039)] = 33504, + [SMALL_STATE(5040)] = 33569, + [SMALL_STATE(5041)] = 33634, + [SMALL_STATE(5042)] = 33699, + [SMALL_STATE(5043)] = 33768, + [SMALL_STATE(5044)] = 33837, + [SMALL_STATE(5045)] = 33902, + [SMALL_STATE(5046)] = 33971, + [SMALL_STATE(5047)] = 34046, + [SMALL_STATE(5048)] = 34119, + [SMALL_STATE(5049)] = 34192, + [SMALL_STATE(5050)] = 34265, + [SMALL_STATE(5051)] = 34338, + [SMALL_STATE(5052)] = 34411, + [SMALL_STATE(5053)] = 34488, + [SMALL_STATE(5054)] = 34561, + [SMALL_STATE(5055)] = 34634, + [SMALL_STATE(5056)] = 34707, + [SMALL_STATE(5057)] = 34780, + [SMALL_STATE(5058)] = 34855, + [SMALL_STATE(5059)] = 34920, + [SMALL_STATE(5060)] = 34993, + [SMALL_STATE(5061)] = 35068, + [SMALL_STATE(5062)] = 35133, + [SMALL_STATE(5063)] = 35202, + [SMALL_STATE(5064)] = 35271, + [SMALL_STATE(5065)] = 35336, + [SMALL_STATE(5066)] = 35413, + [SMALL_STATE(5067)] = 35478, + [SMALL_STATE(5068)] = 35547, + [SMALL_STATE(5069)] = 35616, + [SMALL_STATE(5070)] = 35689, + [SMALL_STATE(5071)] = 35754, + [SMALL_STATE(5072)] = 35825, + [SMALL_STATE(5073)] = 35894, + [SMALL_STATE(5074)] = 35961, + [SMALL_STATE(5075)] = 36032, + [SMALL_STATE(5076)] = 36101, + [SMALL_STATE(5077)] = 36168, + [SMALL_STATE(5078)] = 36243, + [SMALL_STATE(5079)] = 36316, + [SMALL_STATE(5080)] = 36385, + [SMALL_STATE(5081)] = 36450, + [SMALL_STATE(5082)] = 36523, + [SMALL_STATE(5083)] = 36592, + [SMALL_STATE(5084)] = 36661, + [SMALL_STATE(5085)] = 36734, + [SMALL_STATE(5086)] = 36811, + [SMALL_STATE(5087)] = 36876, + [SMALL_STATE(5088)] = 36943, + [SMALL_STATE(5089)] = 37012, + [SMALL_STATE(5090)] = 37081, + [SMALL_STATE(5091)] = 37156, + [SMALL_STATE(5092)] = 37225, + [SMALL_STATE(5093)] = 37298, + [SMALL_STATE(5094)] = 37371, + [SMALL_STATE(5095)] = 37448, + [SMALL_STATE(5096)] = 37513, + [SMALL_STATE(5097)] = 37578, + [SMALL_STATE(5098)] = 37643, + [SMALL_STATE(5099)] = 37716, + [SMALL_STATE(5100)] = 37789, + [SMALL_STATE(5101)] = 37858, + [SMALL_STATE(5102)] = 37927, + [SMALL_STATE(5103)] = 37996, + [SMALL_STATE(5104)] = 38069, + [SMALL_STATE(5105)] = 38138, + [SMALL_STATE(5106)] = 38203, + [SMALL_STATE(5107)] = 38272, + [SMALL_STATE(5108)] = 38337, + [SMALL_STATE(5109)] = 38406, + [SMALL_STATE(5110)] = 38483, + [SMALL_STATE(5111)] = 38556, + [SMALL_STATE(5112)] = 38625, + [SMALL_STATE(5113)] = 38694, + [SMALL_STATE(5114)] = 38763, + [SMALL_STATE(5115)] = 38835, + [SMALL_STATE(5116)] = 38901, + [SMALL_STATE(5117)] = 38965, + [SMALL_STATE(5118)] = 39037, + [SMALL_STATE(5119)] = 39111, + [SMALL_STATE(5120)] = 39177, + [SMALL_STATE(5121)] = 39241, + [SMALL_STATE(5122)] = 39305, + [SMALL_STATE(5123)] = 39369, + [SMALL_STATE(5124)] = 39439, + [SMALL_STATE(5125)] = 39503, + [SMALL_STATE(5126)] = 39575, + [SMALL_STATE(5127)] = 39639, + [SMALL_STATE(5128)] = 39711, + [SMALL_STATE(5129)] = 39775, + [SMALL_STATE(5130)] = 39849, + [SMALL_STATE(5131)] = 39923, + [SMALL_STATE(5132)] = 39987, + [SMALL_STATE(5133)] = 40059, + [SMALL_STATE(5134)] = 40123, + [SMALL_STATE(5135)] = 40187, + [SMALL_STATE(5136)] = 40251, + [SMALL_STATE(5137)] = 40315, + [SMALL_STATE(5138)] = 40379, + [SMALL_STATE(5139)] = 40443, + [SMALL_STATE(5140)] = 40513, + [SMALL_STATE(5141)] = 40577, + [SMALL_STATE(5142)] = 40641, + [SMALL_STATE(5143)] = 40705, + [SMALL_STATE(5144)] = 40769, + [SMALL_STATE(5145)] = 40833, + [SMALL_STATE(5146)] = 40897, + [SMALL_STATE(5147)] = 40961, + [SMALL_STATE(5148)] = 41025, + [SMALL_STATE(5149)] = 41089, + [SMALL_STATE(5150)] = 41153, + [SMALL_STATE(5151)] = 41217, + [SMALL_STATE(5152)] = 41281, + [SMALL_STATE(5153)] = 41345, + [SMALL_STATE(5154)] = 41409, + [SMALL_STATE(5155)] = 41481, + [SMALL_STATE(5156)] = 41545, + [SMALL_STATE(5157)] = 41609, + [SMALL_STATE(5158)] = 41673, + [SMALL_STATE(5159)] = 41737, + [SMALL_STATE(5160)] = 41801, + [SMALL_STATE(5161)] = 41865, + [SMALL_STATE(5162)] = 41937, + [SMALL_STATE(5163)] = 42001, + [SMALL_STATE(5164)] = 42065, + [SMALL_STATE(5165)] = 42129, + [SMALL_STATE(5166)] = 42193, + [SMALL_STATE(5167)] = 42257, + [SMALL_STATE(5168)] = 42323, + [SMALL_STATE(5169)] = 42389, + [SMALL_STATE(5170)] = 42463, + [SMALL_STATE(5171)] = 42529, + [SMALL_STATE(5172)] = 42595, + [SMALL_STATE(5173)] = 42661, + [SMALL_STATE(5174)] = 42725, + [SMALL_STATE(5175)] = 42797, + [SMALL_STATE(5176)] = 42871, + [SMALL_STATE(5177)] = 42935, + [SMALL_STATE(5178)] = 42999, + [SMALL_STATE(5179)] = 43063, + [SMALL_STATE(5180)] = 43127, + [SMALL_STATE(5181)] = 43191, + [SMALL_STATE(5182)] = 43257, + [SMALL_STATE(5183)] = 43329, + [SMALL_STATE(5184)] = 43393, + [SMALL_STATE(5185)] = 43457, + [SMALL_STATE(5186)] = 43521, + [SMALL_STATE(5187)] = 43585, + [SMALL_STATE(5188)] = 43649, + [SMALL_STATE(5189)] = 43713, + [SMALL_STATE(5190)] = 43777, + [SMALL_STATE(5191)] = 43841, + [SMALL_STATE(5192)] = 43915, + [SMALL_STATE(5193)] = 43979, + [SMALL_STATE(5194)] = 44043, + [SMALL_STATE(5195)] = 44107, + [SMALL_STATE(5196)] = 44171, + [SMALL_STATE(5197)] = 44235, + [SMALL_STATE(5198)] = 44299, + [SMALL_STATE(5199)] = 44371, + [SMALL_STATE(5200)] = 44445, + [SMALL_STATE(5201)] = 44509, + [SMALL_STATE(5202)] = 44573, + [SMALL_STATE(5203)] = 44637, + [SMALL_STATE(5204)] = 44701, + [SMALL_STATE(5205)] = 44765, + [SMALL_STATE(5206)] = 44839, + [SMALL_STATE(5207)] = 44903, + [SMALL_STATE(5208)] = 44967, + [SMALL_STATE(5209)] = 45031, + [SMALL_STATE(5210)] = 45095, + [SMALL_STATE(5211)] = 45159, + [SMALL_STATE(5212)] = 45223, + [SMALL_STATE(5213)] = 45295, + [SMALL_STATE(5214)] = 45359, + [SMALL_STATE(5215)] = 45423, + [SMALL_STATE(5216)] = 45487, + [SMALL_STATE(5217)] = 45551, + [SMALL_STATE(5218)] = 45615, + [SMALL_STATE(5219)] = 45679, + [SMALL_STATE(5220)] = 45743, + [SMALL_STATE(5221)] = 45807, + [SMALL_STATE(5222)] = 45871, + [SMALL_STATE(5223)] = 45943, + [SMALL_STATE(5224)] = 46007, + [SMALL_STATE(5225)] = 46071, + [SMALL_STATE(5226)] = 46135, + [SMALL_STATE(5227)] = 46205, + [SMALL_STATE(5228)] = 46269, + [SMALL_STATE(5229)] = 46333, + [SMALL_STATE(5230)] = 46397, + [SMALL_STATE(5231)] = 46461, + [SMALL_STATE(5232)] = 46533, + [SMALL_STATE(5233)] = 46597, + [SMALL_STATE(5234)] = 46667, + [SMALL_STATE(5235)] = 46731, + [SMALL_STATE(5236)] = 46795, + [SMALL_STATE(5237)] = 46867, + [SMALL_STATE(5238)] = 46931, + [SMALL_STATE(5239)] = 46995, + [SMALL_STATE(5240)] = 47059, + [SMALL_STATE(5241)] = 47123, + [SMALL_STATE(5242)] = 47187, + [SMALL_STATE(5243)] = 47251, + [SMALL_STATE(5244)] = 47315, + [SMALL_STATE(5245)] = 47379, + [SMALL_STATE(5246)] = 47443, + [SMALL_STATE(5247)] = 47507, + [SMALL_STATE(5248)] = 47571, + [SMALL_STATE(5249)] = 47635, + [SMALL_STATE(5250)] = 47699, + [SMALL_STATE(5251)] = 47763, + [SMALL_STATE(5252)] = 47827, + [SMALL_STATE(5253)] = 47891, + [SMALL_STATE(5254)] = 47959, + [SMALL_STATE(5255)] = 48023, + [SMALL_STATE(5256)] = 48087, + [SMALL_STATE(5257)] = 48151, + [SMALL_STATE(5258)] = 48215, + [SMALL_STATE(5259)] = 48279, + [SMALL_STATE(5260)] = 48343, + [SMALL_STATE(5261)] = 48407, + [SMALL_STATE(5262)] = 48479, + [SMALL_STATE(5263)] = 48547, + [SMALL_STATE(5264)] = 48611, + [SMALL_STATE(5265)] = 48683, + [SMALL_STATE(5266)] = 48747, + [SMALL_STATE(5267)] = 48811, + [SMALL_STATE(5268)] = 48875, + [SMALL_STATE(5269)] = 48943, + [SMALL_STATE(5270)] = 49007, + [SMALL_STATE(5271)] = 49071, + [SMALL_STATE(5272)] = 49135, + [SMALL_STATE(5273)] = 49199, + [SMALL_STATE(5274)] = 49263, + [SMALL_STATE(5275)] = 49327, + [SMALL_STATE(5276)] = 49391, + [SMALL_STATE(5277)] = 49455, + [SMALL_STATE(5278)] = 49519, + [SMALL_STATE(5279)] = 49583, + [SMALL_STATE(5280)] = 49647, + [SMALL_STATE(5281)] = 49711, + [SMALL_STATE(5282)] = 49775, + [SMALL_STATE(5283)] = 49839, + [SMALL_STATE(5284)] = 49903, + [SMALL_STATE(5285)] = 49967, + [SMALL_STATE(5286)] = 50031, + [SMALL_STATE(5287)] = 50095, + [SMALL_STATE(5288)] = 50167, + [SMALL_STATE(5289)] = 50231, + [SMALL_STATE(5290)] = 50295, + [SMALL_STATE(5291)] = 50359, + [SMALL_STATE(5292)] = 50423, + [SMALL_STATE(5293)] = 50487, + [SMALL_STATE(5294)] = 50551, + [SMALL_STATE(5295)] = 50615, + [SMALL_STATE(5296)] = 50685, + [SMALL_STATE(5297)] = 50749, + [SMALL_STATE(5298)] = 50813, + [SMALL_STATE(5299)] = 50883, + [SMALL_STATE(5300)] = 50953, + [SMALL_STATE(5301)] = 51025, + [SMALL_STATE(5302)] = 51089, + [SMALL_STATE(5303)] = 51153, + [SMALL_STATE(5304)] = 51225, + [SMALL_STATE(5305)] = 51289, + [SMALL_STATE(5306)] = 51353, + [SMALL_STATE(5307)] = 51417, + [SMALL_STATE(5308)] = 51481, + [SMALL_STATE(5309)] = 51545, + [SMALL_STATE(5310)] = 51609, + [SMALL_STATE(5311)] = 51673, + [SMALL_STATE(5312)] = 51737, + [SMALL_STATE(5313)] = 51809, + [SMALL_STATE(5314)] = 51875, + [SMALL_STATE(5315)] = 51942, + [SMALL_STATE(5316)] = 52009, + [SMALL_STATE(5317)] = 52076, + [SMALL_STATE(5318)] = 52145, + [SMALL_STATE(5319)] = 52222, + [SMALL_STATE(5320)] = 52289, + [SMALL_STATE(5321)] = 52356, + [SMALL_STATE(5322)] = 52429, + [SMALL_STATE(5323)] = 52506, + [SMALL_STATE(5324)] = 52573, + [SMALL_STATE(5325)] = 52650, + [SMALL_STATE(5326)] = 52727, + [SMALL_STATE(5327)] = 52792, + [SMALL_STATE(5328)] = 52859, + [SMALL_STATE(5329)] = 52926, + [SMALL_STATE(5330)] = 52993, + [SMALL_STATE(5331)] = 53070, + [SMALL_STATE(5332)] = 53137, + [SMALL_STATE(5333)] = 53214, + [SMALL_STATE(5334)] = 53281, + [SMALL_STATE(5335)] = 53358, + [SMALL_STATE(5336)] = 53425, + [SMALL_STATE(5337)] = 53494, + [SMALL_STATE(5338)] = 53563, + [SMALL_STATE(5339)] = 53630, + [SMALL_STATE(5340)] = 53697, + [SMALL_STATE(5341)] = 53774, + [SMALL_STATE(5342)] = 53851, + [SMALL_STATE(5343)] = 53928, + [SMALL_STATE(5344)] = 53995, + [SMALL_STATE(5345)] = 54062, + [SMALL_STATE(5346)] = 54131, + [SMALL_STATE(5347)] = 54198, + [SMALL_STATE(5348)] = 54265, + [SMALL_STATE(5349)] = 54332, + [SMALL_STATE(5350)] = 54399, + [SMALL_STATE(5351)] = 54466, + [SMALL_STATE(5352)] = 54533, + [SMALL_STATE(5353)] = 54600, + [SMALL_STATE(5354)] = 54667, + [SMALL_STATE(5355)] = 54732, + [SMALL_STATE(5356)] = 54797, + [SMALL_STATE(5357)] = 54862, + [SMALL_STATE(5358)] = 54929, + [SMALL_STATE(5359)] = 54994, + [SMALL_STATE(5360)] = 55061, + [SMALL_STATE(5361)] = 55128, + [SMALL_STATE(5362)] = 55193, + [SMALL_STATE(5363)] = 55258, + [SMALL_STATE(5364)] = 55325, + [SMALL_STATE(5365)] = 55387, + [SMALL_STATE(5366)] = 55451, + [SMALL_STATE(5367)] = 55519, + [SMALL_STATE(5368)] = 55587, + [SMALL_STATE(5369)] = 55649, + [SMALL_STATE(5370)] = 55715, + [SMALL_STATE(5371)] = 55779, + [SMALL_STATE(5372)] = 55841, + [SMALL_STATE(5373)] = 55903, + [SMALL_STATE(5374)] = 55967, + [SMALL_STATE(5375)] = 56031, + [SMALL_STATE(5376)] = 56103, + [SMALL_STATE(5377)] = 56165, + [SMALL_STATE(5378)] = 56271, + [SMALL_STATE(5379)] = 56335, + [SMALL_STATE(5380)] = 56397, + [SMALL_STATE(5381)] = 56459, + [SMALL_STATE(5382)] = 56521, + [SMALL_STATE(5383)] = 56583, + [SMALL_STATE(5384)] = 56645, + [SMALL_STATE(5385)] = 56707, + [SMALL_STATE(5386)] = 56769, + [SMALL_STATE(5387)] = 56831, + [SMALL_STATE(5388)] = 56893, + [SMALL_STATE(5389)] = 56955, + [SMALL_STATE(5390)] = 57017, + [SMALL_STATE(5391)] = 57079, + [SMALL_STATE(5392)] = 57141, + [SMALL_STATE(5393)] = 57203, + [SMALL_STATE(5394)] = 57265, + [SMALL_STATE(5395)] = 57327, + [SMALL_STATE(5396)] = 57389, + [SMALL_STATE(5397)] = 57451, + [SMALL_STATE(5398)] = 57513, + [SMALL_STATE(5399)] = 57575, + [SMALL_STATE(5400)] = 57637, + [SMALL_STATE(5401)] = 57699, + [SMALL_STATE(5402)] = 57761, + [SMALL_STATE(5403)] = 57823, + [SMALL_STATE(5404)] = 57885, + [SMALL_STATE(5405)] = 57947, + [SMALL_STATE(5406)] = 58009, + [SMALL_STATE(5407)] = 58071, + [SMALL_STATE(5408)] = 58133, + [SMALL_STATE(5409)] = 58195, + [SMALL_STATE(5410)] = 58257, + [SMALL_STATE(5411)] = 58363, + [SMALL_STATE(5412)] = 58425, + [SMALL_STATE(5413)] = 58487, + [SMALL_STATE(5414)] = 58549, + [SMALL_STATE(5415)] = 58613, + [SMALL_STATE(5416)] = 58679, + [SMALL_STATE(5417)] = 58743, + [SMALL_STATE(5418)] = 58805, + [SMALL_STATE(5419)] = 58867, + [SMALL_STATE(5420)] = 58929, + [SMALL_STATE(5421)] = 58993, + [SMALL_STATE(5422)] = 59055, + [SMALL_STATE(5423)] = 59129, + [SMALL_STATE(5424)] = 59203, + [SMALL_STATE(5425)] = 59265, + [SMALL_STATE(5426)] = 59339, + [SMALL_STATE(5427)] = 59445, + [SMALL_STATE(5428)] = 59519, + [SMALL_STATE(5429)] = 59581, + [SMALL_STATE(5430)] = 59643, + [SMALL_STATE(5431)] = 59711, + [SMALL_STATE(5432)] = 59781, + [SMALL_STATE(5433)] = 59849, + [SMALL_STATE(5434)] = 59911, + [SMALL_STATE(5435)] = 59985, + [SMALL_STATE(5436)] = 60047, + [SMALL_STATE(5437)] = 60109, + [SMALL_STATE(5438)] = 60171, + [SMALL_STATE(5439)] = 60235, + [SMALL_STATE(5440)] = 60299, + [SMALL_STATE(5441)] = 60361, + [SMALL_STATE(5442)] = 60423, + [SMALL_STATE(5443)] = 60487, + [SMALL_STATE(5444)] = 60549, + [SMALL_STATE(5445)] = 60615, + [SMALL_STATE(5446)] = 60689, + [SMALL_STATE(5447)] = 60763, + [SMALL_STATE(5448)] = 60825, + [SMALL_STATE(5449)] = 60887, + [SMALL_STATE(5450)] = 60949, + [SMALL_STATE(5451)] = 61023, + [SMALL_STATE(5452)] = 61099, + [SMALL_STATE(5453)] = 61173, + [SMALL_STATE(5454)] = 61235, + [SMALL_STATE(5455)] = 61309, + [SMALL_STATE(5456)] = 61371, + [SMALL_STATE(5457)] = 61433, + [SMALL_STATE(5458)] = 61495, + [SMALL_STATE(5459)] = 61571, + [SMALL_STATE(5460)] = 61647, + [SMALL_STATE(5461)] = 61709, + [SMALL_STATE(5462)] = 61771, + [SMALL_STATE(5463)] = 61833, + [SMALL_STATE(5464)] = 61939, + [SMALL_STATE(5465)] = 62015, + [SMALL_STATE(5466)] = 62077, + [SMALL_STATE(5467)] = 62153, + [SMALL_STATE(5468)] = 62215, + [SMALL_STATE(5469)] = 62277, + [SMALL_STATE(5470)] = 62341, + [SMALL_STATE(5471)] = 62413, + [SMALL_STATE(5472)] = 62485, + [SMALL_STATE(5473)] = 62549, + [SMALL_STATE(5474)] = 62613, + [SMALL_STATE(5475)] = 62684, + [SMALL_STATE(5476)] = 62755, + [SMALL_STATE(5477)] = 62858, + [SMALL_STATE(5478)] = 62923, + [SMALL_STATE(5479)] = 62994, + [SMALL_STATE(5480)] = 63099, + [SMALL_STATE(5481)] = 63170, + [SMALL_STATE(5482)] = 63231, + [SMALL_STATE(5483)] = 63334, + [SMALL_STATE(5484)] = 63397, + [SMALL_STATE(5485)] = 63468, + [SMALL_STATE(5486)] = 63573, + [SMALL_STATE(5487)] = 63644, + [SMALL_STATE(5488)] = 63745, + [SMALL_STATE(5489)] = 63816, + [SMALL_STATE(5490)] = 63919, + [SMALL_STATE(5491)] = 63984, + [SMALL_STATE(5492)] = 64085, + [SMALL_STATE(5493)] = 64156, + [SMALL_STATE(5494)] = 64259, + [SMALL_STATE(5495)] = 64360, + [SMALL_STATE(5496)] = 64431, + [SMALL_STATE(5497)] = 64534, + [SMALL_STATE(5498)] = 64595, + [SMALL_STATE(5499)] = 64666, + [SMALL_STATE(5500)] = 64771, + [SMALL_STATE(5501)] = 64842, + [SMALL_STATE(5502)] = 64945, + [SMALL_STATE(5503)] = 65006, + [SMALL_STATE(5504)] = 65075, + [SMALL_STATE(5505)] = 65178, + [SMALL_STATE(5506)] = 65247, + [SMALL_STATE(5507)] = 65316, + [SMALL_STATE(5508)] = 65385, + [SMALL_STATE(5509)] = 65454, + [SMALL_STATE(5510)] = 65523, + [SMALL_STATE(5511)] = 65592, + [SMALL_STATE(5512)] = 65695, + [SMALL_STATE(5513)] = 65796, + [SMALL_STATE(5514)] = 65899, + [SMALL_STATE(5515)] = 65960, + [SMALL_STATE(5516)] = 66033, + [SMALL_STATE(5517)] = 66096, + [SMALL_STATE(5518)] = 66167, + [SMALL_STATE(5519)] = 66268, + [SMALL_STATE(5520)] = 66339, + [SMALL_STATE(5521)] = 66404, + [SMALL_STATE(5522)] = 66473, + [SMALL_STATE(5523)] = 66542, + [SMALL_STATE(5524)] = 66611, + [SMALL_STATE(5525)] = 66676, + [SMALL_STATE(5526)] = 66747, + [SMALL_STATE(5527)] = 66818, + [SMALL_STATE(5528)] = 66881, + [SMALL_STATE(5529)] = 66986, + [SMALL_STATE(5530)] = 67059, + [SMALL_STATE(5531)] = 67132, + [SMALL_STATE(5532)] = 67205, + [SMALL_STATE(5533)] = 67278, + [SMALL_STATE(5534)] = 67341, + [SMALL_STATE(5535)] = 67404, + [SMALL_STATE(5536)] = 67475, + [SMALL_STATE(5537)] = 67546, + [SMALL_STATE(5538)] = 67617, + [SMALL_STATE(5539)] = 67688, + [SMALL_STATE(5540)] = 67788, + [SMALL_STATE(5541)] = 67858, + [SMALL_STATE(5542)] = 67924, + [SMALL_STATE(5543)] = 67986, + [SMALL_STATE(5544)] = 68086, + [SMALL_STATE(5545)] = 68168, + [SMALL_STATE(5546)] = 68236, + [SMALL_STATE(5547)] = 68306, + [SMALL_STATE(5548)] = 68406, + [SMALL_STATE(5549)] = 68474, + [SMALL_STATE(5550)] = 68542, + [SMALL_STATE(5551)] = 68642, + [SMALL_STATE(5552)] = 68710, + [SMALL_STATE(5553)] = 68780, + [SMALL_STATE(5554)] = 68880, + [SMALL_STATE(5555)] = 68980, + [SMALL_STATE(5556)] = 69046, + [SMALL_STATE(5557)] = 69114, + [SMALL_STATE(5558)] = 69214, + [SMALL_STATE(5559)] = 69282, + [SMALL_STATE(5560)] = 69346, + [SMALL_STATE(5561)] = 69428, + [SMALL_STATE(5562)] = 69528, + [SMALL_STATE(5563)] = 69628, + [SMALL_STATE(5564)] = 69728, + [SMALL_STATE(5565)] = 69828, + [SMALL_STATE(5566)] = 69896, + [SMALL_STATE(5567)] = 69996, + [SMALL_STATE(5568)] = 70096, + [SMALL_STATE(5569)] = 70164, + [SMALL_STATE(5570)] = 70264, + [SMALL_STATE(5571)] = 70364, + [SMALL_STATE(5572)] = 70434, + [SMALL_STATE(5573)] = 70494, + [SMALL_STATE(5574)] = 70594, + [SMALL_STATE(5575)] = 70658, + [SMALL_STATE(5576)] = 70728, + [SMALL_STATE(5577)] = 70798, + [SMALL_STATE(5578)] = 70898, + [SMALL_STATE(5579)] = 70966, + [SMALL_STATE(5580)] = 71066, + [SMALL_STATE(5581)] = 71136, + [SMALL_STATE(5582)] = 71236, + [SMALL_STATE(5583)] = 71336, + [SMALL_STATE(5584)] = 71436, + [SMALL_STATE(5585)] = 71500, + [SMALL_STATE(5586)] = 71560, + [SMALL_STATE(5587)] = 71624, + [SMALL_STATE(5588)] = 71724, + [SMALL_STATE(5589)] = 71824, + [SMALL_STATE(5590)] = 71884, + [SMALL_STATE(5591)] = 71984, + [SMALL_STATE(5592)] = 72054, + [SMALL_STATE(5593)] = 72124, + [SMALL_STATE(5594)] = 72194, + [SMALL_STATE(5595)] = 72294, + [SMALL_STATE(5596)] = 72394, + [SMALL_STATE(5597)] = 72456, + [SMALL_STATE(5598)] = 72556, + [SMALL_STATE(5599)] = 72624, + [SMALL_STATE(5600)] = 72684, + [SMALL_STATE(5601)] = 72754, + [SMALL_STATE(5602)] = 72853, + [SMALL_STATE(5603)] = 72948, + [SMALL_STATE(5604)] = 73013, + [SMALL_STATE(5605)] = 73072, + [SMALL_STATE(5606)] = 73139, + [SMALL_STATE(5607)] = 73238, + [SMALL_STATE(5608)] = 73305, + [SMALL_STATE(5609)] = 73368, + [SMALL_STATE(5610)] = 73463, + [SMALL_STATE(5611)] = 73524, + [SMALL_STATE(5612)] = 73623, + [SMALL_STATE(5613)] = 73690, + [SMALL_STATE(5614)] = 73789, + [SMALL_STATE(5615)] = 73848, + [SMALL_STATE(5616)] = 73913, + [SMALL_STATE(5617)] = 74012, + [SMALL_STATE(5618)] = 74071, + [SMALL_STATE(5619)] = 74134, + [SMALL_STATE(5620)] = 74233, + [SMALL_STATE(5621)] = 74296, + [SMALL_STATE(5622)] = 74395, + [SMALL_STATE(5623)] = 74454, + [SMALL_STATE(5624)] = 74553, + [SMALL_STATE(5625)] = 74614, + [SMALL_STATE(5626)] = 74713, + [SMALL_STATE(5627)] = 74810, + [SMALL_STATE(5628)] = 74909, + [SMALL_STATE(5629)] = 75008, + [SMALL_STATE(5630)] = 75071, + [SMALL_STATE(5631)] = 75166, + [SMALL_STATE(5632)] = 75227, + [SMALL_STATE(5633)] = 75326, + [SMALL_STATE(5634)] = 75385, + [SMALL_STATE(5635)] = 75452, + [SMALL_STATE(5636)] = 75515, + [SMALL_STATE(5637)] = 75582, + [SMALL_STATE(5638)] = 75641, + [SMALL_STATE(5639)] = 75700, + [SMALL_STATE(5640)] = 75767, + [SMALL_STATE(5641)] = 75866, + [SMALL_STATE(5642)] = 75925, + [SMALL_STATE(5643)] = 75992, + [SMALL_STATE(5644)] = 76053, + [SMALL_STATE(5645)] = 76120, + [SMALL_STATE(5646)] = 76187, + [SMALL_STATE(5647)] = 76282, + [SMALL_STATE(5648)] = 76341, + [SMALL_STATE(5649)] = 76400, + [SMALL_STATE(5650)] = 76467, + [SMALL_STATE(5651)] = 76562, + [SMALL_STATE(5652)] = 76624, + [SMALL_STATE(5653)] = 76688, + [SMALL_STATE(5654)] = 76748, + [SMALL_STATE(5655)] = 76808, + [SMALL_STATE(5656)] = 76868, + [SMALL_STATE(5657)] = 76928, + [SMALL_STATE(5658)] = 76988, + [SMALL_STATE(5659)] = 77050, + [SMALL_STATE(5660)] = 77108, + [SMALL_STATE(5661)] = 77202, + [SMALL_STATE(5662)] = 77296, + [SMALL_STATE(5663)] = 77390, + [SMALL_STATE(5664)] = 77454, + [SMALL_STATE(5665)] = 77548, + [SMALL_STATE(5666)] = 77642, + [SMALL_STATE(5667)] = 77722, + [SMALL_STATE(5668)] = 77816, + [SMALL_STATE(5669)] = 77896, + [SMALL_STATE(5670)] = 77990, + [SMALL_STATE(5671)] = 78048, + [SMALL_STATE(5672)] = 78109, + [SMALL_STATE(5673)] = 78170, + [SMALL_STATE(5674)] = 78231, + [SMALL_STATE(5675)] = 78290, + [SMALL_STATE(5676)] = 78351, + [SMALL_STATE(5677)] = 78410, + [SMALL_STATE(5678)] = 78471, + [SMALL_STATE(5679)] = 78530, + [SMALL_STATE(5680)] = 78589, + [SMALL_STATE(5681)] = 78648, + [SMALL_STATE(5682)] = 78738, + [SMALL_STATE(5683)] = 78824, + [SMALL_STATE(5684)] = 78882, + [SMALL_STATE(5685)] = 78968, + [SMALL_STATE(5686)] = 79024, + [SMALL_STATE(5687)] = 79110, + [SMALL_STATE(5688)] = 79168, + [SMALL_STATE(5689)] = 79254, + [SMALL_STATE(5690)] = 79310, + [SMALL_STATE(5691)] = 79370, + [SMALL_STATE(5692)] = 79426, + [SMALL_STATE(5693)] = 79512, + [SMALL_STATE(5694)] = 79572, + [SMALL_STATE(5695)] = 79630, + [SMALL_STATE(5696)] = 79716, + [SMALL_STATE(5697)] = 79772, + [SMALL_STATE(5698)] = 79830, + [SMALL_STATE(5699)] = 79890, + [SMALL_STATE(5700)] = 79948, + [SMALL_STATE(5701)] = 80033, + [SMALL_STATE(5702)] = 80116, + [SMALL_STATE(5703)] = 80199, + [SMALL_STATE(5704)] = 80284, + [SMALL_STATE(5705)] = 80339, + [SMALL_STATE(5706)] = 80422, + [SMALL_STATE(5707)] = 80507, + [SMALL_STATE(5708)] = 80590, + [SMALL_STATE(5709)] = 80649, + [SMALL_STATE(5710)] = 80704, + [SMALL_STATE(5711)] = 80787, + [SMALL_STATE(5712)] = 80848, + [SMALL_STATE(5713)] = 80907, + [SMALL_STATE(5714)] = 80990, + [SMALL_STATE(5715)] = 81073, + [SMALL_STATE(5716)] = 81158, + [SMALL_STATE(5717)] = 81243, + [SMALL_STATE(5718)] = 81302, + [SMALL_STATE(5719)] = 81385, + [SMALL_STATE(5720)] = 81470, + [SMALL_STATE(5721)] = 81552, + [SMALL_STATE(5722)] = 81626, + [SMALL_STATE(5723)] = 81708, + [SMALL_STATE(5724)] = 81790, + [SMALL_STATE(5725)] = 81872, + [SMALL_STATE(5726)] = 81954, + [SMALL_STATE(5727)] = 82030, + [SMALL_STATE(5728)] = 82112, + [SMALL_STATE(5729)] = 82194, + [SMALL_STATE(5730)] = 82276, + [SMALL_STATE(5731)] = 82332, + [SMALL_STATE(5732)] = 82384, + [SMALL_STATE(5733)] = 82438, + [SMALL_STATE(5734)] = 82492, + [SMALL_STATE(5735)] = 82554, + [SMALL_STATE(5736)] = 82606, + [SMALL_STATE(5737)] = 82667, + [SMALL_STATE(5738)] = 82718, + [SMALL_STATE(5739)] = 82773, + [SMALL_STATE(5740)] = 82824, + [SMALL_STATE(5741)] = 82875, + [SMALL_STATE(5742)] = 82930, + [SMALL_STATE(5743)] = 82985, + [SMALL_STATE(5744)] = 83036, + [SMALL_STATE(5745)] = 83084, + [SMALL_STATE(5746)] = 83182, + [SMALL_STATE(5747)] = 83232, + [SMALL_STATE(5748)] = 83282, + [SMALL_STATE(5749)] = 83330, + [SMALL_STATE(5750)] = 83428, + [SMALL_STATE(5751)] = 83478, + [SMALL_STATE(5752)] = 83526, + [SMALL_STATE(5753)] = 83574, + [SMALL_STATE(5754)] = 83672, + [SMALL_STATE(5755)] = 83720, + [SMALL_STATE(5756)] = 83770, + [SMALL_STATE(5757)] = 83868, + [SMALL_STATE(5758)] = 83966, + [SMALL_STATE(5759)] = 84020, + [SMALL_STATE(5760)] = 84070, + [SMALL_STATE(5761)] = 84120, + [SMALL_STATE(5762)] = 84172, + [SMALL_STATE(5763)] = 84270, + [SMALL_STATE(5764)] = 84318, + [SMALL_STATE(5765)] = 84368, + [SMALL_STATE(5766)] = 84419, + [SMALL_STATE(5767)] = 84470, + [SMALL_STATE(5768)] = 84521, + [SMALL_STATE(5769)] = 84611, + [SMALL_STATE(5770)] = 84701, + [SMALL_STATE(5771)] = 84749, + [SMALL_STATE(5772)] = 84797, + [SMALL_STATE(5773)] = 84845, + [SMALL_STATE(5774)] = 84893, + [SMALL_STATE(5775)] = 84941, + [SMALL_STATE(5776)] = 84991, + [SMALL_STATE(5777)] = 85039, + [SMALL_STATE(5778)] = 85087, + [SMALL_STATE(5779)] = 85137, + [SMALL_STATE(5780)] = 85227, + [SMALL_STATE(5781)] = 85277, + [SMALL_STATE(5782)] = 85327, + [SMALL_STATE(5783)] = 85375, + [SMALL_STATE(5784)] = 85423, + [SMALL_STATE(5785)] = 85471, + [SMALL_STATE(5786)] = 85561, + [SMALL_STATE(5787)] = 85609, + [SMALL_STATE(5788)] = 85657, + [SMALL_STATE(5789)] = 85747, + [SMALL_STATE(5790)] = 85797, + [SMALL_STATE(5791)] = 85845, + [SMALL_STATE(5792)] = 85935, + [SMALL_STATE(5793)] = 86025, + [SMALL_STATE(5794)] = 86075, + [SMALL_STATE(5795)] = 86123, + [SMALL_STATE(5796)] = 86213, + [SMALL_STATE(5797)] = 86303, + [SMALL_STATE(5798)] = 86351, + [SMALL_STATE(5799)] = 86441, + [SMALL_STATE(5800)] = 86489, + [SMALL_STATE(5801)] = 86537, + [SMALL_STATE(5802)] = 86627, + [SMALL_STATE(5803)] = 86717, + [SMALL_STATE(5804)] = 86807, + [SMALL_STATE(5805)] = 86897, + [SMALL_STATE(5806)] = 86987, + [SMALL_STATE(5807)] = 87039, + [SMALL_STATE(5808)] = 87129, + [SMALL_STATE(5809)] = 87219, + [SMALL_STATE(5810)] = 87309, + [SMALL_STATE(5811)] = 87399, + [SMALL_STATE(5812)] = 87489, + [SMALL_STATE(5813)] = 87539, + [SMALL_STATE(5814)] = 87587, + [SMALL_STATE(5815)] = 87677, + [SMALL_STATE(5816)] = 87726, + [SMALL_STATE(5817)] = 87773, + [SMALL_STATE(5818)] = 87820, + [SMALL_STATE(5819)] = 87868, + [SMALL_STATE(5820)] = 87914, + [SMALL_STATE(5821)] = 87960, + [SMALL_STATE(5822)] = 88006, + [SMALL_STATE(5823)] = 88050, + [SMALL_STATE(5824)] = 88096, + [SMALL_STATE(5825)] = 88140, + [SMALL_STATE(5826)] = 88184, + [SMALL_STATE(5827)] = 88230, + [SMALL_STATE(5828)] = 88276, + [SMALL_STATE(5829)] = 88322, + [SMALL_STATE(5830)] = 88368, + [SMALL_STATE(5831)] = 88414, + [SMALL_STATE(5832)] = 88460, + [SMALL_STATE(5833)] = 88506, + [SMALL_STATE(5834)] = 88552, + [SMALL_STATE(5835)] = 88598, + [SMALL_STATE(5836)] = 88644, + [SMALL_STATE(5837)] = 88694, + [SMALL_STATE(5838)] = 88740, + [SMALL_STATE(5839)] = 88784, + [SMALL_STATE(5840)] = 88828, + [SMALL_STATE(5841)] = 88872, + [SMALL_STATE(5842)] = 88920, + [SMALL_STATE(5843)] = 88966, + [SMALL_STATE(5844)] = 89014, + [SMALL_STATE(5845)] = 89060, + [SMALL_STATE(5846)] = 89106, + [SMALL_STATE(5847)] = 89154, + [SMALL_STATE(5848)] = 89200, + [SMALL_STATE(5849)] = 89244, + [SMALL_STATE(5850)] = 89290, + [SMALL_STATE(5851)] = 89334, + [SMALL_STATE(5852)] = 89378, + [SMALL_STATE(5853)] = 89426, + [SMALL_STATE(5854)] = 89469, + [SMALL_STATE(5855)] = 89512, + [SMALL_STATE(5856)] = 89561, + [SMALL_STATE(5857)] = 89610, + [SMALL_STATE(5858)] = 89653, + [SMALL_STATE(5859)] = 89700, + [SMALL_STATE(5860)] = 89749, + [SMALL_STATE(5861)] = 89794, + [SMALL_STATE(5862)] = 89841, + [SMALL_STATE(5863)] = 89888, + [SMALL_STATE(5864)] = 89930, + [SMALL_STATE(5865)] = 89972, + [SMALL_STATE(5866)] = 90014, + [SMALL_STATE(5867)] = 90060, + [SMALL_STATE(5868)] = 90106, + [SMALL_STATE(5869)] = 90152, + [SMALL_STATE(5870)] = 90196, + [SMALL_STATE(5871)] = 90240, + [SMALL_STATE(5872)] = 90288, + [SMALL_STATE(5873)] = 90332, + [SMALL_STATE(5874)] = 90376, + [SMALL_STATE(5875)] = 90418, + [SMALL_STATE(5876)] = 90460, + [SMALL_STATE(5877)] = 90502, + [SMALL_STATE(5878)] = 90550, + [SMALL_STATE(5879)] = 90594, + [SMALL_STATE(5880)] = 90636, + [SMALL_STATE(5881)] = 90678, + [SMALL_STATE(5882)] = 90720, + [SMALL_STATE(5883)] = 90762, + [SMALL_STATE(5884)] = 90804, + [SMALL_STATE(5885)] = 90846, + [SMALL_STATE(5886)] = 90888, + [SMALL_STATE(5887)] = 90934, + [SMALL_STATE(5888)] = 90976, + [SMALL_STATE(5889)] = 91018, + [SMALL_STATE(5890)] = 91061, + [SMALL_STATE(5891)] = 91104, + [SMALL_STATE(5892)] = 91151, + [SMALL_STATE(5893)] = 91194, + [SMALL_STATE(5894)] = 91241, + [SMALL_STATE(5895)] = 91282, + [SMALL_STATE(5896)] = 91325, + [SMALL_STATE(5897)] = 91372, + [SMALL_STATE(5898)] = 91413, + [SMALL_STATE(5899)] = 91454, + [SMALL_STATE(5900)] = 91496, + [SMALL_STATE(5901)] = 91538, + [SMALL_STATE(5902)] = 91616, + [SMALL_STATE(5903)] = 91658, + [SMALL_STATE(5904)] = 91736, + [SMALL_STATE(5905)] = 91778, + [SMALL_STATE(5906)] = 91820, + [SMALL_STATE(5907)] = 91862, + [SMALL_STATE(5908)] = 91904, + [SMALL_STATE(5909)] = 91982, + [SMALL_STATE(5910)] = 92060, + [SMALL_STATE(5911)] = 92138, + [SMALL_STATE(5912)] = 92216, + [SMALL_STATE(5913)] = 92294, + [SMALL_STATE(5914)] = 92336, + [SMALL_STATE(5915)] = 92378, + [SMALL_STATE(5916)] = 92424, + [SMALL_STATE(5917)] = 92466, + [SMALL_STATE(5918)] = 92544, + [SMALL_STATE(5919)] = 92586, + [SMALL_STATE(5920)] = 92628, + [SMALL_STATE(5921)] = 92670, + [SMALL_STATE(5922)] = 92712, + [SMALL_STATE(5923)] = 92754, + [SMALL_STATE(5924)] = 92796, + [SMALL_STATE(5925)] = 92838, + [SMALL_STATE(5926)] = 92916, + [SMALL_STATE(5927)] = 92994, + [SMALL_STATE(5928)] = 93036, + [SMALL_STATE(5929)] = 93112, + [SMALL_STATE(5930)] = 93190, + [SMALL_STATE(5931)] = 93232, + [SMALL_STATE(5932)] = 93274, + [SMALL_STATE(5933)] = 93316, + [SMALL_STATE(5934)] = 93391, + [SMALL_STATE(5935)] = 93466, + [SMALL_STATE(5936)] = 93541, + [SMALL_STATE(5937)] = 93616, + [SMALL_STATE(5938)] = 93691, + [SMALL_STATE(5939)] = 93764, + [SMALL_STATE(5940)] = 93839, + [SMALL_STATE(5941)] = 93911, + [SMALL_STATE(5942)] = 93951, + [SMALL_STATE(5943)] = 94023, + [SMALL_STATE(5944)] = 94095, + [SMALL_STATE(5945)] = 94167, + [SMALL_STATE(5946)] = 94239, + [SMALL_STATE(5947)] = 94279, + [SMALL_STATE(5948)] = 94351, + [SMALL_STATE(5949)] = 94423, + [SMALL_STATE(5950)] = 94495, + [SMALL_STATE(5951)] = 94567, + [SMALL_STATE(5952)] = 94639, + [SMALL_STATE(5953)] = 94711, + [SMALL_STATE(5954)] = 94783, + [SMALL_STATE(5955)] = 94855, + [SMALL_STATE(5956)] = 94927, + [SMALL_STATE(5957)] = 94999, + [SMALL_STATE(5958)] = 95071, + [SMALL_STATE(5959)] = 95143, + [SMALL_STATE(5960)] = 95215, + [SMALL_STATE(5961)] = 95287, + [SMALL_STATE(5962)] = 95359, + [SMALL_STATE(5963)] = 95431, + [SMALL_STATE(5964)] = 95503, + [SMALL_STATE(5965)] = 95575, + [SMALL_STATE(5966)] = 95647, + [SMALL_STATE(5967)] = 95719, + [SMALL_STATE(5968)] = 95791, + [SMALL_STATE(5969)] = 95863, + [SMALL_STATE(5970)] = 95935, + [SMALL_STATE(5971)] = 96007, + [SMALL_STATE(5972)] = 96079, + [SMALL_STATE(5973)] = 96151, + [SMALL_STATE(5974)] = 96223, + [SMALL_STATE(5975)] = 96295, + [SMALL_STATE(5976)] = 96367, + [SMALL_STATE(5977)] = 96439, + [SMALL_STATE(5978)] = 96511, + [SMALL_STATE(5979)] = 96583, + [SMALL_STATE(5980)] = 96655, + [SMALL_STATE(5981)] = 96727, + [SMALL_STATE(5982)] = 96799, + [SMALL_STATE(5983)] = 96871, + [SMALL_STATE(5984)] = 96943, + [SMALL_STATE(5985)] = 97015, + [SMALL_STATE(5986)] = 97087, + [SMALL_STATE(5987)] = 97159, + [SMALL_STATE(5988)] = 97231, + [SMALL_STATE(5989)] = 97303, + [SMALL_STATE(5990)] = 97375, + [SMALL_STATE(5991)] = 97447, + [SMALL_STATE(5992)] = 97519, + [SMALL_STATE(5993)] = 97591, + [SMALL_STATE(5994)] = 97663, + [SMALL_STATE(5995)] = 97735, + [SMALL_STATE(5996)] = 97807, + [SMALL_STATE(5997)] = 97879, + [SMALL_STATE(5998)] = 97951, + [SMALL_STATE(5999)] = 98023, + [SMALL_STATE(6000)] = 98095, + [SMALL_STATE(6001)] = 98167, + [SMALL_STATE(6002)] = 98239, + [SMALL_STATE(6003)] = 98311, + [SMALL_STATE(6004)] = 98383, + [SMALL_STATE(6005)] = 98455, + [SMALL_STATE(6006)] = 98527, + [SMALL_STATE(6007)] = 98599, + [SMALL_STATE(6008)] = 98671, + [SMALL_STATE(6009)] = 98743, + [SMALL_STATE(6010)] = 98815, + [SMALL_STATE(6011)] = 98887, + [SMALL_STATE(6012)] = 98959, + [SMALL_STATE(6013)] = 99031, + [SMALL_STATE(6014)] = 99103, + [SMALL_STATE(6015)] = 99175, + [SMALL_STATE(6016)] = 99247, + [SMALL_STATE(6017)] = 99319, + [SMALL_STATE(6018)] = 99391, + [SMALL_STATE(6019)] = 99463, + [SMALL_STATE(6020)] = 99535, + [SMALL_STATE(6021)] = 99607, + [SMALL_STATE(6022)] = 99679, + [SMALL_STATE(6023)] = 99751, + [SMALL_STATE(6024)] = 99823, + [SMALL_STATE(6025)] = 99895, + [SMALL_STATE(6026)] = 99967, + [SMALL_STATE(6027)] = 100039, + [SMALL_STATE(6028)] = 100111, + [SMALL_STATE(6029)] = 100183, + [SMALL_STATE(6030)] = 100255, + [SMALL_STATE(6031)] = 100327, + [SMALL_STATE(6032)] = 100399, + [SMALL_STATE(6033)] = 100471, + [SMALL_STATE(6034)] = 100543, + [SMALL_STATE(6035)] = 100615, + [SMALL_STATE(6036)] = 100687, + [SMALL_STATE(6037)] = 100759, + [SMALL_STATE(6038)] = 100831, + [SMALL_STATE(6039)] = 100903, + [SMALL_STATE(6040)] = 100975, + [SMALL_STATE(6041)] = 101047, + [SMALL_STATE(6042)] = 101119, + [SMALL_STATE(6043)] = 101191, + [SMALL_STATE(6044)] = 101263, + [SMALL_STATE(6045)] = 101335, + [SMALL_STATE(6046)] = 101407, + [SMALL_STATE(6047)] = 101479, + [SMALL_STATE(6048)] = 101551, + [SMALL_STATE(6049)] = 101623, + [SMALL_STATE(6050)] = 101695, + [SMALL_STATE(6051)] = 101767, + [SMALL_STATE(6052)] = 101839, + [SMALL_STATE(6053)] = 101911, + [SMALL_STATE(6054)] = 101983, + [SMALL_STATE(6055)] = 102055, + [SMALL_STATE(6056)] = 102127, + [SMALL_STATE(6057)] = 102199, + [SMALL_STATE(6058)] = 102271, + [SMALL_STATE(6059)] = 102343, + [SMALL_STATE(6060)] = 102415, + [SMALL_STATE(6061)] = 102487, + [SMALL_STATE(6062)] = 102559, + [SMALL_STATE(6063)] = 102631, + [SMALL_STATE(6064)] = 102703, + [SMALL_STATE(6065)] = 102775, + [SMALL_STATE(6066)] = 102847, + [SMALL_STATE(6067)] = 102919, + [SMALL_STATE(6068)] = 102991, + [SMALL_STATE(6069)] = 103063, + [SMALL_STATE(6070)] = 103135, + [SMALL_STATE(6071)] = 103207, + [SMALL_STATE(6072)] = 103279, + [SMALL_STATE(6073)] = 103351, + [SMALL_STATE(6074)] = 103423, + [SMALL_STATE(6075)] = 103495, + [SMALL_STATE(6076)] = 103567, + [SMALL_STATE(6077)] = 103639, + [SMALL_STATE(6078)] = 103711, + [SMALL_STATE(6079)] = 103751, + [SMALL_STATE(6080)] = 103823, + [SMALL_STATE(6081)] = 103895, + [SMALL_STATE(6082)] = 103967, + [SMALL_STATE(6083)] = 104039, + [SMALL_STATE(6084)] = 104111, + [SMALL_STATE(6085)] = 104183, + [SMALL_STATE(6086)] = 104255, + [SMALL_STATE(6087)] = 104327, + [SMALL_STATE(6088)] = 104399, + [SMALL_STATE(6089)] = 104471, + [SMALL_STATE(6090)] = 104511, + [SMALL_STATE(6091)] = 104583, + [SMALL_STATE(6092)] = 104655, + [SMALL_STATE(6093)] = 104727, + [SMALL_STATE(6094)] = 104799, + [SMALL_STATE(6095)] = 104871, + [SMALL_STATE(6096)] = 104943, + [SMALL_STATE(6097)] = 105015, + [SMALL_STATE(6098)] = 105087, + [SMALL_STATE(6099)] = 105159, + [SMALL_STATE(6100)] = 105231, + [SMALL_STATE(6101)] = 105303, + [SMALL_STATE(6102)] = 105375, + [SMALL_STATE(6103)] = 105447, + [SMALL_STATE(6104)] = 105519, + [SMALL_STATE(6105)] = 105591, + [SMALL_STATE(6106)] = 105663, + [SMALL_STATE(6107)] = 105735, + [SMALL_STATE(6108)] = 105807, + [SMALL_STATE(6109)] = 105879, + [SMALL_STATE(6110)] = 105951, + [SMALL_STATE(6111)] = 106023, + [SMALL_STATE(6112)] = 106095, + [SMALL_STATE(6113)] = 106167, + [SMALL_STATE(6114)] = 106239, + [SMALL_STATE(6115)] = 106311, + [SMALL_STATE(6116)] = 106383, + [SMALL_STATE(6117)] = 106455, + [SMALL_STATE(6118)] = 106527, + [SMALL_STATE(6119)] = 106599, + [SMALL_STATE(6120)] = 106671, + [SMALL_STATE(6121)] = 106743, + [SMALL_STATE(6122)] = 106815, + [SMALL_STATE(6123)] = 106887, + [SMALL_STATE(6124)] = 106959, + [SMALL_STATE(6125)] = 107031, + [SMALL_STATE(6126)] = 107103, + [SMALL_STATE(6127)] = 107175, + [SMALL_STATE(6128)] = 107247, + [SMALL_STATE(6129)] = 107319, + [SMALL_STATE(6130)] = 107391, + [SMALL_STATE(6131)] = 107463, + [SMALL_STATE(6132)] = 107535, + [SMALL_STATE(6133)] = 107607, + [SMALL_STATE(6134)] = 107679, + [SMALL_STATE(6135)] = 107751, + [SMALL_STATE(6136)] = 107823, + [SMALL_STATE(6137)] = 107895, + [SMALL_STATE(6138)] = 107967, + [SMALL_STATE(6139)] = 108039, + [SMALL_STATE(6140)] = 108111, + [SMALL_STATE(6141)] = 108183, + [SMALL_STATE(6142)] = 108255, + [SMALL_STATE(6143)] = 108327, + [SMALL_STATE(6144)] = 108399, + [SMALL_STATE(6145)] = 108471, + [SMALL_STATE(6146)] = 108543, + [SMALL_STATE(6147)] = 108615, + [SMALL_STATE(6148)] = 108687, + [SMALL_STATE(6149)] = 108759, + [SMALL_STATE(6150)] = 108831, + [SMALL_STATE(6151)] = 108903, + [SMALL_STATE(6152)] = 108943, + [SMALL_STATE(6153)] = 109015, + [SMALL_STATE(6154)] = 109055, + [SMALL_STATE(6155)] = 109127, + [SMALL_STATE(6156)] = 109199, + [SMALL_STATE(6157)] = 109271, + [SMALL_STATE(6158)] = 109343, + [SMALL_STATE(6159)] = 109415, + [SMALL_STATE(6160)] = 109487, + [SMALL_STATE(6161)] = 109559, + [SMALL_STATE(6162)] = 109631, + [SMALL_STATE(6163)] = 109703, + [SMALL_STATE(6164)] = 109775, + [SMALL_STATE(6165)] = 109847, + [SMALL_STATE(6166)] = 109919, + [SMALL_STATE(6167)] = 109991, + [SMALL_STATE(6168)] = 110063, + [SMALL_STATE(6169)] = 110135, + [SMALL_STATE(6170)] = 110207, + [SMALL_STATE(6171)] = 110279, + [SMALL_STATE(6172)] = 110351, + [SMALL_STATE(6173)] = 110423, + [SMALL_STATE(6174)] = 110495, + [SMALL_STATE(6175)] = 110567, + [SMALL_STATE(6176)] = 110639, + [SMALL_STATE(6177)] = 110711, + [SMALL_STATE(6178)] = 110783, + [SMALL_STATE(6179)] = 110855, + [SMALL_STATE(6180)] = 110927, + [SMALL_STATE(6181)] = 110999, + [SMALL_STATE(6182)] = 111071, + [SMALL_STATE(6183)] = 111143, + [SMALL_STATE(6184)] = 111215, + [SMALL_STATE(6185)] = 111287, + [SMALL_STATE(6186)] = 111359, + [SMALL_STATE(6187)] = 111431, + [SMALL_STATE(6188)] = 111503, + [SMALL_STATE(6189)] = 111575, + [SMALL_STATE(6190)] = 111647, + [SMALL_STATE(6191)] = 111719, + [SMALL_STATE(6192)] = 111791, + [SMALL_STATE(6193)] = 111863, + [SMALL_STATE(6194)] = 111935, + [SMALL_STATE(6195)] = 112007, + [SMALL_STATE(6196)] = 112079, + [SMALL_STATE(6197)] = 112151, + [SMALL_STATE(6198)] = 112223, + [SMALL_STATE(6199)] = 112295, + [SMALL_STATE(6200)] = 112367, + [SMALL_STATE(6201)] = 112439, + [SMALL_STATE(6202)] = 112511, + [SMALL_STATE(6203)] = 112551, + [SMALL_STATE(6204)] = 112623, + [SMALL_STATE(6205)] = 112695, + [SMALL_STATE(6206)] = 112767, + [SMALL_STATE(6207)] = 112839, + [SMALL_STATE(6208)] = 112911, + [SMALL_STATE(6209)] = 112983, + [SMALL_STATE(6210)] = 113055, + [SMALL_STATE(6211)] = 113127, + [SMALL_STATE(6212)] = 113199, + [SMALL_STATE(6213)] = 113271, + [SMALL_STATE(6214)] = 113343, + [SMALL_STATE(6215)] = 113415, + [SMALL_STATE(6216)] = 113487, + [SMALL_STATE(6217)] = 113559, + [SMALL_STATE(6218)] = 113631, + [SMALL_STATE(6219)] = 113671, + [SMALL_STATE(6220)] = 113743, + [SMALL_STATE(6221)] = 113815, + [SMALL_STATE(6222)] = 113887, + [SMALL_STATE(6223)] = 113959, + [SMALL_STATE(6224)] = 114031, + [SMALL_STATE(6225)] = 114103, + [SMALL_STATE(6226)] = 114175, + [SMALL_STATE(6227)] = 114247, + [SMALL_STATE(6228)] = 114319, + [SMALL_STATE(6229)] = 114391, + [SMALL_STATE(6230)] = 114463, + [SMALL_STATE(6231)] = 114535, + [SMALL_STATE(6232)] = 114607, + [SMALL_STATE(6233)] = 114679, + [SMALL_STATE(6234)] = 114751, + [SMALL_STATE(6235)] = 114823, + [SMALL_STATE(6236)] = 114895, + [SMALL_STATE(6237)] = 114967, + [SMALL_STATE(6238)] = 115039, + [SMALL_STATE(6239)] = 115111, + [SMALL_STATE(6240)] = 115183, + [SMALL_STATE(6241)] = 115255, + [SMALL_STATE(6242)] = 115327, + [SMALL_STATE(6243)] = 115399, + [SMALL_STATE(6244)] = 115471, + [SMALL_STATE(6245)] = 115543, + [SMALL_STATE(6246)] = 115615, + [SMALL_STATE(6247)] = 115687, + [SMALL_STATE(6248)] = 115759, + [SMALL_STATE(6249)] = 115831, + [SMALL_STATE(6250)] = 115903, + [SMALL_STATE(6251)] = 115975, + [SMALL_STATE(6252)] = 116047, + [SMALL_STATE(6253)] = 116119, + [SMALL_STATE(6254)] = 116191, + [SMALL_STATE(6255)] = 116263, + [SMALL_STATE(6256)] = 116335, + [SMALL_STATE(6257)] = 116407, + [SMALL_STATE(6258)] = 116479, + [SMALL_STATE(6259)] = 116551, + [SMALL_STATE(6260)] = 116623, + [SMALL_STATE(6261)] = 116695, + [SMALL_STATE(6262)] = 116767, + [SMALL_STATE(6263)] = 116839, + [SMALL_STATE(6264)] = 116911, + [SMALL_STATE(6265)] = 116983, + [SMALL_STATE(6266)] = 117055, + [SMALL_STATE(6267)] = 117127, + [SMALL_STATE(6268)] = 117199, + [SMALL_STATE(6269)] = 117271, + [SMALL_STATE(6270)] = 117311, + [SMALL_STATE(6271)] = 117383, + [SMALL_STATE(6272)] = 117455, + [SMALL_STATE(6273)] = 117527, + [SMALL_STATE(6274)] = 117599, + [SMALL_STATE(6275)] = 117671, + [SMALL_STATE(6276)] = 117743, + [SMALL_STATE(6277)] = 117815, + [SMALL_STATE(6278)] = 117887, + [SMALL_STATE(6279)] = 117959, + [SMALL_STATE(6280)] = 118031, + [SMALL_STATE(6281)] = 118103, + [SMALL_STATE(6282)] = 118175, + [SMALL_STATE(6283)] = 118247, + [SMALL_STATE(6284)] = 118287, + [SMALL_STATE(6285)] = 118359, + [SMALL_STATE(6286)] = 118431, + [SMALL_STATE(6287)] = 118503, + [SMALL_STATE(6288)] = 118575, + [SMALL_STATE(6289)] = 118647, + [SMALL_STATE(6290)] = 118719, + [SMALL_STATE(6291)] = 118791, + [SMALL_STATE(6292)] = 118863, + [SMALL_STATE(6293)] = 118935, + [SMALL_STATE(6294)] = 119007, + [SMALL_STATE(6295)] = 119079, + [SMALL_STATE(6296)] = 119151, + [SMALL_STATE(6297)] = 119223, + [SMALL_STATE(6298)] = 119295, + [SMALL_STATE(6299)] = 119367, + [SMALL_STATE(6300)] = 119439, + [SMALL_STATE(6301)] = 119511, + [SMALL_STATE(6302)] = 119583, + [SMALL_STATE(6303)] = 119655, + [SMALL_STATE(6304)] = 119727, + [SMALL_STATE(6305)] = 119799, + [SMALL_STATE(6306)] = 119871, + [SMALL_STATE(6307)] = 119943, + [SMALL_STATE(6308)] = 120015, + [SMALL_STATE(6309)] = 120087, + [SMALL_STATE(6310)] = 120159, + [SMALL_STATE(6311)] = 120231, + [SMALL_STATE(6312)] = 120303, + [SMALL_STATE(6313)] = 120375, + [SMALL_STATE(6314)] = 120447, + [SMALL_STATE(6315)] = 120519, + [SMALL_STATE(6316)] = 120591, + [SMALL_STATE(6317)] = 120663, + [SMALL_STATE(6318)] = 120735, + [SMALL_STATE(6319)] = 120807, + [SMALL_STATE(6320)] = 120879, + [SMALL_STATE(6321)] = 120951, + [SMALL_STATE(6322)] = 121023, + [SMALL_STATE(6323)] = 121095, + [SMALL_STATE(6324)] = 121167, + [SMALL_STATE(6325)] = 121239, + [SMALL_STATE(6326)] = 121311, + [SMALL_STATE(6327)] = 121383, + [SMALL_STATE(6328)] = 121455, + [SMALL_STATE(6329)] = 121527, + [SMALL_STATE(6330)] = 121599, + [SMALL_STATE(6331)] = 121671, + [SMALL_STATE(6332)] = 121743, + [SMALL_STATE(6333)] = 121815, + [SMALL_STATE(6334)] = 121887, + [SMALL_STATE(6335)] = 121959, + [SMALL_STATE(6336)] = 122031, + [SMALL_STATE(6337)] = 122103, + [SMALL_STATE(6338)] = 122175, + [SMALL_STATE(6339)] = 122247, + [SMALL_STATE(6340)] = 122319, + [SMALL_STATE(6341)] = 122391, + [SMALL_STATE(6342)] = 122463, + [SMALL_STATE(6343)] = 122535, + [SMALL_STATE(6344)] = 122607, + [SMALL_STATE(6345)] = 122679, + [SMALL_STATE(6346)] = 122719, + [SMALL_STATE(6347)] = 122759, + [SMALL_STATE(6348)] = 122831, + [SMALL_STATE(6349)] = 122903, + [SMALL_STATE(6350)] = 122975, + [SMALL_STATE(6351)] = 123047, + [SMALL_STATE(6352)] = 123119, + [SMALL_STATE(6353)] = 123191, + [SMALL_STATE(6354)] = 123263, + [SMALL_STATE(6355)] = 123305, + [SMALL_STATE(6356)] = 123377, + [SMALL_STATE(6357)] = 123449, + [SMALL_STATE(6358)] = 123521, + [SMALL_STATE(6359)] = 123593, + [SMALL_STATE(6360)] = 123665, + [SMALL_STATE(6361)] = 123737, + [SMALL_STATE(6362)] = 123809, + [SMALL_STATE(6363)] = 123881, + [SMALL_STATE(6364)] = 123953, + [SMALL_STATE(6365)] = 124025, + [SMALL_STATE(6366)] = 124097, + [SMALL_STATE(6367)] = 124169, + [SMALL_STATE(6368)] = 124241, + [SMALL_STATE(6369)] = 124313, + [SMALL_STATE(6370)] = 124385, + [SMALL_STATE(6371)] = 124457, + [SMALL_STATE(6372)] = 124529, + [SMALL_STATE(6373)] = 124601, + [SMALL_STATE(6374)] = 124673, + [SMALL_STATE(6375)] = 124745, + [SMALL_STATE(6376)] = 124817, + [SMALL_STATE(6377)] = 124889, + [SMALL_STATE(6378)] = 124961, + [SMALL_STATE(6379)] = 125033, + [SMALL_STATE(6380)] = 125105, + [SMALL_STATE(6381)] = 125177, + [SMALL_STATE(6382)] = 125249, + [SMALL_STATE(6383)] = 125321, + [SMALL_STATE(6384)] = 125393, + [SMALL_STATE(6385)] = 125465, + [SMALL_STATE(6386)] = 125537, + [SMALL_STATE(6387)] = 125609, + [SMALL_STATE(6388)] = 125681, + [SMALL_STATE(6389)] = 125753, + [SMALL_STATE(6390)] = 125825, + [SMALL_STATE(6391)] = 125897, + [SMALL_STATE(6392)] = 125969, + [SMALL_STATE(6393)] = 126041, + [SMALL_STATE(6394)] = 126113, + [SMALL_STATE(6395)] = 126185, + [SMALL_STATE(6396)] = 126257, + [SMALL_STATE(6397)] = 126329, + [SMALL_STATE(6398)] = 126401, + [SMALL_STATE(6399)] = 126473, + [SMALL_STATE(6400)] = 126545, + [SMALL_STATE(6401)] = 126617, + [SMALL_STATE(6402)] = 126689, + [SMALL_STATE(6403)] = 126761, + [SMALL_STATE(6404)] = 126833, + [SMALL_STATE(6405)] = 126905, + [SMALL_STATE(6406)] = 126977, + [SMALL_STATE(6407)] = 127049, + [SMALL_STATE(6408)] = 127121, + [SMALL_STATE(6409)] = 127193, + [SMALL_STATE(6410)] = 127265, + [SMALL_STATE(6411)] = 127337, + [SMALL_STATE(6412)] = 127409, + [SMALL_STATE(6413)] = 127481, + [SMALL_STATE(6414)] = 127553, + [SMALL_STATE(6415)] = 127625, + [SMALL_STATE(6416)] = 127697, + [SMALL_STATE(6417)] = 127769, + [SMALL_STATE(6418)] = 127841, + [SMALL_STATE(6419)] = 127913, + [SMALL_STATE(6420)] = 127985, + [SMALL_STATE(6421)] = 128057, + [SMALL_STATE(6422)] = 128129, + [SMALL_STATE(6423)] = 128201, + [SMALL_STATE(6424)] = 128273, + [SMALL_STATE(6425)] = 128345, + [SMALL_STATE(6426)] = 128417, + [SMALL_STATE(6427)] = 128489, + [SMALL_STATE(6428)] = 128561, + [SMALL_STATE(6429)] = 128633, + [SMALL_STATE(6430)] = 128705, + [SMALL_STATE(6431)] = 128777, + [SMALL_STATE(6432)] = 128849, + [SMALL_STATE(6433)] = 128921, + [SMALL_STATE(6434)] = 128993, + [SMALL_STATE(6435)] = 129065, + [SMALL_STATE(6436)] = 129137, + [SMALL_STATE(6437)] = 129209, + [SMALL_STATE(6438)] = 129281, + [SMALL_STATE(6439)] = 129353, + [SMALL_STATE(6440)] = 129425, + [SMALL_STATE(6441)] = 129497, + [SMALL_STATE(6442)] = 129569, + [SMALL_STATE(6443)] = 129641, + [SMALL_STATE(6444)] = 129713, + [SMALL_STATE(6445)] = 129785, + [SMALL_STATE(6446)] = 129857, + [SMALL_STATE(6447)] = 129929, + [SMALL_STATE(6448)] = 130001, + [SMALL_STATE(6449)] = 130073, + [SMALL_STATE(6450)] = 130145, + [SMALL_STATE(6451)] = 130217, + [SMALL_STATE(6452)] = 130289, + [SMALL_STATE(6453)] = 130361, + [SMALL_STATE(6454)] = 130433, + [SMALL_STATE(6455)] = 130505, + [SMALL_STATE(6456)] = 130577, + [SMALL_STATE(6457)] = 130649, + [SMALL_STATE(6458)] = 130721, + [SMALL_STATE(6459)] = 130793, + [SMALL_STATE(6460)] = 130864, + [SMALL_STATE(6461)] = 130935, + [SMALL_STATE(6462)] = 131006, + [SMALL_STATE(6463)] = 131077, + [SMALL_STATE(6464)] = 131148, + [SMALL_STATE(6465)] = 131219, + [SMALL_STATE(6466)] = 131290, + [SMALL_STATE(6467)] = 131361, + [SMALL_STATE(6468)] = 131432, + [SMALL_STATE(6469)] = 131503, + [SMALL_STATE(6470)] = 131574, + [SMALL_STATE(6471)] = 131645, + [SMALL_STATE(6472)] = 131716, + [SMALL_STATE(6473)] = 131787, + [SMALL_STATE(6474)] = 131858, + [SMALL_STATE(6475)] = 131929, + [SMALL_STATE(6476)] = 132000, + [SMALL_STATE(6477)] = 132071, + [SMALL_STATE(6478)] = 132142, + [SMALL_STATE(6479)] = 132213, + [SMALL_STATE(6480)] = 132284, + [SMALL_STATE(6481)] = 132355, + [SMALL_STATE(6482)] = 132426, + [SMALL_STATE(6483)] = 132497, + [SMALL_STATE(6484)] = 132568, + [SMALL_STATE(6485)] = 132639, + [SMALL_STATE(6486)] = 132710, + [SMALL_STATE(6487)] = 132781, + [SMALL_STATE(6488)] = 132852, + [SMALL_STATE(6489)] = 132923, + [SMALL_STATE(6490)] = 132994, + [SMALL_STATE(6491)] = 133065, + [SMALL_STATE(6492)] = 133136, + [SMALL_STATE(6493)] = 133207, + [SMALL_STATE(6494)] = 133278, + [SMALL_STATE(6495)] = 133349, + [SMALL_STATE(6496)] = 133420, + [SMALL_STATE(6497)] = 133491, + [SMALL_STATE(6498)] = 133562, + [SMALL_STATE(6499)] = 133633, + [SMALL_STATE(6500)] = 133704, + [SMALL_STATE(6501)] = 133770, + [SMALL_STATE(6502)] = 133836, + [SMALL_STATE(6503)] = 133902, + [SMALL_STATE(6504)] = 133968, + [SMALL_STATE(6505)] = 134036, + [SMALL_STATE(6506)] = 134102, + [SMALL_STATE(6507)] = 134168, + [SMALL_STATE(6508)] = 134236, + [SMALL_STATE(6509)] = 134302, + [SMALL_STATE(6510)] = 134368, + [SMALL_STATE(6511)] = 134434, + [SMALL_STATE(6512)] = 134500, + [SMALL_STATE(6513)] = 134566, + [SMALL_STATE(6514)] = 134634, + [SMALL_STATE(6515)] = 134702, + [SMALL_STATE(6516)] = 134768, + [SMALL_STATE(6517)] = 134834, + [SMALL_STATE(6518)] = 134900, + [SMALL_STATE(6519)] = 134968, + [SMALL_STATE(6520)] = 135036, + [SMALL_STATE(6521)] = 135102, + [SMALL_STATE(6522)] = 135168, + [SMALL_STATE(6523)] = 135236, + [SMALL_STATE(6524)] = 135304, + [SMALL_STATE(6525)] = 135370, + [SMALL_STATE(6526)] = 135436, + [SMALL_STATE(6527)] = 135504, + [SMALL_STATE(6528)] = 135572, + [SMALL_STATE(6529)] = 135640, + [SMALL_STATE(6530)] = 135706, + [SMALL_STATE(6531)] = 135774, + [SMALL_STATE(6532)] = 135840, + [SMALL_STATE(6533)] = 135906, + [SMALL_STATE(6534)] = 135974, + [SMALL_STATE(6535)] = 136040, + [SMALL_STATE(6536)] = 136106, + [SMALL_STATE(6537)] = 136172, + [SMALL_STATE(6538)] = 136240, + [SMALL_STATE(6539)] = 136306, + [SMALL_STATE(6540)] = 136372, + [SMALL_STATE(6541)] = 136438, + [SMALL_STATE(6542)] = 136506, + [SMALL_STATE(6543)] = 136572, + [SMALL_STATE(6544)] = 136638, + [SMALL_STATE(6545)] = 136704, + [SMALL_STATE(6546)] = 136770, + [SMALL_STATE(6547)] = 136838, + [SMALL_STATE(6548)] = 136906, + [SMALL_STATE(6549)] = 136974, + [SMALL_STATE(6550)] = 137042, + [SMALL_STATE(6551)] = 137110, + [SMALL_STATE(6552)] = 137176, + [SMALL_STATE(6553)] = 137244, + [SMALL_STATE(6554)] = 137310, + [SMALL_STATE(6555)] = 137376, + [SMALL_STATE(6556)] = 137444, + [SMALL_STATE(6557)] = 137510, + [SMALL_STATE(6558)] = 137576, + [SMALL_STATE(6559)] = 137642, + [SMALL_STATE(6560)] = 137708, + [SMALL_STATE(6561)] = 137774, + [SMALL_STATE(6562)] = 137840, + [SMALL_STATE(6563)] = 137906, + [SMALL_STATE(6564)] = 137974, + [SMALL_STATE(6565)] = 138040, + [SMALL_STATE(6566)] = 138108, + [SMALL_STATE(6567)] = 138174, + [SMALL_STATE(6568)] = 138240, + [SMALL_STATE(6569)] = 138308, + [SMALL_STATE(6570)] = 138374, + [SMALL_STATE(6571)] = 138442, + [SMALL_STATE(6572)] = 138508, + [SMALL_STATE(6573)] = 138574, + [SMALL_STATE(6574)] = 138640, + [SMALL_STATE(6575)] = 138706, + [SMALL_STATE(6576)] = 138772, + [SMALL_STATE(6577)] = 138840, + [SMALL_STATE(6578)] = 138908, + [SMALL_STATE(6579)] = 138974, + [SMALL_STATE(6580)] = 139040, + [SMALL_STATE(6581)] = 139106, + [SMALL_STATE(6582)] = 139172, + [SMALL_STATE(6583)] = 139234, + [SMALL_STATE(6584)] = 139296, + [SMALL_STATE(6585)] = 139358, + [SMALL_STATE(6586)] = 139420, + [SMALL_STATE(6587)] = 139482, + [SMALL_STATE(6588)] = 139544, + [SMALL_STATE(6589)] = 139606, + [SMALL_STATE(6590)] = 139668, + [SMALL_STATE(6591)] = 139730, + [SMALL_STATE(6592)] = 139792, + [SMALL_STATE(6593)] = 139854, + [SMALL_STATE(6594)] = 139916, + [SMALL_STATE(6595)] = 139978, + [SMALL_STATE(6596)] = 140040, + [SMALL_STATE(6597)] = 140102, + [SMALL_STATE(6598)] = 140164, + [SMALL_STATE(6599)] = 140226, + [SMALL_STATE(6600)] = 140288, + [SMALL_STATE(6601)] = 140350, + [SMALL_STATE(6602)] = 140412, + [SMALL_STATE(6603)] = 140474, + [SMALL_STATE(6604)] = 140536, + [SMALL_STATE(6605)] = 140598, + [SMALL_STATE(6606)] = 140660, + [SMALL_STATE(6607)] = 140696, + [SMALL_STATE(6608)] = 140758, + [SMALL_STATE(6609)] = 140820, + [SMALL_STATE(6610)] = 140882, + [SMALL_STATE(6611)] = 140944, + [SMALL_STATE(6612)] = 141006, + [SMALL_STATE(6613)] = 141068, + [SMALL_STATE(6614)] = 141130, + [SMALL_STATE(6615)] = 141192, + [SMALL_STATE(6616)] = 141254, + [SMALL_STATE(6617)] = 141316, + [SMALL_STATE(6618)] = 141378, + [SMALL_STATE(6619)] = 141440, + [SMALL_STATE(6620)] = 141502, + [SMALL_STATE(6621)] = 141538, + [SMALL_STATE(6622)] = 141600, + [SMALL_STATE(6623)] = 141662, + [SMALL_STATE(6624)] = 141724, + [SMALL_STATE(6625)] = 141786, + [SMALL_STATE(6626)] = 141848, + [SMALL_STATE(6627)] = 141910, + [SMALL_STATE(6628)] = 141972, + [SMALL_STATE(6629)] = 142034, + [SMALL_STATE(6630)] = 142096, + [SMALL_STATE(6631)] = 142158, + [SMALL_STATE(6632)] = 142220, + [SMALL_STATE(6633)] = 142282, + [SMALL_STATE(6634)] = 142344, + [SMALL_STATE(6635)] = 142406, + [SMALL_STATE(6636)] = 142468, + [SMALL_STATE(6637)] = 142530, + [SMALL_STATE(6638)] = 142592, + [SMALL_STATE(6639)] = 142631, + [SMALL_STATE(6640)] = 142669, + [SMALL_STATE(6641)] = 142727, + [SMALL_STATE(6642)] = 142785, + [SMALL_STATE(6643)] = 142843, + [SMALL_STATE(6644)] = 142901, + [SMALL_STATE(6645)] = 142959, + [SMALL_STATE(6646)] = 143017, + [SMALL_STATE(6647)] = 143075, + [SMALL_STATE(6648)] = 143113, + [SMALL_STATE(6649)] = 143171, + [SMALL_STATE(6650)] = 143229, + [SMALL_STATE(6651)] = 143284, + [SMALL_STATE(6652)] = 143339, + [SMALL_STATE(6653)] = 143394, + [SMALL_STATE(6654)] = 143449, + [SMALL_STATE(6655)] = 143504, + [SMALL_STATE(6656)] = 143559, + [SMALL_STATE(6657)] = 143614, + [SMALL_STATE(6658)] = 143669, + [SMALL_STATE(6659)] = 143724, + [SMALL_STATE(6660)] = 143757, + [SMALL_STATE(6661)] = 143812, + [SMALL_STATE(6662)] = 143867, + [SMALL_STATE(6663)] = 143922, + [SMALL_STATE(6664)] = 143977, + [SMALL_STATE(6665)] = 144032, + [SMALL_STATE(6666)] = 144087, + [SMALL_STATE(6667)] = 144142, + [SMALL_STATE(6668)] = 144197, + [SMALL_STATE(6669)] = 144252, + [SMALL_STATE(6670)] = 144307, + [SMALL_STATE(6671)] = 144340, + [SMALL_STATE(6672)] = 144394, + [SMALL_STATE(6673)] = 144448, + [SMALL_STATE(6674)] = 144500, + [SMALL_STATE(6675)] = 144552, + [SMALL_STATE(6676)] = 144606, + [SMALL_STATE(6677)] = 144660, + [SMALL_STATE(6678)] = 144714, + [SMALL_STATE(6679)] = 144766, + [SMALL_STATE(6680)] = 144820, + [SMALL_STATE(6681)] = 144872, + [SMALL_STATE(6682)] = 144924, + [SMALL_STATE(6683)] = 144976, + [SMALL_STATE(6684)] = 145030, + [SMALL_STATE(6685)] = 145084, + [SMALL_STATE(6686)] = 145138, + [SMALL_STATE(6687)] = 145190, + [SMALL_STATE(6688)] = 145244, + [SMALL_STATE(6689)] = 145298, + [SMALL_STATE(6690)] = 145350, + [SMALL_STATE(6691)] = 145404, + [SMALL_STATE(6692)] = 145458, + [SMALL_STATE(6693)] = 145512, + [SMALL_STATE(6694)] = 145564, + [SMALL_STATE(6695)] = 145616, + [SMALL_STATE(6696)] = 145670, + [SMALL_STATE(6697)] = 145724, + [SMALL_STATE(6698)] = 145778, + [SMALL_STATE(6699)] = 145832, + [SMALL_STATE(6700)] = 145886, + [SMALL_STATE(6701)] = 145940, + [SMALL_STATE(6702)] = 145994, + [SMALL_STATE(6703)] = 146048, + [SMALL_STATE(6704)] = 146100, + [SMALL_STATE(6705)] = 146154, + [SMALL_STATE(6706)] = 146206, + [SMALL_STATE(6707)] = 146260, + [SMALL_STATE(6708)] = 146314, + [SMALL_STATE(6709)] = 146366, + [SMALL_STATE(6710)] = 146420, + [SMALL_STATE(6711)] = 146474, + [SMALL_STATE(6712)] = 146528, + [SMALL_STATE(6713)] = 146564, + [SMALL_STATE(6714)] = 146616, + [SMALL_STATE(6715)] = 146668, + [SMALL_STATE(6716)] = 146722, + [SMALL_STATE(6717)] = 146774, + [SMALL_STATE(6718)] = 146826, + [SMALL_STATE(6719)] = 146878, + [SMALL_STATE(6720)] = 146932, + [SMALL_STATE(6721)] = 146986, + [SMALL_STATE(6722)] = 147040, + [SMALL_STATE(6723)] = 147094, + [SMALL_STATE(6724)] = 147148, + [SMALL_STATE(6725)] = 147202, + [SMALL_STATE(6726)] = 147256, + [SMALL_STATE(6727)] = 147310, + [SMALL_STATE(6728)] = 147362, + [SMALL_STATE(6729)] = 147416, + [SMALL_STATE(6730)] = 147468, + [SMALL_STATE(6731)] = 147520, + [SMALL_STATE(6732)] = 147574, + [SMALL_STATE(6733)] = 147628, + [SMALL_STATE(6734)] = 147682, + [SMALL_STATE(6735)] = 147736, + [SMALL_STATE(6736)] = 147785, + [SMALL_STATE(6737)] = 147834, + [SMALL_STATE(6738)] = 147883, + [SMALL_STATE(6739)] = 147932, + [SMALL_STATE(6740)] = 147981, + [SMALL_STATE(6741)] = 148030, + [SMALL_STATE(6742)] = 148079, + [SMALL_STATE(6743)] = 148128, + [SMALL_STATE(6744)] = 148177, + [SMALL_STATE(6745)] = 148226, + [SMALL_STATE(6746)] = 148275, + [SMALL_STATE(6747)] = 148324, + [SMALL_STATE(6748)] = 148373, + [SMALL_STATE(6749)] = 148422, + [SMALL_STATE(6750)] = 148471, + [SMALL_STATE(6751)] = 148520, + [SMALL_STATE(6752)] = 148569, + [SMALL_STATE(6753)] = 148618, + [SMALL_STATE(6754)] = 148667, + [SMALL_STATE(6755)] = 148716, + [SMALL_STATE(6756)] = 148765, + [SMALL_STATE(6757)] = 148814, + [SMALL_STATE(6758)] = 148863, + [SMALL_STATE(6759)] = 148912, + [SMALL_STATE(6760)] = 148961, + [SMALL_STATE(6761)] = 149010, + [SMALL_STATE(6762)] = 149059, + [SMALL_STATE(6763)] = 149108, + [SMALL_STATE(6764)] = 149157, + [SMALL_STATE(6765)] = 149206, + [SMALL_STATE(6766)] = 149255, + [SMALL_STATE(6767)] = 149304, + [SMALL_STATE(6768)] = 149353, + [SMALL_STATE(6769)] = 149402, + [SMALL_STATE(6770)] = 149451, + [SMALL_STATE(6771)] = 149500, + [SMALL_STATE(6772)] = 149535, + [SMALL_STATE(6773)] = 149584, + [SMALL_STATE(6774)] = 149633, + [SMALL_STATE(6775)] = 149682, + [SMALL_STATE(6776)] = 149731, + [SMALL_STATE(6777)] = 149780, + [SMALL_STATE(6778)] = 149829, + [SMALL_STATE(6779)] = 149878, + [SMALL_STATE(6780)] = 149927, + [SMALL_STATE(6781)] = 149976, + [SMALL_STATE(6782)] = 150025, + [SMALL_STATE(6783)] = 150074, + [SMALL_STATE(6784)] = 150109, + [SMALL_STATE(6785)] = 150158, + [SMALL_STATE(6786)] = 150207, + [SMALL_STATE(6787)] = 150256, + [SMALL_STATE(6788)] = 150305, + [SMALL_STATE(6789)] = 150354, + [SMALL_STATE(6790)] = 150403, + [SMALL_STATE(6791)] = 150452, + [SMALL_STATE(6792)] = 150482, + [SMALL_STATE(6793)] = 150512, + [SMALL_STATE(6794)] = 150542, + [SMALL_STATE(6795)] = 150572, + [SMALL_STATE(6796)] = 150623, + [SMALL_STATE(6797)] = 150672, + [SMALL_STATE(6798)] = 150723, + [SMALL_STATE(6799)] = 150772, + [SMALL_STATE(6800)] = 150823, + [SMALL_STATE(6801)] = 150874, + [SMALL_STATE(6802)] = 150923, + [SMALL_STATE(6803)] = 150974, + [SMALL_STATE(6804)] = 151025, + [SMALL_STATE(6805)] = 151074, + [SMALL_STATE(6806)] = 151123, + [SMALL_STATE(6807)] = 151174, + [SMALL_STATE(6808)] = 151225, + [SMALL_STATE(6809)] = 151274, + [SMALL_STATE(6810)] = 151323, + [SMALL_STATE(6811)] = 151374, + [SMALL_STATE(6812)] = 151425, + [SMALL_STATE(6813)] = 151476, + [SMALL_STATE(6814)] = 151525, + [SMALL_STATE(6815)] = 151576, + [SMALL_STATE(6816)] = 151627, + [SMALL_STATE(6817)] = 151676, + [SMALL_STATE(6818)] = 151725, + [SMALL_STATE(6819)] = 151776, + [SMALL_STATE(6820)] = 151825, + [SMALL_STATE(6821)] = 151876, + [SMALL_STATE(6822)] = 151927, + [SMALL_STATE(6823)] = 151976, + [SMALL_STATE(6824)] = 152027, + [SMALL_STATE(6825)] = 152078, + [SMALL_STATE(6826)] = 152127, + [SMALL_STATE(6827)] = 152178, + [SMALL_STATE(6828)] = 152227, + [SMALL_STATE(6829)] = 152276, + [SMALL_STATE(6830)] = 152325, + [SMALL_STATE(6831)] = 152376, + [SMALL_STATE(6832)] = 152425, + [SMALL_STATE(6833)] = 152474, + [SMALL_STATE(6834)] = 152525, + [SMALL_STATE(6835)] = 152574, + [SMALL_STATE(6836)] = 152623, + [SMALL_STATE(6837)] = 152674, + [SMALL_STATE(6838)] = 152723, + [SMALL_STATE(6839)] = 152772, + [SMALL_STATE(6840)] = 152821, + [SMALL_STATE(6841)] = 152872, + [SMALL_STATE(6842)] = 152923, + [SMALL_STATE(6843)] = 152974, + [SMALL_STATE(6844)] = 153023, + [SMALL_STATE(6845)] = 153074, + [SMALL_STATE(6846)] = 153125, + [SMALL_STATE(6847)] = 153174, + [SMALL_STATE(6848)] = 153225, + [SMALL_STATE(6849)] = 153274, + [SMALL_STATE(6850)] = 153325, + [SMALL_STATE(6851)] = 153376, + [SMALL_STATE(6852)] = 153425, + [SMALL_STATE(6853)] = 153476, + [SMALL_STATE(6854)] = 153527, + [SMALL_STATE(6855)] = 153578, + [SMALL_STATE(6856)] = 153629, + [SMALL_STATE(6857)] = 153680, + [SMALL_STATE(6858)] = 153731, + [SMALL_STATE(6859)] = 153780, + [SMALL_STATE(6860)] = 153829, + [SMALL_STATE(6861)] = 153880, + [SMALL_STATE(6862)] = 153931, + [SMALL_STATE(6863)] = 153982, + [SMALL_STATE(6864)] = 154033, + [SMALL_STATE(6865)] = 154082, + [SMALL_STATE(6866)] = 154131, + [SMALL_STATE(6867)] = 154182, + [SMALL_STATE(6868)] = 154233, + [SMALL_STATE(6869)] = 154284, + [SMALL_STATE(6870)] = 154333, + [SMALL_STATE(6871)] = 154384, + [SMALL_STATE(6872)] = 154433, + [SMALL_STATE(6873)] = 154484, + [SMALL_STATE(6874)] = 154533, + [SMALL_STATE(6875)] = 154582, + [SMALL_STATE(6876)] = 154631, + [SMALL_STATE(6877)] = 154680, + [SMALL_STATE(6878)] = 154729, + [SMALL_STATE(6879)] = 154778, + [SMALL_STATE(6880)] = 154827, + [SMALL_STATE(6881)] = 154876, + [SMALL_STATE(6882)] = 154927, + [SMALL_STATE(6883)] = 154976, + [SMALL_STATE(6884)] = 155027, + [SMALL_STATE(6885)] = 155076, + [SMALL_STATE(6886)] = 155127, + [SMALL_STATE(6887)] = 155176, + [SMALL_STATE(6888)] = 155227, + [SMALL_STATE(6889)] = 155278, + [SMALL_STATE(6890)] = 155329, + [SMALL_STATE(6891)] = 155380, + [SMALL_STATE(6892)] = 155429, + [SMALL_STATE(6893)] = 155480, + [SMALL_STATE(6894)] = 155531, + [SMALL_STATE(6895)] = 155582, + [SMALL_STATE(6896)] = 155631, + [SMALL_STATE(6897)] = 155680, + [SMALL_STATE(6898)] = 155731, + [SMALL_STATE(6899)] = 155782, + [SMALL_STATE(6900)] = 155833, + [SMALL_STATE(6901)] = 155884, + [SMALL_STATE(6902)] = 155935, + [SMALL_STATE(6903)] = 155984, + [SMALL_STATE(6904)] = 156035, + [SMALL_STATE(6905)] = 156086, + [SMALL_STATE(6906)] = 156137, + [SMALL_STATE(6907)] = 156186, + [SMALL_STATE(6908)] = 156235, + [SMALL_STATE(6909)] = 156286, + [SMALL_STATE(6910)] = 156335, + [SMALL_STATE(6911)] = 156386, + [SMALL_STATE(6912)] = 156437, + [SMALL_STATE(6913)] = 156488, + [SMALL_STATE(6914)] = 156539, + [SMALL_STATE(6915)] = 156590, + [SMALL_STATE(6916)] = 156639, + [SMALL_STATE(6917)] = 156688, + [SMALL_STATE(6918)] = 156737, + [SMALL_STATE(6919)] = 156788, + [SMALL_STATE(6920)] = 156837, + [SMALL_STATE(6921)] = 156888, + [SMALL_STATE(6922)] = 156939, + [SMALL_STATE(6923)] = 156990, + [SMALL_STATE(6924)] = 157041, + [SMALL_STATE(6925)] = 157092, + [SMALL_STATE(6926)] = 157141, + [SMALL_STATE(6927)] = 157192, + [SMALL_STATE(6928)] = 157243, + [SMALL_STATE(6929)] = 157294, + [SMALL_STATE(6930)] = 157343, + [SMALL_STATE(6931)] = 157394, + [SMALL_STATE(6932)] = 157443, + [SMALL_STATE(6933)] = 157492, + [SMALL_STATE(6934)] = 157543, + [SMALL_STATE(6935)] = 157592, + [SMALL_STATE(6936)] = 157643, + [SMALL_STATE(6937)] = 157694, + [SMALL_STATE(6938)] = 157745, + [SMALL_STATE(6939)] = 157796, + [SMALL_STATE(6940)] = 157847, + [SMALL_STATE(6941)] = 157898, + [SMALL_STATE(6942)] = 157949, + [SMALL_STATE(6943)] = 158000, + [SMALL_STATE(6944)] = 158051, + [SMALL_STATE(6945)] = 158102, + [SMALL_STATE(6946)] = 158153, + [SMALL_STATE(6947)] = 158204, + [SMALL_STATE(6948)] = 158255, + [SMALL_STATE(6949)] = 158304, + [SMALL_STATE(6950)] = 158353, + [SMALL_STATE(6951)] = 158404, + [SMALL_STATE(6952)] = 158455, + [SMALL_STATE(6953)] = 158504, + [SMALL_STATE(6954)] = 158553, + [SMALL_STATE(6955)] = 158602, + [SMALL_STATE(6956)] = 158651, + [SMALL_STATE(6957)] = 158700, + [SMALL_STATE(6958)] = 158749, + [SMALL_STATE(6959)] = 158800, + [SMALL_STATE(6960)] = 158849, + [SMALL_STATE(6961)] = 158898, + [SMALL_STATE(6962)] = 158947, + [SMALL_STATE(6963)] = 158998, + [SMALL_STATE(6964)] = 159049, + [SMALL_STATE(6965)] = 159098, + [SMALL_STATE(6966)] = 159147, + [SMALL_STATE(6967)] = 159198, + [SMALL_STATE(6968)] = 159247, + [SMALL_STATE(6969)] = 159298, + [SMALL_STATE(6970)] = 159349, + [SMALL_STATE(6971)] = 159400, + [SMALL_STATE(6972)] = 159449, + [SMALL_STATE(6973)] = 159498, + [SMALL_STATE(6974)] = 159549, + [SMALL_STATE(6975)] = 159598, + [SMALL_STATE(6976)] = 159647, + [SMALL_STATE(6977)] = 159698, + [SMALL_STATE(6978)] = 159749, + [SMALL_STATE(6979)] = 159798, + [SMALL_STATE(6980)] = 159847, + [SMALL_STATE(6981)] = 159898, + [SMALL_STATE(6982)] = 159949, + [SMALL_STATE(6983)] = 159998, + [SMALL_STATE(6984)] = 160049, + [SMALL_STATE(6985)] = 160100, + [SMALL_STATE(6986)] = 160151, + [SMALL_STATE(6987)] = 160200, + [SMALL_STATE(6988)] = 160249, + [SMALL_STATE(6989)] = 160300, + [SMALL_STATE(6990)] = 160351, + [SMALL_STATE(6991)] = 160402, + [SMALL_STATE(6992)] = 160451, + [SMALL_STATE(6993)] = 160502, + [SMALL_STATE(6994)] = 160553, + [SMALL_STATE(6995)] = 160602, + [SMALL_STATE(6996)] = 160651, + [SMALL_STATE(6997)] = 160702, + [SMALL_STATE(6998)] = 160753, + [SMALL_STATE(6999)] = 160804, + [SMALL_STATE(7000)] = 160855, + [SMALL_STATE(7001)] = 160904, + [SMALL_STATE(7002)] = 160955, + [SMALL_STATE(7003)] = 161004, + [SMALL_STATE(7004)] = 161053, + [SMALL_STATE(7005)] = 161104, + [SMALL_STATE(7006)] = 161155, + [SMALL_STATE(7007)] = 161206, + [SMALL_STATE(7008)] = 161257, + [SMALL_STATE(7009)] = 161308, + [SMALL_STATE(7010)] = 161359, + [SMALL_STATE(7011)] = 161410, + [SMALL_STATE(7012)] = 161459, + [SMALL_STATE(7013)] = 161510, + [SMALL_STATE(7014)] = 161561, + [SMALL_STATE(7015)] = 161610, + [SMALL_STATE(7016)] = 161661, + [SMALL_STATE(7017)] = 161710, + [SMALL_STATE(7018)] = 161761, + [SMALL_STATE(7019)] = 161812, + [SMALL_STATE(7020)] = 161863, + [SMALL_STATE(7021)] = 161912, + [SMALL_STATE(7022)] = 161961, + [SMALL_STATE(7023)] = 162012, + [SMALL_STATE(7024)] = 162061, + [SMALL_STATE(7025)] = 162112, + [SMALL_STATE(7026)] = 162163, + [SMALL_STATE(7027)] = 162214, + [SMALL_STATE(7028)] = 162265, + [SMALL_STATE(7029)] = 162316, + [SMALL_STATE(7030)] = 162367, + [SMALL_STATE(7031)] = 162418, + [SMALL_STATE(7032)] = 162469, + [SMALL_STATE(7033)] = 162518, + [SMALL_STATE(7034)] = 162567, + [SMALL_STATE(7035)] = 162618, + [SMALL_STATE(7036)] = 162667, + [SMALL_STATE(7037)] = 162718, + [SMALL_STATE(7038)] = 162769, + [SMALL_STATE(7039)] = 162820, + [SMALL_STATE(7040)] = 162869, + [SMALL_STATE(7041)] = 162920, + [SMALL_STATE(7042)] = 162971, + [SMALL_STATE(7043)] = 163020, + [SMALL_STATE(7044)] = 163071, + [SMALL_STATE(7045)] = 163120, + [SMALL_STATE(7046)] = 163171, + [SMALL_STATE(7047)] = 163222, + [SMALL_STATE(7048)] = 163271, + [SMALL_STATE(7049)] = 163320, + [SMALL_STATE(7050)] = 163371, + [SMALL_STATE(7051)] = 163422, + [SMALL_STATE(7052)] = 163473, + [SMALL_STATE(7053)] = 163522, + [SMALL_STATE(7054)] = 163573, + [SMALL_STATE(7055)] = 163622, + [SMALL_STATE(7056)] = 163671, + [SMALL_STATE(7057)] = 163720, + [SMALL_STATE(7058)] = 163771, + [SMALL_STATE(7059)] = 163820, + [SMALL_STATE(7060)] = 163869, + [SMALL_STATE(7061)] = 163920, + [SMALL_STATE(7062)] = 163971, + [SMALL_STATE(7063)] = 164022, + [SMALL_STATE(7064)] = 164073, + [SMALL_STATE(7065)] = 164124, + [SMALL_STATE(7066)] = 164173, + [SMALL_STATE(7067)] = 164224, + [SMALL_STATE(7068)] = 164275, + [SMALL_STATE(7069)] = 164326, + [SMALL_STATE(7070)] = 164377, + [SMALL_STATE(7071)] = 164426, + [SMALL_STATE(7072)] = 164475, + [SMALL_STATE(7073)] = 164526, + [SMALL_STATE(7074)] = 164577, + [SMALL_STATE(7075)] = 164628, + [SMALL_STATE(7076)] = 164677, + [SMALL_STATE(7077)] = 164728, + [SMALL_STATE(7078)] = 164779, + [SMALL_STATE(7079)] = 164828, + [SMALL_STATE(7080)] = 164877, + [SMALL_STATE(7081)] = 164928, + [SMALL_STATE(7082)] = 164977, + [SMALL_STATE(7083)] = 165026, + [SMALL_STATE(7084)] = 165075, + [SMALL_STATE(7085)] = 165126, + [SMALL_STATE(7086)] = 165175, + [SMALL_STATE(7087)] = 165226, + [SMALL_STATE(7088)] = 165275, + [SMALL_STATE(7089)] = 165324, + [SMALL_STATE(7090)] = 165373, + [SMALL_STATE(7091)] = 165422, + [SMALL_STATE(7092)] = 165473, + [SMALL_STATE(7093)] = 165522, + [SMALL_STATE(7094)] = 165573, + [SMALL_STATE(7095)] = 165624, + [SMALL_STATE(7096)] = 165675, + [SMALL_STATE(7097)] = 165724, + [SMALL_STATE(7098)] = 165773, + [SMALL_STATE(7099)] = 165824, + [SMALL_STATE(7100)] = 165873, + [SMALL_STATE(7101)] = 165922, + [SMALL_STATE(7102)] = 165973, + [SMALL_STATE(7103)] = 166022, + [SMALL_STATE(7104)] = 166073, + [SMALL_STATE(7105)] = 166122, + [SMALL_STATE(7106)] = 166171, + [SMALL_STATE(7107)] = 166220, + [SMALL_STATE(7108)] = 166269, + [SMALL_STATE(7109)] = 166318, + [SMALL_STATE(7110)] = 166367, + [SMALL_STATE(7111)] = 166416, + [SMALL_STATE(7112)] = 166465, + [SMALL_STATE(7113)] = 166516, + [SMALL_STATE(7114)] = 166567, + [SMALL_STATE(7115)] = 166616, + [SMALL_STATE(7116)] = 166665, + [SMALL_STATE(7117)] = 166714, + [SMALL_STATE(7118)] = 166763, + [SMALL_STATE(7119)] = 166814, + [SMALL_STATE(7120)] = 166865, + [SMALL_STATE(7121)] = 166914, + [SMALL_STATE(7122)] = 166963, + [SMALL_STATE(7123)] = 167014, + [SMALL_STATE(7124)] = 167063, + [SMALL_STATE(7125)] = 167112, + [SMALL_STATE(7126)] = 167163, + [SMALL_STATE(7127)] = 167212, + [SMALL_STATE(7128)] = 167263, + [SMALL_STATE(7129)] = 167314, + [SMALL_STATE(7130)] = 167365, + [SMALL_STATE(7131)] = 167414, + [SMALL_STATE(7132)] = 167463, + [SMALL_STATE(7133)] = 167514, + [SMALL_STATE(7134)] = 167565, + [SMALL_STATE(7135)] = 167616, + [SMALL_STATE(7136)] = 167665, + [SMALL_STATE(7137)] = 167716, + [SMALL_STATE(7138)] = 167767, + [SMALL_STATE(7139)] = 167816, + [SMALL_STATE(7140)] = 167865, + [SMALL_STATE(7141)] = 167914, + [SMALL_STATE(7142)] = 167965, + [SMALL_STATE(7143)] = 168016, + [SMALL_STATE(7144)] = 168067, + [SMALL_STATE(7145)] = 168116, + [SMALL_STATE(7146)] = 168167, + [SMALL_STATE(7147)] = 168216, + [SMALL_STATE(7148)] = 168265, + [SMALL_STATE(7149)] = 168316, + [SMALL_STATE(7150)] = 168367, + [SMALL_STATE(7151)] = 168418, + [SMALL_STATE(7152)] = 168467, + [SMALL_STATE(7153)] = 168518, + [SMALL_STATE(7154)] = 168569, + [SMALL_STATE(7155)] = 168620, + [SMALL_STATE(7156)] = 168669, + [SMALL_STATE(7157)] = 168720, + [SMALL_STATE(7158)] = 168771, + [SMALL_STATE(7159)] = 168822, + [SMALL_STATE(7160)] = 168873, + [SMALL_STATE(7161)] = 168924, + [SMALL_STATE(7162)] = 168973, + [SMALL_STATE(7163)] = 169024, + [SMALL_STATE(7164)] = 169075, + [SMALL_STATE(7165)] = 169126, + [SMALL_STATE(7166)] = 169177, + [SMALL_STATE(7167)] = 169228, + [SMALL_STATE(7168)] = 169277, + [SMALL_STATE(7169)] = 169326, + [SMALL_STATE(7170)] = 169375, + [SMALL_STATE(7171)] = 169424, + [SMALL_STATE(7172)] = 169475, + [SMALL_STATE(7173)] = 169524, + [SMALL_STATE(7174)] = 169573, + [SMALL_STATE(7175)] = 169624, + [SMALL_STATE(7176)] = 169673, + [SMALL_STATE(7177)] = 169722, + [SMALL_STATE(7178)] = 169771, + [SMALL_STATE(7179)] = 169822, + [SMALL_STATE(7180)] = 169873, + [SMALL_STATE(7181)] = 169922, + [SMALL_STATE(7182)] = 169973, + [SMALL_STATE(7183)] = 170024, + [SMALL_STATE(7184)] = 170068, + [SMALL_STATE(7185)] = 170112, + [SMALL_STATE(7186)] = 170160, + [SMALL_STATE(7187)] = 170204, + [SMALL_STATE(7188)] = 170240, + [SMALL_STATE(7189)] = 170284, + [SMALL_STATE(7190)] = 170322, + [SMALL_STATE(7191)] = 170366, + [SMALL_STATE(7192)] = 170410, + [SMALL_STATE(7193)] = 170454, + [SMALL_STATE(7194)] = 170498, + [SMALL_STATE(7195)] = 170542, + [SMALL_STATE(7196)] = 170586, + [SMALL_STATE(7197)] = 170630, + [SMALL_STATE(7198)] = 170678, + [SMALL_STATE(7199)] = 170722, + [SMALL_STATE(7200)] = 170766, + [SMALL_STATE(7201)] = 170814, + [SMALL_STATE(7202)] = 170858, + [SMALL_STATE(7203)] = 170902, + [SMALL_STATE(7204)] = 170934, + [SMALL_STATE(7205)] = 170982, + [SMALL_STATE(7206)] = 171030, + [SMALL_STATE(7207)] = 171078, + [SMALL_STATE(7208)] = 171122, + [SMALL_STATE(7209)] = 171152, + [SMALL_STATE(7210)] = 171196, + [SMALL_STATE(7211)] = 171244, + [SMALL_STATE(7212)] = 171288, + [SMALL_STATE(7213)] = 171332, + [SMALL_STATE(7214)] = 171376, + [SMALL_STATE(7215)] = 171420, + [SMALL_STATE(7216)] = 171464, + [SMALL_STATE(7217)] = 171508, + [SMALL_STATE(7218)] = 171552, + [SMALL_STATE(7219)] = 171590, + [SMALL_STATE(7220)] = 171634, + [SMALL_STATE(7221)] = 171678, + [SMALL_STATE(7222)] = 171722, + [SMALL_STATE(7223)] = 171766, + [SMALL_STATE(7224)] = 171810, + [SMALL_STATE(7225)] = 171854, + [SMALL_STATE(7226)] = 171898, + [SMALL_STATE(7227)] = 171942, + [SMALL_STATE(7228)] = 171986, + [SMALL_STATE(7229)] = 172030, + [SMALL_STATE(7230)] = 172074, + [SMALL_STATE(7231)] = 172118, + [SMALL_STATE(7232)] = 172162, + [SMALL_STATE(7233)] = 172210, + [SMALL_STATE(7234)] = 172254, + [SMALL_STATE(7235)] = 172298, + [SMALL_STATE(7236)] = 172346, + [SMALL_STATE(7237)] = 172374, + [SMALL_STATE(7238)] = 172418, + [SMALL_STATE(7239)] = 172462, + [SMALL_STATE(7240)] = 172498, + [SMALL_STATE(7241)] = 172546, + [SMALL_STATE(7242)] = 172594, + [SMALL_STATE(7243)] = 172642, + [SMALL_STATE(7244)] = 172690, + [SMALL_STATE(7245)] = 172734, + [SMALL_STATE(7246)] = 172778, + [SMALL_STATE(7247)] = 172822, + [SMALL_STATE(7248)] = 172866, + [SMALL_STATE(7249)] = 172914, + [SMALL_STATE(7250)] = 172958, + [SMALL_STATE(7251)] = 173002, + [SMALL_STATE(7252)] = 173046, + [SMALL_STATE(7253)] = 173090, + [SMALL_STATE(7254)] = 173134, + [SMALL_STATE(7255)] = 173178, + [SMALL_STATE(7256)] = 173222, + [SMALL_STATE(7257)] = 173266, + [SMALL_STATE(7258)] = 173310, + [SMALL_STATE(7259)] = 173358, + [SMALL_STATE(7260)] = 173393, + [SMALL_STATE(7261)] = 173436, + [SMALL_STATE(7262)] = 173467, + [SMALL_STATE(7263)] = 173502, + [SMALL_STATE(7264)] = 173533, + [SMALL_STATE(7265)] = 173568, + [SMALL_STATE(7266)] = 173595, + [SMALL_STATE(7267)] = 173630, + [SMALL_STATE(7268)] = 173661, + [SMALL_STATE(7269)] = 173696, + [SMALL_STATE(7270)] = 173727, + [SMALL_STATE(7271)] = 173758, + [SMALL_STATE(7272)] = 173785, + [SMALL_STATE(7273)] = 173825, + [SMALL_STATE(7274)] = 173865, + [SMALL_STATE(7275)] = 173905, + [SMALL_STATE(7276)] = 173945, + [SMALL_STATE(7277)] = 173985, + [SMALL_STATE(7278)] = 174025, + [SMALL_STATE(7279)] = 174065, + [SMALL_STATE(7280)] = 174105, + [SMALL_STATE(7281)] = 174145, + [SMALL_STATE(7282)] = 174185, + [SMALL_STATE(7283)] = 174225, + [SMALL_STATE(7284)] = 174265, + [SMALL_STATE(7285)] = 174305, + [SMALL_STATE(7286)] = 174345, + [SMALL_STATE(7287)] = 174385, + [SMALL_STATE(7288)] = 174415, + [SMALL_STATE(7289)] = 174455, + [SMALL_STATE(7290)] = 174495, + [SMALL_STATE(7291)] = 174521, + [SMALL_STATE(7292)] = 174547, + [SMALL_STATE(7293)] = 174587, + [SMALL_STATE(7294)] = 174627, + [SMALL_STATE(7295)] = 174667, + [SMALL_STATE(7296)] = 174707, + [SMALL_STATE(7297)] = 174747, + [SMALL_STATE(7298)] = 174787, + [SMALL_STATE(7299)] = 174827, + [SMALL_STATE(7300)] = 174867, + [SMALL_STATE(7301)] = 174907, + [SMALL_STATE(7302)] = 174947, + [SMALL_STATE(7303)] = 174987, + [SMALL_STATE(7304)] = 175015, + [SMALL_STATE(7305)] = 175055, + [SMALL_STATE(7306)] = 175095, + [SMALL_STATE(7307)] = 175135, + [SMALL_STATE(7308)] = 175175, + [SMALL_STATE(7309)] = 175215, + [SMALL_STATE(7310)] = 175241, + [SMALL_STATE(7311)] = 175281, + [SMALL_STATE(7312)] = 175321, + [SMALL_STATE(7313)] = 175347, + [SMALL_STATE(7314)] = 175377, + [SMALL_STATE(7315)] = 175405, + [SMALL_STATE(7316)] = 175445, + [SMALL_STATE(7317)] = 175485, + [SMALL_STATE(7318)] = 175525, + [SMALL_STATE(7319)] = 175565, + [SMALL_STATE(7320)] = 175605, + [SMALL_STATE(7321)] = 175645, + [SMALL_STATE(7322)] = 175685, + [SMALL_STATE(7323)] = 175725, + [SMALL_STATE(7324)] = 175765, + [SMALL_STATE(7325)] = 175805, + [SMALL_STATE(7326)] = 175845, + [SMALL_STATE(7327)] = 175885, + [SMALL_STATE(7328)] = 175925, + [SMALL_STATE(7329)] = 175962, + [SMALL_STATE(7330)] = 175991, + [SMALL_STATE(7331)] = 176030, + [SMALL_STATE(7332)] = 176067, + [SMALL_STATE(7333)] = 176104, + [SMALL_STATE(7334)] = 176143, + [SMALL_STATE(7335)] = 176180, + [SMALL_STATE(7336)] = 176217, + [SMALL_STATE(7337)] = 176256, + [SMALL_STATE(7338)] = 176295, + [SMALL_STATE(7339)] = 176332, + [SMALL_STATE(7340)] = 176371, + [SMALL_STATE(7341)] = 176396, + [SMALL_STATE(7342)] = 176433, + [SMALL_STATE(7343)] = 176472, + [SMALL_STATE(7344)] = 176509, + [SMALL_STATE(7345)] = 176546, + [SMALL_STATE(7346)] = 176583, + [SMALL_STATE(7347)] = 176620, + [SMALL_STATE(7348)] = 176657, + [SMALL_STATE(7349)] = 176686, + [SMALL_STATE(7350)] = 176723, + [SMALL_STATE(7351)] = 176752, + [SMALL_STATE(7352)] = 176789, + [SMALL_STATE(7353)] = 176826, + [SMALL_STATE(7354)] = 176865, + [SMALL_STATE(7355)] = 176890, + [SMALL_STATE(7356)] = 176915, + [SMALL_STATE(7357)] = 176940, + [SMALL_STATE(7358)] = 176965, + [SMALL_STATE(7359)] = 177002, + [SMALL_STATE(7360)] = 177039, + [SMALL_STATE(7361)] = 177066, + [SMALL_STATE(7362)] = 177103, + [SMALL_STATE(7363)] = 177142, + [SMALL_STATE(7364)] = 177179, + [SMALL_STATE(7365)] = 177204, + [SMALL_STATE(7366)] = 177241, + [SMALL_STATE(7367)] = 177266, + [SMALL_STATE(7368)] = 177291, + [SMALL_STATE(7369)] = 177328, + [SMALL_STATE(7370)] = 177365, + [SMALL_STATE(7371)] = 177390, + [SMALL_STATE(7372)] = 177415, + [SMALL_STATE(7373)] = 177454, + [SMALL_STATE(7374)] = 177491, + [SMALL_STATE(7375)] = 177528, + [SMALL_STATE(7376)] = 177559, + [SMALL_STATE(7377)] = 177584, + [SMALL_STATE(7378)] = 177623, + [SMALL_STATE(7379)] = 177660, + [SMALL_STATE(7380)] = 177697, + [SMALL_STATE(7381)] = 177734, + [SMALL_STATE(7382)] = 177763, + [SMALL_STATE(7383)] = 177800, + [SMALL_STATE(7384)] = 177837, + [SMALL_STATE(7385)] = 177874, + [SMALL_STATE(7386)] = 177911, + [SMALL_STATE(7387)] = 177948, + [SMALL_STATE(7388)] = 177985, + [SMALL_STATE(7389)] = 178024, + [SMALL_STATE(7390)] = 178061, + [SMALL_STATE(7391)] = 178098, + [SMALL_STATE(7392)] = 178135, + [SMALL_STATE(7393)] = 178174, + [SMALL_STATE(7394)] = 178211, + [SMALL_STATE(7395)] = 178248, + [SMALL_STATE(7396)] = 178285, + [SMALL_STATE(7397)] = 178322, + [SMALL_STATE(7398)] = 178351, + [SMALL_STATE(7399)] = 178388, + [SMALL_STATE(7400)] = 178425, + [SMALL_STATE(7401)] = 178450, + [SMALL_STATE(7402)] = 178487, + [SMALL_STATE(7403)] = 178524, + [SMALL_STATE(7404)] = 178563, + [SMALL_STATE(7405)] = 178600, + [SMALL_STATE(7406)] = 178637, + [SMALL_STATE(7407)] = 178674, + [SMALL_STATE(7408)] = 178710, + [SMALL_STATE(7409)] = 178742, + [SMALL_STATE(7410)] = 178778, + [SMALL_STATE(7411)] = 178810, + [SMALL_STATE(7412)] = 178846, + [SMALL_STATE(7413)] = 178878, + [SMALL_STATE(7414)] = 178910, + [SMALL_STATE(7415)] = 178942, + [SMALL_STATE(7416)] = 178978, + [SMALL_STATE(7417)] = 179014, + [SMALL_STATE(7418)] = 179050, + [SMALL_STATE(7419)] = 179086, + [SMALL_STATE(7420)] = 179122, + [SMALL_STATE(7421)] = 179158, + [SMALL_STATE(7422)] = 179194, + [SMALL_STATE(7423)] = 179226, + [SMALL_STATE(7424)] = 179262, + [SMALL_STATE(7425)] = 179294, + [SMALL_STATE(7426)] = 179326, + [SMALL_STATE(7427)] = 179362, + [SMALL_STATE(7428)] = 179398, + [SMALL_STATE(7429)] = 179434, + [SMALL_STATE(7430)] = 179470, + [SMALL_STATE(7431)] = 179502, + [SMALL_STATE(7432)] = 179534, + [SMALL_STATE(7433)] = 179570, + [SMALL_STATE(7434)] = 179606, + [SMALL_STATE(7435)] = 179638, + [SMALL_STATE(7436)] = 179670, + [SMALL_STATE(7437)] = 179706, + [SMALL_STATE(7438)] = 179738, + [SMALL_STATE(7439)] = 179774, + [SMALL_STATE(7440)] = 179810, + [SMALL_STATE(7441)] = 179846, + [SMALL_STATE(7442)] = 179882, + [SMALL_STATE(7443)] = 179918, + [SMALL_STATE(7444)] = 179950, + [SMALL_STATE(7445)] = 179982, + [SMALL_STATE(7446)] = 180018, + [SMALL_STATE(7447)] = 180050, + [SMALL_STATE(7448)] = 180086, + [SMALL_STATE(7449)] = 180122, + [SMALL_STATE(7450)] = 180154, + [SMALL_STATE(7451)] = 180186, + [SMALL_STATE(7452)] = 180222, + [SMALL_STATE(7453)] = 180258, + [SMALL_STATE(7454)] = 180290, + [SMALL_STATE(7455)] = 180326, + [SMALL_STATE(7456)] = 180358, + [SMALL_STATE(7457)] = 180390, + [SMALL_STATE(7458)] = 180422, + [SMALL_STATE(7459)] = 180458, + [SMALL_STATE(7460)] = 180494, + [SMALL_STATE(7461)] = 180526, + [SMALL_STATE(7462)] = 180562, + [SMALL_STATE(7463)] = 180594, + [SMALL_STATE(7464)] = 180630, + [SMALL_STATE(7465)] = 180666, + [SMALL_STATE(7466)] = 180702, + [SMALL_STATE(7467)] = 180738, + [SMALL_STATE(7468)] = 180774, + [SMALL_STATE(7469)] = 180810, + [SMALL_STATE(7470)] = 180842, + [SMALL_STATE(7471)] = 180874, + [SMALL_STATE(7472)] = 180906, + [SMALL_STATE(7473)] = 180942, + [SMALL_STATE(7474)] = 180978, + [SMALL_STATE(7475)] = 181014, + [SMALL_STATE(7476)] = 181050, + [SMALL_STATE(7477)] = 181082, + [SMALL_STATE(7478)] = 181118, + [SMALL_STATE(7479)] = 181154, + [SMALL_STATE(7480)] = 181186, + [SMALL_STATE(7481)] = 181218, + [SMALL_STATE(7482)] = 181252, + [SMALL_STATE(7483)] = 181284, + [SMALL_STATE(7484)] = 181320, + [SMALL_STATE(7485)] = 181356, + [SMALL_STATE(7486)] = 181384, + [SMALL_STATE(7487)] = 181416, + [SMALL_STATE(7488)] = 181448, + [SMALL_STATE(7489)] = 181484, + [SMALL_STATE(7490)] = 181516, + [SMALL_STATE(7491)] = 181548, + [SMALL_STATE(7492)] = 181584, + [SMALL_STATE(7493)] = 181620, + [SMALL_STATE(7494)] = 181656, + [SMALL_STATE(7495)] = 181692, + [SMALL_STATE(7496)] = 181716, + [SMALL_STATE(7497)] = 181754, + [SMALL_STATE(7498)] = 181790, + [SMALL_STATE(7499)] = 181822, + [SMALL_STATE(7500)] = 181854, + [SMALL_STATE(7501)] = 181890, + [SMALL_STATE(7502)] = 181926, + [SMALL_STATE(7503)] = 181962, + [SMALL_STATE(7504)] = 181994, + [SMALL_STATE(7505)] = 182026, + [SMALL_STATE(7506)] = 182062, + [SMALL_STATE(7507)] = 182098, + [SMALL_STATE(7508)] = 182134, + [SMALL_STATE(7509)] = 182166, + [SMALL_STATE(7510)] = 182202, + [SMALL_STATE(7511)] = 182234, + [SMALL_STATE(7512)] = 182270, + [SMALL_STATE(7513)] = 182306, + [SMALL_STATE(7514)] = 182338, + [SMALL_STATE(7515)] = 182374, + [SMALL_STATE(7516)] = 182410, + [SMALL_STATE(7517)] = 182446, + [SMALL_STATE(7518)] = 182478, + [SMALL_STATE(7519)] = 182514, + [SMALL_STATE(7520)] = 182550, + [SMALL_STATE(7521)] = 182582, + [SMALL_STATE(7522)] = 182618, + [SMALL_STATE(7523)] = 182654, + [SMALL_STATE(7524)] = 182686, + [SMALL_STATE(7525)] = 182722, + [SMALL_STATE(7526)] = 182754, + [SMALL_STATE(7527)] = 182790, + [SMALL_STATE(7528)] = 182822, + [SMALL_STATE(7529)] = 182854, + [SMALL_STATE(7530)] = 182890, + [SMALL_STATE(7531)] = 182922, + [SMALL_STATE(7532)] = 182958, + [SMALL_STATE(7533)] = 182994, + [SMALL_STATE(7534)] = 183030, + [SMALL_STATE(7535)] = 183066, + [SMALL_STATE(7536)] = 183102, + [SMALL_STATE(7537)] = 183134, + [SMALL_STATE(7538)] = 183170, + [SMALL_STATE(7539)] = 183206, + [SMALL_STATE(7540)] = 183242, + [SMALL_STATE(7541)] = 183266, + [SMALL_STATE(7542)] = 183302, + [SMALL_STATE(7543)] = 183338, + [SMALL_STATE(7544)] = 183374, + [SMALL_STATE(7545)] = 183410, + [SMALL_STATE(7546)] = 183446, + [SMALL_STATE(7547)] = 183482, + [SMALL_STATE(7548)] = 183518, + [SMALL_STATE(7549)] = 183542, + [SMALL_STATE(7550)] = 183566, + [SMALL_STATE(7551)] = 183602, + [SMALL_STATE(7552)] = 183638, + [SMALL_STATE(7553)] = 183670, + [SMALL_STATE(7554)] = 183706, + [SMALL_STATE(7555)] = 183738, + [SMALL_STATE(7556)] = 183774, + [SMALL_STATE(7557)] = 183810, + [SMALL_STATE(7558)] = 183846, + [SMALL_STATE(7559)] = 183878, + [SMALL_STATE(7560)] = 183910, + [SMALL_STATE(7561)] = 183946, + [SMALL_STATE(7562)] = 183982, + [SMALL_STATE(7563)] = 184014, + [SMALL_STATE(7564)] = 184050, + [SMALL_STATE(7565)] = 184082, + [SMALL_STATE(7566)] = 184118, + [SMALL_STATE(7567)] = 184150, + [SMALL_STATE(7568)] = 184182, + [SMALL_STATE(7569)] = 184214, + [SMALL_STATE(7570)] = 184238, + [SMALL_STATE(7571)] = 184270, + [SMALL_STATE(7572)] = 184294, + [SMALL_STATE(7573)] = 184326, + [SMALL_STATE(7574)] = 184362, + [SMALL_STATE(7575)] = 184394, + [SMALL_STATE(7576)] = 184430, + [SMALL_STATE(7577)] = 184462, + [SMALL_STATE(7578)] = 184494, + [SMALL_STATE(7579)] = 184526, + [SMALL_STATE(7580)] = 184562, + [SMALL_STATE(7581)] = 184598, + [SMALL_STATE(7582)] = 184630, + [SMALL_STATE(7583)] = 184666, + [SMALL_STATE(7584)] = 184702, + [SMALL_STATE(7585)] = 184738, + [SMALL_STATE(7586)] = 184774, + [SMALL_STATE(7587)] = 184810, + [SMALL_STATE(7588)] = 184846, + [SMALL_STATE(7589)] = 184882, + [SMALL_STATE(7590)] = 184918, + [SMALL_STATE(7591)] = 184950, + [SMALL_STATE(7592)] = 184986, + [SMALL_STATE(7593)] = 185018, + [SMALL_STATE(7594)] = 185050, + [SMALL_STATE(7595)] = 185086, + [SMALL_STATE(7596)] = 185118, + [SMALL_STATE(7597)] = 185154, + [SMALL_STATE(7598)] = 185186, + [SMALL_STATE(7599)] = 185222, + [SMALL_STATE(7600)] = 185254, + [SMALL_STATE(7601)] = 185286, + [SMALL_STATE(7602)] = 185322, + [SMALL_STATE(7603)] = 185358, + [SMALL_STATE(7604)] = 185394, + [SMALL_STATE(7605)] = 185430, + [SMALL_STATE(7606)] = 185466, + [SMALL_STATE(7607)] = 185502, + [SMALL_STATE(7608)] = 185538, + [SMALL_STATE(7609)] = 185574, + [SMALL_STATE(7610)] = 185610, + [SMALL_STATE(7611)] = 185646, + [SMALL_STATE(7612)] = 185682, + [SMALL_STATE(7613)] = 185718, + [SMALL_STATE(7614)] = 185750, + [SMALL_STATE(7615)] = 185786, + [SMALL_STATE(7616)] = 185818, + [SMALL_STATE(7617)] = 185854, + [SMALL_STATE(7618)] = 185890, + [SMALL_STATE(7619)] = 185922, + [SMALL_STATE(7620)] = 185958, + [SMALL_STATE(7621)] = 185988, + [SMALL_STATE(7622)] = 186024, + [SMALL_STATE(7623)] = 186056, + [SMALL_STATE(7624)] = 186092, + [SMALL_STATE(7625)] = 186120, + [SMALL_STATE(7626)] = 186156, + [SMALL_STATE(7627)] = 186188, + [SMALL_STATE(7628)] = 186224, + [SMALL_STATE(7629)] = 186260, + [SMALL_STATE(7630)] = 186296, + [SMALL_STATE(7631)] = 186332, + [SMALL_STATE(7632)] = 186360, + [SMALL_STATE(7633)] = 186396, + [SMALL_STATE(7634)] = 186428, + [SMALL_STATE(7635)] = 186464, + [SMALL_STATE(7636)] = 186500, + [SMALL_STATE(7637)] = 186536, + [SMALL_STATE(7638)] = 186568, + [SMALL_STATE(7639)] = 186604, + [SMALL_STATE(7640)] = 186640, + [SMALL_STATE(7641)] = 186676, + [SMALL_STATE(7642)] = 186704, + [SMALL_STATE(7643)] = 186728, + [SMALL_STATE(7644)] = 186764, + [SMALL_STATE(7645)] = 186796, + [SMALL_STATE(7646)] = 186832, + [SMALL_STATE(7647)] = 186868, + [SMALL_STATE(7648)] = 186904, + [SMALL_STATE(7649)] = 186942, + [SMALL_STATE(7650)] = 186978, + [SMALL_STATE(7651)] = 187014, + [SMALL_STATE(7652)] = 187049, + [SMALL_STATE(7653)] = 187084, + [SMALL_STATE(7654)] = 187117, + [SMALL_STATE(7655)] = 187152, + [SMALL_STATE(7656)] = 187185, + [SMALL_STATE(7657)] = 187220, + [SMALL_STATE(7658)] = 187255, + [SMALL_STATE(7659)] = 187290, + [SMALL_STATE(7660)] = 187325, + [SMALL_STATE(7661)] = 187360, + [SMALL_STATE(7662)] = 187395, + [SMALL_STATE(7663)] = 187430, + [SMALL_STATE(7664)] = 187465, + [SMALL_STATE(7665)] = 187500, + [SMALL_STATE(7666)] = 187533, + [SMALL_STATE(7667)] = 187566, + [SMALL_STATE(7668)] = 187601, + [SMALL_STATE(7669)] = 187634, + [SMALL_STATE(7670)] = 187669, + [SMALL_STATE(7671)] = 187704, + [SMALL_STATE(7672)] = 187737, + [SMALL_STATE(7673)] = 187772, + [SMALL_STATE(7674)] = 187807, + [SMALL_STATE(7675)] = 187840, + [SMALL_STATE(7676)] = 187875, + [SMALL_STATE(7677)] = 187910, + [SMALL_STATE(7678)] = 187943, + [SMALL_STATE(7679)] = 187978, + [SMALL_STATE(7680)] = 188011, + [SMALL_STATE(7681)] = 188044, + [SMALL_STATE(7682)] = 188079, + [SMALL_STATE(7683)] = 188114, + [SMALL_STATE(7684)] = 188149, + [SMALL_STATE(7685)] = 188184, + [SMALL_STATE(7686)] = 188219, + [SMALL_STATE(7687)] = 188254, + [SMALL_STATE(7688)] = 188289, + [SMALL_STATE(7689)] = 188324, + [SMALL_STATE(7690)] = 188357, + [SMALL_STATE(7691)] = 188390, + [SMALL_STATE(7692)] = 188425, + [SMALL_STATE(7693)] = 188458, + [SMALL_STATE(7694)] = 188493, + [SMALL_STATE(7695)] = 188516, + [SMALL_STATE(7696)] = 188551, + [SMALL_STATE(7697)] = 188586, + [SMALL_STATE(7698)] = 188619, + [SMALL_STATE(7699)] = 188654, + [SMALL_STATE(7700)] = 188687, + [SMALL_STATE(7701)] = 188720, + [SMALL_STATE(7702)] = 188753, + [SMALL_STATE(7703)] = 188786, + [SMALL_STATE(7704)] = 188819, + [SMALL_STATE(7705)] = 188854, + [SMALL_STATE(7706)] = 188887, + [SMALL_STATE(7707)] = 188922, + [SMALL_STATE(7708)] = 188957, + [SMALL_STATE(7709)] = 188990, + [SMALL_STATE(7710)] = 189025, + [SMALL_STATE(7711)] = 189058, + [SMALL_STATE(7712)] = 189093, + [SMALL_STATE(7713)] = 189128, + [SMALL_STATE(7714)] = 189163, + [SMALL_STATE(7715)] = 189198, + [SMALL_STATE(7716)] = 189233, + [SMALL_STATE(7717)] = 189266, + [SMALL_STATE(7718)] = 189301, + [SMALL_STATE(7719)] = 189336, + [SMALL_STATE(7720)] = 189371, + [SMALL_STATE(7721)] = 189406, + [SMALL_STATE(7722)] = 189439, + [SMALL_STATE(7723)] = 189472, + [SMALL_STATE(7724)] = 189507, + [SMALL_STATE(7725)] = 189536, + [SMALL_STATE(7726)] = 189571, + [SMALL_STATE(7727)] = 189604, + [SMALL_STATE(7728)] = 189639, + [SMALL_STATE(7729)] = 189674, + [SMALL_STATE(7730)] = 189707, + [SMALL_STATE(7731)] = 189742, + [SMALL_STATE(7732)] = 189775, + [SMALL_STATE(7733)] = 189808, + [SMALL_STATE(7734)] = 189843, + [SMALL_STATE(7735)] = 189876, + [SMALL_STATE(7736)] = 189911, + [SMALL_STATE(7737)] = 189946, + [SMALL_STATE(7738)] = 189981, + [SMALL_STATE(7739)] = 190014, + [SMALL_STATE(7740)] = 190049, + [SMALL_STATE(7741)] = 190082, + [SMALL_STATE(7742)] = 190117, + [SMALL_STATE(7743)] = 190152, + [SMALL_STATE(7744)] = 190187, + [SMALL_STATE(7745)] = 190222, + [SMALL_STATE(7746)] = 190255, + [SMALL_STATE(7747)] = 190288, + [SMALL_STATE(7748)] = 190311, + [SMALL_STATE(7749)] = 190344, + [SMALL_STATE(7750)] = 190379, + [SMALL_STATE(7751)] = 190414, + [SMALL_STATE(7752)] = 190449, + [SMALL_STATE(7753)] = 190482, + [SMALL_STATE(7754)] = 190517, + [SMALL_STATE(7755)] = 190552, + [SMALL_STATE(7756)] = 190587, + [SMALL_STATE(7757)] = 190622, + [SMALL_STATE(7758)] = 190657, + [SMALL_STATE(7759)] = 190692, + [SMALL_STATE(7760)] = 190725, + [SMALL_STATE(7761)] = 190748, + [SMALL_STATE(7762)] = 190781, + [SMALL_STATE(7763)] = 190816, + [SMALL_STATE(7764)] = 190849, + [SMALL_STATE(7765)] = 190884, + [SMALL_STATE(7766)] = 190917, + [SMALL_STATE(7767)] = 190952, + [SMALL_STATE(7768)] = 190985, + [SMALL_STATE(7769)] = 191018, + [SMALL_STATE(7770)] = 191053, + [SMALL_STATE(7771)] = 191086, + [SMALL_STATE(7772)] = 191119, + [SMALL_STATE(7773)] = 191154, + [SMALL_STATE(7774)] = 191189, + [SMALL_STATE(7775)] = 191212, + [SMALL_STATE(7776)] = 191247, + [SMALL_STATE(7777)] = 191282, + [SMALL_STATE(7778)] = 191317, + [SMALL_STATE(7779)] = 191352, + [SMALL_STATE(7780)] = 191385, + [SMALL_STATE(7781)] = 191418, + [SMALL_STATE(7782)] = 191451, + [SMALL_STATE(7783)] = 191484, + [SMALL_STATE(7784)] = 191519, + [SMALL_STATE(7785)] = 191554, + [SMALL_STATE(7786)] = 191589, + [SMALL_STATE(7787)] = 191624, + [SMALL_STATE(7788)] = 191659, + [SMALL_STATE(7789)] = 191692, + [SMALL_STATE(7790)] = 191727, + [SMALL_STATE(7791)] = 191760, + [SMALL_STATE(7792)] = 191793, + [SMALL_STATE(7793)] = 191826, + [SMALL_STATE(7794)] = 191861, + [SMALL_STATE(7795)] = 191894, + [SMALL_STATE(7796)] = 191927, + [SMALL_STATE(7797)] = 191962, + [SMALL_STATE(7798)] = 191997, + [SMALL_STATE(7799)] = 192032, + [SMALL_STATE(7800)] = 192067, + [SMALL_STATE(7801)] = 192100, + [SMALL_STATE(7802)] = 192135, + [SMALL_STATE(7803)] = 192170, + [SMALL_STATE(7804)] = 192205, + [SMALL_STATE(7805)] = 192238, + [SMALL_STATE(7806)] = 192261, + [SMALL_STATE(7807)] = 192296, + [SMALL_STATE(7808)] = 192331, + [SMALL_STATE(7809)] = 192364, + [SMALL_STATE(7810)] = 192399, + [SMALL_STATE(7811)] = 192434, + [SMALL_STATE(7812)] = 192469, + [SMALL_STATE(7813)] = 192502, + [SMALL_STATE(7814)] = 192537, + [SMALL_STATE(7815)] = 192572, + [SMALL_STATE(7816)] = 192607, + [SMALL_STATE(7817)] = 192642, + [SMALL_STATE(7818)] = 192675, + [SMALL_STATE(7819)] = 192708, + [SMALL_STATE(7820)] = 192741, + [SMALL_STATE(7821)] = 192764, + [SMALL_STATE(7822)] = 192799, + [SMALL_STATE(7823)] = 192832, + [SMALL_STATE(7824)] = 192865, + [SMALL_STATE(7825)] = 192898, + [SMALL_STATE(7826)] = 192921, + [SMALL_STATE(7827)] = 192944, + [SMALL_STATE(7828)] = 192967, + [SMALL_STATE(7829)] = 192990, + [SMALL_STATE(7830)] = 193025, + [SMALL_STATE(7831)] = 193058, + [SMALL_STATE(7832)] = 193081, + [SMALL_STATE(7833)] = 193114, + [SMALL_STATE(7834)] = 193149, + [SMALL_STATE(7835)] = 193182, + [SMALL_STATE(7836)] = 193217, + [SMALL_STATE(7837)] = 193252, + [SMALL_STATE(7838)] = 193287, + [SMALL_STATE(7839)] = 193322, + [SMALL_STATE(7840)] = 193355, + [SMALL_STATE(7841)] = 193388, + [SMALL_STATE(7842)] = 193423, + [SMALL_STATE(7843)] = 193456, + [SMALL_STATE(7844)] = 193491, + [SMALL_STATE(7845)] = 193524, + [SMALL_STATE(7846)] = 193559, + [SMALL_STATE(7847)] = 193594, + [SMALL_STATE(7848)] = 193621, + [SMALL_STATE(7849)] = 193656, + [SMALL_STATE(7850)] = 193691, + [SMALL_STATE(7851)] = 193724, + [SMALL_STATE(7852)] = 193759, + [SMALL_STATE(7853)] = 193794, + [SMALL_STATE(7854)] = 193829, + [SMALL_STATE(7855)] = 193864, + [SMALL_STATE(7856)] = 193899, + [SMALL_STATE(7857)] = 193934, + [SMALL_STATE(7858)] = 193969, + [SMALL_STATE(7859)] = 194004, + [SMALL_STATE(7860)] = 194037, + [SMALL_STATE(7861)] = 194070, + [SMALL_STATE(7862)] = 194105, + [SMALL_STATE(7863)] = 194138, + [SMALL_STATE(7864)] = 194173, + [SMALL_STATE(7865)] = 194206, + [SMALL_STATE(7866)] = 194241, + [SMALL_STATE(7867)] = 194274, + [SMALL_STATE(7868)] = 194309, + [SMALL_STATE(7869)] = 194342, + [SMALL_STATE(7870)] = 194377, + [SMALL_STATE(7871)] = 194410, + [SMALL_STATE(7872)] = 194445, + [SMALL_STATE(7873)] = 194480, + [SMALL_STATE(7874)] = 194513, + [SMALL_STATE(7875)] = 194548, + [SMALL_STATE(7876)] = 194583, + [SMALL_STATE(7877)] = 194618, + [SMALL_STATE(7878)] = 194653, + [SMALL_STATE(7879)] = 194686, + [SMALL_STATE(7880)] = 194719, + [SMALL_STATE(7881)] = 194752, + [SMALL_STATE(7882)] = 194785, + [SMALL_STATE(7883)] = 194818, + [SMALL_STATE(7884)] = 194853, + [SMALL_STATE(7885)] = 194876, + [SMALL_STATE(7886)] = 194909, + [SMALL_STATE(7887)] = 194944, + [SMALL_STATE(7888)] = 194977, + [SMALL_STATE(7889)] = 195010, + [SMALL_STATE(7890)] = 195045, + [SMALL_STATE(7891)] = 195067, + [SMALL_STATE(7892)] = 195089, + [SMALL_STATE(7893)] = 195111, + [SMALL_STATE(7894)] = 195133, + [SMALL_STATE(7895)] = 195155, + [SMALL_STATE(7896)] = 195177, + [SMALL_STATE(7897)] = 195199, + [SMALL_STATE(7898)] = 195221, + [SMALL_STATE(7899)] = 195243, + [SMALL_STATE(7900)] = 195265, + [SMALL_STATE(7901)] = 195287, + [SMALL_STATE(7902)] = 195309, + [SMALL_STATE(7903)] = 195331, + [SMALL_STATE(7904)] = 195353, + [SMALL_STATE(7905)] = 195375, + [SMALL_STATE(7906)] = 195401, + [SMALL_STATE(7907)] = 195423, + [SMALL_STATE(7908)] = 195445, + [SMALL_STATE(7909)] = 195467, + [SMALL_STATE(7910)] = 195489, + [SMALL_STATE(7911)] = 195515, + [SMALL_STATE(7912)] = 195537, + [SMALL_STATE(7913)] = 195563, + [SMALL_STATE(7914)] = 195585, + [SMALL_STATE(7915)] = 195611, + [SMALL_STATE(7916)] = 195633, + [SMALL_STATE(7917)] = 195673, + [SMALL_STATE(7918)] = 195702, + [SMALL_STATE(7919)] = 195731, + [SMALL_STATE(7920)] = 195760, + [SMALL_STATE(7921)] = 195789, + [SMALL_STATE(7922)] = 195818, + [SMALL_STATE(7923)] = 195847, + [SMALL_STATE(7924)] = 195876, + [SMALL_STATE(7925)] = 195905, + [SMALL_STATE(7926)] = 195934, + [SMALL_STATE(7927)] = 195963, + [SMALL_STATE(7928)] = 195992, + [SMALL_STATE(7929)] = 196021, + [SMALL_STATE(7930)] = 196050, + [SMALL_STATE(7931)] = 196079, + [SMALL_STATE(7932)] = 196104, + [SMALL_STATE(7933)] = 196133, + [SMALL_STATE(7934)] = 196162, + [SMALL_STATE(7935)] = 196191, + [SMALL_STATE(7936)] = 196216, + [SMALL_STATE(7937)] = 196245, + [SMALL_STATE(7938)] = 196274, + [SMALL_STATE(7939)] = 196303, + [SMALL_STATE(7940)] = 196332, + [SMALL_STATE(7941)] = 196361, + [SMALL_STATE(7942)] = 196390, + [SMALL_STATE(7943)] = 196415, + [SMALL_STATE(7944)] = 196444, + [SMALL_STATE(7945)] = 196473, + [SMALL_STATE(7946)] = 196502, + [SMALL_STATE(7947)] = 196531, + [SMALL_STATE(7948)] = 196554, + [SMALL_STATE(7949)] = 196583, + [SMALL_STATE(7950)] = 196612, + [SMALL_STATE(7951)] = 196641, + [SMALL_STATE(7952)] = 196670, + [SMALL_STATE(7953)] = 196699, + [SMALL_STATE(7954)] = 196728, + [SMALL_STATE(7955)] = 196757, + [SMALL_STATE(7956)] = 196786, + [SMALL_STATE(7957)] = 196815, + [SMALL_STATE(7958)] = 196844, + [SMALL_STATE(7959)] = 196873, + [SMALL_STATE(7960)] = 196902, + [SMALL_STATE(7961)] = 196931, + [SMALL_STATE(7962)] = 196960, + [SMALL_STATE(7963)] = 196989, + [SMALL_STATE(7964)] = 197012, + [SMALL_STATE(7965)] = 197035, + [SMALL_STATE(7966)] = 197064, + [SMALL_STATE(7967)] = 197093, + [SMALL_STATE(7968)] = 197122, + [SMALL_STATE(7969)] = 197151, + [SMALL_STATE(7970)] = 197180, + [SMALL_STATE(7971)] = 197209, + [SMALL_STATE(7972)] = 197238, + [SMALL_STATE(7973)] = 197267, + [SMALL_STATE(7974)] = 197296, + [SMALL_STATE(7975)] = 197325, + [SMALL_STATE(7976)] = 197354, + [SMALL_STATE(7977)] = 197377, + [SMALL_STATE(7978)] = 197406, + [SMALL_STATE(7979)] = 197435, + [SMALL_STATE(7980)] = 197464, + [SMALL_STATE(7981)] = 197493, + [SMALL_STATE(7982)] = 197518, + [SMALL_STATE(7983)] = 197547, + [SMALL_STATE(7984)] = 197576, + [SMALL_STATE(7985)] = 197605, + [SMALL_STATE(7986)] = 197634, + [SMALL_STATE(7987)] = 197663, + [SMALL_STATE(7988)] = 197688, + [SMALL_STATE(7989)] = 197717, + [SMALL_STATE(7990)] = 197746, + [SMALL_STATE(7991)] = 197771, + [SMALL_STATE(7992)] = 197800, + [SMALL_STATE(7993)] = 197829, + [SMALL_STATE(7994)] = 197858, + [SMALL_STATE(7995)] = 197887, + [SMALL_STATE(7996)] = 197916, + [SMALL_STATE(7997)] = 197945, + [SMALL_STATE(7998)] = 197974, + [SMALL_STATE(7999)] = 197999, + [SMALL_STATE(8000)] = 198028, + [SMALL_STATE(8001)] = 198057, + [SMALL_STATE(8002)] = 198086, + [SMALL_STATE(8003)] = 198115, + [SMALL_STATE(8004)] = 198140, + [SMALL_STATE(8005)] = 198169, + [SMALL_STATE(8006)] = 198198, + [SMALL_STATE(8007)] = 198227, + [SMALL_STATE(8008)] = 198256, + [SMALL_STATE(8009)] = 198285, + [SMALL_STATE(8010)] = 198314, + [SMALL_STATE(8011)] = 198343, + [SMALL_STATE(8012)] = 198368, + [SMALL_STATE(8013)] = 198397, + [SMALL_STATE(8014)] = 198426, + [SMALL_STATE(8015)] = 198451, + [SMALL_STATE(8016)] = 198480, + [SMALL_STATE(8017)] = 198509, + [SMALL_STATE(8018)] = 198538, + [SMALL_STATE(8019)] = 198567, + [SMALL_STATE(8020)] = 198592, + [SMALL_STATE(8021)] = 198621, + [SMALL_STATE(8022)] = 198650, + [SMALL_STATE(8023)] = 198679, + [SMALL_STATE(8024)] = 198708, + [SMALL_STATE(8025)] = 198733, + [SMALL_STATE(8026)] = 198754, + [SMALL_STATE(8027)] = 198783, + [SMALL_STATE(8028)] = 198812, + [SMALL_STATE(8029)] = 198841, + [SMALL_STATE(8030)] = 198870, + [SMALL_STATE(8031)] = 198899, + [SMALL_STATE(8032)] = 198928, + [SMALL_STATE(8033)] = 198957, + [SMALL_STATE(8034)] = 198986, + [SMALL_STATE(8035)] = 199011, + [SMALL_STATE(8036)] = 199040, + [SMALL_STATE(8037)] = 199069, + [SMALL_STATE(8038)] = 199098, + [SMALL_STATE(8039)] = 199127, + [SMALL_STATE(8040)] = 199156, + [SMALL_STATE(8041)] = 199185, + [SMALL_STATE(8042)] = 199214, + [SMALL_STATE(8043)] = 199243, + [SMALL_STATE(8044)] = 199268, + [SMALL_STATE(8045)] = 199297, + [SMALL_STATE(8046)] = 199326, + [SMALL_STATE(8047)] = 199355, + [SMALL_STATE(8048)] = 199380, + [SMALL_STATE(8049)] = 199405, + [SMALL_STATE(8050)] = 199434, + [SMALL_STATE(8051)] = 199459, + [SMALL_STATE(8052)] = 199484, + [SMALL_STATE(8053)] = 199513, + [SMALL_STATE(8054)] = 199542, + [SMALL_STATE(8055)] = 199567, + [SMALL_STATE(8056)] = 199592, + [SMALL_STATE(8057)] = 199621, + [SMALL_STATE(8058)] = 199646, + [SMALL_STATE(8059)] = 199671, + [SMALL_STATE(8060)] = 199700, + [SMALL_STATE(8061)] = 199725, + [SMALL_STATE(8062)] = 199754, + [SMALL_STATE(8063)] = 199783, + [SMALL_STATE(8064)] = 199812, + [SMALL_STATE(8065)] = 199841, + [SMALL_STATE(8066)] = 199870, + [SMALL_STATE(8067)] = 199895, + [SMALL_STATE(8068)] = 199924, + [SMALL_STATE(8069)] = 199953, + [SMALL_STATE(8070)] = 199982, + [SMALL_STATE(8071)] = 200011, + [SMALL_STATE(8072)] = 200040, + [SMALL_STATE(8073)] = 200069, + [SMALL_STATE(8074)] = 200098, + [SMALL_STATE(8075)] = 200123, + [SMALL_STATE(8076)] = 200152, + [SMALL_STATE(8077)] = 200178, + [SMALL_STATE(8078)] = 200212, + [SMALL_STATE(8079)] = 200238, + [SMALL_STATE(8080)] = 200260, + [SMALL_STATE(8081)] = 200286, + [SMALL_STATE(8082)] = 200312, + [SMALL_STATE(8083)] = 200338, + [SMALL_STATE(8084)] = 200364, + [SMALL_STATE(8085)] = 200390, + [SMALL_STATE(8086)] = 200416, + [SMALL_STATE(8087)] = 200442, + [SMALL_STATE(8088)] = 200468, + [SMALL_STATE(8089)] = 200502, + [SMALL_STATE(8090)] = 200524, + [SMALL_STATE(8091)] = 200550, + [SMALL_STATE(8092)] = 200576, + [SMALL_STATE(8093)] = 200602, + [SMALL_STATE(8094)] = 200624, + [SMALL_STATE(8095)] = 200650, + [SMALL_STATE(8096)] = 200676, + [SMALL_STATE(8097)] = 200710, + [SMALL_STATE(8098)] = 200736, + [SMALL_STATE(8099)] = 200762, + [SMALL_STATE(8100)] = 200788, + [SMALL_STATE(8101)] = 200814, + [SMALL_STATE(8102)] = 200840, + [SMALL_STATE(8103)] = 200866, + [SMALL_STATE(8104)] = 200900, + [SMALL_STATE(8105)] = 200926, + [SMALL_STATE(8106)] = 200952, + [SMALL_STATE(8107)] = 200986, + [SMALL_STATE(8108)] = 201012, + [SMALL_STATE(8109)] = 201038, + [SMALL_STATE(8110)] = 201064, + [SMALL_STATE(8111)] = 201098, + [SMALL_STATE(8112)] = 201124, + [SMALL_STATE(8113)] = 201150, + [SMALL_STATE(8114)] = 201170, + [SMALL_STATE(8115)] = 201196, + [SMALL_STATE(8116)] = 201222, + [SMALL_STATE(8117)] = 201248, + [SMALL_STATE(8118)] = 201274, + [SMALL_STATE(8119)] = 201300, + [SMALL_STATE(8120)] = 201326, + [SMALL_STATE(8121)] = 201352, + [SMALL_STATE(8122)] = 201386, + [SMALL_STATE(8123)] = 201420, + [SMALL_STATE(8124)] = 201446, + [SMALL_STATE(8125)] = 201472, + [SMALL_STATE(8126)] = 201506, + [SMALL_STATE(8127)] = 201532, + [SMALL_STATE(8128)] = 201558, + [SMALL_STATE(8129)] = 201584, + [SMALL_STATE(8130)] = 201610, + [SMALL_STATE(8131)] = 201636, + [SMALL_STATE(8132)] = 201662, + [SMALL_STATE(8133)] = 201688, + [SMALL_STATE(8134)] = 201714, + [SMALL_STATE(8135)] = 201740, + [SMALL_STATE(8136)] = 201766, + [SMALL_STATE(8137)] = 201792, + [SMALL_STATE(8138)] = 201826, + [SMALL_STATE(8139)] = 201852, + [SMALL_STATE(8140)] = 201878, + [SMALL_STATE(8141)] = 201904, + [SMALL_STATE(8142)] = 201930, + [SMALL_STATE(8143)] = 201956, + [SMALL_STATE(8144)] = 201982, + [SMALL_STATE(8145)] = 202008, + [SMALL_STATE(8146)] = 202034, + [SMALL_STATE(8147)] = 202060, + [SMALL_STATE(8148)] = 202094, + [SMALL_STATE(8149)] = 202120, + [SMALL_STATE(8150)] = 202146, + [SMALL_STATE(8151)] = 202180, + [SMALL_STATE(8152)] = 202206, + [SMALL_STATE(8153)] = 202240, + [SMALL_STATE(8154)] = 202266, + [SMALL_STATE(8155)] = 202292, + [SMALL_STATE(8156)] = 202318, + [SMALL_STATE(8157)] = 202344, + [SMALL_STATE(8158)] = 202370, + [SMALL_STATE(8159)] = 202396, + [SMALL_STATE(8160)] = 202422, + [SMALL_STATE(8161)] = 202444, + [SMALL_STATE(8162)] = 202470, + [SMALL_STATE(8163)] = 202496, + [SMALL_STATE(8164)] = 202522, + [SMALL_STATE(8165)] = 202548, + [SMALL_STATE(8166)] = 202574, + [SMALL_STATE(8167)] = 202600, + [SMALL_STATE(8168)] = 202626, + [SMALL_STATE(8169)] = 202652, + [SMALL_STATE(8170)] = 202678, + [SMALL_STATE(8171)] = 202704, + [SMALL_STATE(8172)] = 202730, + [SMALL_STATE(8173)] = 202756, + [SMALL_STATE(8174)] = 202790, + [SMALL_STATE(8175)] = 202816, + [SMALL_STATE(8176)] = 202842, + [SMALL_STATE(8177)] = 202868, + [SMALL_STATE(8178)] = 202890, + [SMALL_STATE(8179)] = 202916, + [SMALL_STATE(8180)] = 202942, + [SMALL_STATE(8181)] = 202968, + [SMALL_STATE(8182)] = 202994, + [SMALL_STATE(8183)] = 203020, + [SMALL_STATE(8184)] = 203046, + [SMALL_STATE(8185)] = 203072, + [SMALL_STATE(8186)] = 203098, + [SMALL_STATE(8187)] = 203124, + [SMALL_STATE(8188)] = 203150, + [SMALL_STATE(8189)] = 203176, + [SMALL_STATE(8190)] = 203202, + [SMALL_STATE(8191)] = 203228, + [SMALL_STATE(8192)] = 203254, + [SMALL_STATE(8193)] = 203280, + [SMALL_STATE(8194)] = 203306, + [SMALL_STATE(8195)] = 203332, + [SMALL_STATE(8196)] = 203358, + [SMALL_STATE(8197)] = 203384, + [SMALL_STATE(8198)] = 203410, + [SMALL_STATE(8199)] = 203436, + [SMALL_STATE(8200)] = 203462, + [SMALL_STATE(8201)] = 203488, + [SMALL_STATE(8202)] = 203514, + [SMALL_STATE(8203)] = 203540, + [SMALL_STATE(8204)] = 203566, + [SMALL_STATE(8205)] = 203592, + [SMALL_STATE(8206)] = 203618, + [SMALL_STATE(8207)] = 203652, + [SMALL_STATE(8208)] = 203678, + [SMALL_STATE(8209)] = 203712, + [SMALL_STATE(8210)] = 203738, + [SMALL_STATE(8211)] = 203772, + [SMALL_STATE(8212)] = 203806, + [SMALL_STATE(8213)] = 203832, + [SMALL_STATE(8214)] = 203858, + [SMALL_STATE(8215)] = 203884, + [SMALL_STATE(8216)] = 203910, + [SMALL_STATE(8217)] = 203936, + [SMALL_STATE(8218)] = 203962, + [SMALL_STATE(8219)] = 203988, + [SMALL_STATE(8220)] = 204014, + [SMALL_STATE(8221)] = 204040, + [SMALL_STATE(8222)] = 204066, + [SMALL_STATE(8223)] = 204092, + [SMALL_STATE(8224)] = 204118, + [SMALL_STATE(8225)] = 204144, + [SMALL_STATE(8226)] = 204170, + [SMALL_STATE(8227)] = 204204, + [SMALL_STATE(8228)] = 204230, + [SMALL_STATE(8229)] = 204256, + [SMALL_STATE(8230)] = 204282, + [SMALL_STATE(8231)] = 204308, + [SMALL_STATE(8232)] = 204334, + [SMALL_STATE(8233)] = 204360, + [SMALL_STATE(8234)] = 204386, + [SMALL_STATE(8235)] = 204412, + [SMALL_STATE(8236)] = 204438, + [SMALL_STATE(8237)] = 204464, + [SMALL_STATE(8238)] = 204490, + [SMALL_STATE(8239)] = 204516, + [SMALL_STATE(8240)] = 204542, + [SMALL_STATE(8241)] = 204568, + [SMALL_STATE(8242)] = 204594, + [SMALL_STATE(8243)] = 204620, + [SMALL_STATE(8244)] = 204646, + [SMALL_STATE(8245)] = 204672, + [SMALL_STATE(8246)] = 204698, + [SMALL_STATE(8247)] = 204724, + [SMALL_STATE(8248)] = 204750, + [SMALL_STATE(8249)] = 204776, + [SMALL_STATE(8250)] = 204802, + [SMALL_STATE(8251)] = 204828, + [SMALL_STATE(8252)] = 204854, + [SMALL_STATE(8253)] = 204888, + [SMALL_STATE(8254)] = 204914, + [SMALL_STATE(8255)] = 204940, + [SMALL_STATE(8256)] = 204966, + [SMALL_STATE(8257)] = 204992, + [SMALL_STATE(8258)] = 205018, + [SMALL_STATE(8259)] = 205044, + [SMALL_STATE(8260)] = 205078, + [SMALL_STATE(8261)] = 205112, + [SMALL_STATE(8262)] = 205138, + [SMALL_STATE(8263)] = 205164, + [SMALL_STATE(8264)] = 205190, + [SMALL_STATE(8265)] = 205216, + [SMALL_STATE(8266)] = 205242, + [SMALL_STATE(8267)] = 205276, + [SMALL_STATE(8268)] = 205302, + [SMALL_STATE(8269)] = 205328, + [SMALL_STATE(8270)] = 205354, + [SMALL_STATE(8271)] = 205380, + [SMALL_STATE(8272)] = 205406, + [SMALL_STATE(8273)] = 205432, + [SMALL_STATE(8274)] = 205458, + [SMALL_STATE(8275)] = 205484, + [SMALL_STATE(8276)] = 205510, + [SMALL_STATE(8277)] = 205536, + [SMALL_STATE(8278)] = 205562, + [SMALL_STATE(8279)] = 205588, + [SMALL_STATE(8280)] = 205614, + [SMALL_STATE(8281)] = 205640, + [SMALL_STATE(8282)] = 205666, + [SMALL_STATE(8283)] = 205692, + [SMALL_STATE(8284)] = 205718, + [SMALL_STATE(8285)] = 205744, + [SMALL_STATE(8286)] = 205770, + [SMALL_STATE(8287)] = 205796, + [SMALL_STATE(8288)] = 205822, + [SMALL_STATE(8289)] = 205848, + [SMALL_STATE(8290)] = 205874, + [SMALL_STATE(8291)] = 205900, + [SMALL_STATE(8292)] = 205926, + [SMALL_STATE(8293)] = 205952, + [SMALL_STATE(8294)] = 205978, + [SMALL_STATE(8295)] = 206012, + [SMALL_STATE(8296)] = 206038, + [SMALL_STATE(8297)] = 206064, + [SMALL_STATE(8298)] = 206090, + [SMALL_STATE(8299)] = 206116, + [SMALL_STATE(8300)] = 206150, + [SMALL_STATE(8301)] = 206176, + [SMALL_STATE(8302)] = 206202, + [SMALL_STATE(8303)] = 206228, + [SMALL_STATE(8304)] = 206254, + [SMALL_STATE(8305)] = 206280, + [SMALL_STATE(8306)] = 206306, + [SMALL_STATE(8307)] = 206332, + [SMALL_STATE(8308)] = 206358, + [SMALL_STATE(8309)] = 206392, + [SMALL_STATE(8310)] = 206418, + [SMALL_STATE(8311)] = 206444, + [SMALL_STATE(8312)] = 206470, + [SMALL_STATE(8313)] = 206496, + [SMALL_STATE(8314)] = 206522, + [SMALL_STATE(8315)] = 206540, + [SMALL_STATE(8316)] = 206574, + [SMALL_STATE(8317)] = 206600, + [SMALL_STATE(8318)] = 206626, + [SMALL_STATE(8319)] = 206660, + [SMALL_STATE(8320)] = 206686, + [SMALL_STATE(8321)] = 206712, + [SMALL_STATE(8322)] = 206738, + [SMALL_STATE(8323)] = 206764, + [SMALL_STATE(8324)] = 206798, + [SMALL_STATE(8325)] = 206824, + [SMALL_STATE(8326)] = 206850, + [SMALL_STATE(8327)] = 206884, + [SMALL_STATE(8328)] = 206910, + [SMALL_STATE(8329)] = 206936, + [SMALL_STATE(8330)] = 206962, + [SMALL_STATE(8331)] = 206988, + [SMALL_STATE(8332)] = 207014, + [SMALL_STATE(8333)] = 207040, + [SMALL_STATE(8334)] = 207066, + [SMALL_STATE(8335)] = 207092, + [SMALL_STATE(8336)] = 207118, + [SMALL_STATE(8337)] = 207144, + [SMALL_STATE(8338)] = 207170, + [SMALL_STATE(8339)] = 207196, + [SMALL_STATE(8340)] = 207222, + [SMALL_STATE(8341)] = 207248, + [SMALL_STATE(8342)] = 207274, + [SMALL_STATE(8343)] = 207300, + [SMALL_STATE(8344)] = 207320, + [SMALL_STATE(8345)] = 207346, + [SMALL_STATE(8346)] = 207372, + [SMALL_STATE(8347)] = 207398, + [SMALL_STATE(8348)] = 207424, + [SMALL_STATE(8349)] = 207450, + [SMALL_STATE(8350)] = 207476, + [SMALL_STATE(8351)] = 207502, + [SMALL_STATE(8352)] = 207524, + [SMALL_STATE(8353)] = 207550, + [SMALL_STATE(8354)] = 207576, + [SMALL_STATE(8355)] = 207602, + [SMALL_STATE(8356)] = 207636, + [SMALL_STATE(8357)] = 207670, + [SMALL_STATE(8358)] = 207696, + [SMALL_STATE(8359)] = 207730, + [SMALL_STATE(8360)] = 207756, + [SMALL_STATE(8361)] = 207782, + [SMALL_STATE(8362)] = 207803, + [SMALL_STATE(8363)] = 207820, + [SMALL_STATE(8364)] = 207837, + [SMALL_STATE(8365)] = 207854, + [SMALL_STATE(8366)] = 207871, + [SMALL_STATE(8367)] = 207890, + [SMALL_STATE(8368)] = 207907, + [SMALL_STATE(8369)] = 207928, + [SMALL_STATE(8370)] = 207945, + [SMALL_STATE(8371)] = 207962, + [SMALL_STATE(8372)] = 207979, + [SMALL_STATE(8373)] = 207997, + [SMALL_STATE(8374)] = 208013, + [SMALL_STATE(8375)] = 208043, + [SMALL_STATE(8376)] = 208073, + [SMALL_STATE(8377)] = 208103, + [SMALL_STATE(8378)] = 208133, + [SMALL_STATE(8379)] = 208153, + [SMALL_STATE(8380)] = 208171, + [SMALL_STATE(8381)] = 208189, + [SMALL_STATE(8382)] = 208219, + [SMALL_STATE(8383)] = 208235, + [SMALL_STATE(8384)] = 208253, + [SMALL_STATE(8385)] = 208271, + [SMALL_STATE(8386)] = 208296, + [SMALL_STATE(8387)] = 208315, + [SMALL_STATE(8388)] = 208342, + [SMALL_STATE(8389)] = 208359, + [SMALL_STATE(8390)] = 208384, + [SMALL_STATE(8391)] = 208411, + [SMALL_STATE(8392)] = 208430, + [SMALL_STATE(8393)] = 208453, + [SMALL_STATE(8394)] = 208482, + [SMALL_STATE(8395)] = 208503, + [SMALL_STATE(8396)] = 208528, + [SMALL_STATE(8397)] = 208555, + [SMALL_STATE(8398)] = 208584, + [SMALL_STATE(8399)] = 208605, + [SMALL_STATE(8400)] = 208634, + [SMALL_STATE(8401)] = 208659, + [SMALL_STATE(8402)] = 208684, + [SMALL_STATE(8403)] = 208711, + [SMALL_STATE(8404)] = 208740, + [SMALL_STATE(8405)] = 208757, + [SMALL_STATE(8406)] = 208786, + [SMALL_STATE(8407)] = 208811, + [SMALL_STATE(8408)] = 208838, + [SMALL_STATE(8409)] = 208862, + [SMALL_STATE(8410)] = 208876, + [SMALL_STATE(8411)] = 208898, + [SMALL_STATE(8412)] = 208918, + [SMALL_STATE(8413)] = 208944, + [SMALL_STATE(8414)] = 208964, + [SMALL_STATE(8415)] = 208980, + [SMALL_STATE(8416)] = 209004, + [SMALL_STATE(8417)] = 209028, + [SMALL_STATE(8418)] = 209044, + [SMALL_STATE(8419)] = 209060, + [SMALL_STATE(8420)] = 209084, + [SMALL_STATE(8421)] = 209110, + [SMALL_STATE(8422)] = 209126, + [SMALL_STATE(8423)] = 209142, + [SMALL_STATE(8424)] = 209158, + [SMALL_STATE(8425)] = 209174, + [SMALL_STATE(8426)] = 209190, + [SMALL_STATE(8427)] = 209206, + [SMALL_STATE(8428)] = 209222, + [SMALL_STATE(8429)] = 209238, + [SMALL_STATE(8430)] = 209254, + [SMALL_STATE(8431)] = 209270, + [SMALL_STATE(8432)] = 209296, + [SMALL_STATE(8433)] = 209318, + [SMALL_STATE(8434)] = 209342, + [SMALL_STATE(8435)] = 209358, + [SMALL_STATE(8436)] = 209372, + [SMALL_STATE(8437)] = 209388, + [SMALL_STATE(8438)] = 209404, + [SMALL_STATE(8439)] = 209420, + [SMALL_STATE(8440)] = 209446, + [SMALL_STATE(8441)] = 209472, + [SMALL_STATE(8442)] = 209488, + [SMALL_STATE(8443)] = 209512, + [SMALL_STATE(8444)] = 209536, + [SMALL_STATE(8445)] = 209552, + [SMALL_STATE(8446)] = 209568, + [SMALL_STATE(8447)] = 209582, + [SMALL_STATE(8448)] = 209606, + [SMALL_STATE(8449)] = 209622, + [SMALL_STATE(8450)] = 209638, + [SMALL_STATE(8451)] = 209652, + [SMALL_STATE(8452)] = 209668, + [SMALL_STATE(8453)] = 209684, + [SMALL_STATE(8454)] = 209705, + [SMALL_STATE(8455)] = 209724, + [SMALL_STATE(8456)] = 209739, + [SMALL_STATE(8457)] = 209760, + [SMALL_STATE(8458)] = 209781, + [SMALL_STATE(8459)] = 209794, + [SMALL_STATE(8460)] = 209815, + [SMALL_STATE(8461)] = 209836, + [SMALL_STATE(8462)] = 209857, + [SMALL_STATE(8463)] = 209878, + [SMALL_STATE(8464)] = 209901, + [SMALL_STATE(8465)] = 209924, + [SMALL_STATE(8466)] = 209947, + [SMALL_STATE(8467)] = 209964, + [SMALL_STATE(8468)] = 209985, + [SMALL_STATE(8469)] = 210006, + [SMALL_STATE(8470)] = 210027, + [SMALL_STATE(8471)] = 210048, + [SMALL_STATE(8472)] = 210069, + [SMALL_STATE(8473)] = 210090, + [SMALL_STATE(8474)] = 210107, + [SMALL_STATE(8475)] = 210128, + [SMALL_STATE(8476)] = 210149, + [SMALL_STATE(8477)] = 210162, + [SMALL_STATE(8478)] = 210179, + [SMALL_STATE(8479)] = 210200, + [SMALL_STATE(8480)] = 210221, + [SMALL_STATE(8481)] = 210242, + [SMALL_STATE(8482)] = 210263, + [SMALL_STATE(8483)] = 210284, + [SMALL_STATE(8484)] = 210305, + [SMALL_STATE(8485)] = 210322, + [SMALL_STATE(8486)] = 210343, + [SMALL_STATE(8487)] = 210364, + [SMALL_STATE(8488)] = 210381, + [SMALL_STATE(8489)] = 210400, + [SMALL_STATE(8490)] = 210421, + [SMALL_STATE(8491)] = 210444, + [SMALL_STATE(8492)] = 210465, + [SMALL_STATE(8493)] = 210488, + [SMALL_STATE(8494)] = 210509, + [SMALL_STATE(8495)] = 210530, + [SMALL_STATE(8496)] = 210551, + [SMALL_STATE(8497)] = 210568, + [SMALL_STATE(8498)] = 210583, + [SMALL_STATE(8499)] = 210604, + [SMALL_STATE(8500)] = 210617, + [SMALL_STATE(8501)] = 210638, + [SMALL_STATE(8502)] = 210659, + [SMALL_STATE(8503)] = 210672, + [SMALL_STATE(8504)] = 210695, + [SMALL_STATE(8505)] = 210712, + [SMALL_STATE(8506)] = 210733, + [SMALL_STATE(8507)] = 210746, + [SMALL_STATE(8508)] = 210769, + [SMALL_STATE(8509)] = 210792, + [SMALL_STATE(8510)] = 210812, + [SMALL_STATE(8511)] = 210832, + [SMALL_STATE(8512)] = 210852, + [SMALL_STATE(8513)] = 210864, + [SMALL_STATE(8514)] = 210886, + [SMALL_STATE(8515)] = 210898, + [SMALL_STATE(8516)] = 210912, + [SMALL_STATE(8517)] = 210924, + [SMALL_STATE(8518)] = 210946, + [SMALL_STATE(8519)] = 210966, + [SMALL_STATE(8520)] = 210982, + [SMALL_STATE(8521)] = 211000, + [SMALL_STATE(8522)] = 211022, + [SMALL_STATE(8523)] = 211034, + [SMALL_STATE(8524)] = 211054, + [SMALL_STATE(8525)] = 211074, + [SMALL_STATE(8526)] = 211094, + [SMALL_STATE(8527)] = 211114, + [SMALL_STATE(8528)] = 211126, + [SMALL_STATE(8529)] = 211148, + [SMALL_STATE(8530)] = 211168, + [SMALL_STATE(8531)] = 211180, + [SMALL_STATE(8532)] = 211200, + [SMALL_STATE(8533)] = 211220, + [SMALL_STATE(8534)] = 211240, + [SMALL_STATE(8535)] = 211260, + [SMALL_STATE(8536)] = 211280, + [SMALL_STATE(8537)] = 211300, + [SMALL_STATE(8538)] = 211320, + [SMALL_STATE(8539)] = 211332, + [SMALL_STATE(8540)] = 211352, + [SMALL_STATE(8541)] = 211372, + [SMALL_STATE(8542)] = 211390, + [SMALL_STATE(8543)] = 211410, + [SMALL_STATE(8544)] = 211430, + [SMALL_STATE(8545)] = 211450, + [SMALL_STATE(8546)] = 211470, + [SMALL_STATE(8547)] = 211490, + [SMALL_STATE(8548)] = 211510, + [SMALL_STATE(8549)] = 211522, + [SMALL_STATE(8550)] = 211542, + [SMALL_STATE(8551)] = 211562, + [SMALL_STATE(8552)] = 211582, + [SMALL_STATE(8553)] = 211602, + [SMALL_STATE(8554)] = 211614, + [SMALL_STATE(8555)] = 211634, + [SMALL_STATE(8556)] = 211656, + [SMALL_STATE(8557)] = 211676, + [SMALL_STATE(8558)] = 211696, + [SMALL_STATE(8559)] = 211714, + [SMALL_STATE(8560)] = 211734, + [SMALL_STATE(8561)] = 211750, + [SMALL_STATE(8562)] = 211770, + [SMALL_STATE(8563)] = 211790, + [SMALL_STATE(8564)] = 211810, + [SMALL_STATE(8565)] = 211830, + [SMALL_STATE(8566)] = 211850, + [SMALL_STATE(8567)] = 211870, + [SMALL_STATE(8568)] = 211890, + [SMALL_STATE(8569)] = 211910, + [SMALL_STATE(8570)] = 211930, + [SMALL_STATE(8571)] = 211950, + [SMALL_STATE(8572)] = 211970, + [SMALL_STATE(8573)] = 211990, + [SMALL_STATE(8574)] = 212010, + [SMALL_STATE(8575)] = 212022, + [SMALL_STATE(8576)] = 212038, + [SMALL_STATE(8577)] = 212058, + [SMALL_STATE(8578)] = 212078, + [SMALL_STATE(8579)] = 212098, + [SMALL_STATE(8580)] = 212118, + [SMALL_STATE(8581)] = 212134, + [SMALL_STATE(8582)] = 212154, + [SMALL_STATE(8583)] = 212170, + [SMALL_STATE(8584)] = 212182, + [SMALL_STATE(8585)] = 212202, + [SMALL_STATE(8586)] = 212220, + [SMALL_STATE(8587)] = 212240, + [SMALL_STATE(8588)] = 212260, + [SMALL_STATE(8589)] = 212280, + [SMALL_STATE(8590)] = 212300, + [SMALL_STATE(8591)] = 212320, + [SMALL_STATE(8592)] = 212340, + [SMALL_STATE(8593)] = 212360, + [SMALL_STATE(8594)] = 212380, + [SMALL_STATE(8595)] = 212400, + [SMALL_STATE(8596)] = 212420, + [SMALL_STATE(8597)] = 212438, + [SMALL_STATE(8598)] = 212458, + [SMALL_STATE(8599)] = 212478, + [SMALL_STATE(8600)] = 212498, + [SMALL_STATE(8601)] = 212518, + [SMALL_STATE(8602)] = 212538, + [SMALL_STATE(8603)] = 212554, + [SMALL_STATE(8604)] = 212572, + [SMALL_STATE(8605)] = 212592, + [SMALL_STATE(8606)] = 212612, + [SMALL_STATE(8607)] = 212632, + [SMALL_STATE(8608)] = 212652, + [SMALL_STATE(8609)] = 212664, + [SMALL_STATE(8610)] = 212684, + [SMALL_STATE(8611)] = 212700, + [SMALL_STATE(8612)] = 212712, + [SMALL_STATE(8613)] = 212732, + [SMALL_STATE(8614)] = 212752, + [SMALL_STATE(8615)] = 212772, + [SMALL_STATE(8616)] = 212792, + [SMALL_STATE(8617)] = 212812, + [SMALL_STATE(8618)] = 212832, + [SMALL_STATE(8619)] = 212854, + [SMALL_STATE(8620)] = 212866, + [SMALL_STATE(8621)] = 212878, + [SMALL_STATE(8622)] = 212896, + [SMALL_STATE(8623)] = 212916, + [SMALL_STATE(8624)] = 212936, + [SMALL_STATE(8625)] = 212948, + [SMALL_STATE(8626)] = 212968, + [SMALL_STATE(8627)] = 212988, + [SMALL_STATE(8628)] = 213008, + [SMALL_STATE(8629)] = 213028, + [SMALL_STATE(8630)] = 213048, + [SMALL_STATE(8631)] = 213068, + [SMALL_STATE(8632)] = 213088, + [SMALL_STATE(8633)] = 213106, + [SMALL_STATE(8634)] = 213126, + [SMALL_STATE(8635)] = 213146, + [SMALL_STATE(8636)] = 213166, + [SMALL_STATE(8637)] = 213186, + [SMALL_STATE(8638)] = 213198, + [SMALL_STATE(8639)] = 213218, + [SMALL_STATE(8640)] = 213238, + [SMALL_STATE(8641)] = 213258, + [SMALL_STATE(8642)] = 213278, + [SMALL_STATE(8643)] = 213294, + [SMALL_STATE(8644)] = 213314, + [SMALL_STATE(8645)] = 213334, + [SMALL_STATE(8646)] = 213354, + [SMALL_STATE(8647)] = 213368, + [SMALL_STATE(8648)] = 213388, + [SMALL_STATE(8649)] = 213408, + [SMALL_STATE(8650)] = 213428, + [SMALL_STATE(8651)] = 213448, + [SMALL_STATE(8652)] = 213468, + [SMALL_STATE(8653)] = 213488, + [SMALL_STATE(8654)] = 213508, + [SMALL_STATE(8655)] = 213520, + [SMALL_STATE(8656)] = 213540, + [SMALL_STATE(8657)] = 213560, + [SMALL_STATE(8658)] = 213580, + [SMALL_STATE(8659)] = 213600, + [SMALL_STATE(8660)] = 213620, + [SMALL_STATE(8661)] = 213640, + [SMALL_STATE(8662)] = 213660, + [SMALL_STATE(8663)] = 213676, + [SMALL_STATE(8664)] = 213696, + [SMALL_STATE(8665)] = 213716, + [SMALL_STATE(8666)] = 213736, + [SMALL_STATE(8667)] = 213748, + [SMALL_STATE(8668)] = 213768, + [SMALL_STATE(8669)] = 213788, + [SMALL_STATE(8670)] = 213808, + [SMALL_STATE(8671)] = 213828, + [SMALL_STATE(8672)] = 213848, + [SMALL_STATE(8673)] = 213868, + [SMALL_STATE(8674)] = 213888, + [SMALL_STATE(8675)] = 213908, + [SMALL_STATE(8676)] = 213928, + [SMALL_STATE(8677)] = 213948, + [SMALL_STATE(8678)] = 213968, + [SMALL_STATE(8679)] = 213988, + [SMALL_STATE(8680)] = 214008, + [SMALL_STATE(8681)] = 214028, + [SMALL_STATE(8682)] = 214041, + [SMALL_STATE(8683)] = 214058, + [SMALL_STATE(8684)] = 214071, + [SMALL_STATE(8685)] = 214086, + [SMALL_STATE(8686)] = 214097, + [SMALL_STATE(8687)] = 214114, + [SMALL_STATE(8688)] = 214131, + [SMALL_STATE(8689)] = 214148, + [SMALL_STATE(8690)] = 214165, + [SMALL_STATE(8691)] = 214182, + [SMALL_STATE(8692)] = 214199, + [SMALL_STATE(8693)] = 214210, + [SMALL_STATE(8694)] = 214227, + [SMALL_STATE(8695)] = 214244, + [SMALL_STATE(8696)] = 214261, + [SMALL_STATE(8697)] = 214278, + [SMALL_STATE(8698)] = 214295, + [SMALL_STATE(8699)] = 214312, + [SMALL_STATE(8700)] = 214329, + [SMALL_STATE(8701)] = 214346, + [SMALL_STATE(8702)] = 214363, + [SMALL_STATE(8703)] = 214380, + [SMALL_STATE(8704)] = 214397, + [SMALL_STATE(8705)] = 214414, + [SMALL_STATE(8706)] = 214425, + [SMALL_STATE(8707)] = 214440, + [SMALL_STATE(8708)] = 214457, + [SMALL_STATE(8709)] = 214474, + [SMALL_STATE(8710)] = 214491, + [SMALL_STATE(8711)] = 214506, + [SMALL_STATE(8712)] = 214521, + [SMALL_STATE(8713)] = 214538, + [SMALL_STATE(8714)] = 214555, + [SMALL_STATE(8715)] = 214572, + [SMALL_STATE(8716)] = 214589, + [SMALL_STATE(8717)] = 214606, + [SMALL_STATE(8718)] = 214623, + [SMALL_STATE(8719)] = 214640, + [SMALL_STATE(8720)] = 214657, + [SMALL_STATE(8721)] = 214674, + [SMALL_STATE(8722)] = 214691, + [SMALL_STATE(8723)] = 214708, + [SMALL_STATE(8724)] = 214725, + [SMALL_STATE(8725)] = 214742, + [SMALL_STATE(8726)] = 214757, + [SMALL_STATE(8727)] = 214774, + [SMALL_STATE(8728)] = 214791, + [SMALL_STATE(8729)] = 214808, + [SMALL_STATE(8730)] = 214825, + [SMALL_STATE(8731)] = 214840, + [SMALL_STATE(8732)] = 214857, + [SMALL_STATE(8733)] = 214872, + [SMALL_STATE(8734)] = 214887, + [SMALL_STATE(8735)] = 214904, + [SMALL_STATE(8736)] = 214919, + [SMALL_STATE(8737)] = 214936, + [SMALL_STATE(8738)] = 214953, + [SMALL_STATE(8739)] = 214970, + [SMALL_STATE(8740)] = 214987, + [SMALL_STATE(8741)] = 215004, + [SMALL_STATE(8742)] = 215021, + [SMALL_STATE(8743)] = 215038, + [SMALL_STATE(8744)] = 215055, + [SMALL_STATE(8745)] = 215066, + [SMALL_STATE(8746)] = 215083, + [SMALL_STATE(8747)] = 215100, + [SMALL_STATE(8748)] = 215117, + [SMALL_STATE(8749)] = 215128, + [SMALL_STATE(8750)] = 215145, + [SMALL_STATE(8751)] = 215162, + [SMALL_STATE(8752)] = 215179, + [SMALL_STATE(8753)] = 215196, + [SMALL_STATE(8754)] = 215213, + [SMALL_STATE(8755)] = 215230, + [SMALL_STATE(8756)] = 215245, + [SMALL_STATE(8757)] = 215262, + [SMALL_STATE(8758)] = 215279, + [SMALL_STATE(8759)] = 215296, + [SMALL_STATE(8760)] = 215311, + [SMALL_STATE(8761)] = 215328, + [SMALL_STATE(8762)] = 215345, + [SMALL_STATE(8763)] = 215362, + [SMALL_STATE(8764)] = 215379, + [SMALL_STATE(8765)] = 215396, + [SMALL_STATE(8766)] = 215413, + [SMALL_STATE(8767)] = 215430, + [SMALL_STATE(8768)] = 215447, + [SMALL_STATE(8769)] = 215458, + [SMALL_STATE(8770)] = 215469, + [SMALL_STATE(8771)] = 215484, + [SMALL_STATE(8772)] = 215501, + [SMALL_STATE(8773)] = 215518, + [SMALL_STATE(8774)] = 215533, + [SMALL_STATE(8775)] = 215550, + [SMALL_STATE(8776)] = 215565, + [SMALL_STATE(8777)] = 215576, + [SMALL_STATE(8778)] = 215593, + [SMALL_STATE(8779)] = 215610, + [SMALL_STATE(8780)] = 215625, + [SMALL_STATE(8781)] = 215642, + [SMALL_STATE(8782)] = 215659, + [SMALL_STATE(8783)] = 215676, + [SMALL_STATE(8784)] = 215693, + [SMALL_STATE(8785)] = 215710, + [SMALL_STATE(8786)] = 215723, + [SMALL_STATE(8787)] = 215738, + [SMALL_STATE(8788)] = 215753, + [SMALL_STATE(8789)] = 215768, + [SMALL_STATE(8790)] = 215785, + [SMALL_STATE(8791)] = 215802, + [SMALL_STATE(8792)] = 215819, + [SMALL_STATE(8793)] = 215836, + [SMALL_STATE(8794)] = 215851, + [SMALL_STATE(8795)] = 215866, + [SMALL_STATE(8796)] = 215883, + [SMALL_STATE(8797)] = 215900, + [SMALL_STATE(8798)] = 215917, + [SMALL_STATE(8799)] = 215934, + [SMALL_STATE(8800)] = 215951, + [SMALL_STATE(8801)] = 215966, + [SMALL_STATE(8802)] = 215979, + [SMALL_STATE(8803)] = 215996, + [SMALL_STATE(8804)] = 216011, + [SMALL_STATE(8805)] = 216028, + [SMALL_STATE(8806)] = 216045, + [SMALL_STATE(8807)] = 216062, + [SMALL_STATE(8808)] = 216079, + [SMALL_STATE(8809)] = 216096, + [SMALL_STATE(8810)] = 216113, + [SMALL_STATE(8811)] = 216124, + [SMALL_STATE(8812)] = 216141, + [SMALL_STATE(8813)] = 216158, + [SMALL_STATE(8814)] = 216175, + [SMALL_STATE(8815)] = 216192, + [SMALL_STATE(8816)] = 216209, + [SMALL_STATE(8817)] = 216226, + [SMALL_STATE(8818)] = 216243, + [SMALL_STATE(8819)] = 216260, + [SMALL_STATE(8820)] = 216277, + [SMALL_STATE(8821)] = 216294, + [SMALL_STATE(8822)] = 216305, + [SMALL_STATE(8823)] = 216322, + [SMALL_STATE(8824)] = 216337, + [SMALL_STATE(8825)] = 216354, + [SMALL_STATE(8826)] = 216369, + [SMALL_STATE(8827)] = 216384, + [SMALL_STATE(8828)] = 216401, + [SMALL_STATE(8829)] = 216416, + [SMALL_STATE(8830)] = 216431, + [SMALL_STATE(8831)] = 216448, + [SMALL_STATE(8832)] = 216465, + [SMALL_STATE(8833)] = 216476, + [SMALL_STATE(8834)] = 216491, + [SMALL_STATE(8835)] = 216508, + [SMALL_STATE(8836)] = 216521, + [SMALL_STATE(8837)] = 216538, + [SMALL_STATE(8838)] = 216555, + [SMALL_STATE(8839)] = 216572, + [SMALL_STATE(8840)] = 216589, + [SMALL_STATE(8841)] = 216606, + [SMALL_STATE(8842)] = 216623, + [SMALL_STATE(8843)] = 216637, + [SMALL_STATE(8844)] = 216651, + [SMALL_STATE(8845)] = 216663, + [SMALL_STATE(8846)] = 216677, + [SMALL_STATE(8847)] = 216689, + [SMALL_STATE(8848)] = 216703, + [SMALL_STATE(8849)] = 216715, + [SMALL_STATE(8850)] = 216729, + [SMALL_STATE(8851)] = 216743, + [SMALL_STATE(8852)] = 216757, + [SMALL_STATE(8853)] = 216771, + [SMALL_STATE(8854)] = 216785, + [SMALL_STATE(8855)] = 216799, + [SMALL_STATE(8856)] = 216813, + [SMALL_STATE(8857)] = 216827, + [SMALL_STATE(8858)] = 216841, + [SMALL_STATE(8859)] = 216853, + [SMALL_STATE(8860)] = 216865, + [SMALL_STATE(8861)] = 216879, + [SMALL_STATE(8862)] = 216893, + [SMALL_STATE(8863)] = 216907, + [SMALL_STATE(8864)] = 216921, + [SMALL_STATE(8865)] = 216931, + [SMALL_STATE(8866)] = 216943, + [SMALL_STATE(8867)] = 216957, + [SMALL_STATE(8868)] = 216971, + [SMALL_STATE(8869)] = 216985, + [SMALL_STATE(8870)] = 216999, + [SMALL_STATE(8871)] = 217013, + [SMALL_STATE(8872)] = 217027, + [SMALL_STATE(8873)] = 217037, + [SMALL_STATE(8874)] = 217051, + [SMALL_STATE(8875)] = 217065, + [SMALL_STATE(8876)] = 217079, + [SMALL_STATE(8877)] = 217093, + [SMALL_STATE(8878)] = 217107, + [SMALL_STATE(8879)] = 217121, + [SMALL_STATE(8880)] = 217133, + [SMALL_STATE(8881)] = 217145, + [SMALL_STATE(8882)] = 217159, + [SMALL_STATE(8883)] = 217169, + [SMALL_STATE(8884)] = 217181, + [SMALL_STATE(8885)] = 217195, + [SMALL_STATE(8886)] = 217205, + [SMALL_STATE(8887)] = 217219, + [SMALL_STATE(8888)] = 217231, + [SMALL_STATE(8889)] = 217245, + [SMALL_STATE(8890)] = 217259, + [SMALL_STATE(8891)] = 217273, + [SMALL_STATE(8892)] = 217287, + [SMALL_STATE(8893)] = 217301, + [SMALL_STATE(8894)] = 217315, + [SMALL_STATE(8895)] = 217329, + [SMALL_STATE(8896)] = 217341, + [SMALL_STATE(8897)] = 217353, + [SMALL_STATE(8898)] = 217367, + [SMALL_STATE(8899)] = 217381, + [SMALL_STATE(8900)] = 217395, + [SMALL_STATE(8901)] = 217407, + [SMALL_STATE(8902)] = 217419, + [SMALL_STATE(8903)] = 217433, + [SMALL_STATE(8904)] = 217447, + [SMALL_STATE(8905)] = 217461, + [SMALL_STATE(8906)] = 217475, + [SMALL_STATE(8907)] = 217489, + [SMALL_STATE(8908)] = 217503, + [SMALL_STATE(8909)] = 217517, + [SMALL_STATE(8910)] = 217531, + [SMALL_STATE(8911)] = 217545, + [SMALL_STATE(8912)] = 217557, + [SMALL_STATE(8913)] = 217571, + [SMALL_STATE(8914)] = 217585, + [SMALL_STATE(8915)] = 217599, + [SMALL_STATE(8916)] = 217613, + [SMALL_STATE(8917)] = 217627, + [SMALL_STATE(8918)] = 217641, + [SMALL_STATE(8919)] = 217655, + [SMALL_STATE(8920)] = 217669, + [SMALL_STATE(8921)] = 217683, + [SMALL_STATE(8922)] = 217697, + [SMALL_STATE(8923)] = 217711, + [SMALL_STATE(8924)] = 217725, + [SMALL_STATE(8925)] = 217739, + [SMALL_STATE(8926)] = 217751, + [SMALL_STATE(8927)] = 217761, + [SMALL_STATE(8928)] = 217773, + [SMALL_STATE(8929)] = 217787, + [SMALL_STATE(8930)] = 217797, + [SMALL_STATE(8931)] = 217811, + [SMALL_STATE(8932)] = 217825, + [SMALL_STATE(8933)] = 217839, + [SMALL_STATE(8934)] = 217853, + [SMALL_STATE(8935)] = 217867, + [SMALL_STATE(8936)] = 217881, + [SMALL_STATE(8937)] = 217893, + [SMALL_STATE(8938)] = 217907, + [SMALL_STATE(8939)] = 217921, + [SMALL_STATE(8940)] = 217935, + [SMALL_STATE(8941)] = 217949, + [SMALL_STATE(8942)] = 217963, + [SMALL_STATE(8943)] = 217977, + [SMALL_STATE(8944)] = 217991, + [SMALL_STATE(8945)] = 218005, + [SMALL_STATE(8946)] = 218019, + [SMALL_STATE(8947)] = 218031, + [SMALL_STATE(8948)] = 218045, + [SMALL_STATE(8949)] = 218059, + [SMALL_STATE(8950)] = 218073, + [SMALL_STATE(8951)] = 218085, + [SMALL_STATE(8952)] = 218099, + [SMALL_STATE(8953)] = 218113, + [SMALL_STATE(8954)] = 218125, + [SMALL_STATE(8955)] = 218139, + [SMALL_STATE(8956)] = 218151, + [SMALL_STATE(8957)] = 218165, + [SMALL_STATE(8958)] = 218179, + [SMALL_STATE(8959)] = 218189, + [SMALL_STATE(8960)] = 218203, + [SMALL_STATE(8961)] = 218215, + [SMALL_STATE(8962)] = 218229, + [SMALL_STATE(8963)] = 218243, + [SMALL_STATE(8964)] = 218257, + [SMALL_STATE(8965)] = 218271, + [SMALL_STATE(8966)] = 218283, + [SMALL_STATE(8967)] = 218297, + [SMALL_STATE(8968)] = 218309, + [SMALL_STATE(8969)] = 218323, + [SMALL_STATE(8970)] = 218337, + [SMALL_STATE(8971)] = 218349, + [SMALL_STATE(8972)] = 218363, + [SMALL_STATE(8973)] = 218377, + [SMALL_STATE(8974)] = 218389, + [SMALL_STATE(8975)] = 218403, + [SMALL_STATE(8976)] = 218417, + [SMALL_STATE(8977)] = 218431, + [SMALL_STATE(8978)] = 218445, + [SMALL_STATE(8979)] = 218459, + [SMALL_STATE(8980)] = 218473, + [SMALL_STATE(8981)] = 218487, + [SMALL_STATE(8982)] = 218501, + [SMALL_STATE(8983)] = 218515, + [SMALL_STATE(8984)] = 218529, + [SMALL_STATE(8985)] = 218543, + [SMALL_STATE(8986)] = 218557, + [SMALL_STATE(8987)] = 218571, + [SMALL_STATE(8988)] = 218585, + [SMALL_STATE(8989)] = 218599, + [SMALL_STATE(8990)] = 218613, + [SMALL_STATE(8991)] = 218627, + [SMALL_STATE(8992)] = 218641, + [SMALL_STATE(8993)] = 218653, + [SMALL_STATE(8994)] = 218667, + [SMALL_STATE(8995)] = 218681, + [SMALL_STATE(8996)] = 218695, + [SMALL_STATE(8997)] = 218709, + [SMALL_STATE(8998)] = 218723, + [SMALL_STATE(8999)] = 218737, + [SMALL_STATE(9000)] = 218751, + [SMALL_STATE(9001)] = 218765, + [SMALL_STATE(9002)] = 218779, + [SMALL_STATE(9003)] = 218793, + [SMALL_STATE(9004)] = 218807, + [SMALL_STATE(9005)] = 218821, + [SMALL_STATE(9006)] = 218835, + [SMALL_STATE(9007)] = 218849, + [SMALL_STATE(9008)] = 218863, + [SMALL_STATE(9009)] = 218877, + [SMALL_STATE(9010)] = 218891, + [SMALL_STATE(9011)] = 218905, + [SMALL_STATE(9012)] = 218917, + [SMALL_STATE(9013)] = 218929, + [SMALL_STATE(9014)] = 218943, + [SMALL_STATE(9015)] = 218957, + [SMALL_STATE(9016)] = 218971, + [SMALL_STATE(9017)] = 218985, + [SMALL_STATE(9018)] = 218999, + [SMALL_STATE(9019)] = 219013, + [SMALL_STATE(9020)] = 219027, + [SMALL_STATE(9021)] = 219041, + [SMALL_STATE(9022)] = 219055, + [SMALL_STATE(9023)] = 219069, + [SMALL_STATE(9024)] = 219083, + [SMALL_STATE(9025)] = 219097, + [SMALL_STATE(9026)] = 219107, + [SMALL_STATE(9027)] = 219121, + [SMALL_STATE(9028)] = 219135, + [SMALL_STATE(9029)] = 219149, + [SMALL_STATE(9030)] = 219163, + [SMALL_STATE(9031)] = 219177, + [SMALL_STATE(9032)] = 219191, + [SMALL_STATE(9033)] = 219205, + [SMALL_STATE(9034)] = 219219, + [SMALL_STATE(9035)] = 219233, + [SMALL_STATE(9036)] = 219247, + [SMALL_STATE(9037)] = 219261, + [SMALL_STATE(9038)] = 219275, + [SMALL_STATE(9039)] = 219287, + [SMALL_STATE(9040)] = 219301, + [SMALL_STATE(9041)] = 219315, + [SMALL_STATE(9042)] = 219329, + [SMALL_STATE(9043)] = 219343, + [SMALL_STATE(9044)] = 219355, + [SMALL_STATE(9045)] = 219367, + [SMALL_STATE(9046)] = 219381, + [SMALL_STATE(9047)] = 219395, + [SMALL_STATE(9048)] = 219409, + [SMALL_STATE(9049)] = 219423, + [SMALL_STATE(9050)] = 219437, + [SMALL_STATE(9051)] = 219451, + [SMALL_STATE(9052)] = 219465, + [SMALL_STATE(9053)] = 219479, + [SMALL_STATE(9054)] = 219493, + [SMALL_STATE(9055)] = 219503, + [SMALL_STATE(9056)] = 219517, + [SMALL_STATE(9057)] = 219529, + [SMALL_STATE(9058)] = 219543, + [SMALL_STATE(9059)] = 219557, + [SMALL_STATE(9060)] = 219569, + [SMALL_STATE(9061)] = 219583, + [SMALL_STATE(9062)] = 219597, + [SMALL_STATE(9063)] = 219611, + [SMALL_STATE(9064)] = 219625, + [SMALL_STATE(9065)] = 219639, + [SMALL_STATE(9066)] = 219649, + [SMALL_STATE(9067)] = 219663, + [SMALL_STATE(9068)] = 219677, + [SMALL_STATE(9069)] = 219689, + [SMALL_STATE(9070)] = 219703, + [SMALL_STATE(9071)] = 219717, + [SMALL_STATE(9072)] = 219731, + [SMALL_STATE(9073)] = 219745, + [SMALL_STATE(9074)] = 219759, + [SMALL_STATE(9075)] = 219771, + [SMALL_STATE(9076)] = 219785, + [SMALL_STATE(9077)] = 219799, + [SMALL_STATE(9078)] = 219813, + [SMALL_STATE(9079)] = 219827, + [SMALL_STATE(9080)] = 219841, + [SMALL_STATE(9081)] = 219855, + [SMALL_STATE(9082)] = 219869, + [SMALL_STATE(9083)] = 219883, + [SMALL_STATE(9084)] = 219897, + [SMALL_STATE(9085)] = 219911, + [SMALL_STATE(9086)] = 219925, + [SMALL_STATE(9087)] = 219939, + [SMALL_STATE(9088)] = 219953, + [SMALL_STATE(9089)] = 219967, + [SMALL_STATE(9090)] = 219981, + [SMALL_STATE(9091)] = 219995, + [SMALL_STATE(9092)] = 220009, + [SMALL_STATE(9093)] = 220023, + [SMALL_STATE(9094)] = 220037, + [SMALL_STATE(9095)] = 220051, + [SMALL_STATE(9096)] = 220065, + [SMALL_STATE(9097)] = 220079, + [SMALL_STATE(9098)] = 220093, + [SMALL_STATE(9099)] = 220105, + [SMALL_STATE(9100)] = 220119, + [SMALL_STATE(9101)] = 220131, + [SMALL_STATE(9102)] = 220145, + [SMALL_STATE(9103)] = 220159, + [SMALL_STATE(9104)] = 220173, + [SMALL_STATE(9105)] = 220187, + [SMALL_STATE(9106)] = 220201, + [SMALL_STATE(9107)] = 220215, + [SMALL_STATE(9108)] = 220227, + [SMALL_STATE(9109)] = 220241, + [SMALL_STATE(9110)] = 220255, + [SMALL_STATE(9111)] = 220269, + [SMALL_STATE(9112)] = 220283, + [SMALL_STATE(9113)] = 220297, + [SMALL_STATE(9114)] = 220311, + [SMALL_STATE(9115)] = 220325, + [SMALL_STATE(9116)] = 220337, + [SMALL_STATE(9117)] = 220351, + [SMALL_STATE(9118)] = 220365, + [SMALL_STATE(9119)] = 220377, + [SMALL_STATE(9120)] = 220391, + [SMALL_STATE(9121)] = 220405, + [SMALL_STATE(9122)] = 220419, + [SMALL_STATE(9123)] = 220433, + [SMALL_STATE(9124)] = 220447, + [SMALL_STATE(9125)] = 220461, + [SMALL_STATE(9126)] = 220475, + [SMALL_STATE(9127)] = 220489, + [SMALL_STATE(9128)] = 220503, + [SMALL_STATE(9129)] = 220515, + [SMALL_STATE(9130)] = 220529, + [SMALL_STATE(9131)] = 220543, + [SMALL_STATE(9132)] = 220557, + [SMALL_STATE(9133)] = 220571, + [SMALL_STATE(9134)] = 220583, + [SMALL_STATE(9135)] = 220597, + [SMALL_STATE(9136)] = 220609, + [SMALL_STATE(9137)] = 220623, + [SMALL_STATE(9138)] = 220637, + [SMALL_STATE(9139)] = 220651, + [SMALL_STATE(9140)] = 220665, + [SMALL_STATE(9141)] = 220677, + [SMALL_STATE(9142)] = 220691, + [SMALL_STATE(9143)] = 220705, + [SMALL_STATE(9144)] = 220715, + [SMALL_STATE(9145)] = 220729, + [SMALL_STATE(9146)] = 220741, + [SMALL_STATE(9147)] = 220755, + [SMALL_STATE(9148)] = 220767, + [SMALL_STATE(9149)] = 220779, + [SMALL_STATE(9150)] = 220790, + [SMALL_STATE(9151)] = 220801, + [SMALL_STATE(9152)] = 220812, + [SMALL_STATE(9153)] = 220823, + [SMALL_STATE(9154)] = 220832, + [SMALL_STATE(9155)] = 220843, + [SMALL_STATE(9156)] = 220852, + [SMALL_STATE(9157)] = 220863, + [SMALL_STATE(9158)] = 220872, + [SMALL_STATE(9159)] = 220883, + [SMALL_STATE(9160)] = 220892, + [SMALL_STATE(9161)] = 220901, + [SMALL_STATE(9162)] = 220912, + [SMALL_STATE(9163)] = 220923, + [SMALL_STATE(9164)] = 220932, + [SMALL_STATE(9165)] = 220941, + [SMALL_STATE(9166)] = 220950, + [SMALL_STATE(9167)] = 220959, + [SMALL_STATE(9168)] = 220970, + [SMALL_STATE(9169)] = 220981, + [SMALL_STATE(9170)] = 220992, + [SMALL_STATE(9171)] = 221003, + [SMALL_STATE(9172)] = 221014, + [SMALL_STATE(9173)] = 221025, + [SMALL_STATE(9174)] = 221036, + [SMALL_STATE(9175)] = 221045, + [SMALL_STATE(9176)] = 221054, + [SMALL_STATE(9177)] = 221063, + [SMALL_STATE(9178)] = 221074, + [SMALL_STATE(9179)] = 221083, + [SMALL_STATE(9180)] = 221094, + [SMALL_STATE(9181)] = 221105, + [SMALL_STATE(9182)] = 221114, + [SMALL_STATE(9183)] = 221125, + [SMALL_STATE(9184)] = 221134, + [SMALL_STATE(9185)] = 221145, + [SMALL_STATE(9186)] = 221154, + [SMALL_STATE(9187)] = 221163, + [SMALL_STATE(9188)] = 221172, + [SMALL_STATE(9189)] = 221181, + [SMALL_STATE(9190)] = 221192, + [SMALL_STATE(9191)] = 221201, + [SMALL_STATE(9192)] = 221212, + [SMALL_STATE(9193)] = 221221, + [SMALL_STATE(9194)] = 221230, + [SMALL_STATE(9195)] = 221239, + [SMALL_STATE(9196)] = 221248, + [SMALL_STATE(9197)] = 221257, + [SMALL_STATE(9198)] = 221266, + [SMALL_STATE(9199)] = 221275, + [SMALL_STATE(9200)] = 221284, + [SMALL_STATE(9201)] = 221295, + [SMALL_STATE(9202)] = 221304, + [SMALL_STATE(9203)] = 221313, + [SMALL_STATE(9204)] = 221322, + [SMALL_STATE(9205)] = 221331, + [SMALL_STATE(9206)] = 221340, + [SMALL_STATE(9207)] = 221351, + [SMALL_STATE(9208)] = 221362, + [SMALL_STATE(9209)] = 221371, + [SMALL_STATE(9210)] = 221382, + [SMALL_STATE(9211)] = 221391, + [SMALL_STATE(9212)] = 221402, + [SMALL_STATE(9213)] = 221411, + [SMALL_STATE(9214)] = 221420, + [SMALL_STATE(9215)] = 221429, + [SMALL_STATE(9216)] = 221438, + [SMALL_STATE(9217)] = 221449, + [SMALL_STATE(9218)] = 221458, + [SMALL_STATE(9219)] = 221469, + [SMALL_STATE(9220)] = 221480, + [SMALL_STATE(9221)] = 221489, + [SMALL_STATE(9222)] = 221498, + [SMALL_STATE(9223)] = 221507, + [SMALL_STATE(9224)] = 221518, + [SMALL_STATE(9225)] = 221529, + [SMALL_STATE(9226)] = 221540, + [SMALL_STATE(9227)] = 221551, + [SMALL_STATE(9228)] = 221560, + [SMALL_STATE(9229)] = 221571, + [SMALL_STATE(9230)] = 221580, + [SMALL_STATE(9231)] = 221591, + [SMALL_STATE(9232)] = 221600, + [SMALL_STATE(9233)] = 221611, + [SMALL_STATE(9234)] = 221622, + [SMALL_STATE(9235)] = 221631, + [SMALL_STATE(9236)] = 221642, + [SMALL_STATE(9237)] = 221653, + [SMALL_STATE(9238)] = 221664, + [SMALL_STATE(9239)] = 221673, + [SMALL_STATE(9240)] = 221682, + [SMALL_STATE(9241)] = 221693, + [SMALL_STATE(9242)] = 221704, + [SMALL_STATE(9243)] = 221713, + [SMALL_STATE(9244)] = 221722, + [SMALL_STATE(9245)] = 221733, + [SMALL_STATE(9246)] = 221742, + [SMALL_STATE(9247)] = 221751, + [SMALL_STATE(9248)] = 221760, + [SMALL_STATE(9249)] = 221771, + [SMALL_STATE(9250)] = 221782, + [SMALL_STATE(9251)] = 221793, + [SMALL_STATE(9252)] = 221804, + [SMALL_STATE(9253)] = 221815, + [SMALL_STATE(9254)] = 221826, + [SMALL_STATE(9255)] = 221837, + [SMALL_STATE(9256)] = 221848, + [SMALL_STATE(9257)] = 221859, + [SMALL_STATE(9258)] = 221870, + [SMALL_STATE(9259)] = 221881, + [SMALL_STATE(9260)] = 221892, + [SMALL_STATE(9261)] = 221903, + [SMALL_STATE(9262)] = 221912, + [SMALL_STATE(9263)] = 221923, + [SMALL_STATE(9264)] = 221934, + [SMALL_STATE(9265)] = 221945, + [SMALL_STATE(9266)] = 221956, + [SMALL_STATE(9267)] = 221967, + [SMALL_STATE(9268)] = 221978, + [SMALL_STATE(9269)] = 221989, + [SMALL_STATE(9270)] = 222000, + [SMALL_STATE(9271)] = 222011, + [SMALL_STATE(9272)] = 222022, + [SMALL_STATE(9273)] = 222033, + [SMALL_STATE(9274)] = 222044, + [SMALL_STATE(9275)] = 222055, + [SMALL_STATE(9276)] = 222066, + [SMALL_STATE(9277)] = 222077, + [SMALL_STATE(9278)] = 222088, + [SMALL_STATE(9279)] = 222097, + [SMALL_STATE(9280)] = 222108, + [SMALL_STATE(9281)] = 222119, + [SMALL_STATE(9282)] = 222130, + [SMALL_STATE(9283)] = 222141, + [SMALL_STATE(9284)] = 222152, + [SMALL_STATE(9285)] = 222163, + [SMALL_STATE(9286)] = 222174, + [SMALL_STATE(9287)] = 222185, + [SMALL_STATE(9288)] = 222196, + [SMALL_STATE(9289)] = 222207, + [SMALL_STATE(9290)] = 222216, + [SMALL_STATE(9291)] = 222227, + [SMALL_STATE(9292)] = 222236, + [SMALL_STATE(9293)] = 222247, + [SMALL_STATE(9294)] = 222256, + [SMALL_STATE(9295)] = 222267, + [SMALL_STATE(9296)] = 222276, + [SMALL_STATE(9297)] = 222287, + [SMALL_STATE(9298)] = 222296, + [SMALL_STATE(9299)] = 222307, + [SMALL_STATE(9300)] = 222318, + [SMALL_STATE(9301)] = 222329, + [SMALL_STATE(9302)] = 222340, + [SMALL_STATE(9303)] = 222351, + [SMALL_STATE(9304)] = 222362, + [SMALL_STATE(9305)] = 222373, + [SMALL_STATE(9306)] = 222384, + [SMALL_STATE(9307)] = 222393, + [SMALL_STATE(9308)] = 222402, + [SMALL_STATE(9309)] = 222413, + [SMALL_STATE(9310)] = 222424, + [SMALL_STATE(9311)] = 222435, + [SMALL_STATE(9312)] = 222446, + [SMALL_STATE(9313)] = 222455, + [SMALL_STATE(9314)] = 222466, + [SMALL_STATE(9315)] = 222477, + [SMALL_STATE(9316)] = 222488, + [SMALL_STATE(9317)] = 222499, + [SMALL_STATE(9318)] = 222508, + [SMALL_STATE(9319)] = 222519, + [SMALL_STATE(9320)] = 222530, + [SMALL_STATE(9321)] = 222541, + [SMALL_STATE(9322)] = 222552, + [SMALL_STATE(9323)] = 222563, + [SMALL_STATE(9324)] = 222574, + [SMALL_STATE(9325)] = 222583, + [SMALL_STATE(9326)] = 222594, + [SMALL_STATE(9327)] = 222603, + [SMALL_STATE(9328)] = 222614, + [SMALL_STATE(9329)] = 222625, + [SMALL_STATE(9330)] = 222634, + [SMALL_STATE(9331)] = 222645, + [SMALL_STATE(9332)] = 222656, + [SMALL_STATE(9333)] = 222667, + [SMALL_STATE(9334)] = 222676, + [SMALL_STATE(9335)] = 222687, + [SMALL_STATE(9336)] = 222698, + [SMALL_STATE(9337)] = 222709, + [SMALL_STATE(9338)] = 222720, + [SMALL_STATE(9339)] = 222731, + [SMALL_STATE(9340)] = 222742, + [SMALL_STATE(9341)] = 222753, + [SMALL_STATE(9342)] = 222764, + [SMALL_STATE(9343)] = 222775, + [SMALL_STATE(9344)] = 222784, + [SMALL_STATE(9345)] = 222795, + [SMALL_STATE(9346)] = 222806, + [SMALL_STATE(9347)] = 222817, + [SMALL_STATE(9348)] = 222826, + [SMALL_STATE(9349)] = 222837, + [SMALL_STATE(9350)] = 222848, + [SMALL_STATE(9351)] = 222859, + [SMALL_STATE(9352)] = 222870, + [SMALL_STATE(9353)] = 222881, + [SMALL_STATE(9354)] = 222892, + [SMALL_STATE(9355)] = 222903, + [SMALL_STATE(9356)] = 222914, + [SMALL_STATE(9357)] = 222925, + [SMALL_STATE(9358)] = 222936, + [SMALL_STATE(9359)] = 222947, + [SMALL_STATE(9360)] = 222958, + [SMALL_STATE(9361)] = 222969, + [SMALL_STATE(9362)] = 222980, + [SMALL_STATE(9363)] = 222991, + [SMALL_STATE(9364)] = 223002, + [SMALL_STATE(9365)] = 223013, + [SMALL_STATE(9366)] = 223024, + [SMALL_STATE(9367)] = 223035, + [SMALL_STATE(9368)] = 223046, + [SMALL_STATE(9369)] = 223057, + [SMALL_STATE(9370)] = 223068, + [SMALL_STATE(9371)] = 223079, + [SMALL_STATE(9372)] = 223090, + [SMALL_STATE(9373)] = 223101, + [SMALL_STATE(9374)] = 223112, + [SMALL_STATE(9375)] = 223123, + [SMALL_STATE(9376)] = 223134, + [SMALL_STATE(9377)] = 223145, + [SMALL_STATE(9378)] = 223156, + [SMALL_STATE(9379)] = 223165, + [SMALL_STATE(9380)] = 223176, + [SMALL_STATE(9381)] = 223187, + [SMALL_STATE(9382)] = 223198, + [SMALL_STATE(9383)] = 223209, + [SMALL_STATE(9384)] = 223220, + [SMALL_STATE(9385)] = 223231, + [SMALL_STATE(9386)] = 223240, + [SMALL_STATE(9387)] = 223251, + [SMALL_STATE(9388)] = 223262, + [SMALL_STATE(9389)] = 223273, + [SMALL_STATE(9390)] = 223284, + [SMALL_STATE(9391)] = 223293, + [SMALL_STATE(9392)] = 223304, + [SMALL_STATE(9393)] = 223315, + [SMALL_STATE(9394)] = 223326, + [SMALL_STATE(9395)] = 223337, + [SMALL_STATE(9396)] = 223348, + [SMALL_STATE(9397)] = 223359, + [SMALL_STATE(9398)] = 223370, + [SMALL_STATE(9399)] = 223381, + [SMALL_STATE(9400)] = 223392, + [SMALL_STATE(9401)] = 223401, + [SMALL_STATE(9402)] = 223412, + [SMALL_STATE(9403)] = 223423, + [SMALL_STATE(9404)] = 223434, + [SMALL_STATE(9405)] = 223445, + [SMALL_STATE(9406)] = 223456, + [SMALL_STATE(9407)] = 223467, + [SMALL_STATE(9408)] = 223478, + [SMALL_STATE(9409)] = 223489, + [SMALL_STATE(9410)] = 223500, + [SMALL_STATE(9411)] = 223511, + [SMALL_STATE(9412)] = 223522, + [SMALL_STATE(9413)] = 223533, + [SMALL_STATE(9414)] = 223544, + [SMALL_STATE(9415)] = 223555, + [SMALL_STATE(9416)] = 223566, + [SMALL_STATE(9417)] = 223577, + [SMALL_STATE(9418)] = 223588, + [SMALL_STATE(9419)] = 223599, + [SMALL_STATE(9420)] = 223608, + [SMALL_STATE(9421)] = 223619, + [SMALL_STATE(9422)] = 223628, + [SMALL_STATE(9423)] = 223637, + [SMALL_STATE(9424)] = 223648, + [SMALL_STATE(9425)] = 223659, + [SMALL_STATE(9426)] = 223670, + [SMALL_STATE(9427)] = 223681, + [SMALL_STATE(9428)] = 223692, + [SMALL_STATE(9429)] = 223701, + [SMALL_STATE(9430)] = 223712, + [SMALL_STATE(9431)] = 223721, + [SMALL_STATE(9432)] = 223732, + [SMALL_STATE(9433)] = 223741, + [SMALL_STATE(9434)] = 223752, + [SMALL_STATE(9435)] = 223763, + [SMALL_STATE(9436)] = 223772, + [SMALL_STATE(9437)] = 223783, + [SMALL_STATE(9438)] = 223794, + [SMALL_STATE(9439)] = 223805, + [SMALL_STATE(9440)] = 223814, + [SMALL_STATE(9441)] = 223823, + [SMALL_STATE(9442)] = 223834, + [SMALL_STATE(9443)] = 223843, + [SMALL_STATE(9444)] = 223854, + [SMALL_STATE(9445)] = 223865, + [SMALL_STATE(9446)] = 223876, + [SMALL_STATE(9447)] = 223887, + [SMALL_STATE(9448)] = 223898, + [SMALL_STATE(9449)] = 223909, + [SMALL_STATE(9450)] = 223920, + [SMALL_STATE(9451)] = 223931, + [SMALL_STATE(9452)] = 223942, + [SMALL_STATE(9453)] = 223953, + [SMALL_STATE(9454)] = 223964, + [SMALL_STATE(9455)] = 223975, + [SMALL_STATE(9456)] = 223986, + [SMALL_STATE(9457)] = 223997, + [SMALL_STATE(9458)] = 224008, + [SMALL_STATE(9459)] = 224019, + [SMALL_STATE(9460)] = 224030, + [SMALL_STATE(9461)] = 224041, + [SMALL_STATE(9462)] = 224052, + [SMALL_STATE(9463)] = 224061, + [SMALL_STATE(9464)] = 224072, + [SMALL_STATE(9465)] = 224083, + [SMALL_STATE(9466)] = 224094, + [SMALL_STATE(9467)] = 224105, + [SMALL_STATE(9468)] = 224116, + [SMALL_STATE(9469)] = 224125, + [SMALL_STATE(9470)] = 224136, + [SMALL_STATE(9471)] = 224147, + [SMALL_STATE(9472)] = 224158, + [SMALL_STATE(9473)] = 224167, + [SMALL_STATE(9474)] = 224178, + [SMALL_STATE(9475)] = 224189, + [SMALL_STATE(9476)] = 224200, + [SMALL_STATE(9477)] = 224211, + [SMALL_STATE(9478)] = 224222, + [SMALL_STATE(9479)] = 224233, + [SMALL_STATE(9480)] = 224244, + [SMALL_STATE(9481)] = 224253, + [SMALL_STATE(9482)] = 224264, + [SMALL_STATE(9483)] = 224275, + [SMALL_STATE(9484)] = 224284, + [SMALL_STATE(9485)] = 224295, + [SMALL_STATE(9486)] = 224306, + [SMALL_STATE(9487)] = 224317, + [SMALL_STATE(9488)] = 224328, + [SMALL_STATE(9489)] = 224339, + [SMALL_STATE(9490)] = 224348, + [SMALL_STATE(9491)] = 224359, + [SMALL_STATE(9492)] = 224370, + [SMALL_STATE(9493)] = 224379, + [SMALL_STATE(9494)] = 224390, + [SMALL_STATE(9495)] = 224399, + [SMALL_STATE(9496)] = 224410, + [SMALL_STATE(9497)] = 224419, + [SMALL_STATE(9498)] = 224430, + [SMALL_STATE(9499)] = 224441, + [SMALL_STATE(9500)] = 224452, + [SMALL_STATE(9501)] = 224463, + [SMALL_STATE(9502)] = 224472, + [SMALL_STATE(9503)] = 224483, + [SMALL_STATE(9504)] = 224494, + [SMALL_STATE(9505)] = 224505, + [SMALL_STATE(9506)] = 224516, + [SMALL_STATE(9507)] = 224527, + [SMALL_STATE(9508)] = 224538, + [SMALL_STATE(9509)] = 224549, + [SMALL_STATE(9510)] = 224560, + [SMALL_STATE(9511)] = 224571, + [SMALL_STATE(9512)] = 224582, + [SMALL_STATE(9513)] = 224593, + [SMALL_STATE(9514)] = 224602, + [SMALL_STATE(9515)] = 224611, + [SMALL_STATE(9516)] = 224622, + [SMALL_STATE(9517)] = 224633, + [SMALL_STATE(9518)] = 224641, + [SMALL_STATE(9519)] = 224649, + [SMALL_STATE(9520)] = 224657, + [SMALL_STATE(9521)] = 224665, + [SMALL_STATE(9522)] = 224673, + [SMALL_STATE(9523)] = 224681, + [SMALL_STATE(9524)] = 224689, + [SMALL_STATE(9525)] = 224697, + [SMALL_STATE(9526)] = 224705, + [SMALL_STATE(9527)] = 224713, + [SMALL_STATE(9528)] = 224721, + [SMALL_STATE(9529)] = 224729, + [SMALL_STATE(9530)] = 224737, + [SMALL_STATE(9531)] = 224745, + [SMALL_STATE(9532)] = 224753, + [SMALL_STATE(9533)] = 224761, + [SMALL_STATE(9534)] = 224769, + [SMALL_STATE(9535)] = 224777, + [SMALL_STATE(9536)] = 224785, + [SMALL_STATE(9537)] = 224793, + [SMALL_STATE(9538)] = 224801, + [SMALL_STATE(9539)] = 224809, + [SMALL_STATE(9540)] = 224817, + [SMALL_STATE(9541)] = 224825, + [SMALL_STATE(9542)] = 224833, + [SMALL_STATE(9543)] = 224841, + [SMALL_STATE(9544)] = 224849, + [SMALL_STATE(9545)] = 224857, + [SMALL_STATE(9546)] = 224865, + [SMALL_STATE(9547)] = 224873, + [SMALL_STATE(9548)] = 224881, + [SMALL_STATE(9549)] = 224889, + [SMALL_STATE(9550)] = 224897, + [SMALL_STATE(9551)] = 224905, + [SMALL_STATE(9552)] = 224913, + [SMALL_STATE(9553)] = 224921, + [SMALL_STATE(9554)] = 224929, + [SMALL_STATE(9555)] = 224937, + [SMALL_STATE(9556)] = 224945, + [SMALL_STATE(9557)] = 224953, + [SMALL_STATE(9558)] = 224961, + [SMALL_STATE(9559)] = 224969, + [SMALL_STATE(9560)] = 224977, + [SMALL_STATE(9561)] = 224985, + [SMALL_STATE(9562)] = 224993, + [SMALL_STATE(9563)] = 225001, + [SMALL_STATE(9564)] = 225009, + [SMALL_STATE(9565)] = 225017, + [SMALL_STATE(9566)] = 225025, + [SMALL_STATE(9567)] = 225033, + [SMALL_STATE(9568)] = 225041, + [SMALL_STATE(9569)] = 225049, + [SMALL_STATE(9570)] = 225057, + [SMALL_STATE(9571)] = 225065, + [SMALL_STATE(9572)] = 225073, + [SMALL_STATE(9573)] = 225081, + [SMALL_STATE(9574)] = 225089, + [SMALL_STATE(9575)] = 225097, + [SMALL_STATE(9576)] = 225105, + [SMALL_STATE(9577)] = 225113, + [SMALL_STATE(9578)] = 225121, + [SMALL_STATE(9579)] = 225129, + [SMALL_STATE(9580)] = 225137, + [SMALL_STATE(9581)] = 225145, + [SMALL_STATE(9582)] = 225153, + [SMALL_STATE(9583)] = 225161, + [SMALL_STATE(9584)] = 225169, + [SMALL_STATE(9585)] = 225177, + [SMALL_STATE(9586)] = 225185, + [SMALL_STATE(9587)] = 225193, + [SMALL_STATE(9588)] = 225201, + [SMALL_STATE(9589)] = 225209, + [SMALL_STATE(9590)] = 225217, + [SMALL_STATE(9591)] = 225225, + [SMALL_STATE(9592)] = 225233, + [SMALL_STATE(9593)] = 225241, + [SMALL_STATE(9594)] = 225249, + [SMALL_STATE(9595)] = 225257, + [SMALL_STATE(9596)] = 225265, + [SMALL_STATE(9597)] = 225273, + [SMALL_STATE(9598)] = 225281, + [SMALL_STATE(9599)] = 225289, + [SMALL_STATE(9600)] = 225297, + [SMALL_STATE(9601)] = 225305, + [SMALL_STATE(9602)] = 225313, + [SMALL_STATE(9603)] = 225321, + [SMALL_STATE(9604)] = 225329, + [SMALL_STATE(9605)] = 225337, + [SMALL_STATE(9606)] = 225345, + [SMALL_STATE(9607)] = 225353, + [SMALL_STATE(9608)] = 225361, + [SMALL_STATE(9609)] = 225369, + [SMALL_STATE(9610)] = 225377, + [SMALL_STATE(9611)] = 225385, + [SMALL_STATE(9612)] = 225393, + [SMALL_STATE(9613)] = 225401, + [SMALL_STATE(9614)] = 225409, + [SMALL_STATE(9615)] = 225417, + [SMALL_STATE(9616)] = 225425, + [SMALL_STATE(9617)] = 225433, + [SMALL_STATE(9618)] = 225441, + [SMALL_STATE(9619)] = 225449, + [SMALL_STATE(9620)] = 225457, + [SMALL_STATE(9621)] = 225465, + [SMALL_STATE(9622)] = 225473, + [SMALL_STATE(9623)] = 225481, + [SMALL_STATE(9624)] = 225489, + [SMALL_STATE(9625)] = 225497, + [SMALL_STATE(9626)] = 225505, + [SMALL_STATE(9627)] = 225513, + [SMALL_STATE(9628)] = 225521, + [SMALL_STATE(9629)] = 225529, + [SMALL_STATE(9630)] = 225537, + [SMALL_STATE(9631)] = 225545, + [SMALL_STATE(9632)] = 225553, + [SMALL_STATE(9633)] = 225561, + [SMALL_STATE(9634)] = 225569, + [SMALL_STATE(9635)] = 225577, + [SMALL_STATE(9636)] = 225585, + [SMALL_STATE(9637)] = 225593, + [SMALL_STATE(9638)] = 225601, + [SMALL_STATE(9639)] = 225609, + [SMALL_STATE(9640)] = 225617, + [SMALL_STATE(9641)] = 225625, + [SMALL_STATE(9642)] = 225633, + [SMALL_STATE(9643)] = 225641, + [SMALL_STATE(9644)] = 225649, + [SMALL_STATE(9645)] = 225657, + [SMALL_STATE(9646)] = 225665, + [SMALL_STATE(9647)] = 225673, + [SMALL_STATE(9648)] = 225681, + [SMALL_STATE(9649)] = 225689, + [SMALL_STATE(9650)] = 225697, + [SMALL_STATE(9651)] = 225705, + [SMALL_STATE(9652)] = 225713, + [SMALL_STATE(9653)] = 225721, + [SMALL_STATE(9654)] = 225729, + [SMALL_STATE(9655)] = 225737, + [SMALL_STATE(9656)] = 225745, + [SMALL_STATE(9657)] = 225753, + [SMALL_STATE(9658)] = 225761, + [SMALL_STATE(9659)] = 225769, + [SMALL_STATE(9660)] = 225777, + [SMALL_STATE(9661)] = 225785, + [SMALL_STATE(9662)] = 225793, + [SMALL_STATE(9663)] = 225801, + [SMALL_STATE(9664)] = 225809, + [SMALL_STATE(9665)] = 225817, + [SMALL_STATE(9666)] = 225825, + [SMALL_STATE(9667)] = 225833, + [SMALL_STATE(9668)] = 225841, + [SMALL_STATE(9669)] = 225849, + [SMALL_STATE(9670)] = 225857, + [SMALL_STATE(9671)] = 225865, + [SMALL_STATE(9672)] = 225873, + [SMALL_STATE(9673)] = 225881, + [SMALL_STATE(9674)] = 225889, + [SMALL_STATE(9675)] = 225897, + [SMALL_STATE(9676)] = 225905, + [SMALL_STATE(9677)] = 225913, + [SMALL_STATE(9678)] = 225921, + [SMALL_STATE(9679)] = 225929, + [SMALL_STATE(9680)] = 225937, + [SMALL_STATE(9681)] = 225945, + [SMALL_STATE(9682)] = 225953, + [SMALL_STATE(9683)] = 225961, + [SMALL_STATE(9684)] = 225969, + [SMALL_STATE(9685)] = 225977, + [SMALL_STATE(9686)] = 225985, + [SMALL_STATE(9687)] = 225993, + [SMALL_STATE(9688)] = 226001, + [SMALL_STATE(9689)] = 226009, + [SMALL_STATE(9690)] = 226017, + [SMALL_STATE(9691)] = 226025, + [SMALL_STATE(9692)] = 226033, + [SMALL_STATE(9693)] = 226041, + [SMALL_STATE(9694)] = 226049, + [SMALL_STATE(9695)] = 226057, + [SMALL_STATE(9696)] = 226065, + [SMALL_STATE(9697)] = 226073, + [SMALL_STATE(9698)] = 226081, + [SMALL_STATE(9699)] = 226089, + [SMALL_STATE(9700)] = 226097, + [SMALL_STATE(9701)] = 226105, + [SMALL_STATE(9702)] = 226113, + [SMALL_STATE(9703)] = 226121, + [SMALL_STATE(9704)] = 226129, + [SMALL_STATE(9705)] = 226137, + [SMALL_STATE(9706)] = 226145, + [SMALL_STATE(9707)] = 226153, + [SMALL_STATE(9708)] = 226161, + [SMALL_STATE(9709)] = 226169, + [SMALL_STATE(9710)] = 226177, + [SMALL_STATE(9711)] = 226185, + [SMALL_STATE(9712)] = 226193, + [SMALL_STATE(9713)] = 226201, + [SMALL_STATE(9714)] = 226209, + [SMALL_STATE(9715)] = 226217, + [SMALL_STATE(9716)] = 226225, + [SMALL_STATE(9717)] = 226233, + [SMALL_STATE(9718)] = 226241, + [SMALL_STATE(9719)] = 226249, + [SMALL_STATE(9720)] = 226257, + [SMALL_STATE(9721)] = 226265, + [SMALL_STATE(9722)] = 226273, + [SMALL_STATE(9723)] = 226281, + [SMALL_STATE(9724)] = 226289, + [SMALL_STATE(9725)] = 226297, + [SMALL_STATE(9726)] = 226305, + [SMALL_STATE(9727)] = 226313, + [SMALL_STATE(9728)] = 226321, + [SMALL_STATE(9729)] = 226329, + [SMALL_STATE(9730)] = 226337, + [SMALL_STATE(9731)] = 226345, + [SMALL_STATE(9732)] = 226353, + [SMALL_STATE(9733)] = 226361, + [SMALL_STATE(9734)] = 226369, + [SMALL_STATE(9735)] = 226377, + [SMALL_STATE(9736)] = 226385, + [SMALL_STATE(9737)] = 226393, + [SMALL_STATE(9738)] = 226401, + [SMALL_STATE(9739)] = 226409, + [SMALL_STATE(9740)] = 226417, + [SMALL_STATE(9741)] = 226425, + [SMALL_STATE(9742)] = 226433, + [SMALL_STATE(9743)] = 226441, + [SMALL_STATE(9744)] = 226449, + [SMALL_STATE(9745)] = 226457, + [SMALL_STATE(9746)] = 226465, + [SMALL_STATE(9747)] = 226473, + [SMALL_STATE(9748)] = 226481, + [SMALL_STATE(9749)] = 226489, + [SMALL_STATE(9750)] = 226497, + [SMALL_STATE(9751)] = 226505, + [SMALL_STATE(9752)] = 226513, + [SMALL_STATE(9753)] = 226521, + [SMALL_STATE(9754)] = 226529, + [SMALL_STATE(9755)] = 226537, + [SMALL_STATE(9756)] = 226545, + [SMALL_STATE(9757)] = 226553, + [SMALL_STATE(9758)] = 226561, + [SMALL_STATE(9759)] = 226569, + [SMALL_STATE(9760)] = 226577, + [SMALL_STATE(9761)] = 226585, + [SMALL_STATE(9762)] = 226593, + [SMALL_STATE(9763)] = 226601, + [SMALL_STATE(9764)] = 226609, + [SMALL_STATE(9765)] = 226617, + [SMALL_STATE(9766)] = 226625, + [SMALL_STATE(9767)] = 226633, + [SMALL_STATE(9768)] = 226641, + [SMALL_STATE(9769)] = 226649, + [SMALL_STATE(9770)] = 226657, + [SMALL_STATE(9771)] = 226665, + [SMALL_STATE(9772)] = 226673, + [SMALL_STATE(9773)] = 226681, + [SMALL_STATE(9774)] = 226689, + [SMALL_STATE(9775)] = 226697, + [SMALL_STATE(9776)] = 226705, + [SMALL_STATE(9777)] = 226713, + [SMALL_STATE(9778)] = 226721, + [SMALL_STATE(9779)] = 226729, + [SMALL_STATE(9780)] = 226737, + [SMALL_STATE(9781)] = 226745, + [SMALL_STATE(9782)] = 226753, + [SMALL_STATE(9783)] = 226761, + [SMALL_STATE(9784)] = 226769, + [SMALL_STATE(9785)] = 226777, + [SMALL_STATE(9786)] = 226785, + [SMALL_STATE(9787)] = 226793, + [SMALL_STATE(9788)] = 226801, + [SMALL_STATE(9789)] = 226809, + [SMALL_STATE(9790)] = 226817, + [SMALL_STATE(9791)] = 226825, + [SMALL_STATE(9792)] = 226833, + [SMALL_STATE(9793)] = 226841, + [SMALL_STATE(9794)] = 226849, + [SMALL_STATE(9795)] = 226857, + [SMALL_STATE(9796)] = 226865, + [SMALL_STATE(9797)] = 226873, + [SMALL_STATE(9798)] = 226881, + [SMALL_STATE(9799)] = 226889, + [SMALL_STATE(9800)] = 226897, + [SMALL_STATE(9801)] = 226905, + [SMALL_STATE(9802)] = 226913, + [SMALL_STATE(9803)] = 226921, + [SMALL_STATE(9804)] = 226929, + [SMALL_STATE(9805)] = 226937, + [SMALL_STATE(9806)] = 226945, + [SMALL_STATE(9807)] = 226953, + [SMALL_STATE(9808)] = 226961, + [SMALL_STATE(9809)] = 226969, + [SMALL_STATE(9810)] = 226977, + [SMALL_STATE(9811)] = 226985, + [SMALL_STATE(9812)] = 226993, + [SMALL_STATE(9813)] = 227001, + [SMALL_STATE(9814)] = 227009, + [SMALL_STATE(9815)] = 227017, + [SMALL_STATE(9816)] = 227025, + [SMALL_STATE(9817)] = 227033, + [SMALL_STATE(9818)] = 227041, + [SMALL_STATE(9819)] = 227049, + [SMALL_STATE(9820)] = 227057, + [SMALL_STATE(9821)] = 227065, + [SMALL_STATE(9822)] = 227073, + [SMALL_STATE(9823)] = 227081, + [SMALL_STATE(9824)] = 227089, + [SMALL_STATE(9825)] = 227097, + [SMALL_STATE(9826)] = 227105, + [SMALL_STATE(9827)] = 227113, + [SMALL_STATE(9828)] = 227121, + [SMALL_STATE(9829)] = 227129, + [SMALL_STATE(9830)] = 227137, + [SMALL_STATE(9831)] = 227145, + [SMALL_STATE(9832)] = 227153, + [SMALL_STATE(9833)] = 227161, + [SMALL_STATE(9834)] = 227169, + [SMALL_STATE(9835)] = 227177, + [SMALL_STATE(9836)] = 227185, + [SMALL_STATE(9837)] = 227193, + [SMALL_STATE(9838)] = 227201, + [SMALL_STATE(9839)] = 227209, + [SMALL_STATE(9840)] = 227217, + [SMALL_STATE(9841)] = 227225, + [SMALL_STATE(9842)] = 227233, + [SMALL_STATE(9843)] = 227241, + [SMALL_STATE(9844)] = 227249, + [SMALL_STATE(9845)] = 227257, + [SMALL_STATE(9846)] = 227265, + [SMALL_STATE(9847)] = 227273, + [SMALL_STATE(9848)] = 227281, + [SMALL_STATE(9849)] = 227289, + [SMALL_STATE(9850)] = 227297, + [SMALL_STATE(9851)] = 227305, + [SMALL_STATE(9852)] = 227313, + [SMALL_STATE(9853)] = 227321, + [SMALL_STATE(9854)] = 227329, + [SMALL_STATE(9855)] = 227337, + [SMALL_STATE(9856)] = 227345, + [SMALL_STATE(9857)] = 227353, + [SMALL_STATE(9858)] = 227361, + [SMALL_STATE(9859)] = 227369, + [SMALL_STATE(9860)] = 227377, + [SMALL_STATE(9861)] = 227385, + [SMALL_STATE(9862)] = 227393, + [SMALL_STATE(9863)] = 227401, + [SMALL_STATE(9864)] = 227409, + [SMALL_STATE(9865)] = 227417, + [SMALL_STATE(9866)] = 227425, + [SMALL_STATE(9867)] = 227433, + [SMALL_STATE(9868)] = 227441, + [SMALL_STATE(9869)] = 227449, + [SMALL_STATE(9870)] = 227457, + [SMALL_STATE(9871)] = 227465, + [SMALL_STATE(9872)] = 227473, + [SMALL_STATE(9873)] = 227481, + [SMALL_STATE(9874)] = 227489, + [SMALL_STATE(9875)] = 227497, + [SMALL_STATE(9876)] = 227505, + [SMALL_STATE(9877)] = 227513, + [SMALL_STATE(9878)] = 227521, + [SMALL_STATE(9879)] = 227529, + [SMALL_STATE(9880)] = 227537, + [SMALL_STATE(9881)] = 227545, + [SMALL_STATE(9882)] = 227553, + [SMALL_STATE(9883)] = 227561, + [SMALL_STATE(9884)] = 227569, + [SMALL_STATE(9885)] = 227577, + [SMALL_STATE(9886)] = 227585, + [SMALL_STATE(9887)] = 227593, + [SMALL_STATE(9888)] = 227601, + [SMALL_STATE(9889)] = 227609, + [SMALL_STATE(9890)] = 227617, + [SMALL_STATE(9891)] = 227625, + [SMALL_STATE(9892)] = 227633, + [SMALL_STATE(9893)] = 227641, + [SMALL_STATE(9894)] = 227649, + [SMALL_STATE(9895)] = 227657, + [SMALL_STATE(9896)] = 227665, + [SMALL_STATE(9897)] = 227673, + [SMALL_STATE(9898)] = 227681, + [SMALL_STATE(9899)] = 227689, + [SMALL_STATE(9900)] = 227697, + [SMALL_STATE(9901)] = 227705, + [SMALL_STATE(9902)] = 227713, + [SMALL_STATE(9903)] = 227721, + [SMALL_STATE(9904)] = 227729, + [SMALL_STATE(9905)] = 227737, + [SMALL_STATE(9906)] = 227745, + [SMALL_STATE(9907)] = 227753, + [SMALL_STATE(9908)] = 227761, + [SMALL_STATE(9909)] = 227769, + [SMALL_STATE(9910)] = 227777, + [SMALL_STATE(9911)] = 227785, + [SMALL_STATE(9912)] = 227793, + [SMALL_STATE(9913)] = 227801, + [SMALL_STATE(9914)] = 227809, + [SMALL_STATE(9915)] = 227817, + [SMALL_STATE(9916)] = 227825, + [SMALL_STATE(9917)] = 227833, + [SMALL_STATE(9918)] = 227841, + [SMALL_STATE(9919)] = 227849, + [SMALL_STATE(9920)] = 227857, + [SMALL_STATE(9921)] = 227865, + [SMALL_STATE(9922)] = 227873, + [SMALL_STATE(9923)] = 227881, + [SMALL_STATE(9924)] = 227889, + [SMALL_STATE(9925)] = 227897, + [SMALL_STATE(9926)] = 227905, + [SMALL_STATE(9927)] = 227913, + [SMALL_STATE(9928)] = 227921, + [SMALL_STATE(9929)] = 227929, + [SMALL_STATE(9930)] = 227937, + [SMALL_STATE(9931)] = 227945, + [SMALL_STATE(9932)] = 227953, + [SMALL_STATE(9933)] = 227961, + [SMALL_STATE(9934)] = 227969, + [SMALL_STATE(9935)] = 227977, + [SMALL_STATE(9936)] = 227985, + [SMALL_STATE(9937)] = 227993, + [SMALL_STATE(9938)] = 228001, + [SMALL_STATE(9939)] = 228009, + [SMALL_STATE(9940)] = 228017, + [SMALL_STATE(9941)] = 228025, + [SMALL_STATE(9942)] = 228033, + [SMALL_STATE(9943)] = 228041, + [SMALL_STATE(9944)] = 228049, + [SMALL_STATE(9945)] = 228057, + [SMALL_STATE(9946)] = 228065, + [SMALL_STATE(9947)] = 228073, + [SMALL_STATE(9948)] = 228081, + [SMALL_STATE(9949)] = 228089, + [SMALL_STATE(9950)] = 228097, + [SMALL_STATE(9951)] = 228105, + [SMALL_STATE(9952)] = 228113, + [SMALL_STATE(9953)] = 228121, + [SMALL_STATE(9954)] = 228129, + [SMALL_STATE(9955)] = 228137, + [SMALL_STATE(9956)] = 228145, + [SMALL_STATE(9957)] = 228153, + [SMALL_STATE(9958)] = 228161, + [SMALL_STATE(9959)] = 228169, + [SMALL_STATE(9960)] = 228177, + [SMALL_STATE(9961)] = 228185, + [SMALL_STATE(9962)] = 228193, + [SMALL_STATE(9963)] = 228201, + [SMALL_STATE(9964)] = 228209, + [SMALL_STATE(9965)] = 228217, + [SMALL_STATE(9966)] = 228225, + [SMALL_STATE(9967)] = 228233, + [SMALL_STATE(9968)] = 228241, + [SMALL_STATE(9969)] = 228249, + [SMALL_STATE(9970)] = 228257, + [SMALL_STATE(9971)] = 228265, + [SMALL_STATE(9972)] = 228273, + [SMALL_STATE(9973)] = 228281, + [SMALL_STATE(9974)] = 228289, + [SMALL_STATE(9975)] = 228297, + [SMALL_STATE(9976)] = 228305, + [SMALL_STATE(9977)] = 228313, + [SMALL_STATE(9978)] = 228321, + [SMALL_STATE(9979)] = 228329, + [SMALL_STATE(9980)] = 228337, + [SMALL_STATE(9981)] = 228345, + [SMALL_STATE(9982)] = 228353, + [SMALL_STATE(9983)] = 228361, + [SMALL_STATE(9984)] = 228369, + [SMALL_STATE(9985)] = 228377, + [SMALL_STATE(9986)] = 228385, + [SMALL_STATE(9987)] = 228393, + [SMALL_STATE(9988)] = 228401, + [SMALL_STATE(9989)] = 228409, + [SMALL_STATE(9990)] = 228417, + [SMALL_STATE(9991)] = 228425, + [SMALL_STATE(9992)] = 228433, + [SMALL_STATE(9993)] = 228441, + [SMALL_STATE(9994)] = 228449, + [SMALL_STATE(9995)] = 228457, + [SMALL_STATE(9996)] = 228465, + [SMALL_STATE(9997)] = 228473, + [SMALL_STATE(9998)] = 228481, + [SMALL_STATE(9999)] = 228489, + [SMALL_STATE(10000)] = 228497, + [SMALL_STATE(10001)] = 228505, + [SMALL_STATE(10002)] = 228513, + [SMALL_STATE(10003)] = 228521, + [SMALL_STATE(10004)] = 228529, + [SMALL_STATE(10005)] = 228537, + [SMALL_STATE(10006)] = 228545, + [SMALL_STATE(10007)] = 228553, + [SMALL_STATE(10008)] = 228561, + [SMALL_STATE(10009)] = 228569, + [SMALL_STATE(10010)] = 228577, + [SMALL_STATE(10011)] = 228585, + [SMALL_STATE(10012)] = 228593, + [SMALL_STATE(10013)] = 228601, + [SMALL_STATE(10014)] = 228609, + [SMALL_STATE(10015)] = 228617, + [SMALL_STATE(10016)] = 228625, + [SMALL_STATE(10017)] = 228633, + [SMALL_STATE(10018)] = 228641, + [SMALL_STATE(10019)] = 228649, + [SMALL_STATE(10020)] = 228657, + [SMALL_STATE(10021)] = 228665, + [SMALL_STATE(10022)] = 228673, + [SMALL_STATE(10023)] = 228681, + [SMALL_STATE(10024)] = 228689, + [SMALL_STATE(10025)] = 228697, + [SMALL_STATE(10026)] = 228705, + [SMALL_STATE(10027)] = 228713, + [SMALL_STATE(10028)] = 228721, + [SMALL_STATE(10029)] = 228729, + [SMALL_STATE(10030)] = 228737, + [SMALL_STATE(10031)] = 228745, + [SMALL_STATE(10032)] = 228753, + [SMALL_STATE(10033)] = 228761, + [SMALL_STATE(10034)] = 228769, + [SMALL_STATE(10035)] = 228777, + [SMALL_STATE(10036)] = 228785, + [SMALL_STATE(10037)] = 228793, + [SMALL_STATE(10038)] = 228801, + [SMALL_STATE(10039)] = 228809, + [SMALL_STATE(10040)] = 228817, + [SMALL_STATE(10041)] = 228825, + [SMALL_STATE(10042)] = 228833, + [SMALL_STATE(10043)] = 228841, + [SMALL_STATE(10044)] = 228849, + [SMALL_STATE(10045)] = 228857, + [SMALL_STATE(10046)] = 228865, + [SMALL_STATE(10047)] = 228873, + [SMALL_STATE(10048)] = 228881, + [SMALL_STATE(10049)] = 228889, + [SMALL_STATE(10050)] = 228897, + [SMALL_STATE(10051)] = 228905, + [SMALL_STATE(10052)] = 228913, + [SMALL_STATE(10053)] = 228921, + [SMALL_STATE(10054)] = 228929, + [SMALL_STATE(10055)] = 228937, + [SMALL_STATE(10056)] = 228945, + [SMALL_STATE(10057)] = 228953, + [SMALL_STATE(10058)] = 228961, + [SMALL_STATE(10059)] = 228969, + [SMALL_STATE(10060)] = 228977, + [SMALL_STATE(10061)] = 228985, + [SMALL_STATE(10062)] = 228993, + [SMALL_STATE(10063)] = 229001, + [SMALL_STATE(10064)] = 229009, + [SMALL_STATE(10065)] = 229017, + [SMALL_STATE(10066)] = 229025, + [SMALL_STATE(10067)] = 229033, + [SMALL_STATE(10068)] = 229041, + [SMALL_STATE(10069)] = 229049, + [SMALL_STATE(10070)] = 229057, + [SMALL_STATE(10071)] = 229065, + [SMALL_STATE(10072)] = 229073, + [SMALL_STATE(10073)] = 229081, + [SMALL_STATE(10074)] = 229089, + [SMALL_STATE(10075)] = 229097, + [SMALL_STATE(10076)] = 229105, + [SMALL_STATE(10077)] = 229113, + [SMALL_STATE(10078)] = 229121, + [SMALL_STATE(10079)] = 229129, + [SMALL_STATE(10080)] = 229137, + [SMALL_STATE(10081)] = 229145, + [SMALL_STATE(10082)] = 229153, + [SMALL_STATE(10083)] = 229161, + [SMALL_STATE(10084)] = 229169, + [SMALL_STATE(10085)] = 229177, + [SMALL_STATE(10086)] = 229185, + [SMALL_STATE(10087)] = 229193, + [SMALL_STATE(10088)] = 229201, + [SMALL_STATE(10089)] = 229209, + [SMALL_STATE(10090)] = 229217, + [SMALL_STATE(10091)] = 229225, + [SMALL_STATE(10092)] = 229233, + [SMALL_STATE(10093)] = 229241, + [SMALL_STATE(10094)] = 229249, + [SMALL_STATE(10095)] = 229257, + [SMALL_STATE(10096)] = 229265, + [SMALL_STATE(10097)] = 229273, + [SMALL_STATE(10098)] = 229281, + [SMALL_STATE(10099)] = 229289, + [SMALL_STATE(10100)] = 229297, + [SMALL_STATE(10101)] = 229305, + [SMALL_STATE(10102)] = 229313, + [SMALL_STATE(10103)] = 229321, + [SMALL_STATE(10104)] = 229329, + [SMALL_STATE(10105)] = 229337, + [SMALL_STATE(10106)] = 229345, + [SMALL_STATE(10107)] = 229353, + [SMALL_STATE(10108)] = 229361, + [SMALL_STATE(10109)] = 229369, + [SMALL_STATE(10110)] = 229377, + [SMALL_STATE(10111)] = 229385, + [SMALL_STATE(10112)] = 229393, + [SMALL_STATE(10113)] = 229401, + [SMALL_STATE(10114)] = 229409, + [SMALL_STATE(10115)] = 229417, + [SMALL_STATE(10116)] = 229425, + [SMALL_STATE(10117)] = 229433, + [SMALL_STATE(10118)] = 229441, + [SMALL_STATE(10119)] = 229449, + [SMALL_STATE(10120)] = 229457, + [SMALL_STATE(10121)] = 229465, + [SMALL_STATE(10122)] = 229473, + [SMALL_STATE(10123)] = 229481, + [SMALL_STATE(10124)] = 229489, + [SMALL_STATE(10125)] = 229497, + [SMALL_STATE(10126)] = 229505, + [SMALL_STATE(10127)] = 229513, + [SMALL_STATE(10128)] = 229521, + [SMALL_STATE(10129)] = 229529, + [SMALL_STATE(10130)] = 229537, + [SMALL_STATE(10131)] = 229545, + [SMALL_STATE(10132)] = 229553, + [SMALL_STATE(10133)] = 229561, + [SMALL_STATE(10134)] = 229569, + [SMALL_STATE(10135)] = 229577, + [SMALL_STATE(10136)] = 229585, + [SMALL_STATE(10137)] = 229593, + [SMALL_STATE(10138)] = 229601, + [SMALL_STATE(10139)] = 229609, + [SMALL_STATE(10140)] = 229617, + [SMALL_STATE(10141)] = 229625, + [SMALL_STATE(10142)] = 229633, + [SMALL_STATE(10143)] = 229641, + [SMALL_STATE(10144)] = 229649, + [SMALL_STATE(10145)] = 229657, + [SMALL_STATE(10146)] = 229665, + [SMALL_STATE(10147)] = 229673, + [SMALL_STATE(10148)] = 229681, + [SMALL_STATE(10149)] = 229689, + [SMALL_STATE(10150)] = 229697, + [SMALL_STATE(10151)] = 229705, + [SMALL_STATE(10152)] = 229715, + [SMALL_STATE(10153)] = 229723, + [SMALL_STATE(10154)] = 229731, + [SMALL_STATE(10155)] = 229739, + [SMALL_STATE(10156)] = 229747, + [SMALL_STATE(10157)] = 229755, + [SMALL_STATE(10158)] = 229763, + [SMALL_STATE(10159)] = 229771, + [SMALL_STATE(10160)] = 229779, + [SMALL_STATE(10161)] = 229787, + [SMALL_STATE(10162)] = 229795, + [SMALL_STATE(10163)] = 229803, + [SMALL_STATE(10164)] = 229811, + [SMALL_STATE(10165)] = 229819, + [SMALL_STATE(10166)] = 229827, + [SMALL_STATE(10167)] = 229835, + [SMALL_STATE(10168)] = 229843, + [SMALL_STATE(10169)] = 229851, + [SMALL_STATE(10170)] = 229859, + [SMALL_STATE(10171)] = 229867, + [SMALL_STATE(10172)] = 229875, + [SMALL_STATE(10173)] = 229883, + [SMALL_STATE(10174)] = 229891, + [SMALL_STATE(10175)] = 229899, + [SMALL_STATE(10176)] = 229907, + [SMALL_STATE(10177)] = 229915, + [SMALL_STATE(10178)] = 229923, + [SMALL_STATE(10179)] = 229931, + [SMALL_STATE(10180)] = 229939, + [SMALL_STATE(10181)] = 229947, + [SMALL_STATE(10182)] = 229955, + [SMALL_STATE(10183)] = 229963, + [SMALL_STATE(10184)] = 229971, + [SMALL_STATE(10185)] = 229979, + [SMALL_STATE(10186)] = 229987, + [SMALL_STATE(10187)] = 229995, + [SMALL_STATE(10188)] = 230003, + [SMALL_STATE(10189)] = 230011, + [SMALL_STATE(10190)] = 230019, + [SMALL_STATE(10191)] = 230027, + [SMALL_STATE(10192)] = 230035, + [SMALL_STATE(10193)] = 230043, + [SMALL_STATE(10194)] = 230051, + [SMALL_STATE(10195)] = 230059, + [SMALL_STATE(10196)] = 230067, + [SMALL_STATE(10197)] = 230075, + [SMALL_STATE(10198)] = 230083, + [SMALL_STATE(10199)] = 230091, + [SMALL_STATE(10200)] = 230099, + [SMALL_STATE(10201)] = 230107, + [SMALL_STATE(10202)] = 230115, + [SMALL_STATE(10203)] = 230123, + [SMALL_STATE(10204)] = 230131, + [SMALL_STATE(10205)] = 230139, + [SMALL_STATE(10206)] = 230147, + [SMALL_STATE(10207)] = 230155, + [SMALL_STATE(10208)] = 230163, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8971), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9218), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10012), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9822), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9856), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8845), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9219), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9672), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9878), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9901), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 0), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 0), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10188), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9966), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9980), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9928), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8312), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9656), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9783), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9105), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9660), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9813), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9835), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8163), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9619), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9967), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9666), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10014), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9816), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8931), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10148), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7869), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9584), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10189), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10005), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9518), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9890), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10191), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10008), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9871), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10195), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9826), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9861), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9626), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9998), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9902), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10039), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10001), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9887), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9995), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10007), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9851), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10105), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9922), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9983), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10016), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9809), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10031), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9873), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9988), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9831), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9985), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10013), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9819), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10193), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9866), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10084), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9994), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9915), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9693), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9907), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10000), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9891), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10063), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9999), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9897), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10021), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10006), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9857), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10124), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9765), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9929), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 0), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10051), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9933), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9920), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4628), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6730), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1523), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8162), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8158), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10145), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(64), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1468), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7747), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7753), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6480), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5363), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5315), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5116), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5119), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1495), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1290), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10137), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10136), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(237), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10134), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8971), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9218), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1510), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(325), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5120), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8018), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1572), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1572), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5820), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5828), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2794), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5829), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5844), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5668), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5834), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5826), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2782), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8846), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8844), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8896), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8900), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8901), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4620), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4940), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4940), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5122), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8517), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4620), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4628), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8480), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9926), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8891), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9037), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9877), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9829), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9913), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9921), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9883), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9420), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9080), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9131), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9979), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4582), + [2035] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(6680), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1701), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(59), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1774), + [2050] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8943), + [2054] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7660), + [2058] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4581), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4914), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4913), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1836), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1826), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9928), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9039), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9167), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1832), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(322), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4911), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8073), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1826), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9135), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9140), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9147), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9148), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9145), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4831), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4659), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4659), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4900), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8618), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4831), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4582), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8495), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3339), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2103), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(66), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2102), + [2151] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8947), + [2155] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7720), + [2159] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(3360), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3994), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4004), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1773), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1764), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9848), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8867), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9207), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1770), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(290), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4003), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7956), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1764), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8858), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8865), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8879), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8883), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8887), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4000), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3676), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3676), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4001), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8528), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4000), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3339), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8478), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4628), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1523), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(64), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1468), + [2250] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9131), + [2254] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7691), + [2258] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4657), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5116), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5119), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2053), + [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1840), + [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10134), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8971), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9218), + [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1510), + [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(325), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5120), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8018), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1840), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8846), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8844), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8896), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8900), + [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8901), + [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5134), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4940), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4940), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5122), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8517), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5134), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4628), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8480), + [2337] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7772), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2085), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2070), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9979), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2084), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(337), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2070), + [2359] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7656), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2130), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2114), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9901), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2115), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(307), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2114), + [2381] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7667), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2094), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1934), + [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9967), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2054), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(321), + [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1934), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(849), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1983), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(74), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1936), + [2415] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9037), + [2419] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7856), + [2423] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(840), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1128), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1136), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1591), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1563), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9883), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9105), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9249), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1590), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(294), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1206), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7955), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1563), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9115), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9059), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9068), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9074), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1197), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(946), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(946), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1202), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8555), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1197), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(849), + [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8471), + [2499] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7662), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2146), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2153), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9861), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2147), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(287), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2153), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2797), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1839), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(63), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1841), + [2533] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9080), + [2537] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7733), + [2541] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2801), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3153), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3146), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1677), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1673), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9865), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8931), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9228), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1676), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(380), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3139), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8069), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1673), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9118), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9107), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9100), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9098), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3105), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2983), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2983), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3201), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8521), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3105), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2797), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8494), + [2617] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7815), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1616), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1639), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9935), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1631), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(382), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1639), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2979), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1608), + [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(81), + [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1607), + [2651] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8891), + [2655] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7698), + [2659] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2922), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3562), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3554), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1726), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1721), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9871), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8845), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9219), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1724), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(286), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3552), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7928), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1721), + [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8973), + [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8970), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8967), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8965), + [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8953), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3403), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3245), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3245), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3631), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8513), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3403), + [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2979), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8489), + [2738] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7672), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1940), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1989), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9906), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2182), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(329), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1989), + [2760] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7814), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1495), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1572), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9801), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1846), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(401), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1572), + [2782] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7755), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2039), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2055), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9615), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1871), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(381), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2055), + [2804] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7769), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1638), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1577), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9921), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1636), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(293), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1577), + [2826] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7886), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1723), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1683), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9835), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1707), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(284), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1683), + [2848] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7688), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2181), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2193), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9896), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1950), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(398), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2193), + [2870] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7858), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1581), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1583), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9783), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1582), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(285), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1583), + [2892] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7883), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1519), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1517), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9856), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1518), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(280), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1517), + [2914] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7757), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1633), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1630), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9829), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1632), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(291), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1630), + [2936] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7657), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1507), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1524), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9842), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1509), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(320), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1524), + [2958] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7683), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1705), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1733), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9890), + [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1730), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(288), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1733), + [2980] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7786), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1801), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1815), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9913), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1803), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(292), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1815), + [3002] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7676), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1847), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1857), + [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9877), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1852), + [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(289), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1857), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9865), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9615), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2, 0, 0), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2, 0, 0), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3, 0, 0), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), SHIFT(4233), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), + [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), SHIFT(4233), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), SHIFT(4233), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, 0, 0), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), SHIFT(4233), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, 0, 0), + [3122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), SHIFT(4233), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9896), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, 0, 0), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), SHIFT(4233), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2, 0, 0), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2, 0, 0), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 8), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 8), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 6), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 6), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 2), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 2), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 6), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 6), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 8), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 8), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 2), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 2), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, 0, 0), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9784), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4582), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6680), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), + [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8943), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7772), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4581), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4914), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), + [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9979), + [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9784), + [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9039), + [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9167), + [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), + [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4911), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8073), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6371), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6371), + [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9135), + [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9140), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9147), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9148), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9145), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4659), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4659), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4900), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8618), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4582), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8495), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1, 0, 0), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), + [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(1798), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7880), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7880), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7187), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10206), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, 0, 1), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10206), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(8061), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), + [4124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7713), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8061), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 1), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), + [4186] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6765), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [4196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), + [4206] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9785), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, 0, 1), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, 0, 1), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, 0, 3), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, 0, 3), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 8), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 8), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 6), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 6), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 2), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 2), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, 0, 0), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8, 0, 0), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8, 0, 0), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7, 0, 0), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 2), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 2), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 2), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 2), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3, 0, 0), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 6), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 6), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 6), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 6), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 8), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 8), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 8), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 8), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6, 0, 0), + [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(8061), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, 0, 0), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, 0, 0), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 0), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 0), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, 0, 2), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, 0, 2), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2, 0, 0), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2, 0, 0), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 6), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 6), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3, 0, 0), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3, 0, 0), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2, 0, 0), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1, 0, 0), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 6), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 6), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4, 0, 0), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4, 0, 0), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3, 0, 0), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 2), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 2), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3, 0, 0), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3, 0, 0), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5, 0, 0), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, 0, 1), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, 0, 1), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5, 0, 0), + [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 2), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 2), + [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 6), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 6), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2, 0, 0), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3, 0, 0), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4, 0, 0), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2, 0, 0), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2, 0, 0), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 8), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 8), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, 0, 2), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, 0, 2), + [4722] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9805), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2, 0, 0), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2, 0, 0), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2, 0, 0), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2, 0, 0), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 0), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 0), + [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2, 0, 0), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2, 0, 0), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2, 0, 0), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, 0, 0), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 0), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1, 0, 0), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1, 0, 0), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 0), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 9), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 9), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, 0, 0), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, 0, 0), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 10), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 10), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), + [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, 0, 0), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, 0, 0), + [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2, 0, 0), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4, 0, 0), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4, 0, 0), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 6), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 6), + [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, 0, 0), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8, 0, 15), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8, 0, 15), + [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8, 0, 10), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8, 0, 10), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8, 0, 0), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, 0, 2), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, 0, 2), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, 0, 2), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, 0, 2), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, 0, 1), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, 0, 1), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4, 0, 0), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 8), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 8), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, 0, 3), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, 0, 3), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, 0, 3), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, 0, 3), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 14), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 14), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 10), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 10), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 13), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 13), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2, 0, 0), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2, 0, 0), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 0, 0), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4, 0, 0), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 9), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 9), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2, 0, 0), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3, 0, 0), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5, 0, 0), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 2), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 2), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, 0, 2), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, 0, 2), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 6), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 6), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 6), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 6), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6, 0, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1, 0, 0), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [5032] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6738), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 0), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 0), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5042] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6764), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4, 0, 0), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, 0, 6), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, 0, 6), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8, 0, 0), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8, 0, 0), + [5058] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9868), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2, 0, 0), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1, 0, 0), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7959), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 2), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 2), + [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3, 0, 0), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3, 0, 0), + [5107] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6739), + [5111] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9540), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5, 0, 0), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 2), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 2), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, 0, 12), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, 0, 12), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, 0, 0), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, 0, 0), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7, 0, 0), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7, 0, 0), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, 0, 9), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, 0, 9), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7, 0, 0), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, 0, 11), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, 0, 11), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5, 0, 0), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 2), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 2), + [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6, 0, 0), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6, 0, 0), + [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, 0, 6), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, 0, 6), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [5245] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6769), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [5251] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9862), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(6680), + [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8891), + [5269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7698), + [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2922), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [5277] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9665), + [5281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9131), + [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7667), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4657), + [5290] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6760), + [5294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8947), + [5297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7720), + [5300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3360), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9661), + [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7886), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9080), + [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7733), + [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2801), + [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8943), + [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7660), + [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4581), + [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7769), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7755), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7815), + [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7683), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7814), + [5351] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6777), + [5355] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9705), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [5371] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6748), + [5375] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9768), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9037), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7662), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(840), + [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7757), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7856), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7676), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7688), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7672), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), + [5413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7786), + [5416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7883), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7772), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7657), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7656), + [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7858), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7691), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [5456] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6773), + [5460] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9690), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9477), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), SHIFT(6680), + [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7235), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9393), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9955), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [5820] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9526), + [5824] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6790), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [5904] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9684), + [5908] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6776), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [5960] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9563), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9780), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6024] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6788), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10205), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9460), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [6420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10205), + [6423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7865), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [6428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8065), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(8065), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [6444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [6453] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9761), + [6457] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6745), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [6491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10204), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7793), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [6537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8062), + [6540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(8067), + [6543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8067), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(8065), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7279), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7197), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8027), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(9654), + [6610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(8070), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [6619] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9812), + [6623] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6753), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9812), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [6647] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6755), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [6655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(8067), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10199), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [6672] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9914), + [6676] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6780), + [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7285), + [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), + [6686] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9552), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6696] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9537), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7880), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9335), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7185), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(8071), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [6786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10199), + [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8071), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7785), + [6797] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6786), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9751), + [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7994), + [6812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2, 0, 0), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2, 0, 0), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8366), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [6841] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6735), + [6845] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9679), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9785), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5, 0, 0), + [6863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5, 0, 0), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7320), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [6874] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9741), + [6878] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6758), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [6894] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6761), + [6898] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10183), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7, 0, 0), + [6930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7, 0, 0), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2, 0, 0), + [6960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2, 0, 0), + [6962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(8071), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3, 0, 0), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3, 0, 0), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7930), + [6982] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6775), + [6986] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9758), + [6990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7305), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [7003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6746), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [7009] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9673), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [7097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7248), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), + [7112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1353), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(8001), + [7126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7210), + [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2, 0, 0), + [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2, 0, 0), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3, 0, 0), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3, 0, 0), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4, 0, 0), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4, 0, 0), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5, 0, 0), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5, 0, 0), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [7271] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9579), + [7275] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6749), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9986), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [7343] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9709), + [7347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7241), + [7350] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6779), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9798), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [7374] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6752), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [7398] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9616), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [7420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6089), + [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6693), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(5926), + [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), + [7433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6078), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(9390), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6089), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9963), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6678), + [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8162), + [7657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8158), + [7660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(10145), + [7663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9302), + [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), + [7668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(7747), + [7671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9303), + [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9849), + [7677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8081), + [7680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6514), + [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8927), + [7686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8925), + [7689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5782), + [7692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5787), + [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5797), + [7698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5799), + [7701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5544), + [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5813), + [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5770), + [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5786), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9581), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, 0, 0), + [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7, 0, 0), + [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, 0, 0), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, 0, 0), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, 0, 0), + [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), REDUCE(sym_value_argument, 2, 0, 0), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2, 0, 0), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, 0, 0), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1, 0, 0), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6, 0, 0), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5, 0, 0), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10123), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10027), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [8106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7972), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [8111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7799), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10027), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [8129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [8134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [8151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8064), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [8166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7972), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9341), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [8191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7323), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [8218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7961), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [8225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9670), + [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [8241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4718), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [8246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7961), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [8253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7756), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [8274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4771), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7945), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [8332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7961), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7240), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [8388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7327), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [8403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7299), + [8406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7242), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [8417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7929), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9908), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9974), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [8444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6756), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4, 0, 0), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4, 0, 0), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10115), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3, 0, 0), + [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3, 0, 0), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [8505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10059), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10183), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10173), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), + [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6680), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), + [8551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5431), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), + [8558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7243), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [8617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8040), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9844), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [8700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5, 0, 0), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5, 0, 0), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9782), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9695), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), + [8756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6678), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [8793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [8795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [8798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5787), + [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5799), + [8807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), + [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5813), + [8813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5770), + [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5786), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1401), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [8898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7258), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9710), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [8919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9939), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6768), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2, 0, 0), + [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3, 0, 0), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6714), + [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5828), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5829), + [8973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5844), + [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), + [8979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5826), + [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [8992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7952), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9970), + [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10162), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6686), + [9032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), + [9035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5916), + [9038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), + [9041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5921), + [9044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5726), + [9047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), + [9050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5902), + [9053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5920), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [9068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7962), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7904), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9727), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9838), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [9107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8072), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), + [9116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1, 0, 0), + [9118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1, 0, 0), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [9126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5781), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1, 0, 0), + [9131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1, 0, 0), + [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), + [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1, 0, 0), + [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1, 0, 0), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [9143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), + [9149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [9172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8041), + [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7306), + [9178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7300), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [9187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8053), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [9296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [9299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9095), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7971), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10095), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), + [9514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6771), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2, 0, 0), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [9529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), + [9531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6716), + [9534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7907), + [9537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7189), + [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [9544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), + [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [9553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7880), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), + [9558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7239), + [9561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), + [9563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6693), + [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), + [9568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7259), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [9573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), + [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), + [9577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7642), + [9580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), + [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [9588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), + [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6694), + [9593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), + [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), + [9598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(6693), + [9601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(7259), + [9604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), + [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), + [9608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), + [9612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8063), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [9619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6089), + [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), + [9624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6078), + [9627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6089), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [9662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1376), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7953), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [9700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), + [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), + [9710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8007), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2, 0, 0), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [9895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), + [9897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6682), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [9922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1, 0, 0), + [9924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1, 0, 0), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 0), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [9952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6716), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [9957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binding_pattern_kind, 1, 0, 0), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern_kind, 1, 0, 0), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [9963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1356), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [9974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1, 0, 0), + [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1, 0, 0), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [9980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7971), + [9983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7971), + [9986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2, 0, 0), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2, 0, 0), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9918), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [10034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7773), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [10043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7727), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7685), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8005), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [10110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7876), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7855), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [10130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7852), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7848), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [10156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7846), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [10169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7845), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7889), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [10187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7789), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7723), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [10209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1381), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [10224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7837), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7802), + [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7678), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [10241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7681), + [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7809), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [10249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7687), + [10252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7836), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [10257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7654), + [10260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7682), + [10263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7664), + [10266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7673), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [10277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7813), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10190), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10101), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10061), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8683), + [10448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7957), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9655), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10142), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10049), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10120), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10196), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10030), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [10651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2, 0, 0), + [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2, 0, 0), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), + [10687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8075), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1, 0, 0), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [10728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6708), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, 0, 0), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [10807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [10810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8156), + [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [10815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8468), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [10824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7273), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [10837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7206), + [10840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6729), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9755), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9664), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9635), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10199), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 0), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [11009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7200), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10027), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [11132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7326), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), + [11191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2, 0, 0), + [11193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), + [11195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [11200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1, 0, 0), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [11208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 8), + [11210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [11216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8027), + [11219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), + [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, 0, 4), + [11223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, 0, 4), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [11233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), + [11235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), SHIFT_REPEAT(5681), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [11240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 6), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3, 0, 0), + [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, 0, 7), + [11248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, 0, 7), + [11250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 0), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [11282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2, 0, 0), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 8), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [11292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 3, 0, 0), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [11312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 0), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [11326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8223), + [11329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [11339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6681), + [11342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [11344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [11352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6717), + [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 1), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [11383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8905), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [11400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1, 0, 0), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5, 0, 0), + [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 6), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10059), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [11440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2, 0, 0), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [11458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [11461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [11467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, 0, 0), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [11481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4, 0, 0), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10197), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [11569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [11572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [11576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [11617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 0), + [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4, 0, 0), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [11625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5938), + [11628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3, 0, 0), + [11676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), + [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [11703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [11723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(7481), + [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [11744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), + [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [11817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7951), + [11820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 2), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [11878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2, 0, 0), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), + [11932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3, 0, 5), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [11940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1, 0, 0), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [11946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 1), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [11968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1, 0, 0), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [11978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4, 0, 5), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [12016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 5, 0, 5), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [12022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2, 0, 0), + [12024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2, 0, 0), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), + [12028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2, 0, 0), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [12048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3, 0, 0), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [12140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2, 0, 0), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [12150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2, 0, 0), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9931), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [12194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, 0, 2), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), + [12278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2, 0, 0), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3, 0, 0), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [12690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1, 0, 0), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9904), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9787), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), + [12956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 0), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [12976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, 0, 8), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [13002] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [13018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7, 0, 0), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [13034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6, 0, 0), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [13040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 6), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [13062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6, 0, 0), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [13072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 8), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [13122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4, 0, 0), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [13132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 6), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [13152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4, 0, 0), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token__import_list_delimiter = 1, + ts_external_token_safe_nav = 2, + ts_external_token_multiline_comment = 3, + ts_external_token__string_start = 4, + ts_external_token__string_end = 5, + ts_external_token_string_content = 6, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token__import_list_delimiter] = sym__import_list_delimiter, + [ts_external_token_safe_nav] = sym_safe_nav, + [ts_external_token_multiline_comment] = sym_multiline_comment, + [ts_external_token__string_start] = sym__string_start, + [ts_external_token__string_end] = sym__string_end, + [ts_external_token_string_content] = sym_string_content, +}; + +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__import_list_delimiter] = true, + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + [ts_external_token__string_end] = true, + [ts_external_token_string_content] = true, + }, + [2] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [3] = { + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [4] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [5] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_start] = true, + }, + [6] = { + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + }, + [7] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_safe_nav] = true, + [ts_external_token_multiline_comment] = true, + }, + [8] = { + [ts_external_token_multiline_comment] = true, + }, + [9] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_multiline_comment] = true, + }, + [10] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__string_end] = true, + [ts_external_token_string_content] = true, + }, + [11] = { + [ts_external_token__import_list_delimiter] = true, + [ts_external_token_multiline_comment] = true, + }, +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_kotlin_external_scanner_create(void); +void tree_sitter_kotlin_external_scanner_destroy(void *); +bool tree_sitter_kotlin_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_kotlin_external_scanner_serialize(void *, char *); +void tree_sitter_kotlin_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_kotlin(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym__alpha_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_kotlin_external_scanner_create, + tree_sitter_kotlin_external_scanner_destroy, + tree_sitter_kotlin_external_scanner_scan, + tree_sitter_kotlin_external_scanner_serialize, + tree_sitter_kotlin_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/scanner.c b/resources/language-metavariables/tree-sitter-kotlin/src/scanner.c new file mode 100644 index 000000000..4c9bd7867 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/scanner.c @@ -0,0 +1,533 @@ +#include "tree_sitter/array.h" +#include "tree_sitter/parser.h" + +#include +#include + +// Mostly a copy paste of tree-sitter-javascript/src/scanner.c + +enum TokenType { + AUTOMATIC_SEMICOLON, + IMPORT_LIST_DELIMITER, + SAFE_NAV, + MULTILINE_COMMENT, + STRING_START, + STRING_END, + STRING_CONTENT, +}; + +/* Pretty much all of this code is taken from the Julia tree-sitter + parser. + + Julia has similar problems with multiline comments that can be nested, + line comments, as well as line and multiline strings. + + The most heavily edited section is `scan_string_content`, + particularly with respect to interpolation. + */ + +// Block comments are easy to parse, but strings require extra-attention. + +// The main problems that arise when parsing strings are: +// 1. Triple quoted strings allow single quotes inside. e.g. """ "foo" """. +// 2. Non-standard string literals don't allow interpolations or escape +// sequences, but you can always write \" and \`. + +// To efficiently store a delimiter, we take advantage of the fact that: +// (int)'"' == 34 && (34 & 1) == 0 +// i.e. " has an even numeric representation, so we can store a triple +// quoted delimiter as (delimiter + 1). + +#define DELIMITER_LENGTH 3 + +typedef char Delimiter; + +// We use a stack to keep track of the string delimiters. +typedef Array(Delimiter) Stack; + +static inline void stack_push(Stack *stack, char chr, bool triple) { + if (stack->size >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) abort(); + array_push(stack, (Delimiter)(triple ? (chr + 1) : chr)); +} + +static inline Delimiter stack_pop(Stack *stack) { + if (stack->size == 0) abort(); + return array_pop(stack); +} + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +// Scanner functions + +static bool scan_string_start(TSLexer *lexer, Stack *stack) { + if (lexer->lookahead != '"') return false; + advance(lexer); + lexer->mark_end(lexer); + for (unsigned count = 1; count < DELIMITER_LENGTH; ++count) { + if (lexer->lookahead != '"') { + // It's not a triple quoted delimiter. + stack_push(stack, '"', false); + return true; + } + advance(lexer); + } + lexer->mark_end(lexer); + stack_push(stack, '"', true); + return true; +} + +static bool scan_string_content(TSLexer *lexer, Stack *stack) { + if (stack->size == 0) return false; // Stack is empty. We're not in a string. + Delimiter end_char = stack->contents[stack->size - 1]; // peek + bool is_triple = false; + bool has_content = false; + if (end_char & 1) { + is_triple = true; + end_char -= 1; + } + while (lexer->lookahead) { + if (lexer->lookahead == '$') { + // if we did not just start reading stuff, then we should stop + // lexing right here, so we can offer the opportunity to lex a + // interpolated identifier + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + // otherwise, if this is the start, determine if it is an + // interpolated identifier. + // otherwise, it's just string content, so continue + advance(lexer); + if (iswalpha(lexer->lookahead) || lexer->lookahead == '{') { + // this must be a string interpolation, let's + // fail so we parse it as such + return false; + } + lexer->result_symbol = STRING_CONTENT; + lexer->mark_end(lexer); + return true; + } + if (lexer->lookahead == '\\') { + // if we see a \, then this might possibly escape a dollar sign + // in which case, we should not defer to the interpolation + advance(lexer); + // this dollar sign is escaped, so it must be content. + // we consume it here so we don't enter the dollar sign case above, + // which leaves the possibility that it is an interpolation + if (lexer->lookahead == '$') { + advance(lexer); + // however this leaves an edgecase where an escaped dollar sign could + // appear at the end of a string (e.g "aa\$") which isn't handled + // correctly; if we were at the end of the string, terminate properly + if (lexer->lookahead == end_char) { + stack_pop(stack); + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = STRING_END; + return true; + } + } + } else if (lexer->lookahead == end_char) { + if (is_triple) { + lexer->mark_end(lexer); + for (unsigned count = 1; count < DELIMITER_LENGTH; ++count) { + advance(lexer); + if (lexer->lookahead != end_char) { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + } + + /* This is so if we lex something like + """foo""" + ^ + where we are at the `f`, we should quit after + reading `foo`, and ascribe it to STRING_CONTENT. + + Then, we restart and try to read the end. + This is to prevent `foo` from being absorbed into + the STRING_END token. + */ + if (has_content && lexer->lookahead == end_char) { + lexer->result_symbol = STRING_CONTENT; + return true; + } + + /* Since the string internals are all hidden in the syntax + tree anyways, there's no point in going to the effort of + specifically separating the string end from string contents. + If we see a bunch of quotes in a row, then we just go until + they stop appearing, then stop lexing and call it the + string's end. + */ + lexer->result_symbol = STRING_END; + lexer->mark_end(lexer); + while (lexer->lookahead == end_char) { + advance(lexer); + lexer->mark_end(lexer); + } + stack_pop(stack); + return true; + } + if (has_content) { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + stack_pop(stack); + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = STRING_END; + return true; + } + advance(lexer); + has_content = true; + } + return false; +} + +static bool scan_multiline_comment(TSLexer *lexer) { + if (lexer->lookahead != '/') return false; + advance(lexer); + if (lexer->lookahead != '*') return false; + advance(lexer); + + bool after_star = false; + unsigned nesting_depth = 1; + for (;;) { + switch (lexer->lookahead) { + case '*': + advance(lexer); + after_star = true; + break; + case '/': + advance(lexer); + if (after_star) { + after_star = false; + nesting_depth -= 1; + if (nesting_depth == 0) { + lexer->result_symbol = MULTILINE_COMMENT; + lexer->mark_end(lexer); + return true; + } + } else { + after_star = false; + if (lexer->lookahead == '*') { + nesting_depth += 1; + advance(lexer); + } + } + break; + case '\0': + return false; + default: + advance(lexer); + after_star = false; + break; + } + } +} + +static bool scan_whitespace_and_comments(TSLexer *lexer) { + while (iswspace(lexer->lookahead)) skip(lexer); + return lexer->lookahead != '/'; +} + +static bool scan_for_word(TSLexer *lexer, const char* word, unsigned len) { + skip(lexer); + for (unsigned i = 0; i < len; ++i) { + if (lexer->lookahead != word[i]) return false; + skip(lexer); + } + return true; +} + +static bool scan_automatic_semicolon(TSLexer *lexer) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + lexer->mark_end(lexer); + + bool sameline = true; + for (;;) { + if (lexer->eof(lexer)) return true; + + if (lexer->lookahead == ';') { + advance(lexer); + lexer->mark_end(lexer); + return true; + } + + if (!iswspace(lexer->lookahead)) break; + + if (lexer->lookahead == '\n') { + skip(lexer); + sameline = false; + break; + } + + if (lexer->lookahead == '\r') { + skip(lexer); + + if (lexer->lookahead == '\n') skip(lexer); + + sameline = false; + break; + } + + skip(lexer); + } + + // Skip whitespace and comments + if (!scan_whitespace_and_comments(lexer)) + return false; + + if (sameline) { + switch (lexer->lookahead) { + // Don't insert a semicolon before an else + case 'e': + return !scan_for_word(lexer, "lse", 3); + + case 'i': + return scan_for_word(lexer, "mport", 5); + + case ';': + advance(lexer); + lexer->mark_end(lexer); + return true; + + default: + return false; + } + } + + switch (lexer->lookahead) { + case ',': + case '.': + case ':': + case '*': + case '%': + case '>': + case '<': + case '=': + case '{': + case '[': + case '(': + case '?': + case '|': + case '&': + case '/': + return false; + + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + // Insert before +/-Float + case '+': + skip(lexer); + if (lexer->lookahead == '+') return true; + return iswdigit(lexer->lookahead); + + case '-': + skip(lexer); + if (lexer->lookahead == '-') return true; + return iswdigit(lexer->lookahead); + + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; + + // Don't insert a semicolon before an else + case 'e': + return !scan_for_word(lexer, "lse", 3); + + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier or an import. + case 'i': + skip(lexer); + if (lexer->lookahead != 'n') return true; + skip(lexer); + if (!iswalpha(lexer->lookahead)) return false; + return !scan_for_word(lexer, "stanceof", 8); + + case ';': + advance(lexer); + lexer->mark_end(lexer); + return true; + + default: + return true; + } +} + +static bool scan_safe_nav(TSLexer *lexer) { + lexer->result_symbol = SAFE_NAV; + lexer->mark_end(lexer); + + // skip white space + if (!scan_whitespace_and_comments(lexer)) + return false; + + if (lexer->lookahead != '?') + return false; + + advance(lexer); + + if (!scan_whitespace_and_comments(lexer)) + return false; + + if (lexer->lookahead != '.') + return false; + + advance(lexer); + lexer->mark_end(lexer); + return true; +} + +static bool scan_line_sep(TSLexer *lexer) { + // Line Seps: [ CR, LF, CRLF ] + int state = 0; + while (true) { + switch(lexer->lookahead) { + case ' ': + case '\t': + case '\v': + // Skip whitespace + advance(lexer); + break; + + case '\n': + advance(lexer); + return true; + + case '\r': + if (state == 1) + return true; + + state = 1; + advance(lexer); + break; + + default: + // We read a CR + if (state == 1) + return true; + + return false; + } + } +} + +static bool scan_import_list_delimiter(TSLexer *lexer) { + // Import lists are terminated either by an empty line or a non import statement + lexer->result_symbol = IMPORT_LIST_DELIMITER; + lexer->mark_end(lexer); + + // if eof; return true + if (lexer->eof(lexer)) + return true; + + // Scan for the first line seperator + if (!scan_line_sep(lexer)) + return false; + + // if line.sep line.sep; return true + if (scan_line_sep(lexer)) { + lexer->mark_end(lexer); + return true; + } + + // if line.sep [^import]; return true + while (true) { + switch (lexer->lookahead) { + case ' ': + case '\t': + case '\v': + // Skip whitespace + advance(lexer); + break; + + case 'i': + return !scan_for_word(lexer, "mport", 5); + + default: + return true; + } + + return false; + } +} + +bool tree_sitter_kotlin_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + bool ret = scan_automatic_semicolon(lexer); + if (!ret && valid_symbols[SAFE_NAV] && lexer->lookahead == '?') { + return scan_safe_nav(lexer); + } + + // if we fail to find an automatic semicolon, it's still possible that we may + // want to lex a string or comment later + if (ret) return ret; + } + + if (valid_symbols[IMPORT_LIST_DELIMITER]) { + return scan_import_list_delimiter(lexer); + } + + // content or end + if (valid_symbols[STRING_CONTENT] && scan_string_content(lexer, payload)) { + return true; + } + + // a string might follow after some whitespace, so we can't lookahead + // until we get rid of it + while (iswspace(lexer->lookahead)) skip(lexer); + + if (valid_symbols[STRING_START] && scan_string_start(lexer, payload)) { + lexer->result_symbol = STRING_START; + return true; + } + + if (valid_symbols[MULTILINE_COMMENT] && scan_multiline_comment(lexer)) { + return true; + } + + if (valid_symbols[SAFE_NAV]) { + return scan_safe_nav(lexer); + } + + return false; +} + +void *tree_sitter_kotlin_external_scanner_create() { + Stack *stack = ts_calloc(1, sizeof(Stack)); + if (stack == NULL) abort(); + array_init(stack); + return stack; +} + +void tree_sitter_kotlin_external_scanner_destroy(void *payload) { + Stack *stack = (Stack *)payload; + array_delete(stack); + ts_free(stack); +} + +unsigned tree_sitter_kotlin_external_scanner_serialize(void *payload, char *buffer) { + Stack *stack = (Stack *)payload; + if (stack->size > 0) { + // it's an undefined behavior to memcpy 0 bytes + memcpy(buffer, stack->contents, stack->size); + } + return stack->size; +} + +void tree_sitter_kotlin_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { + Stack *stack = (Stack *)payload; + if (length > 0) { + array_reserve(stack, length); + memcpy(stack->contents, buffer, length); + stack->size = length; + } else { + array_clear(stack); + } +} diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/alloc.h b/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1f4466d75 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/array.h b/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/array.h new file mode 100644 index 000000000..15a3b233b --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/parser.h b/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/parser.h new file mode 100644 index 000000000..17f0e94bf --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/src/tree_sitter/parser.h @@ -0,0 +1,265 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/annotations.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/annotations.txt new file mode 100644 index 000000000..b2a8a661b --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/annotations.txt @@ -0,0 +1,126 @@ +================== +Annotations +================== + +@Test +class Empty + +--- + +(source_file + (class_declaration + (modifiers (annotation (user_type (type_identifier)))) + (type_identifier))) + +================== +Annotations with use-site-target +================== + +class Empty(@field:Test val x: Boolean) + +--- + +(source_file + (class_declaration + (type_identifier) + (primary_constructor (class_parameter + (modifiers (annotation (use_site_target) (user_type (type_identifier)))) + (binding_pattern_kind) + (simple_identifier) + (user_type (type_identifier)))))) + +================== +Multi-annotations +================== + +@set:[Inject VisibleForTesting] +var x: Int + +--- + +(source_file + (property_declaration + (modifiers (annotation (use_site_target) (user_type (type_identifier)) (user_type (type_identifier)))) + (binding_pattern_kind) + (variable_declaration (simple_identifier) (user_type (type_identifier))))) + +================== +Multiple annotations on a variable +================== + +class X { + @A @B + override val s: String +} + +--- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (modifiers + (annotation (user_type (type_identifier))) + (annotation (user_type (type_identifier))) + (member_modifier)) + (binding_pattern_kind) + (variable_declaration (simple_identifier) (user_type (type_identifier))) + ) + ) + ) +) + + +================== +Multiple annotations on a function +================== + +class X { + @A @B + fun s(): String +} + +--- + +(source_file + (class_declaration + (type_identifier) + (class_body + (function_declaration + (modifiers + (annotation (user_type (type_identifier))) + (annotation (user_type (type_identifier)))) + (simple_identifier) + (function_value_parameters) + (user_type (type_identifier)) + ) + ) + ) +) + +===================== +Annotated functions +====================== + +@Test +fun foo() = bar {} + +--- + +(source_file + (function_declaration + (modifiers + (annotation + (user_type + (type_identifier)))) + (simple_identifier) + (function_value_parameters) + (function_body + (call_expression + (simple_identifier) + (call_suffix + (annotated_lambda + (lambda_literal))))))) + + diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/assignment.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/assignment.txt new file mode 100644 index 000000000..b1836e4d9 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/assignment.txt @@ -0,0 +1,70 @@ +================================================================================ +This Assignment +================================================================================ + +class Foo(){ + var foo = null + constructor(bar:Int) { + this.foo = bar + } +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (primary_constructor) + (class_body + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (null_literal)) + (secondary_constructor + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier)))) + (statements + (assignment + (directly_assignable_expression + (this_expression) + (navigation_suffix + (simple_identifier))) + (simple_identifier))))))) + +================================================================================ +Index Assignment +================================================================================ + +fun main(){ + var listOfPets:Array + listOfPets[0] = "foo" +} + +-------------------------------------------------------------------------------- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier) + (user_type + (type_identifier) + (type_arguments + (type_projection + (user_type + (type_identifier))))))) + (assignment + (directly_assignable_expression + (simple_identifier) + (indexing_suffix + (integer_literal))) + (string_literal (string_content))))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/classes.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/classes.txt new file mode 100644 index 000000000..6dde60aba --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/classes.txt @@ -0,0 +1,394 @@ +================================================================================ +Classes +================================================================================ + +class Empty +class Empty2 {} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier)) + (class_declaration + (type_identifier) + (class_body))) + +================================================================================ +Class with methods +================================================================================ + +class HelloWorld { + fun a() {} + + fun b() {} +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (class_body + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body)) + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body))))) + +================================================================================ +Generic class +================================================================================ + +class Container {} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (type_parameters + (type_parameter + (type_identifier))) + (class_body))) + +================================================================================ +Class with methods and expressions +================================================================================ + +class Strings { + fun aString() = "Hello World!" + + fun anotherString() = "Hello" + " " + "World" +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (class_body + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (string_literal (string_content)))) + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (additive_expression + (additive_expression + (string_literal (string_content)) + (string_literal (string_content))) + (string_literal (string_content)))))))) + +================================================================================ +Class with modifiers +================================================================================ + +internal open class Test { + private abstract inline fun test() +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (modifiers + (visibility_modifier) + (inheritance_modifier)) + (type_identifier) + (class_body + (function_declaration + (modifiers + (visibility_modifier) + (inheritance_modifier) + (function_modifier)) + (simple_identifier) + (function_value_parameters))))) + +================================================================================ +Objects +================================================================================ + +object Singleton { + fun test() +} + +-------------------------------------------------------------------------------- + +(source_file + (object_declaration + (type_identifier) + (class_body + (function_declaration + (simple_identifier) + (function_value_parameters))))) + +================================================================================ +Primary constructors +================================================================================ + +data class Vector2D( + val x: Int, + val y: Int +) + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (modifiers + (class_modifier)) + (type_identifier) + (primary_constructor + (class_parameter + (binding_pattern_kind) + (simple_identifier) + (user_type + (type_identifier))) + (class_parameter + (binding_pattern_kind) + (simple_identifier) + (user_type + (type_identifier)))))) + +================================================================================ +Inheritance +================================================================================ + +class A : B() {} + +class C(param: Int) : D(param) + +class D : SomeInterface + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (delegation_specifier + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments))) + (class_body)) + (class_declaration + (type_identifier) + (primary_constructor + (class_parameter + (simple_identifier) + (user_type + (type_identifier)))) + (delegation_specifier + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments + (value_argument + (simple_identifier)))))) + (class_declaration + (type_identifier) + (delegation_specifier + (user_type + (type_identifier))))) + +================================================================================ +Properties +================================================================================ + +class Something { + val x: Int = 4 + var y: Int? + val z: Int get() = x +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier) + (user_type + (type_identifier))) + (integer_literal)) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier) + (nullable_type + (user_type + (type_identifier))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier) + (user_type + (type_identifier))) + (getter + (function_body + (simple_identifier))))))) + +================================================================================ +Constructor delegation calls +================================================================================ + +class Test(x: Int, y: Int) { + constructor() : this(0, 0) +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (primary_constructor + (class_parameter + (simple_identifier) + (user_type + (type_identifier))) + (class_parameter + (simple_identifier) + (user_type + (type_identifier)))) + (class_body + (secondary_constructor (function_value_parameters) + (constructor_delegation_call + (value_arguments + (value_argument + (integer_literal)) + (value_argument + (integer_literal)))))))) + +================================================================================ +Enum classes +================================================================================ + +enum class Suit { + DIAMONDS, CLOVERS, HEARTS, SPADES +} + +enum class Color(val rgb: Int) { + RED(0xFF0000), + GREEN(0x00FF00), + BLUE(0x0000FF); + + override fun toString() = rgb.toString(16) +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (enum_class_body + (enum_entry + (simple_identifier)) + (enum_entry + (simple_identifier)) + (enum_entry + (simple_identifier)) + (enum_entry + (simple_identifier)))) + (class_declaration + (type_identifier) + (primary_constructor + (class_parameter + (binding_pattern_kind) + (simple_identifier) + (user_type + (type_identifier)))) + (enum_class_body + (enum_entry + (simple_identifier) + (value_arguments + (value_argument + (hex_literal)))) + (enum_entry + (simple_identifier) + (value_arguments + (value_argument + (hex_literal)))) + (enum_entry + (simple_identifier) + (value_arguments + (value_argument + (hex_literal)))) + (function_declaration + (modifiers + (member_modifier)) + (simple_identifier) + (function_value_parameters) + (function_body + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments + (value_argument + (integer_literal)))))))))) + +================================================================================ +Data class with hanging comma +================================================================================ + +data class JwtConfiguration( + val audience: String, + val realm: String, +) + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (modifiers + (class_modifier)) + (type_identifier) + (primary_constructor + (class_parameter + (binding_pattern_kind) + (simple_identifier) + (user_type + (type_identifier))) + (class_parameter + (binding_pattern_kind) + (simple_identifier) + (user_type + (type_identifier)))))) + +================================================================================ +Value class: https://kotlinlang.org/docs/inline-classes.html +================================================================================ + +@JvmInline +value class Password(private val s: String) + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (modifiers + (annotation + (user_type + (type_identifier))) + (class_modifier)) + (type_identifier) + (primary_constructor + (class_parameter + (modifiers + (visibility_modifier)) + (binding_pattern_kind) + (simple_identifier) + (user_type + (type_identifier)))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/comments.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/comments.txt new file mode 100644 index 000000000..b8dd7191f --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/comments.txt @@ -0,0 +1,26 @@ +================================================================================ +Comments +================================================================================ + +1 + 2 +// 1 + 2 +/* very + /* nested + /* comment */ + goes + */ + here +*/ +// "strings are cool too" +/* even """multiline strings""" */ + +-------------------------------------------------------------------------------- + +(source_file + (additive_expression + (integer_literal) + (integer_literal)) + (line_comment) + (multiline_comment) + (line_comment) + (multiline_comment)) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/expressions.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/expressions.txt new file mode 100644 index 000000000..49cd6fb0e --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/expressions.txt @@ -0,0 +1,626 @@ +================================================================================ +Multiplication expression +================================================================================ + +45 * 3 + +-------------------------------------------------------------------------------- + +(source_file + (multiplicative_expression + (integer_literal) + (integer_literal))) + +================================================================================ +Safe Navigation +================================================================================ + +a?.bar() +a? .bar() +a? . bar() +a? + .bar() +a ? . bar() + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments)))) + +================================================================================ +Function calls +================================================================================ + +print("Hello World!") +sum(1, 2) + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal (string_content)))))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (integer_literal)) + (value_argument + (integer_literal)))))) + +================================================================================ +When expression +================================================================================ + +val x = 1 +val y = when(x){ + 1 -> true + 2 -> false + } + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (integer_literal)) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (when_expression + (when_subject + (simple_identifier)) + (when_entry + (when_condition + (integer_literal)) + (control_structure_body + (boolean_literal))) + (when_entry + (when_condition + (integer_literal)) + (control_structure_body + (boolean_literal)))))) + +================================================================================ +When expression with type arguments +================================================================================ + +when (this) { + is DispatchedCoroutine<*> -> return null +} + +-------------------------------------------------------------------------------- + +(source_file + (when_expression + (when_subject + (this_expression)) + (when_entry + (when_condition + (type_test + (user_type + (type_identifier) + (type_arguments + (type_projection))))) + (control_structure_body + (jump_expression + (null_literal)))))) + +================================================================================ +Value declaration with receiver type +================================================================================ + +val MyDate.s: String get() = "hello" + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (binding_pattern_kind) + (user_type + (type_identifier)) + (variable_declaration + (simple_identifier) + (user_type + (type_identifier))) + (getter + (function_body + (string_literal (string_content)))))) + +================================================================================ +Expect as an expression +================================================================================ + +val x = expect(1) + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (integer_literal))))))) + +================================================================================ +Expect as a top-level expression +================================================================================ + +expect(1) + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (integer_literal)))))) + +================================================================================ +Expect as a platform modifier +================================================================================ + +expect fun randomUUID(): String + +-------------------------------------------------------------------------------- + +(source_file + (function_declaration + (modifiers + (platform_modifier)) + (simple_identifier) + (function_value_parameters) + (user_type + (type_identifier)))) + +================================================================================ +Less than for generics +================================================================================ + +foo(1,2) +foo(1) + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (type_arguments + (type_projection + (user_type + (type_identifier)))) + (value_arguments + (value_argument + (integer_literal)) + (value_argument + (integer_literal))))) + (call_expression + (simple_identifier) + (call_suffix + (type_arguments + (type_projection + (user_type + (type_identifier)))) + (value_arguments + (value_argument + (integer_literal)))))) + +================================================================================ +Less than for comparison +================================================================================ + +val x = ab +val z = ac +// this is parsed as a generic, but could also be parsed as a comparison +val w = a(c) +val a = a<2>(3) + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (comparison_expression + (simple_identifier) + (simple_identifier))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (comparison_expression + (simple_identifier) + (simple_identifier))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (comparison_expression + (comparison_expression + (simple_identifier) + (simple_identifier)) + (simple_identifier))) + (line_comment) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (type_arguments + (type_projection + (user_type + (type_identifier)))) + (value_arguments + (value_argument + (simple_identifier)))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (comparison_expression + (comparison_expression + (simple_identifier) + (integer_literal)) + (parenthesized_expression + (integer_literal))))) + +================================================================================ +Lambda Expressions +================================================================================ + +foo.forEach { (index, value) -> 2 } + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (annotated_lambda + (lambda_literal + (lambda_parameters + (multi_variable_declaration + (variable_declaration + (simple_identifier)) + (variable_declaration + (simple_identifier)))) + (statements + (integer_literal))))))) + +================================================================================ +Function call with trailing lambda +================================================================================ + +with(s) { length } + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier))) + (annotated_lambda + (lambda_literal + (statements + (simple_identifier))))))) + +================================================================================ +Multiple Statements on a Single Line +================================================================================ + +fun main() { val temp = b.y; b.y = b.z; b.z = temp } + +when (dir) { + 1 -> { val temp = b.y; b.y = b.z; b.z = temp } +} +-------------------------------------------------------------------------------- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier)))) + (assignment + (directly_assignable_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier)))) + (assignment + (directly_assignable_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (simple_identifier))))) + (when_expression + (when_subject + (simple_identifier)) + (when_entry + (when_condition + (integer_literal)) + (control_structure_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier)))) + (assignment + (directly_assignable_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier)))) + (assignment + (directly_assignable_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (simple_identifier))))))) + +================================================================================ +Comments in Strings +================================================================================ + +val comments = foo("//") +val comments = foo("hello //") +val comments = foo("// there") +val comments = foo("hello // there") +val comments = """ + // hey there's a + + /* comment or two here */ +""" +val comments = """ // and here """ + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal (string_content))))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal (string_content))))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal (string_content))))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal (string_content))))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (string_literal (string_content))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (string_literal (string_content)))) + +================================================================================ +Qualified this/super expressions +================================================================================ + +class Square() : Rectangle(), Polygon { + override fun draw() { + this@Square.draw() + super@Square.draw() + super.draw() + super@Square.draw() + } +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (primary_constructor) + (delegation_specifier + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments))) + (delegation_specifier + (user_type + (type_identifier))) + (class_body + (function_declaration + (modifiers + (member_modifier)) + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (call_expression + (navigation_expression + (this_expression + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (super_expression + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (super_expression + (user_type + (type_identifier))) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (call_expression + (navigation_expression + (super_expression + (user_type + (type_identifier)) + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))))))))) + +================================================================================ +If else-if else expression +================================================================================ + +if (cond1) { + println("cond1") +} else if (cond2) { + println("cond2") +} else { + println("cond3") +} + +-------------------------------------------------------------------------------- + +(source_file + (if_expression + condition: (simple_identifier) + consequence: (control_structure_body + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal + (string_content)))))))) + alternative: + (control_structure_body + (if_expression + condition: (simple_identifier) + consequence: (control_structure_body + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal + (string_content)))))))) + alternative: + (control_structure_body + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal + (string_content)))))))))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/functions.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/functions.txt new file mode 100644 index 000000000..23b18a510 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/functions.txt @@ -0,0 +1,325 @@ +================== +Top-level functions +================== + +fun main() {} + +--- + +(source_file + (function_declaration + (simple_identifier) (function_value_parameters) + (function_body))) + +================== +Generic functions +================== + +fun test() {} + +--- + +(source_file + (function_declaration + (type_parameters (type_parameter (type_identifier))) + (simple_identifier) (function_value_parameters) + (function_body))) + +================== +Generic functions with parameters +================= + +fun bar(foo: Int): T {} + +--- +(source_file + (function_declaration + (type_parameters + (type_parameter + (type_identifier) + (user_type + (type_identifier)))) + (simple_identifier) + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier)))) + (user_type + (type_identifier)) + (function_body))) + +================== +Functions with parameters +================== + +fun main(args: Array) {} + +fun sum(a: Int, b: Int) = a + b + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier) + (type_arguments (type_projection (user_type (type_identifier))))))) + (function_body)) + (function_declaration + (simple_identifier) + (function_value_parameters + (parameter + (simple_identifier) + (user_type (type_identifier))) + (parameter + (simple_identifier) + (user_type (type_identifier)))) + (function_body + (additive_expression + (simple_identifier) + (simple_identifier))))) + +================== +Functions with return types +================== + +fun answerToTheUltimateQuestionOfLifeTheUniverseAndEverything(): Int = 42 + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (user_type (type_identifier)) + (function_body (integer_literal)))) + +================== +Functions with return calls +================== + +fun foo(p0: Int): Long { + return p0.toLong() +} + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier)))) + (user_type + (type_identifier)) + (function_body + (statements + (jump_expression + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments)))))))) + +===================== +Override functions +====================== + +override fun boo() = foo() + +--- + +(source_file + (function_declaration + (modifiers + (member_modifier)) + (simple_identifier) + (function_value_parameters) + (function_body + (call_expression + (simple_identifier) + (call_suffix + (value_arguments)))))) + +===================== +Set function call +====================== + +fun test() { + isAccessible = true + set(it, COROUTINE_SUSPENDED) +} + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (assignment + (directly_assignable_expression + (simple_identifier)) + (boolean_literal)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier)) + (value_argument + (simple_identifier))))))))) + +================== +Anonymous function +================== + +fun() +val anon = fun() + +--- + +(source_file + (anonymous_function + (function_value_parameters)) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (anonymous_function (function_value_parameters)))) + +================== +Anonymous function with parameters +================== + +fun(x: Int) +val anon = fun(x: Int) + +--- + +(source_file + (anonymous_function + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (anonymous_function + (function_value_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier))))))) + +================== +Anonymous function with return type +================== + +fun(): Int +val anon = fun(): Int + +--- + +(source_file + (anonymous_function + (function_value_parameters) + (user_type + (type_identifier))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (anonymous_function + (function_value_parameters) + (user_type + (type_identifier))))) + +================== +Anonymous function with body +================== + +fun() = true +fun() { assert(true) } +val anon = fun() = true +val anon = fun() { assert(true) } + +--- + +(source_file + (anonymous_function + (function_value_parameters) + (function_body + (boolean_literal))) + (anonymous_function + (function_value_parameters) + (function_body + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (boolean_literal)))))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (anonymous_function + (function_value_parameters) + (function_body + (boolean_literal)))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (anonymous_function + (function_value_parameters) + (function_body + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (boolean_literal)))))))))) + +================== +Function with backticked name +================== + +fun `this is a test function`() = true + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body (boolean_literal)))) + +================== +Function with null literal as expression body +================== + +fun f() = null + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body (null_literal)))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/literals.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/literals.txt new file mode 100644 index 000000000..0fd6747bf --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/literals.txt @@ -0,0 +1,232 @@ +================================================================================ +Simple identifiers +================================================================================ + +helloWorld + +-------------------------------------------------------------------------------- + +(source_file + (simple_identifier)) + +================================================================================ +Unicode identifiers +================================================================================ + +अ९ + +-------------------------------------------------------------------------------- + +(source_file + (simple_identifier)) + +================================================================================ +Boolean literals +================================================================================ + +true +false + +-------------------------------------------------------------------------------- + +(source_file + (boolean_literal) + (boolean_literal)) + +================================================================================ +String literals +================================================================================ + +"Hello World!" +""" +This is a "multiline" +string. +""" + +-------------------------------------------------------------------------------- + +(source_file + (string_literal + (string_content)) + (string_literal + (string_content) + (string_content) + (string_content))) + +================================================================================ +String literal with lots of repeated quotes +================================================================================ + +""""What do you "mean"?", he said. +There's a lot of ""quotations"". Even at the "end"""" + +-------------------------------------------------------------------------------- + +(source_file + (string_literal + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content) + (string_content))) + +================================================================================ +String interpolation +================================================================================ + +"Sample $string.interpolation literal" +"Sample ${"string.interpolation"} literal" +""" +Multiline +${"""string interpolation"""} $literal +""" + +-------------------------------------------------------------------------------- + +(source_file + (string_literal + (string_content) + (interpolated_identifier) + (string_content)) + (string_literal + (string_content) + (interpolated_expression + (string_literal + (string_content))) + (string_content)) + (string_literal + (string_content) + (interpolated_expression + (string_literal + (string_content))) + (string_content) + (interpolated_identifier) + (string_content))) + +================================================================================ +More string interpolation +================================================================================ + +"$" +"$1" +"$ $ $" +"\$foo" +"\$" + +-------------------------------------------------------------------------------- + +(source_file + (string_literal + (string_content)) + (string_literal + (string_content) + (string_content)) + (string_literal + (string_content) + (string_content) + (string_content) + (string_content) + (string_content)) + (string_literal + (string_content)) + (string_literal)) + +================================================================================ +Integer literals +================================================================================ + +0 +8 +23 +9847 + +-------------------------------------------------------------------------------- + +(source_file + (integer_literal) + (integer_literal) + (integer_literal) + (integer_literal)) + +================================================================================ +Real literals +================================================================================ + +0.0 +-23.434 +1e-10 +4.3f ++53.9e-3F + +-------------------------------------------------------------------------------- + +(source_file + (real_literal) + (prefix_expression + (real_literal)) + (real_literal) + (real_literal) + (prefix_expression + (real_literal))) + +================================================================================ +Unicode literals +================================================================================ + +assertEquals("\u214E\uA7B5\u2CEF", "\u2132\uA7B4\u2CEF".lowercase()) + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (string_literal (string_content))) + (value_argument + (call_expression + (navigation_expression + (string_literal (string_content)) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments)))))))) + +================================================================================ +Unsigned literal +================================================================================ + +0xfff0000000000000U + +-------------------------------------------------------------------------------- + +(source_file + (unsigned_literal + (hex_literal))) + +================================================================================ +Unsigned Long literal +================================================================================ + +0xfff0000000000000UL + +-------------------------------------------------------------------------------- + +(source_file + (unsigned_literal + (hex_literal))) + +================================================================================ +Null +================================================================================ + +null + +-------------------------------------------------------------------------------- + +(source_file + (null_literal)) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/newlines.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/newlines.txt new file mode 100644 index 000000000..4e89d4b33 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/newlines.txt @@ -0,0 +1,239 @@ +================================================================================ +Dot after newline +================================================================================ + +bar.foo() + .show() + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (navigation_expression + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments))) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments)))) + +================================================================================ +Eq after newline +================================================================================ + +fun foo() + = 1 + +--- +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (integer_literal)))) + +================================================================================ +Binary operator after newline +================================================================================ + + +fun foo() { + val bar = x + && y +} + +-------------------------------------------------------------------------------- + +(source_file + (function_declaration (simple_identifier) (function_value_parameters) + (function_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (conjunction_expression + (simple_identifier) + (simple_identifier))))))) + +================================================================================ +Open brace after newline +================================================================================ + +fun foo():String + { return "bar"} + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (user_type + (type_identifier)) + (function_body + (statements + (jump_expression + (string_literal (string_content))))))) + +================================================================================ +Colon after newline +================================================================================ + +class Foo + : Bar { +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (delegation_specifier + (user_type + (type_identifier))) + (class_body))) + +================================================================================ +Question mark after newline +================================================================================ + + +fun foo() { + val foo = a?.bar(true) + ?: x.foo() + ?: break +} + +-------------------------------------------------------------------------------- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (elvis_expression + (elvis_expression + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments + (value_argument + (boolean_literal))))) + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments)))) + (jump_expression))))))) + +================================================================================ +get after newline +================================================================================ +class Foo { + val maxMemory: Long + get() = bar() / 1024 +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier) + (user_type + (type_identifier)))) + (getter + (function_body + (multiplicative_expression + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))) + (integer_literal))))))) + +================================================================================ +Newline in function call +================================================================================ + +// The Kotlin grammar does not allow newlines/semicolons in function calls, +// but tree-sitter uses context-aware lexing to overcome this. + +foo(1, + 2) + +-------------------------------------------------------------------------------- + +(source_file + (line_comment) + (line_comment) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (integer_literal)) + (value_argument + (integer_literal)))))) + +================================================================================ +Else after newline +================================================================================ + +if (!foo) 3 +else boo() + +-------------------------------------------------------------------------------- + +(source_file + (if_expression + condition: (prefix_expression + (simple_identifier)) + consequence: (control_structure_body + (integer_literal)) + alternative: + (control_structure_body + (call_expression + (simple_identifier) + (call_suffix + (value_arguments)))))) + +================================================================================ +Else on the same line +================================================================================ + +if (!foo) 3 else boo() + +-------------------------------------------------------------------------------- + +(source_file + (if_expression + condition: (prefix_expression + (simple_identifier)) + consequence: (control_structure_body + (integer_literal)) + alternative: + (control_structure_body + (call_expression + (simple_identifier) + (call_suffix + (value_arguments)))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/soft_keywords.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/soft_keywords.txt new file mode 100644 index 000000000..6c68cd532 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/soft_keywords.txt @@ -0,0 +1,32 @@ +================== +Actual as an identifier +================== + + +fun foo() { + val actual = IntArray(n) + actual[0]++ +} + +--- +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier)))))) + (postfix_expression + (indexing_expression + (simple_identifier) + (indexing_suffix + (integer_literal)))))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/source-files.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/source-files.txt new file mode 100644 index 000000000..8a5ccb1fa --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/source-files.txt @@ -0,0 +1,122 @@ +================================================================================ +File annotations +================================================================================ + +@file:JvmName("HelloWorld") + +val x = 4 + +-------------------------------------------------------------------------------- + +(source_file + (file_annotation + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments + (value_argument + (string_literal (string_content)))))) + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (integer_literal))) + +================================================================================ +Multiple file annotations +================================================================================ + +@file:JvmMultifileClass +@file:JvmName("BuildersKt") +@file:OptIn(ExperimentalContracts::class) + +-------------------------------------------------------------------------------- + +(source_file + (file_annotation + (user_type + (type_identifier))) + (file_annotation + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments + (value_argument + (string_literal (string_content)))))) + (file_annotation + (constructor_invocation + (user_type + (type_identifier)) + (value_arguments + (value_argument + (callable_reference + (type_identifier))))))) + +================================================================================ +Imports +================================================================================ + +import java.util.* +import java.util.Scanner +import java.util.StringBuilder + +import java.io.Path +import java.io.Files +fun main() { +} + +-------------------------------------------------------------------------------- + +(source_file + (import_list + (import_header + (identifier + (simple_identifier) + (simple_identifier)) + (wildcard_import)) + (import_header + (identifier + (simple_identifier) + (simple_identifier) + (simple_identifier))) + (import_header + (identifier + (simple_identifier) + (simple_identifier) + (simple_identifier)))) + (import_list + (import_header + (identifier + (simple_identifier) + (simple_identifier) + (simple_identifier))) + (import_header + (identifier + (simple_identifier) + (simple_identifier) + (simple_identifier)))) + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body))) + +================================================================================ +Multiple Imports On A Single Line +================================================================================ + +import java.io.Path import java.io.Files + +-------------------------------------------------------------------------------- + +(source_file + (import_list + (import_header + (identifier + (simple_identifier) + (simple_identifier) + (simple_identifier))) + (import_header + (identifier + (simple_identifier) + (simple_identifier) + (simple_identifier))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/statements.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/statements.txt new file mode 100644 index 000000000..68579a7f7 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/statements.txt @@ -0,0 +1,67 @@ +================================================================================ +For statements +================================================================================ + +for (value in values) {} + +-------------------------------------------------------------------------------- + +(source_file + (for_statement + (variable_declaration + (simple_identifier)) + (simple_identifier) + (control_structure_body))) + +================================================================================ +Statements separated by semicolon +================================================================================ + +override fun isDisposed(): Boolean { expectUnreached(); return false } + +-------------------------------------------------------------------------------- + +(source_file + (function_declaration + (modifiers + (member_modifier)) + (simple_identifier) + (function_value_parameters) + (user_type + (type_identifier)) + (function_body + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))) + (jump_expression + (boolean_literal)))))) + +================================================================================ +Getters +================================================================================ + +val x get () = 2 + +val ty x get () = 3 + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (getter + (function_body + (integer_literal)))) + (property_declaration + (binding_pattern_kind) + (user_type + (type_identifier)) + (variable_declaration + (simple_identifier)) + (getter + (function_body + (integer_literal))))) diff --git a/resources/language-metavariables/tree-sitter-kotlin/test/corpus/types.txt b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/types.txt new file mode 100644 index 000000000..008cc437e --- /dev/null +++ b/resources/language-metavariables/tree-sitter-kotlin/test/corpus/types.txt @@ -0,0 +1,318 @@ +================================================================================ +Type references +================================================================================ + +something as Int +something as A + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (user_type + (type_identifier))) + (as_expression + (simple_identifier) + (user_type + (type_identifier)))) + +================================================================================ +Nested types +================================================================================ + +// TODO the introduction of scanner.c changed the AST for nested types +something as Some.NestedType + +-------------------------------------------------------------------------------- + +(source_file + (line_comment) + (navigation_expression + (as_expression + (simple_identifier) + (user_type + (type_identifier))) + (navigation_suffix + (simple_identifier)))) + +================================================================================ +Deeply nested types +================================================================================ + +// TODO the introduction of scanner.c changed the AST for nested types +somethingElse as A.Deeply.Nested.Type + +-------------------------------------------------------------------------------- + +(source_file + (line_comment) + (navigation_expression + (navigation_expression + (navigation_expression + (as_expression + (simple_identifier) + (user_type + (type_identifier))) + (navigation_suffix + (simple_identifier))) + (navigation_suffix + (simple_identifier))) + (navigation_suffix + (simple_identifier)))) + +================================================================================ +Generic wildcard types +================================================================================ + +something as Generic<*> + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (user_type + (type_identifier) + (type_arguments + (type_projection))))) + +================================================================================ +Generic parameterized types +================================================================================ + +something as Generic +something as Generic + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (user_type + (type_identifier) + (type_arguments + (type_projection + (user_type + (type_identifier)))))) + (as_expression + (simple_identifier) + (user_type + (type_identifier) + (type_arguments + (type_projection + (user_type + (type_identifier))) + (type_projection + (user_type + (type_identifier))))))) + +================================================================================ +Function types +================================================================================ + +unitFunction as () -> Unit +consumer as (Int) -> Unit + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (function_type + (function_type_parameters) + (user_type + (type_identifier)))) + (as_expression + (simple_identifier) + (function_type + (function_type_parameters + (user_type + (type_identifier))) + (user_type + (type_identifier))))) + +================================================================================ +Function types with multiple parameters +================================================================================ + +a as (Int, Generic<*>, Boolean) -> Unit +b as (Nested.Type, (Int)) -> Unit + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (function_type + (function_type_parameters + (user_type + (type_identifier)) + (user_type + (type_identifier) + (type_arguments + (type_projection))) + (user_type + (type_identifier))) + (user_type + (type_identifier)))) + (as_expression + (simple_identifier) + (function_type + (function_type_parameters + (user_type + (type_identifier) + (type_identifier)) + (parenthesized_type + (user_type + (type_identifier)))) + (user_type + (type_identifier))))) + +================================================================================ +Function types with named parameters +================================================================================ + +a as (first: A, second: B) -> Unit + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (function_type + (function_type_parameters + (parameter + (simple_identifier) + (user_type + (type_identifier))) + (parameter + (simple_identifier) + (user_type + (type_identifier)))) + (user_type + (type_identifier))))) + +================================================================================ +Function types with receiver +================================================================================ + +a as T.() -> Unit + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (function_type + (type_identifier) + (function_type_parameters) + (user_type + (type_identifier))))) + +================================================================================ +Type constructor +================================================================================ + +a as Foo(x = "hi", y = "bar") + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (as_expression + (simple_identifier) + (user_type + (type_identifier))) + (call_suffix + (value_arguments + (value_argument + (simple_identifier) + (string_literal (string_content))) + (value_argument + (simple_identifier) + (string_literal (string_content))))))) + +================================================================================ +Type constructor with trailing comma +================================================================================ + +a as Foo(x = "hi", y = "bar",) + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (as_expression + (simple_identifier) + (user_type + (type_identifier))) + (call_suffix + (value_arguments + (value_argument + (simple_identifier) + (string_literal (string_content))) + (value_argument + (simple_identifier) + (string_literal (string_content))))))) + +================================================================================ +Type alias with type parameters +================================================================================ + +private typealias T = Foo + +-------------------------------------------------------------------------------- + +(source_file + (type_alias + (modifiers + (visibility_modifier)) + (type_identifier) + (type_parameters + (type_parameter + (type_identifier))) + (user_type + (type_identifier) + (type_arguments + (type_projection + (user_type + (type_identifier))))))) + +================================================================================ +Ampersand type +================================================================================ + +a as T & F + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (not_nullable_type + (user_type + (type_identifier)) + (user_type + (type_identifier))))) + +================================================================================ +Ampersand type with modifiers +================================================================================ + +a as @Foo T & F + +-------------------------------------------------------------------------------- + +(source_file + (as_expression + (simple_identifier) + (type_modifiers + (annotation + (user_type + (type_identifier)))) + (not_nullable_type + (user_type + (type_identifier)) + (user_type + (type_identifier)))))